*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root{
    --gold: #624E88;
}

.text-gold{
    color: var(--gold);
}

.bg-gold{
    background-color: var(--gold) !important;
}

.rounded-brand{
    border-radius: 20px;
}

.hero-section{
    min-height: 50vh;
    background-image: url("./heroback.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-container{
    /* backdrop-filter: blur(5px); */
    min-height: 65vh;
    align-content: center;
}

.hero-content{
    background-color: #fff8ea7d;
    width: 100%;
    min-height: 65vh;
}

.bg-brand-light{
    background-color: #EFEAE6 !important;
}

.text-brand-light{
    color: #EFEAE6 !important;
}

.bars-para{
    display: none
}

.nav-bar-wrap div{
    display: flex;
    justify-content: center;
    text-align: center;
}

.nav-bar-wrap p:nth-child(1){
    text-align: center !important;
    width: 100% !important;
}

.call-hover-btn{
    position: fixed;
    bottom: 15px;
    right: 15px;
    /* width: 60px;
    height: 60px; */
    border-radius: 10px;
    background-color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999;
}

.hero-para{
    color: #715b0f !important;
}

.overlfow-hidden{
    overflow: hidden;
}

@media screen and (width < 700px) {
    .bars-para{
        display: block
    }
    .nav-bar-wrap div{
        display: flex;
        justify-content: space-between;
        text-align: start;
    }
    .nav-bar-wrap p:nth-child(1){
        text-align: start !important;
        width: auto;
    }
    .hero-section{
        min-height: 40vh;
        background-image: url("./heroback.jpg");
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
    }
    
    .hero-container{
        min-height: 40vh;
        align-content: center;
    }
    
    .hero-content{
        min-height: 40vh;
    }
    .card-img{
        margin-left: 0px !important;
    }
    .left-img{
        padding-right: 0px !important;
    }
}