﻿/*#region GLOBAL */
:root {
	font-size: 18px;
	--content-size: 1410px;
	--color: #e32930;
	--color2: #ffd21f;
}

@font-face {
	font-family: 'Helveticaneue';
	src: url('../fonts/helveticaneuelight.ttf') format('truetype');
	font-weight: 300;
}

@font-face {
	font-family: 'Helveticaneue';
	src: url('../fonts/helveticaneuelightitalic.ttf') format('truetype');
	font-weight: 300;
	font-style: italic;
}

@font-face {
	font-family: 'Helveticaneue';
	src: url('../fonts/helveticaneuemedium.ttf') format('truetype');
	font-weight: 400;
}

@font-face {
	font-family: 'Helveticaneue';
	src: url('../fonts/helveticaneuebold.ttf') format('truetype');
	font-weight: 600;
}

html, body {
	font-family: 'Helveticaneue', sans-serif;
	font-weight: 300;
	margin: 0;
	padding: 0;
	scroll-behavior: smooth;
	scrollbar-width: thin;
	scrollbar-color: #da8240 #ccc;
}

h1, h2, h3, h4, h5 {
	font-family: 'Barlow', sans-serif;
}

::-webkit-scrollbar { 
	width: 7px; 
} 
  
::-webkit-scrollbar-thumb { 
	background: #da8240; 
} 
  
::-webkit-scrollbar-track { 
	background: #ccc; 
} 

input:focus-visible, textarea:focus-visible {
	outline: none !important;
}

a {
	text-decoration: none;
}

	a:active, a:visited, a:hover {
		text-decoration: none;
		transition: all 100ms ease-in 0ms;
	}

.gd_module img, .gd_banner img {
	max-width: 100%;
	width: 100%;
}

.img-fluid {
	max-width: 100%;
	height: auto;
}
/*#endregion */

/*#region HEADER */
.progress {
	background: linear-gradient(to right,#183885 var(--scroll),transparent 0);
	position: fixed;
	width: 100%;
	height: 4px;
	z-index: 101;
	top: 0;
	opacity: 0.05;
}

#header {
	width: 100%;
	border-bottom: 1px solid #cccccc9e;
}

#header.gd_header.kh_postion {
	position: relative;
}

	#header.sticky {
		position: fixed;
		animation: fadeInDown 0.3s ease 0s;
		z-index: 100;
		top: 0;
	}

		#header.sticky .kh_box_header {
			background-color: #7c1415;
		}

		#header.sticky::after {
			content: "";
			width: 100%;
			height: 100%;
			background-color: #fff;
			position: absolute;
			box-shadow: 0 10px 30px rgba(0,0,0,0.2);
			left: 0;
			top: 0;
			-webkit-transition: opacity 0.3s ease-in-out;
			transition: opacity 0.3s ease-in-out;
			z-index: -1;
		}

.admin-bar #header.sticky {
	top: 32px !important;
}

/*#header.sticky .gd_main_menu .sub-menu {
	top: 60px;
}
*/
#header.sticky .gd_main_menu .gd_menu__primary > li > a {
	padding: 1.5rem 0;
}

.logo {
	align-self: center;
	padding: 7px 0 10px;
}

.logo img {
max-width: 60%;
}
	.logo a {
		display: flex;
		align-items: baseline;
		height: 100%;
	}

	#header.sticky .logo {
		padding: 10px 0;
	}

	#header.sticky .logo a {
		height: 60px;
		/*overflow: hidden;*/
		position: relative;
		width: 160px;
	}

/*Menu*/
.gd_main_menu_container {
	display: flex;
	justify-content: flex-end;
	width: 100%;
	align-items: center;
}

	.gd_main_menu_container .offer {
		display: inline-block;
		background: url(../images/offer.png) no-repeat center center;
		width: 81px;
		height: 71px;
		margin-left: 30px;
	}

.gd_main_menu ul {
	padding: 0;
}

