.banner {
    position: relative;
    height: 50vh;
    min-height: 50vh;
}
.banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}
.banner .con {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fa4716b1;
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 3vw;
}
.banner .con .title {
    font-size: 5rem;
    font-weight: 800;
    text-transform: uppercase;
    color: #fff;
}

.story_main {
    position: relative;
    height: auto;
    min-height: auto;
    padding: 3rem 15vw;
}
.story_main .ff, .ff {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-color);
    text-align: center;
}
.story_main .cap {
    font-size: 2.5rem;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--primary-color);
    text-align: center;
}
.story_main .line-separator {
    width: 70px;
    height: 6px;
    background: var(--quinary-color);
    margin: 2rem auto;
    border-radius: 3px;
}


.story_intro {
    position: relative;
    height: auto;
    min-height: auto;
}
.story_intro .content {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    gap: 5vw;
    padding: 3rem 5vw;
}
.story_intro .left {
    width: 500px;
    padding: 1rem;
    border: 8px solid var(--primary-color);
    border-radius: 275px;
    display: flex;
    align-items: center;
}
.story_intro .left .story_introv {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 240px;
}
.story_intro .right {
    width: 50%;
}
.story_intro .right .r1 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text);
    line-height: 1.5;
    margin-bottom: 2.5rem;
}
.story_intro .right .r2 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text);
}

.story_main2 {
    position: relative;
    min-height: auto;
    padding: 5rem 15vw;
    text-align: center;
}
.story_main2 .subject {
    font-size: 5rem;
    font-weight: 900;
    text-transform: uppercase;
    color: var(--quinary-color);
    text-align: center;
    margin-bottom: 2rem;
    display: inline-block;
    border-radius: 80px;
}
.story_main2 .subcap {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
    text-align: center;
    text-transform: uppercase;
}

.story_video {
    position: relative;
    height: auto;
    min-height: auto;
    padding: 3rem 5vw;
    text-align: left;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 5vw;
}
.story_video .content {
    text-align: left;
    width: 50%;
}
.story_video .content .subject {
    font-size: 1.5rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--text);
    text-align: left;
}
.story_video .content .price {
    font-size: 3.5rem;
    font-weight: 900;
    text-transform: uppercase;
    color: var(--primary-color);
    text-align: left;
}
.story_video .content .subtext {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--subtext);
    text-align: left;
}
.story_video .video {
    width: 50%;
    height: auto;
    z-index: 1;
    border-radius: 275px;
    border: 8px solid var(--primary-color);
    padding: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}
.story_video .video .story_video_c {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 240px;
}



.story_main3 {
    position: relative;
    min-height: auto;
    padding: 5rem 15vw 2rem;
    text-align: center;
}
.story_main3 .subject {
    font-size: 5rem;
    font-weight: 900;
    text-transform: uppercase;
    color: var(--quinary-color);
    text-align: center;
    margin-bottom: 2rem;
    display: inline-block;
    border-radius: 80px;
}

.story_v {

}
.story_v .value-listing {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
}
.story_v .value-listing .value-item {
    width: 350px;
    height: 500px;
    border-radius: 30px;
    position: relative;
}
.story_v .value-listing .value-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 30px;
}
.story_v .value-listing .value-item .info {
    padding: 2rem 2.5rem;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 2;
    background: linear-gradient(to bottom, var(--primary-color), transparent);
    border-radius: 30px;
    height: 100%;
}
.story_v .value-listing .value-item .info .value-item-title {
    font-size: 2rem;
    font-weight: 900;
    color: #fff;
    text-transform: uppercase;
    margin-bottom: 1rem;
}
.story_v .value-listing .value-item .info .value-item-description {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--secondary-color);
}

@media (max-width: 768px) {
    .banner {
        height: 200px;
        min-height: 200px;
    }
    .banner .con .title {
        font-size: 2.5rem;
    }
    .story_main {
        padding: 2rem 1.25rem;
    }
    .story_main .ff, .ff {
        font-size: 1.75rem;
    }
    .story_main .cap {
        font-size: 2rem;
    }

    .story_intro .left {
        width: 100%;
    }
    .story_intro .right {
        width: 100%;
        padding: 0.5rem 0;
    }
    .story_intro .right .r1 {
        text-align: center;
        font-size: 1.25rem;
    }
    .story_intro .right .r2 {
        text-align: center;
        font-size: 1.25rem;
    }

    .story_intro .content {
        flex-direction: column;
        padding: 0rem 1.25rem;
    }

    .story_v .value-listing {
        flex-direction: column;
        padding-bottom: 1rem;
    }

    .story_main2 {
        padding: 2rem 1.25rem;
    }
    .story_main2 .subject {
        font-size: 2.5rem;
    }
    .story_main2 .subcap {
        font-size: 2rem;
    }

    .story_video {
        flex-direction: column-reverse;
        padding: 0rem 1.25rem;
    }
    .story_video .video {
        width: 100%;
    }
    .story_video .content {
        width: 100%;
    }
    .story_video .content .subject {
        text-align: center;
        font-size: 1rem;
    }
    .story_video .content .price {
        font-size: 2rem;
        text-align: center;
        padding: 1rem 0;
    }
    .story_video .content .subtext {
        text-align: center;
        font-size: .875rem;
    }

    .story_main3 {
        padding: 2rem 1.25rem;
    }
    .story_main3 .subject {
        font-size: 2.5rem;
        margin-bottom: 0rem;
    }
}