.full-header {
    background-color: #ffffffba;
    position: absolute;
    top: 0;
    z-index: 2;
}
.full-header.sticky {
    top: 0;
    position: sticky;
    z-index: 999;
    -webkit-box-shadow: 1px 1px 10px rgba(0,0,0,.15);
    box-shadow: 1px 1px 10px rgba(0,0,0,.15);
    -webkit-animation: stuckMoveDown .6s;
    animation: stuckMoveDown .6s;
}
@keyframes stuckMoveDown {
 0% {
  -webkit-transform:translateY(-100%);
  transform:translateY(-100%)
 }
 100% {
  -webkit-transform:translateY(0);
  transform:translateY(0)
 }
}
.full-header.sticky,
body:not(.home) .full-header{
    box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.08);
    background-color: #fff;
}
.header-wrap {
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}
.header-logo {
    max-width: 100%;
    overflow: hidden;
    max-height: 120px;
    transition: all 0.3s;
}
.header-logo a {
    width: 100%;
}
img.site-logo {
    display: block;
    max-width: 220px;
    max-height: 120px;
    object-fit: contain;
}

.btn-style {
    background: #BF3127;
    position: relative;
    line-height: 46px;
    padding: 0 32px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    display: inline-block;
    color: #fff !important;
}
.btn-style:hover {
    background-color: #ee395b;
    color: #fff;
}
.header-btn::before{
    content: "";
    border: 1px solid transparent;
    width: 100%;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: absolute;
    top: 4px;
    left: 4px;
    z-index: -1;
}
.sticky .header-btn::before{
    border-color: #BF3127;
}
/**/
.main-menu {
    font-weight: 600;
}

@media only screen and (max-width: 1100px) {
    .main-menu {
        order: 3;
    }
    .header-right {
        flex: 1;
        text-align: right;
    }
}
@media only screen and (max-width: 990px) {
    .full-header{
        overflow: hidden;
    }
    .header-wrap {
        padding: 10px 0;
    }
    img.site-logo {
        max-width: 163px;
        max-height: 75px;
    }
    .btn-style {
        background: #BF3127;
        line-height: 35px;
        padding: 0 20px;
        font-size: 14px;
    }
}
@media only screen and (max-width: 900px) {

}
@media only screen and (max-width: 767px) {

}
@media only screen and (max-width: 640px) {

}
@media only screen and (max-width: 480px) {
    .header-logo {
        padding: 5px 0;
    }
    img.site-logo {
        max-height: 40px;
    }
}