.gd_main_menu .gd_menu__primary {
	display: flex;
	justify-content: flex-start;
	list-style: none;
	margin: 0;
	padding: 0;
	align-items: center;
}

	.gd_main_menu .gd_menu__primary li {
		list-style: none;
		padding: 0 12px;
		position: relative;
	}

		.gd_main_menu .gd_menu__primary li a {
			color: #333;
			display: block;
			padding: 8px 0;
		}

		.gd_main_menu .gd_menu__primary li:last-child {
			padding-right: 0;
		}

	.gd_main_menu .gd_menu__primary > li {
		padding: 0 15px;
	}

		.gd_main_menu .gd_menu__primary > li > a {
			font-size: 1.1rem;
			color: #432b32;
			position: relative;
			text-decoration: none;
			overflow: hidden;
			white-space: nowrap;
			font-weight: 500;
			cursor: pointer;
			padding: 5px 0;
			font-size: 1rem;
			text-transform: uppercase;
		}

			.gd_main_menu .gd_menu__primary > li > a::after, .gd_main_menu .gd_menu__primary > li > a::before {
				content: "";
				position: absolute;
				left: 0;
				background: var(--color);
				height: 2px;
				width: 100%;
				bottom: 0;
				transform: translate(-100%);
				transition: all 300ms ease-in 0ms;
				visibility: hidden;
			}

			.gd_main_menu .gd_menu__primary > li > a:before {
				display: none;
				width: 25px;
				bottom: 0;
				transition: all 300ms ease-in 150ms;
			}

		.gd_main_menu .gd_menu__primary > li:hover > a::after, .gd_main_menu .gd_menu__primary > li:hover > a:before,
		.gd_main_menu .gd_menu__primary > li.current-menu-item > a::after, .gd_main_menu .gd_menu__primary > li.current-menu-item > a:before {
			visibility: visible;
			transform: translate(0);
		}

		.gd_main_menu .gd_menu__primary > li:hover > a, .gd_main_menu .gd_menu__primary .current-menu-item > a {
			color: var(--color) !important;
		}
		.gd_main_menu .gd_menu__primary .current-menu-item > a {
			font-weight: 600;
		}
		.gd_main_menu .gd_menu__primary > li:first-child:hover .fa.fa-home, .gd_main_menu .gd_menu__primary > li.current-menu-item:first-child .fa.fa-home {
			color: var(--color);
		}

	.gd_main_menu .gd_menu__primary .current-menu-item > a {
	}

	.gd_main_menu .gd_menu__primary > li:hover, .gd_main_menu .gd_menu__primary .current-menu-item {
	}

	.gd_main_menu .gd_menu__primary > li:first-child {
		padding-left: 0;
	}

		.gd_main_menu .gd_menu__primary > li:first-child:hover, .gd_main_menu .gd_menu__primary > li.current-menu-item:first-child {
			background: none;
		}

		.gd_main_menu .gd_menu__primary > li:first-child > a {
			font-size: 1rem;
		}

	.gd_main_menu .gd_menu__primary > li.menu-item-has-children::before {
		content: "\e5cf";
		display: none;
		position: absolute;
		right: -2px;
		top: 50%;
		font-family: 'icomoon' !important;
		speak: none;
		font-style: normal;
		font-weight: normal;
		font-variant: normal;
		text-transform: none;
		line-height: 1;
		-webkit-font-smoothing: antialiased;
		-moz-osx-font-smoothing: grayscale;
		-moz-transform: translateY(-50%);
		-ms-transform: translateY(-50%);
		-o-transform: translateY(-50%);
		-webkit-transform: translateY(-50%);
		transform: translateY(-50%);
	}

	.gd_main_menu .gd_menu__primary > li.menu-item-has-children.mega-menu::before {
		display: none;
	}

.gd_main_menu .sub-menu {
	display: block;
	left: 0;
	position: absolute;
	top: 110%;
	z-index: 1000;
	visibility: hidden;
	min-width: 80%;
	-moz-transition: all 0.5s ease 0s;
	-o-transition: all 0.5s ease 0s;
	-webkit-transition: all 0.5s ease 0s;
	transition: all 0.5s ease 0s;
}

	.gd_main_menu .sub-menu.submenu_right {
		right: 100% !important;
		top: 0;
		left: auto;
		margin-right: 1px;
		-moz-transform-origin: right;
		-ms-transform-origin: right;
		-o-transform-origin: right;
		-webkit-transform-origin: right;
		transform-origin: right;
	}

	.gd_main_menu .sub-menu.submenu_left {
		left: 100% !important;
		top: 0;
		right: auto;
		margin-left: 1px;
		-moz-transform-origin: left;
		-ms-transform-origin: left;
		-o-transform-origin: left;
		-webkit-transform-origin: left;
		transform-origin: left;
	}

