.sdetail {
    padding: 0 8rem;
    display: grid;
    grid-template-columns: 1rem 50% 40rem;
    gap: 13.2rem;
    margin-bottom: 10rem;
}

.sdetail__back {
    color: var(--color-white);
    font-size: 5rem;
}

.sdetail__image {
    height: 40rem;
}

.sdetail__content h4 {
    color: var(--color-white);
    margin-bottom: 2.5rem;
}

.sdetail__slider {
    height: 600px;
}
.sdetail__slider .swiper {
    width: 100%;
    height: 100px;
    margin-left: auto;
    margin-right: auto;
}
.sdetail__slider .swiper-slide {
    background-size: cover;
    background-position: center;
}
.sdetail__slider .mySwiper2 {
    height: 70%;
    width: 100%;
}
.sdetail__slider .mySwiper {
    height: 30%;
    box-sizing: border-box;
    padding: 10px 0;
}
.sdetail__slider .mySwiper .swiper-slide {
    width: 33%;
    height: 100%;
    opacity: 0.4;
}
.sdetail__slider .mySwiper .swiper-slide-thumb-active {
    opacity: 1;
}
.sdetail__slider .swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
    object-fit: contain;
}
.sdetail__slider .swiper-button-next {
    color: var(--color-green);
}
.sdetail__slider .swiper-button-prev {
    color: var(--color-green);
}

.sdetail__category {
    display: inline-block;
    font-weight: 400;
    font-size: 1.6rem;
    line-height: 2.4rem;
    color: var(--color-green);
    margin-bottom: 6rem;
}

.sdetail__socials {
    display: flex;
    gap: 1rem;
}

.sdetail__socials a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 4.4rem;
    height: 4.4rem;
    border-radius: 50%;
    border: 1px solid var(--color-white);
}

.sdetail__socials a i {
    font-size: 2rem;
    color: var(--color-white);
}

/* SOLUTIONS SECTION */
.solution {
    margin-bottom: 12rem;
}

.solution__items {
    /* display: grid; */
    column-count: 3;
    gap: 2rem;
    padding: 0 4rem;
}

.solution .section__head {
    margin-bottom: 4rem;
    margin-top: 10rem;
}

.solution__items-item {
    margin: 0;
    margin-bottom: 2rem;
}

.solution__items-item > img {
    grid-row: 1 / -1;
    grid-column: 1;
}

.solution__items-item {
    position: relative;
}

.solution__more {
    display: none;
}

.solution__item {
    margin: 0;
    margin-bottom: 2rem;
    position: relative;
}

.solution__item .solution__overlay {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)),
    rgba(118, 192, 78, 0.6);
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    padding: 3rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.solution__item:hover .solution__overlay {
    opacity: 1;
}

.solution__item-title {
    font-weight: 600;
    font-size: 2.4rem;
    line-height: 3rem;
}

.solution__item-more {
    font-weight: 500;
    font-size: 1.6rem;
    line-height: 2rem;
    color: var(--color-white);
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.solution__item-more i {
    transform: rotate(45deg);
    font-size: 1.4rem;
}

@media screen and (max-width: 1100px) {
    .sdetail {
        padding: 0 4rem;
        gap: 7rem;
    }
}

@media screen and (max-width: 912px) {
    .solution {
        margin-bottom: 9rem;
    }

    .solution__items {
        display: grid;
        padding: 0 1rem;
    }
}

@media screen and (max-width: 768px) {
    .sdetail__back {
        display: none;
    }

    .sdetail {
        padding: 0 1rem;
        gap: 3rem;
        grid-template-columns: 100%;
    }

    .sdetail__category {
        margin-bottom: 3rem;
    }

    .solution {
        margin-bottom: 9rem;
    }

    .solution__items {
        display: grid;
        padding: 0 1rem;
    }

    .sdetail__content h4 {
        font-size: 3rem;
    }
}

@media screen and (max-width: 480px) {
    .sdetail__image {
        height: 20rem;
    }

    .solution__item-title {
        font-size: 1.6rem;
        line-height: 2rem;
    }
}
