#description,
#price,
.heading {
    color: #fff;
    opacity: 0;
    transition: opacity 3s;
}
#description,
#price,
.heading,
.slider-images > img {
    transition: opacity 3s;
}
.heading {
   font-weight: 800;
    line-height: 50px;
    margin-bottom: 15px;
    font-size: 40px;
}
#description {
    font-family: "Nunito", sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 35px;
    margin-bottom: 28px;
}
#price {
    font-size: 30px;
    font-weight: 700;
}
.slider-main {
    top: -100px;
    min-height: 580px;
    background: radial-gradient(50% 50% at 50% 50%, #c7f6d0 0, #7cb686 92.19%);
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    overflow: hidden;
    position: relative;
    z-index: 1;
}
@media (max-width: 1199px){
    .slider-main {
        min-height: 550px;
    }
}
#backgrounds,
.background,
.slider-images > img {
    position: absolute;
    top: 0;
}
#backgrounds {
    width: 100%;
    height: 100%;
    z-index: -1;
}
.background {
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 2s ease-in-out;
}
.container-slide-content {
    position: relative;
    left: calc(50% - (1140px / 2));
    width: 50%;
    padding-top: 80px;
    max-width: 525px;
    height: 100%;
}
.slider-content-wrap {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}
.social-icons {
    display: flex;
    align-items: center;
    gap: 16px;
}
.social-icons a {
    border: 2px solid #fff;
    border-radius: 50%;
    width: 45px;
    height: 45px;
    display: inline-block;
    display: flex;
    justify-content: center;
    align-items: center;
}
.social-icons img {
    width: 22px;
    height: 22px;
}
.slider-images > img.next {
    opacity: 1;
    transition: 2s;
    filter: blur(35px);
    left: 100%;
    top: 10%;
    transform: translate(-50%, -50%) scale(0.3);
}
.slider-images > img.active {
    opacity: 1;
    transform: scale(1);
    transition: 2s;
    filter: blur(0px);
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
}
.slider-images > img.previous {
    opacity: 1;
    transition: 2s;
    filter: blur(25px);
    left: 95%;
    top: 90%;
}
.slider-images > img.inactive {
    opacity: 0;
    transition: 2s;
    filter: blur(35px);
    left: 100%;
    top: 100%;
    transform: translate(10%, 10%) scale(0.3);
}
.slider-images {
    position: relative;
    width: 50%;
    height: 100%;
    top: 0;
}
.slider-images > img {
    left: 100%;
    filter: blur(25px);
    transform: translate(-50%, -50%) scale(0.3);
    
    object-fit: contain;
    max-width: 593px;
    max-height: 779px;
    height: 100%;
    min-height: 320px;
}
@media screen and (max-width: 1199px) {
    .heading {
        font-size: 36px;
        line-height: 40px;
        margin-bottom: 20px;
    }
    p {
        font-size: 17px;
        line-height: 28px;
        margin-bottom: 22px;
    }
    .container-slide-content {
        left: calc(50% - (920px / 2));
        padding-top: 80px;
        max-width: 475px;
    }
    .slider-images > img {
        width: 453px;
        height: auto;
        aspect-ratio: 1/1.3;
    }
}
@media screen and (max-width: 991px) {
    .heading {
        font-size: 34px;
        line-height: 40px;
        margin-bottom: 20px;
    }
    p {
        font-size: 16px;
        line-height: 26px;
        margin-bottom: 18px;
    }
    .container-slide-content {
        left: calc(50% - (720px / 2));
        padding-top: 80px;
        max-width: 405px;
    }
    .slider-images {
        width: 45%;
    }
    .slider-images > img {
        width: 340px;
        aspect-ratio: 1/1.3;
    }
}
@media screen and (max-width: 767px) {
    .slider-main {
        flex-direction: column;
        min-height: 650px;
    }
    .social-icons a {
        width: 35px;
        height: 35px;
    }
    .social-icons img {
        width: 16px;
        height: 16px;
    }
    .container-slide-content {
        position: unset;
        padding-top: 160px;
        max-width: 540px;
        width: 100%;
    }
    #description {
        font-size: 16px;
        line-height: 28px;
    }
    .slider-images {
        width: 100%;
    }
    .slider-images > img {
        height: 380px;
        aspect-ratio: 1/1.3;
        width: auto;
    }
    .slider-images > img.active {
        top: 45%;
        left: 20%;
    }
}
@media screen and (max-width: 575px) {
    .heading {
        font-size: 30px;
        line-height: 35px;
        margin-bottom: 15px;
    }
    p {
        font-size: 15px;
        line-height: 24px;
        margin-bottom: 16px;
    }
    #price {
        margin-bottom: 0;
    }
    .social-icons a {
        width: 32px;
        height: 32px;
    }
    .social-icons img {
        width: 15px;
        height: 15px;
    }
    .container-slide-content {
        padding: 150px 20px 20px;
        /* max-width: 100%; */
    }
    .slider-images > img {
        height: 100px;
    }
    .slider-images > img.active {
        left: 50%;
        transform: translate(-50%, -50%);
    }
    .slider-images > img.previous {
        top: 100%;
    }
}
.fade-in-text {
    animation: 3s forwards fadeIn;
}
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}