.gd_main_menu ul.gd_menu__primary > li:not(.mega-menu) .sub-menu {
	box-shadow: 0px 3px 3px #a1a1a1;
	border-top: 0px solid var(--color);
	border-bottom: 2px solid #f0f0f0;
}

.gd_main_menu ul.gd_menu__primary > li:not(.mega-menu) > .sub-menu {
	transform: translateX(-50%) rotateX(90deg);
	left: 50%;
	transform-origin: center top 0;
	-moz-transition: all 0.5s ease 0s;
	-o-transition: all 0.5s ease 0s;
	-webkit-transition: all 0.5s ease 0s;
	transition: all 0.5s ease 0s;
	visibility: hidden;
}

.gd_main_menu ul.gd_menu__primary > li:hover:not(.mega-menu) > .sub-menu {
	opacity: 1;
	transform: translateX(-50%) rotateX(0deg);
	visibility: visible;
}

.gd_main_menu ul.gd_menu__primary > li:not(.mega-menu) .sub-menu li {
	border-bottom: 1px solid #e5e5e5;
	-moz-transition: all 300ms ease-in 0ms;
	-o-transition: all 300ms ease-in 0ms;
	-webkit-transition: all 300ms ease-in 0ms;
	transition: all 300ms ease-in 0ms;
	padding: 0;
}

	.gd_main_menu ul.gd_menu__primary > li:not(.mega-menu) .sub-menu li a {
		background: #fff;
		padding: 8px 15px;
		white-space: nowrap;
		font-size: 1rem;
	}
		
	.gd_main_menu ul.gd_menu__primary > li:not(.mega-menu) .sub-menu li:hover > a {
		background: #ff1f1f;
		color: #fff;
	}

	.gd_main_menu ul.gd_menu__primary > li:not(.mega-menu) .sub-menu li:last-child {
		border: none;
	}

	.gd_main_menu ul.gd_menu__primary > li:not(.mega-menu) .sub-menu li .sub-menu {
		transform: rotateY(90deg);
		margin-top: -3px;
	}

	.gd_main_menu ul.gd_menu__primary > li:not(.mega-menu) .sub-menu li:hover > .sub-menu {
		visibility: visible;
		opacity: 1;
		transform: rotateY(0deg);
	}

.cta_hotline {
	display: inline-block;
	background-color: #f26522;
	color: #fff;
	font-weight: bold;
	padding: 8px 15px;
	line-height: 1;
	border-radius: 1px;
	margin-left: 5px;
}

.gd_header_cta {
	display: flex;
	align-items: center;
	margin-left: 20px;
}

.kh_language_btn {
	display: flex;
	border: 1px solid #c4c4c4;
	border-radius: 20px;
	overflow: hidden;
  /*! background-color: #0077c1; */
}
.kh_box_header {
	padding: 0 30px;
}
.kh_box_header .d-flex.justify-content-between {
	align-items: center;
}
.kh_language_btn .kh_btn {
	padding: 3px 7px;
	border-right: 1px solid #c4c4c4;
	transform: skew(-13deg);
	background-color: #fff;
}
.kh_text_btn {
	transform: skew(13deg);
	padding: 0 5px;
}
.kh_language_btn .kh_btn:last-child {
	border-right: unset;
}
.kh_language_btn .kh_btn.active {
	background-color: #0077c1;
}
.kh_language_btn .kh_btn.active .kh_text_btn {
	color: #fff;
}


.cta_hotline i {
	margin-right: 5px;
}

.cta_hotline:hover {
	background-color: #183885;
	color: #fff;
}

.search-form {
	width: 100%;
	position: absolute;
	left: 0;
	z-index: 10;
	background: rgba(0,0,0,0.92);
	text-align: center;
	height: 55px;
	display: none;
	animation: fadeInDown 0.3s ease 0s;
}

.search_active .search-form {
	display: block;
	position: fixed;
	height: 100vh;
	top: 0;
	z-index: 101;
}

