:root {
    --theme-color-1: #ae762c;
    --theme-color-2: #ceaf7b;
    --theme-color-dark: #3e3c37;
    --theme-color-light: #f6ede4;
    --theme-color-green: #CBE2B6;
    --std-padding: 40px;
    --header-height: 120px;
}

*{
    padding: 0;
    margin: 0;
    font-family: "Poppins", sans-serif;
}

a {
    color: inherit;
    text-decoration: none;
}

/* Use all reusable classes in global.css file */

.bg-cover{
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.padding-x{
    padding-left: var(--std-padding) !important;
    padding-right: var(--std-padding) !important;
}

.clickable-text{
    color: rgb(52, 52, 255);
}

.rotate-180{
    rotate: 180deg;
}

/* header */
.section-page-header{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    background-color: white;
    transition: all 0.5s ease;
}
.section-page-header .header{
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: calc(var(--header-height) * 0.8);
    padding: 10px 0;
    transition: all 0.5s ease;
}

.section-page-header .nav-link{
    margin-bottom: 0;
    cursor: pointer;
    padding: 0 25px;
    font-size: 17px;
}
.section-page-header .sm-icons-container .nav-link{
    padding: 0 10px;
}

.section-page-header .nav-container{
    display: flex;
}

.section-page-header.bg-transperent{
    background-color: transparent;
}
.section-page-header.bg-transperent .header{
    height: var(--header-height);
}
.section-page-header.bg-transperent .nav-link{
    color: white;
}

.toggle-btn-container{
    display: none;
}

.toggle-btn-container .toggle-btn{
    background-color: transparent;
    padding: 10px;
    border: 0;
}

/* Global page header */
.global-banner-section{
    height: 300px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgba(0, 0, 0, 0.564);
    background-blend-mode: multiply;
}

.global-banner-section .main-title{
    margin-bottom: 0;
    font-size: 5rem;
    /* color: var(--theme-color-light); */
    color: white;
    font-weight: 600;
    text-transform: capitalize;
}

/* Footer */

.whatsapp-container{
    position: fixed;
    bottom: 10px;
    left: var(--std-padding);
    z-index: 990;
}

.whatsapp-container .whatsapp-btn{
    color: white;
    background-color: #25D366;
    border-radius: 10px;
    height: 50px;
    width: 50px;
    font-size: 30px;
    border: 0;
}

.lead-form-container{
    position: fixed;
    bottom: 10px;
    right: var(--std-padding);
    z-index: 990;
}

.lead-form-container .message-icon-container .chat-btn{
    color: white;
    background-color: var(--theme-color-1);
    border-radius: 50%;
    height: 50px;
    width: 50px;
    font-size: 20px;
    border: 0;
    
}

.lead-form-container .form-container{
    padding: 20px;
    background-color: var(--theme-color-light);
    border-radius: 10px;
    margin-bottom: 10px;
    box-shadow: 0 0 10px gray;
    transform: translateX(100%);
    opacity: 0;
    transition: all 0.5s ease-in-out;
    display: none;
}

.lead-form-container .form-container.visible{
    transform: translateX(0);
    opacity: 1;
    display: block;
}

.lead-form-container .form-container .field{
    margin-bottom: 10px;
}

.lead-form-container .form-container .field .label{
    font-size: 13px;
    color: var(--theme-color-dark);
}

.lead-form-container .form-container .field .input{
    border: 1px solid var(--theme-color-1);
    font-size: 13px;
    padding: 5px 10px;
    width: 300px;
    border-radius: 5px;
    transition: all 0.5s linear;
}
.lead-form-container .form-container .field .input:focus{
    outline: 0;
    border-color: var(--theme-color-1);
    box-shadow: 0 0 5px gray;
}

.broucher-container .broucher-btn{
    position: fixed;
    top: 37%;
    right: -66px;
    height: 35px;
    font-size: 15px;
    color: white;
    padding: 5px 10px;
    background-color: var(--theme-color-1);
    border-radius: 5px 5px 0 0;
    border: 0;
    rotate: -90deg;
    z-index: 990;
}

.page-footer-main{
    background-color: var(--theme-color-light);
}
.footer-sm-icons .sm-icon {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 1px solid black;
    background-color: transparent;
    
}

/* Global classes */

.section-heading-1{
    text-transform: capitalize;
    color: var(--theme-color-dark);
    font-weight: 600;
    font-size: 30px;
    margin-bottom: 0;
}
.section-heading-2{
    text-transform: uppercase;
    color: var(--theme-color-2);
    font-weight: 700;
    font-size: 20px;
}

.section-text{
    color: var(--theme-color-dark);
    font-size: 15px;
}

.filled-gold-btn{
    border-radius: 7px;
    background-color: var(--theme-color-1);
    color: white;
    font-weight: 600;
    border: 0;
}

.unfilled-gold-btn{
    border-radius: 7px;
    background-color: transparent;
    color: var(--theme-color-1);
    border: 1px solid var(--theme-color-1);
    font-weight: 600;
}


/* *************************** */
/*         Media Queries      */
/* ************************* */

/* Large laptop */
@media screen and (max-width:1400px) {
}
/* Small laptop */
@media screen and (max-width:1200px) {
}
/* Tablet */
@media screen and (max-width:992px) {
}
@media screen and (max-width:768px) {  
}
/* Large mobile */
@media screen and (max-width:576px) {  
    :root {
        --std-padding: 10px;
        --header-height: 70px;
    }
    
    .toggle-btn-container{
        display: block;
        position: relative;
    }
    .section-page-header .nav-container{
        display: none;
    }

    .mobile-nav-container{
        position: absolute;
        top: 115%;
        right: 0;
        z-index: 9000;
        transform: translateX(100%);
        opacity: 0;
        transition: all 0.5s ease;
    }
    .mobile-nav-container.visible{
        transform: translateY(0);
        opacity: 1;
    }

    .mobile-nav-container .mobile-nav-link{
        margin-bottom: 5px;
        width: 180px;
        padding: 5px;
        background-color: var(--theme-color-1);
        border-radius: 5px;
        border: 0;
        color: white;
        font-weight: 500;
        box-shadow: 0 0 5px gray;
    }

    .broucher-container .broucher-btn{
        top: 50%;
    }
    .lead-form-container .form-container{
        width: 0;
        height: 0;
        transition: all 0s;
    }
    .lead-form-container .form-container.visible{
        width: 100%;
        height: auto;
    }

    .global-banner-section{
        height: 190px;
    }
    .global-banner-section .main-title{
        font-size: 2.5rem;
    }

    .section-heading-1{
        font-size: 25px;
    }
    .section-heading-2{
        font-size: 17px;
    }
    .section-text{
        font-size: 14px;
    }

}
/* Small mobile */
@media screen and (max-width:375px) {
}
@media screen and (max-width:320px) {
}

