*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    color: rgb(244, 244, 244);
    font-family: var(--body-font-regular);
}

body{
    background-color: rgb(30, 30, 30);
}

.nav-bar-wrapper{
    position: sticky;
    top: 0px;
    z-index: 5;
}

.hero-section{
    position: relative;
}
/* .hero-img-wrapper{
    position: fixed;
    width: 100%;
    top: 0px;
    left: 0px;
    z-index: 1;
} */
.hero-overlay{
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0,0,0,0.9), rgba(0,0,0,0.7), rgba(0,0,0,0));
    z-index: 2;
}
.hero-heading{
    font-size: 40px;
}

.hero-card{
    width: 100%;
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(3px);
}

.appointment-btn{
    background: transparent;
    color: var(--secondary-color);
    border: 1px solid var(--secondary-color);
}

.hero-img-wrapper video{
    aspect-ratio: 4/1.7;
    object-fit: cover;
    object-position: center bottom;
}

.mob-vid{
    display: none;
}

.popup-wrapper{
    width: 100%;
    height: 100%;
    position: fixed;
    bottom: 0px;
    left: 0px;
    background-color: rgba(0,0,0,0.4);
    backdrop-filter: blur(3px);
    z-index: 999;
    display: none;
    align-items: end;
    justify-content: center;
}
.popup{
    width: min(100%, 500px);
    border-top-left-radius: 30px;
    border-top-right-radius: 30px;
}

.banner-wrap{
    border: 1px solid var(--secondary-color);
}
.banner-icon-wrap{
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(-45deg, rgba(62, 62, 62, 0.3), rgba(62, 62, 62, 0.7));
}
.banner-icon-wrap i{
    font-size: 18px;
    position: relative;
    bottom: -3px;
}

@media screen and (width < 800px) {
    /* .hero-section{
        min-height: 80vh;
    } */
    .hero-heading{
        font-size: 35px;
    }
    .hero-img-wrapper{
        width: 100%;
        height: min(80vh, 700px);
        /* background-color: red !important; */
    }
    .hero-img-wrapper img{
        width: 100% !important;
        height: 100% !important;
        object-fit: cover;
    }
    .hero-img-wrapper video{
        width: 100% !important;
        /* height: 100% !important; */
        object-fit: cover;
        aspect-ratio: 3/2;
    }
    .hero-btn{
        flex-direction: column;
    }
    /* .hero-overlay{
        background: unset;
    } */
    .mob-vid{
        display: block;
    }
    .desk-vid{
        display: none;
    }
    .hero-col-wrap{
        padding: 0px !important;
    }
    .hero-col{
        padding: 0px !important;
    }
}