.gd_search__box .search-icon {
	cursor: pointer;
	text-align: center;
	color: var(--color);
	border-radius: 50%;
	border: 1px solid var(--color2);
	width: 38px;
	height: 38px;
	display: flex;
	justify-content: center;
	align-items: center;;    
	z-index: 999999;
	position: sticky;
}
.gd_search__box .search-icon i {
	font-weight: 900;
	font-size: 18px;
}

.search-form .d-flex {
	max-width: 1200px;
	margin: auto;
}

.search-form .form-control {
	background: transparent;
	border: none;
	border-radius: 0;
	height: 55px;
	font-size: 16px;
	color: #fff;
	text-align: left;
}

	.search-form .form-control:focus {
		border: none;
		box-shadow: none;
		background: none;
		color: #fff;
	}

	.search-form .form-control::-moz-placeholder, .search-form .form-control::placeholder {
		/*color: rgba(255,255,255,0.85);*/color: #fff;
	}
	.search-form .form-control::placeholder{
		color: rgba(255,255,255,0.85) !important;
		font-size: 28px;
	}
.search-form [type="submit"] {
	border: none;
	color: #fff;
	background-color: unset;
	padding: 15px;
	text-transform: uppercase;
	cursor: pointer;
	font-weight: bold;
	padding-right: 0;
	padding-bottom: 7px;
}
.search_active .search-form .d-flex {
	position: absolute;
	left: 50%;
	border-bottom: 1px solid rgba(255,255,255,.5);
	transform: translate(-50%, -50%);
	top: 50%;
	justify-content: space-between;
}
.search_active .search-form .form-control {
	padding: 10px 15px;
	background: transparent;
	color: #fff;
	width: 100%;
	border-radius: 0;
	border-top: none;
	border-left: none;
	border-right: none;
	font-size: 30px;
	flex: 1 0 70%;
	font-weight: 100;
	padding-left: 0;
	outline: none;
	text-align: center;
}
.search_active .search-form .far.fa-search {
	font-size: 20px;
	padding-top: 10px;
}
.kh_btn_search {
	display: flex;
}
.far.fa-search {
}
.kh_btn_search .far.fa-search {
	margin-right: 7px;
	color: #a3001c;
}
.kh_txt_search {
	color: rgba(255,255,255,0.85);
	padding-top: 7px;
}

/*Test CTA box header*/
.gd_header_cta .kh_language {
	padding-left: 10px;
}
.hb_languages_box {
	width: 38px;
	height: 38px;
	display: flex;
	align-items: center;
	justify-content: center;
	border: 1px solid var(--color2);
	border-radius: 50%;
}
.kh_icon_hotline {
	height: max-content;
}
.kh_hotline_header {
	align-items: center;
	padding: 3px;
	margin-left: 20px;
	border: 1px solid var(--color2);
	border-radius: 35px;
	background-color: #fff;
}
.kh_icon_hotline a {
	color: #222;
	background-color: var(--color2);
	height: 40px;
	width: 40px;
	display: block;
	text-align: center;
	line-height: 40px;
	border-radius: 50%;
	position: relative;
}


.kh_right_hotline div {
	color: #222;
	font-weight: 500;
	font-size: 12px;
}
.kh_right_hotline a {
	color: var(--color);
	font-size: 1rem;
	font-weight: 600;
	line-height: 1;
}
.kh_right_hotline {
	filter: ;
	display: flex;
	flex-flow: column;
	justify-content: center;
	padding-left: 10px;
	padding-right: 20px;
}

/*#endregion */
/* ----------- Non-Retina Screens ----------- */
@media screen and (max-device-width: 1600px) and (min-device-width: 1440px) {
	.gd_header_cta {
		margin-left: 0;
	}
	.gd_main_menu .gd_menu__primary > li {
		padding: 0 20px;
	}
	.gd_main_menu .gd_menu__primary > li > a{
		font-size: 15px;
	}
	
}
@media screen and (min-device-width: 1600px) and (max-device-width: 1800px) {
/*   .gd_header_cta {
		margin-left: 100px;
	}
	.gd_main_menu .gd_menu__primary > li {
		padding: 0 35px;
	}
	.gd_main_menu .gd_menu__primary > li > a{
		font-size: 1rem;
	}*/
}
@media screen and (min-device-width: 1440px) and (-webkit-min-device-pixel-ratio: 1) {
	:root {
		font-size: 18px;
	}

	.container {
		max-width: 1410px;
	}
}

