@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

.sticky_parent {
    height: 620vh;
    background-color: black;
    position: relative;
}

.sticky_parent2 {
    height: 500vh;
    background-color: black;
    position: relative;
    display: block;
}

@media (max-width: 960px) {
    .sticky_parent2 {
        display: none;
    }
}

.sticky_content::before,
.sticky_content::after {
    content: '';
    position: absolute;
    top: 0;
    width: 100px;
    /* width of the fade */
    height: 100%;
    z-index: 2;
    pointer-events: none;
    /* so it doesn't interfere with interactions */
}

.sticky_content::before {
    left: 0;
    background: radial-gradient(ellipse at left, rgba(0, 0, 0, 0.5), transparent 70%);
}

.sticky_content::after {
    right: 0;
    background: radial-gradient(ellipse at right, rgba(0, 0, 0, 0.5), transparent 70%);
}

.stickyyy {
    overflow: hidden;
    position: sticky;
    top: 0;
    background-color: black;
    height: 80vh;
    z-index: 1;
}

@media (max-width: 960px) {
    .stickyyy {
        height: 100vh;
    }

    .sticky_content {
        height: 100vh;
    }
}

.stickyyy2 {
    overflow: hidden;
    position: sticky;
    top: 0;
    background-color: black;
    height: 100vh;
    z-index: 1;
}

.sticky_content {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: start;
    top: 50px;
    transform: none;
    height: 80vh;
    gap: 50px;
    width: 100%;
    z-index: 999;
}

.scroll_section {
    position: absolute;
    top: 0;
    height: 100%;
    width: 620vw;
    will-change: transform;
    display: flex;
    justify-content: start;
    align-items: center;
    padding: 0 0 0 0;
    background-color: black;
}

.scroll_section2 {
    position: absolute;
    top: 0;
    height: 100%;
    width: 500vw;
    will-change: transform;
    display: flex;
    justify-content: start;
    align-items: center;
    padding: 0 0 0 0;
    background-color: black;
}

.sticky-img {
    width: 100vw;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.sticky_content_left {
    width: 40%;
}

@media (min-width: 1600px) {
    .sticky_content_left {
        transform: translate(30px, 65px);
    }

}

.sticky_content_left_img {
    width: 500px;
    height: auto;
}

.sticky_content_right {
    height: 70%;
    width: 50%;
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: center;
    padding: 60px 50px 50px 50px;
    translate: 0px -50px;
    border-radius: 20px;
    background-image: linear-gradient(135deg, #fffffff3, #ffffffd0);
}

@media (min-width: 1600px) {
    .sticky_content_right {
        padding: 50px;
        height: 60%;
    }

}

.sticky_content_right_title {
    font-weight: 700;
    opacity: 0;
    font-size: 36px;
    font-family: "Poppins";
    color: #265895;
    margin-bottom: 16px;
}

.sticky_content_right_title1 {
    font-weight: 900;
    font-size: 62px;
    margin-bottom: 26px;
    font-family: "Poppins";
    font-weight: 900;
    color: #53a7d4;
}

.sticky_content_right_title_container {
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 10px;
}

.sticky_content_right_title2 {
    font-weight: 600;
    font-size: 24px;
    margin-bottom: 26px;
    font-family: "Poppins";
    color: #9cbdd2;
}

.sticky_content_right_decription {
    color: rgb(0, 0, 0);
    font-size: 18px;
    font-weight: 600;
    font-family: "Poppins";
    text-align: justify;
    margin-top: 8px;
    font-style: 16px;
    line-height: 22px;
    opacity: 0;
}

.sticky_content_right_ul {
    color: rgb(0, 0, 0);
    padding-left: 20px;
    line-height: 18px;
    margin-top: 8px;
    font-weight: normal;
}

.sticky_content_right_ul li {
    font-size: 14px;
    font-weight: 400;
    font-family: 'Poppins';
    opacity: 0;
}

@media (max-width: 1200px) {
    .sticky_content {
        flex-direction: column-reverse;
        /* flex-direction: column; */
        top: 0px;
        left: 0px;
        gap: 60px;
    }

    .sticky_content_left {
        width: 100%;
    }

    .sticky_content_left_img {
        width: 275px;
        height: auto;
    }

    .sticky_content_right {
        height: 50%;
        width: 96%;
        translate: 0px 30px;
        display: flex;
        flex-direction: column;
        align-items: start;
        justify-content: start;
        padding: 50px 30px 0px 30px;
        border-radius: 20px;
    }

    .sticky_content_right_decription {
        font-size: 14px;
        line-height: 14px;
    }

    .sticky_content_right_title {
        font-weight: 900;
        opacity: 0;
        font-size: 26px;
    }

    .sticky_content_right_title_container {
        gap: 5px;
    }

    .sticky_content_right_title1 {
        font-weight: 900;
        font-size: 28px;
        margin-bottom: 14px;
    }

    .sticky_content_right_title2 {
        font-size: 18px;
    }

    .sticky_content_right_title {
        margin-bottom: 4px;
    }
}