
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    height: 80px;
    color: var(--color-dark-1);
    z-index: 700;
    
}

.header-menu-btn span {
    margin-left: 15px;
    margin-top: 4px;
}

.header-menu-btn {
    display: flex;
    align-items: center;
    color: #fff;
    font-family: var(--secondary-font);
    font-weight: 600;
}

.header-menu-btn i {
    position: relative;
    height: 11px;
    width: 25px;
}
.header-menu-btn i::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #fff;
}
.header-menu-btn i::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 20px;
    height: 2px;
    background-color: #fff;
}

.header-content .logo {
    position: relative;
    margin-left: 50px;
    z-index: 0;
}
.header-content .logo img {
    
    max-width: 200px;
}

.header-content {
    display: flex;
    justify-content: space-between;
}

.header-content .header-left {
    display: flex;
    align-items: center;
    justify-content: center;
}

.header-content .partner-logo{
    /* margin-right:15px ; */
}

.header-content .partner-logo img {
    width: 160px;
}


.header-content .btn{
    font-weight: 400 !important;
    letter-spacing: 2px;
    font-size: 12px !important;
    line-height: 24px;
    margin-left: 20px;
    
}

.header-content .call-btn{
background-color: var(--secondary-color);
border-color:var(--secondary-color);
}

.header-content .call-btn:hover {
    background-color: #fff;
    border-color: #fff;
}

.fixed-header {
    transition: 0.5s;
   background: rgb(0 0 0 / 20%);
}

.side-menu {
    text-align: left;
    max-width: 370px;
    -webkit-box-shadow: 10px 10px 50px rgba(0, 0, 0, 0.5);
    box-shadow: 10px 10px 50px rgba(0, 0, 0, 0.5);
    width: 75%;
    transition-duration: 200ms;
    -webkit-transition-duration: 200ms;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
    left: -100%;
    opacity: 0;
    visibility: hidden;
    background: var(--primary-color);
    position: fixed;
    z-index: 999;
    top: 0;
    height: 100%;
}

.side-menu ul.menu {
    padding: 50px;
}

.side-menu ul.menu li {
    padding-bottom: 15px;
}

.side-menu ul.menu li a {
    position: relative;
    transition: all 0.5s ease;
    font-family: var(--primary-font);
    letter-spacing: 0.5px;
    color: var(--secondary-color);
    text-transform: uppercase;
    font-size: 17px;
}

.side-menu ul.menu li a i {
    margin-right: 12px;
    font-size: 20px;
}



.menuoverlay {
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 99;
    display: none;
}

.menu-open .side-menu{
    left: 0;
    opacity: 1;
    visibility: visible;
}

.menu-open .menuoverlay{
    display: block;
}

.close-menu {
    cursor: pointer;
    position: absolute;
    top: 50%;
    right: -40px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #fff;
    border: 1px solid #c29f7b;
    width: 80px;
    height: 80px;
    border-radius: 100%;
    transform: translateX(0) translateY(-50%);
    color: #000;
    font-size: 23px;
}

.close-menu:hover {
    color: var(--secondary-color);
}

.side-menu ul.menu li a:hover {
    color: #fff;
}

@media(max-width:767px){
 .site-header {
    height: 60px;
}   
    .container-fluid {
    padding: 0 15px;
}

.header-content .btn {
    display: none;
}

.header-content .logo {
    margin-left: 20px;
}

.header-content .partner-logo img {max-width: 100px;}

.header-content .logo img {
    max-width: 100px;
}

.header-content .partner-logo {
    margin-left: 15px;
}
}