@media (min-width: 1024px) {
    .header-desktop{
        display: block;
    }
    .header-mobile{
        display: none;
    }
    .header{

        margin:0 0 50px 0;
    }
    .header-container{
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    /**/
    .header-logo img{
        width: 200px;
    }
    /**/
    .header-right{
        display: flex;
        align-items: center;
        justify-content: flex-end;
    }
    .header-language{
        margin:0 0 0 10px;
    }
    .header-language a{
        display: flex;
        align-items: center;
        height: 36px;
        font-size: 14px;
        font-weight: 600;
        text-transform: uppercase;
        color:var(--bluegray-600);
        transition: .3s;
    }
    .header-language a:hover{

    }
    .header-contact{
        display: flex;
        align-items: center;
        margin:0 0 0 30px;
    }
    .header-contact a{
        font-size: 18px;
        font-weight: 500;
        color: var(--black);
    }
    .header-contact:before{
        content: '\e91c';
        font-family: si-solid;
        font-size: 30px;
        color: var(--brand-main);
        margin:0 10px 0 0;
    }
    .header-offer-control{
        background: var(--bluegray-900);
        margin:0 0 0 30px;
    }
    .header-offer-control span{
        color: var(--brand-main);
    }
    .header-offer-control:hover{
        background: var(--bluegray-700);
    }





}




@media (max-width: 1024px) {
    .header-desktop{
        display: none;
    }
    .header-mobile{
        display: block;
    }
    .header{
        position: fixed;
        top:0;
        left:0;
        right:0;
        z-index: 9;
    }
    .header-container{
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding:10px;
        background: #fff;
        border-bottom: 1px solid var(--bluegray-100);
    }
    .header-container-a{
        display: flex;
        align-items: center;
		padding:0 0 0 50px;
    }

    .header-logo img{
        width: 100px;
       
    }
    .header-logo p{
        display: none;
    }
    .header-menu-open{
		position:absolute;
		top:14px;
		left:10px;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        background: var(--bluegray-50);
        border-radius: 5px;
        margin:0 10px 0 0;
    }
    .header-menu-open:after{
        content: '\e902';
        font-family: si-solid;
        font-size: 20px;
    }
    .header-container-b{
        display: flex;
        align-items: center;
        justify-content: flex-end;
    }


    .header-panel{
        position: fixed;
        top:0;
        left:calc(-100% - 50px);
        bottom:0;
        width: calc(100% - 50px);
        z-index: 9999;
        background: var(--white);
        transition: .4s;
        padding:0 10px;
    }
    .header-panel.show{
        left:0;
    }
    .header-panel-content{
        max-height: 100vh;
        overflow: hidden;
        overflow-y: auto;
    }
    .header-panel-overlay{
        position: fixed;
        top:0;
        left:-100%;
        bottom:0;
        width: 100%;
        z-index: 999;
        background: rgba(0,0,0,0.8);
        transition: .3s;
    }
    .header-panel-overlay.show{
        left:0;
    }
    .header-panel-hide{
        position: absolute;
        top:20px;
        right:0;
        display: flex;
        justify-content: center;
        width: 50px;
        cursor: pointer;
    }
    .header-panel-hide:after{
        content: '\e90b';
        font-family: si-solid;
        font-size: 24px;
        color: var(--white);
    }
    /**/
    .header-panel .header-logo{
        width: 50px;
        padding:10px 0 0 0;
        margin: 0 auto;
    }
    /**/


}