@media screen and (min-device-width: 1200px) and (max-device-width: 1440px) {
	:root {
		font-size: 15px;
		--content-size: 1170px;
	}

	.container {
		max-width: 1170px;
	}
	.gd_main_menu .gd_menu__primary > li {
		padding: 0 11px;
	}
	.gd_header_cta {
		margin-left: 5px;
	}
	.logo {
		padding: 15px 30px 15px 0;
	}
	.kh_hotline_header {
		padding: 2px;
		background-color: unset;
	}
	.kh_right_hotline div {
		font-size: 9px;
	}
	.kh_right_hotline {
		padding-left: 5px;
		padding-right: 5px;
	}
	.kh_right_hotline a {
		font-size: 15px;
	}
	.kh_hotline_header {
		margin-left: 3px;
	}
}

@media only screen and (max-width: 1850px) {
	.kh_right_hotline {
		display: none;
	}
	.kh_box_header {
		padding: 0 15px;
	}
	#header .kh_icon_hotline a::before {
	  	content: '';
	  	position: absolute;
	  	width: 40px;
	  	height: 40px;
	  	top: 50%;
	  	left: 50%;
	  	transform: translate(-50%, -50%);
	  	background-repeat: no-repeat;
	  	background-position: center;
	  	background-size: cover;
	  	z-index: 2;
	  	font-weight: 800;
	  	color: #fff;
	  	font-size: 1.5rem;
	  	display: flex;
	  	justify-content: center;
	  	align-items: center;
	  	z-index: -1;
	}
	#header .kh_icon_hotline a::after {
	  	content: '';
	  	position: absolute;
	  	width: 40px;
	  	height: 40px;
	  	top: 50%;
	  	left: 50%;
	  	transform: translate(-50%, -50%);
	  	background-color: #fdcc0d;
	  	opacity: 1;
	  	z-index: 1;
	  	-webkit-box-shadow: 0 0 0 0 #fdcc0d;
	  	-moz-box-shadow: 0 0 0 0 #fdcc0d;
	  	-ms-box-shadow: 0 0 0 0 #fdcc0d;
	  	-o-box-shadow: 0 0 0 0 #fdcc0d;
	  	box-shadow: 0 0 0 0 #fdcc0d;
	  	-webkit-animation: ripple 2s infinite;
	  	-moz-animation: ripple 2s infinite;
	  	-ms-animation: ripple 2s infinite;
	  	-o-animation: ripple 2s infinite;
	  	animation: ripple 1.7s infinite;
	  	border-radius: 50%;
	  	z-index: -1;
	}
}

@media only screen and (max-width: 1280px) {
	
	.gd_main_menu .gd_menu__primary > li:first-child > a {
		font-size: 14px;
	}

	.gd_main_menu .gd_menu__primary > li > a {
		font-size: 14px;
	}

	.logo {
		padding: 15px 0 15px 0;
		flex: 0 0 17%;
	}

	.gd_main_menu_container {
		flex: 1;
	}

	.gd_main_menu .gd_menu__primary > li {
		padding: 0 8px;
	}

}


@media only screen and (min-device-width : 1024px) and (max-device-width : 1199px) {
	:root {
		font-size: 15px;
		--content-size: calc(100vw - 30px);
	}

	.container {
		max-width: 100%;
		padding: 0 30px;
	}

	.logo {
		margin-right: 30px;
	}

	.gd_main_menu .gd_menu__primary > li {
		padding: 18px 12px 16px;
	}

		.gd_main_menu .gd_menu__primary > li > a {
			padding: 10px 0;
		}

	#header.sticky .gd_main_menu .gd_menu__primary > li > a {
		padding: 10px 0;
	}
}

@media only screen and ( max-width: 1024px) and ( min-width: 768px) {
	.gd_header_cta {
		padding-right: 50px;
	}

	.gd_main_menu_container {
		position: relative;
	}

	.search-form {
		width: 100vw;
		right: -39px;
		left: auto;
	}

	:root {
		font-size: 14px;
		--content-size: 720px;
	}
}

