header {
    min-height: 400px;
    max-height: fit-content;
    width: 100%;
    position: relative;
}

/* key features  */
.kf_icon {
    height: 120px;
    width: 120px;
    background: var(--secondary);
    border-radius: 100rem;
}

/* product card  */
.product_card {
    min-height: 400px;
    max-height: fit-content;
    width: auto;
    /* background: linear-gradient(-45deg, #b7ff5e, #07aa4e, #009970); */
    background: linear-gradient(-45deg, #aad37a, #43b377, #008060);
    position: relative;
}

.product_img {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}

@media (max-width: 992px) {
    .product_img {
        right: -50px;
    }

    .product_img img {
        width: 475px !important;
    }
}

@media (max-width: 768px) {
    .product_img {
        position: relative;
        right: 0;
        text-align: center;
    }

    .product_img img {
        width: 400px !important;
    }
}

@media (max-width: 500px) {
    .product_img img {
        width: 100% !important;
    }
}

.product_info_pill {
    color: var(--light);
    fill: var(--light);
    border: 1px solid var(--light);
    padding: 0.4rem 0.95rem;
    border-radius: 100px;
}

/* how it works  */
.infoVideoContainer {
    height: 300px;
    width: 100%;
    position: relative;
    overflow: hidden;
}

.videoControls {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    z-index: 2;
    background: radial-gradient(#0000000a, #00000057);
}

.infoVideoContainer img {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.infoVideoContainer:hover.infoVideoContainer img {
    scale: 1.04;
}

#playVideo {
    height: 42px;
    width: 42px;
    border-radius: 10rem;
    border: none;
    outline: none;
}

.videoContent {
    position: relative;
    width: 100%;
    padding-top: 56.25%;    
}

.videoContent video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* app */

.mobile_app_image img {
    filter: drop-shadow(-6px 10px 8px #00000066);
}

/* features  */

.band_features_card {
    height: 100%;
    width: 100%;
    background: linear-gradient(51deg, #ede6da, #d9d9d95b, #b1afaf00);
    transition: 0.25s ease-in-out;
}

.band_features_card:hover {
    scale: 1.03
}

.band_features_icon {
    height: 40px;
    width: 40px;
    background: #f3f0ec;
    fill: var(--dark_secondary);
    border-radius: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.new_badge {
    background: linear-gradient(18deg, #ffecd0, #ffca7f);
}