/*layout*/
.site-header{
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
    z-index: 999;
    transition: 0.5s;
    background-color: transparent;
    padding: 0 80px;
}
.site-header .header-wrap{
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: 0.3s;
    -webkit-transition: 0.3s;
}
.site-header .header-section.header-left{
    display: flex;
    align-items: center;
}
.sticky-header{
    background-color: #fff;
    /*-moz-box-shadow: 0 2px 5px rgba(16,16,16,.07);*/
    /*-webkit-box-shadow: 0 2px 5px rgba(16,16,16,.07);*/
    /*box-shadow: 0 2px 5px rgba(16,16,16,.07);*/
    border-bottom: 1px solid rgba(0,0,0,0.1);
}
.sticky-header .header-wrap{
    height: 70px;
}
.sticky-header .btn-rectangle-normal{
    padding: 15px;
}
.site-header.hide{
    transform: translateY(-100%);
}
/*logo*/
.site-header .header-logo{
    width: 125px;
}
.site-header .header-logo:not(:last-child){
    margin-right: 60px;
}
.site-header .header-logo img{
    width: 100%;
    height: auto;
    padding-top: 8px;
}
/*menu*/
.header-menu{
    margin-right: 35px;
}
.header-menu ul{
    margin: 0 -17.5px;
    white-space: nowrap;
}
.header-menu ul li{
    display: inline-block;
    padding: 0 17.5px;
}
.header-menu ul li .menu-link{
    /*text-transform: uppercase;*/
    font-size: 16px;
    font-weight: 400;
    line-height: 1.56;
    color: var(--color__text);
    /*font-family: 'Roboto', sans-serif;*/
    font-family: 'Poppins', sans-serif;
    transition: 0.3s ease-in-out;
    -webkit-transition:  0.3s ease-in-out;
}
.header-menu ul li .menu-link:hover{
    color: var(--color__logo);
}

.header-right{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

/*button*/
.site-header .btn-rectangle-normal{
    transition: 0.3s;
    -webkit-transition: 0.3s;
}
.btn-rectangle-radius{
    display: inline-block;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    height: 40px;
    padding: 0 25px;
    color: #fff;
    font-weight: 700;
    font-size: 12px;
    text-transform: uppercase;
    background-color: #f75454;
    border-radius: 20px;
    line-height: 40px;
    font-family: 'Roboto', sans-serif;
}
.btn-rectangle-normal{
    display: flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    padding: 20px;
    color: #fff;
    font-weight: 700;
    font-size: 12px;
    text-transform: uppercase;
    background-color: #f75454;
    font-family: 'Roboto', sans-serif;
    box-shadow: 0px 15px 23px rgba(243,72,32,0.13);
}
@media (max-width: 991px){
    .header-middle{
        display: none;
    }
    .site-header{
        padding: 0 15px;
    }
    .site-header .header-wrap{
        height: 70px;
    }
    .btn-rectangle-normal{
        padding: 15px 15px;
    }

    .header-menu {
        display: none;
    }
}
@media (max-width: 768px){

    .site-header .header-wrap{
        justify-content: space-between;
    }
    .site-header .header-logo:not(:last-child){
        margin: 0;
    }
    .site-header .header-left .header-menu{
        display: none;
    }
    .site-header .btn-rectangle-normal{
        padding: 15px;
    }
    .btn-rectangle-normal{
        padding: 20px;
    }
}