@media only screen and (max-width: 1024px) {
	#header {
		position: static;
	}
	.logo {
		z-index: 10000;
		padding: 10px 0;
		flex: 0 0 30%;
	}

	/* #region MEAN MENU*/
	/* hide the link until viewport size is reached */
	a.meanmenu-reveal {
		display: none;
	}

	/* when under viewport size, .mean-container is added to body */
	.mean-container .mean-bar {
		background: none;
		padding: 0;
		z-index: 9999;
	}

	.mean-container a.meanmenu-reveal {
		color: var(--color);
		cursor: pointer;
		display: block;
		font-family: Arial;
		font-weight: 700;
		padding: 0;
		text-decoration: none;
		width: 40px;
		background: none;
		border-radius: 4px;
	}

	.gd_menu__mobile.mean-container {
		
	}

	.gd_main_menu_container {
		position: relative;
	}

		.mean-container a.meanmenu-reveal::before {
			content: "MENU";
			font-size: 11px;
			font-weight: 400;
			text-indent: 0px;
			display: block;
			line-height: 1;
			text-align: center;
		}

		.mean-container a.meanmenu-reveal.meanclose::before {
			display: none;
		}

		.mean-container a.meanmenu-reveal span {
			background: var(--color);
			border-radius: 3px;
			display: block;
			height: 2px;
			margin: 4px 0 0 5px;
			width: 30px;
		}

			.mean-container a.meanmenu-reveal span:first-child {
				margin-top: 4px;
			}

	.mean-container .mean-nav {
		position: fixed;
		width: 100vw;
		left: 0;
		top: 0;
		padding: 0;
		z-index: 2000;
		max-height: calc(100vh - 50px);
		overflow-y: scroll;
		scrollbar-width: none;
		-ms-overflow-style: none;
		margin-top: 75px;
	}

		.mean-container .mean-nav::-webkit-scrollbar {
			display: none; /* Chrome Safari */
		}

		.mean-container .mean-nav ul {
			padding: 0;
			margin: 0;
			width: 100%;
			background: var(--color);
			list-style-type: none;
			float: left;
		}


			.mean-container .mean-nav ul li {
				border-top: 1px solid rgba(255,255,255,0.2);
				background: none;
				float: left;
				position: relative;
				width: 100%;
			}

				.mean-container .mean-nav ul li a {
					color: #fff;
					display: block;
					font-size: 1.125rem;
					float: left;
					line-height: 42px;
					margin: 0;
					padding: 0;
					text-align: left;
					text-decoration: none;
					width: 100%;
				}

				.mean-container .mean-nav ul li li a {
					width: 90%;
					padding: 0 5%;
					opacity: 0.75;
					filter: alpha(opacity=75);
					text-shadow: none !important;
					visibility: visible;
				}

		.mean-container .mean-nav > ul > li:first-child {
			border: none;
		}

		.mean-container .mean-nav .sub-menu li a {
			text-transform: none;
			white-space: nowrap;
		}

		.mean-container .mean-nav ul li.mean-last a {
			border-bottom: none;
			margin-bottom: 0;
		}

		.mean-container .mean-nav ul li li li a {
			width: 80%;
			padding: 0 10%;
		}

		.mean-container .mean-nav ul li li li li a {
			width: 70%;
			padding: 0 15%;
		}

		.mean-container .mean-nav ul li li li li li a {
			width: 60%;
			padding: 0 20%;
		}

		.mean-container .mean-nav ul li a:hover {
			background: rgba(255, 255, 255, 0.1);
			font-weight: bold;
		}

		.mean-container .mean-nav ul li a.mean-expand {
			margin-top: -1px;
			width: 45px;
			line-height: 1rem;
			padding: 12px !important;
			text-align: center;
			position: absolute;
			right: 0;
			top: 0;
			z-index: 2;
			font-weight: 300;
			background: none;
			border: none !important;
			/* border-left: 1px solid rgba(255, 255, 255, 0.4) !important; */
			/* border-bottom: 1px solid rgba(255, 255, 255, 0.2) !important; */
			color: rgba(255,255,255,0.5);
		}

			.mean-container .mean-nav ul li a.mean-expand:hover {
				background: none;
			}

	.mean-container .mean-push {
		float: left;
		width: 100%;
		padding: 0;
		margin: 0;
		clear: both;
	}

	.mean-nav .wrapper {
		width: 100%;
		padding: 0;
		margin: 0;
	}

	/* Fix for box sizing on Foundation Framework etc. */
	.mean-container .mean-bar, .mean-container .mean-bar * {
		/*-webkit-box-sizing: content-box;
	-moz-box-sizing: content-box;
	box-sizing: content-box;*/
	}

	.mean-remove {
		display: none !important;
	}

	.home .mean-container a.meanmenu-reveal, .sticky .mean-container a.meanmenu-reveal {
		color: var(--color);
		top: 50%;
		transform: translateY(-50%);
	}

		.home .mean-container a.meanmenu-reveal span, .sticky .mean-container a.meanmenu-reveal span {
			background: var(--color);
		}

	.mean-container .mean-nav > .gd_menu__primary {
		padding: 0 15px;
	}

	.kh_right_hotline {
		display: block;
	}
	.gd_header_cta {
		justify-content: flex-end;
		order: -1;
	}
	.gd_menu__mobile.mean-container {
		display: flex;
		align-items: center;
		margin-left: 20px;
	}

	/* #endregion MEANMENU*/
}

