.full-header {
    padding-top: 5px;
    background: #ad2424;
    z-index: 999;
    padding-bottom: 5px;
}
/**/
.header-wrap {
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.header-logo {
    float: left;
    max-width: 185px;
    overflow: hidden;
    max-height: 120px;
    transition: all 0.3s;
}

.header-logo a {
    float: left;
    width: 100%;
    display: flex;
    align-items: center;
}

img.site-logo {
    max-width: 100%;
    max-height: 120px;
}
/**/
.main-menu .header-slogan {
    margin: 0;
    color: #fff;
    text-transform: uppercase;
    font-weight: bold;
    line-height: 1.6;
    text-align: left;
    padding-left: 10px;
}
/* menu */
.main-menu {
	flex: 1;
	text-align: center;
	padding: 0 20px;
}

.header-hotline {
	position: relative;
	color: #fff;
}
.header-hotline a {
	font-size: 13px;
	color: #fff;
	font-weight: bold;
	text-transform: uppercase;
	margin-bottom: 3px;
	display: inline-block;
}
.header-hotline::before {
	content: "";
	height: 2px;
	background-color: #fff;
	opacity: .3;
	transition: all .3s;
	position: absolute;
	bottom: 0;
	left: 20%;
	width: 60%;
	display: inline-block;
}
.header-hotline:hover::before {
	left: 0%;
	width: 100%;
	opacity: 1;
}

@media only screen and (min-width: 1100px) {
    .full-header.sticky .header-logo {
        max-width: 120px;
    }

    .full-header.sticky .main-menu {
        margin-top: 5px;
    }

    .full-header.sticky .header-search {
        margin-top: 10px;
    }
    .sticky .main-menu .header-slogan{
        display: none;
    }
}

@media only screen and (max-width: 1200px) {
    .main-menu {
        float: right;
        margin-top: 0;
        margin-left: 0;
    }

    .header-search {
        margin-top: 0;
    }
}

@media only screen and (max-width: 1100px) {
    .header-logo {
        max-width: 150px;
    }
}

@media only screen and (max-width: 900px) {

   .main-menu {
        display: flex;
        align-items: center;
        justify-content: space-around;
    }
}
@media only screen and (max-width: 768px) {
    .header-hotline {
        display: none;
    }
    .main-menu {
        padding: 0 0 0 10px;
    }
    .main-menu .header-slogan {
        order: -1;
    }
}
@media only screen and (max-width: 550px) {
    .main-menu .header-slogan {
        display: none;
    }
    .main-menu {
        justify-content: flex-end;
    }
}