.stn-products-container {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
    padding: 40px;
}

.stn-products-item {
    width: 100%;
    display: flex;
    flex-direction: column;
    background: #FFF;
    border-radius: 20px;
    padding: 0;
    margin: 0;
    text-decoration: none;
}

.stn-products-item-image img {
    width: 100%;
    border-radius: 10px;
    aspect-ratio: 3/2;
    object-fit: cover;
}

.stn-products-item img {
    width: 100%;
    border-radius: 10px;
    aspect-ratio: 3/2;
    object-fit: cover;
}

.stn-products-item.alt img {
    width: calc(50% - 20px);
    height: 100%;
    border-radius: 10px;
    aspect-ratio: none;
    object-fit: cover;
}

.stn-products-item h4 {
    color: var(--color-tx-focus);
    margin: 10px 0;
    text-align: center;
    padding: 0;
    font-size: 24px;
}

.stn-products-item.alt h4 {
    text-align: left;
    margin: 10px;
}

.stn-products-item p {
    color: #101010;
    margin: 0;
    padding: 0;
    font-size: 16px;
    text-align: justify;
}

.stn-products-item.alt p {
    margin: 0 0 0 10px;
}

.accordion {
    background-color: #FFF;
    color: #101010;
    cursor: pointer;
    padding: 20px 40px;
    width: 100%;
    text-align: left;
    border: none;
    outline: none;
    transition: .5s;
    font-size: 36px;
}

button.accordion:first-of-type {
    border-radius: 10px 10px 0 0;
}

button.accordion:last-of-type {
    border-radius: 0 0 10px 10px;
}

.active,
.accordion:hover {
    background-color: #12aea92c;
}


.accordion:after {
    content: '\002B';
    color: #12aeaa;
    font-weight: bold;
    font-size: 32px;
    float: right;
    margin: 0 5px 0 0;
    padding: 0;
}

.accordion.active:after {
    content: "\2212";
}

.panel {
    padding: 0;
    background-color: white;
    max-height: 0;
    overflow: hidden;
    transition: max-height .5s ease-out;
    width: 100%;
}

#catem {
    cursor: pointer;
}

html.noscroll {
    overflow: hidden;
}

.catem-container {
    display: none;
    height: 100vh;
    width: 100vw;
    background-color: rgba(0, 0, 0, 0.5);
    position: fixed;
    z-index: 150;
    overflow: hidden;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    display: none;
}

.catem-container.show {
    display: flex;
}

.catem-container.active {
    opacity: 1;
    pointer-events: auto;
}

.catem-container i {
    font-size: 64px;
    color: white;
    position: absolute;
    top: 25px;
    right: 50px;
}

.catem-container i:hover {
    cursor: pointer;
}

.catem-card {
    background: #FFF;
    width: 60vw;
    height: 40vh;
    display: flex;
    align-items: flex-start;
    border-radius: 20px;
    animation: popIn 0.3s ease;
}

.catem-container.out .catem-card {
    animation: popOut 0.3s ease forwards;
}

.catem-image {
    height: 100%;
}

.catem-image img {
    height: 100%;
    aspect-ratio: 3/5;
    object-fit: cover;
    border-radius: 20px 0 0 20px;
}

.catem-text {
    padding: 10px 20px;
}

.catem-text h3 {
    text-align: left;
    text-transform: uppercase;
    margin: 0;
    padding: 0;
}

.catem-text p {
    text-align: justify;
    color: #101010;
    font-size: 22px;
    padding: 0;
    margin: 10px 0;
}

.catem-text a {
    text-decoration: none;
    padding: 10px 20px;
    margin-top: 20px;
    display: block;
    width: 125px;
    color: white;
    border-radius: 10px;
    text-align: center;
    background: var(--color-tx-focus);
    transition: all .3s;
}

.catem-text a:hover {
    background: var(--color-tx-focus-hover);
}

@keyframes popIn {
    from {
        transform: scale(0.95);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes popOut {
    from {
        transform: scale(1);
        opacity: 1;
    }

    to {
        transform: scale(0.9);
        opacity: 0;
    }
}

.section-aboutus-work-item {
    margin: 100px 0;
    position: relative;
}

.carousel-container {
    width: 100%;
    overflow: hidden;
    position: relative;
    height: 100px;
    margin-top: 35px;
}

.carousel-container::before,
.carousel-container::after {
    content: "";
    position: absolute;
    top: 0;
    width: 100px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.carousel-container::before {
    left: 0;
    background: linear-gradient(to right, #f2f2f2 0%, rgba(242, 242, 242, 0) 100%);
}

.carousel-container::after {
    right: 0;
    background: linear-gradient(to left, #f2f2f2 0%, rgba(242, 242, 242, 0) 100%);
}

.carousel-track {
    display: flex;
    width: fit-content;
    animation: scrollInfinite 20s linear infinite;
}

.carousel-logo {
    height: 60px;
    margin: 0 50px;
    flex-shrink: 0;
}


@keyframes scrollInfinite {
    0% {
        transform: translateX(0%);
    }

    100% {
        transform: translateX(-50%);
    }
}