@media only screen and (max-width: 991px) and (min-width: 768px) {
	.kh_hotline_header {
		display: flex !important;
	}
	.mean-container .mean-nav {
		margin-top: 85px;
	}
}

@media only screen and (max-width: 767px) {
	:root {
		font-size: 14px;
		--content-size: calc(100vw - 30px);
	}

	/*.container {
		max-width: 100%;
		padding: 0 30px;
	}*/

	.mean-container .mean-bar {
		right: 15px;
	}
	.kh_box_header {
		padding: 0 15px;
	}
	.gd_header_cta {
	}
	.gd_c_lang {
		border-bottom: none;
	}
	#header.sticky .logo a {
		height: unset;
	}
	.logo {
		max-width: 150px;
	}
	.kh_language_btn .kh_btn {
		padding: 3px 2px;
	}
	.kh_text_btn {
		padding: 0 3px;
	}
	.gd_header_cta {
		margin-left: unset;
	}
	.search-form .form-control::placeholder{
		font-size: 13px;
	}
	.gd_search__box .kh_txt_search{
		display: none;
	}
	.search_active .search-form{
		z-index: 10000;
	}
	.gd_menu__mobile.mean-container {
		display: flex;
		justify-content: center;
		align-items: center;
		margin-left: 15px;
	}
	.home .mean-container a.meanmenu-reveal, .sticky .mean-container a.meanmenu-reveal {
		transform: unset;
		top: 3px;
	}
	.gd_header_cta {
		padding-right: 0;
		order: -1;
	}
}

@media only screen and (min-width: 577px) and (max-width: 636px) {
	.gd_header_cta {
		margin-right: 15px;
	}
}

@media only screen and (max-width: 576px) {
	/*.container {
		max-width: 100%;
		padding: 0 15px;
	}*/

	.logo {
		padding: 7px 0;
	}
	.logo a {
		align-items: center;
	}

	.mean-container .mean-bar {
		top: 18px;
		display: flex;
		align-items: center;
	}
	.home .mean-container .mean-bar{
		top: 0;
	}
	.cta_hotline {
		display: none;
	}
	.gd_c_lang span {
		display: none;
	}

	.logo {
		max-width: unset; 
	}

	.logo {
		flex: 0 0 55%;
	}
	.kh_right_hotline {
		display: none; 
	}

	.kh_icon_hotline a {
		height: 30px;
		width: 30px;
		line-height: 30px;
	}

}
@media only screen and (max-width: 414px) {
	.mean-container .mean-nav {
		margin-top: 68px;
	}
}
@media screen and (max-width: 375px){
	.mean-container .mean-nav .sub-menu li a {
		white-space: inherit;
		line-height: 1.42;
		font-size: 14px;
		padding: 12px 15px;
	}
	.gd_c_lang span {
		display: none;
	}
	.gd_c_lang > img {
		margin-right: 0;
	}
}