@import url('./fonts.css');
/* container 1650px */

body {
	font-family: 'Roboto', sans-serif;
	font-size: 18px;
	line-height: 26px;
}

img {
	max-width: 100%;
}

a {
	color: #0093d0;
}

a:hover {
	color: #ec3338;
	text-decoration: none;
}

hq, h2, h3, h4, h5, h5 {
	font-family: "Roboto Condensed", sans-serif;
}

.btn {
	padding: 15px 30px;
	font-size: inherit;
	line-height: 1;
	background: #ec3338;
	color: #fff;
	-webkit-transition: .5s ease-in-out;
	-moz-transition: .5s ease-in-out;
	-o-transition: .5s ease-in-out;
	transition: .5s ease-in-out;
}

.btn:hover {
	background: #0093d0;
	color: #fff;
}

.container {
	max-width: 87%;
	padding: 0;
}

.main-menu {
	list-style: none;
	padding: 0;
	margin: 0;
}

.main-menu li a {
	display: block;
	padding: 0 15px 5px;
	font-size: 20px;
	font-weight: 700;
	line-height: 23px;
}

.main-menu li a i {
	font-size: 25px;
}

.main-menu li:first-child a {
	padding-left: 0;
}

.main-menu li:last-child a {
	padding-right: 0;
}

.main-menu li.active a {
	color: #ec3338;
}

.header {
	position: fixed;
	z-index: 111;
	top: 0;
	width: 100%;
	padding: 20px 0;
	pointer-events: none;
}

.header a, .header .btn-menu {
	pointer-events: auto !important;
}

.header.mini {
	padding: 15px 0;
}

.header.mini .logo {
	width: 120px;
	height: 120px;
}

.header-background {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: -1;
	display: flex;
	justify-content: flex-end;
	align-items: stretch;
	flex: 1;
	flex-direction: column;
}

.header-background .top {
	height: 50px;
	width: 100%;
	background: #fff;
}

.header.mini .header-background .top {
	height: 30px;
}

.header-background .bottom {
	flex: 1;
	max-height: calc(100% - 50px);
	display: flex;
	justify-content: flex-end;
	flex-direction: column;
}

.header.mini .header-background .bottom {
	max-height: calc(100% - 30px);
}

.header-background .resize {
	flex: 1;
	width: 100%;
	max-height: 100%;
	background: #fff;
}

.header-background .background {
	max-height: 100%;
	width: 100%;
	filter: drop-shadow(0px 0px 2px rgba(0, 0, 0, 0.1));
	z-index: -1;
}

.header-container {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
}

.logo-container {
	flex: 1;
}

.logo {
	display: block;
	width: 142px;
	height: 142px;
	max-width: 100%;
	object-fit: contain;
	object-position: left top;
}

.logo img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	object-position: center left;
}

.menu-container {
	padding-top: 5px;
	max-width: 86%;
	width: 1356px;
}

.menu-container .main-menu {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
}

.btn-menu {
	display: none;
	width: 22px;
	height: 15px;
	position: relative;
	-webkit-transform: rotate(0deg);
	-moz-transform: rotate(0deg);
	-o-transform: rotate(0deg);
	transform: rotate(0deg);
	-webkit-transition: .5s ease-in-out;
	-moz-transition: .5s ease-in-out;
	-o-transition: .5s ease-in-out;
	transition: .5s ease-in-out;
	cursor: pointer;
}

.btn-menu span {
	display: block;
	position: absolute;
	height: 2px;
	width: 100%;
	background: #ed3338;
	border-radius: 9px;
	opacity: 1;
	left: 0;
	-webkit-transform: rotate(0deg);
	-moz-transform: rotate(0deg);
	-o-transform: rotate(0deg);
	transform: rotate(0deg);
	-webkit-transition: .25s ease-in-out;
	-moz-transition: .25s ease-in-out;
	-o-transition: .25s ease-in-out;
	transition: .25s ease-in-out;
}

.btn-menu span:nth-child(1) {
	top: 0px;
	-webkit-transform-origin: left center;
	-moz-transform-origin: left center;
	-o-transform-origin: left center;
	transform-origin: left center;
}

.btn-menu span:nth-child(2) {
	top: 7px;
	-webkit-transform-origin: left center;
	-moz-transform-origin: left center;
	-o-transform-origin: left center;
	transform-origin: left center;
}

.btn-menu span:nth-child(3) {
	top: 14px;
	-webkit-transform-origin: left center;
	-moz-transform-origin: left center;
	-o-transform-origin: left center;
	transform-origin: left center;
}

.btn-menu.open span:nth-child(1) {
	-webkit-transform: rotate(45deg);
	-moz-transform: rotate(45deg);
	-o-transform: rotate(45deg);
	transform: rotate(45deg);
	top: -1px;
	left: 0px;
}

.btn-menu.open span:nth-child(2) {
	width: 0%;
	opacity: 0;
}

.btn-menu.open span:nth-child(3) {
	-webkit-transform: rotate(-45deg);
	-moz-transform: rotate(-45deg);
	-o-transform: rotate(-45deg);
	transform: rotate(-45deg);
	top: 15px;
	left: 0px;
}

.header-mobile {
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	display: flex;
	justify-content: flex-end;
	z-index: 112;
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	-webkit-transition: .3s all ease-in-out;
	-moz-transition: .3s all ease-in-out;
	-o-transition: .3s all ease-in-out;
	transition: .3s all ease-in-out;
}

.header-mobile.active {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
	-webkit-transition: .3s all ease-in-out;
	-moz-transition: .3s all ease-in-out;
	-o-transition: .3s all ease-in-out;
	transition: .3s all ease-in-out;
}

.header-mobile.active .mobile-wrapper {
	transform: translateX(0%);
	-webkit-transition: .3s all ease-in-out;
	-moz-transition: .3s all ease-in-out;
	-o-transition: .3s all ease-in-out;
	transition: .3s all ease-in-out;
}

.header-mobile .btn-menu {
	margin-top: 0;
}

.mobile-overlay {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background: #000;
	opacity: 0.7;
	z-index: -1;
}

.mobile-wrapper {
	width: 300px;
	max-width: 100%;
	display: flex;
	flex-direction: column;
	background-color: #fff;
	background-image: url('../images/bgFooter.png');
	background-size: 130% 60px;
	background-repeat: no-repeat;
	background-position: 80% bottom;
	transform: translateX(100%);
	-webkit-transition: .3s all ease-in-out;
	-moz-transition: .3s all ease-in-out;
	-o-transition: .3s all ease-in-out;
	transition: .3s all ease-in-out;
}

.mobile-top {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	padding: 20px 30px;
}

.mobile-top .hotline {
	margin-right: 30px;
}

.mobile-nav {
	flex: 1;
	padding: 30px;
	overflow: overlay;
}

.mobile-nav .main-menu li a {
	padding: 10px 0;
}

.mobile-bottom {
	padding: 0 30px 20px;
}

.mobile-bottom .social li a {
	color: #fff;
}

/* ================================================================= */

.section {
	padding: 50px 0;
}

.section.banner {
	padding: 0;
}
.section.banner .banner-container{position:relative;}

.banner {
	position: relative;
	padding-top: 20px !important;
}

.banner .title-big {
	pointer-events: auto;
	color: #fff;
}

.banner .banner-wrapper {
	position: relative;
}

.banner .banner-wrapper>img {
	width: 100%;
	height: 43vw;
	margin-bottom: 7vw;
}

.banner .overlay {
	position: absolute;
	z-index: 1;
	bottom: 0;
}

.banner .overlay-wrapper {
	position: relative;
}

.banner .overlay-wrapper>img {
	width: 100vw;
	max-width: 100%;
	pointer-events: none;
}

.banner .breadcrumbs {
	font-family: 'Roboto Condensed', sans-serif;
	color: #fff;
}

.breadcrumbs {
	margin-bottom: 0;
}

.breadcrumbs a {
	color: #fff;
}

.breadcrumbs a:hover {
	color: #ec3338;
}

.breadcrumbs>i {
	font-size: 9px;
	margin: 0 15px;
}

.banner.mini .title-container {
	top: 57.5%;
}

.banner.mini .banner-wrapper>img {
	margin-bottom: 0vw;
	max-height: 26.5vw;
}

.banner.mini .info-container {
	bottom: -1%;
}

.banner.mini .title-box {
	max-width: 50%;
	align-items: flex-start;
	flex-direction: column;
	margin-left: 0;
}

.banner.mini .title-big {
	font-size: 35px;
	margin-bottom: 10px;
}

.title-container {
	position: absolute;
	top: 65%;
	width: 100%;
	pointer-events: none;
	transform: translateY(-50%);
}

.title-box {
	margin-left: 15px;
	height: 200px;
	width: 40%;
	display: flex;
	align-items: center;
	justify-content: center;
	pointer-events: auto;
	text-shadow: 0 0 5px #1f7dbd;
}

.info-container {
	position: absolute;
	z-index: 3;
	width: 100%;
	bottom: 6%;
	pointer-events: none;
}

.info-box {
	width: 390px;
	max-width: 100%;
	margin-left: auto;
}

.background .image {
	position: absolute;
	z-index: -1;
	height: 90%;
}

.background .content {
	position: absolute;
	z-index: 1;
	bottom: 0;
	width: 100%;
}

.background .overlay {
	width: 100%;
}

.title {
	font-size: 30px;
	font-weight: 500;
	color: #2191d2;
	margin-bottom: 40px;
}

.title-big {
	font-size: 45.5px;
	font-weight: 400;
	letter-spacing: 0.05em;
	transform: scaleY(1.1);
}

.title-big b {
	font-weight: 700;
	letter-spacing: 0;
	transform: scaleY(1);
}

.sub-title {
	color: #2191d2;
	font-size: 24px;
	font-weight: 600;
	margin-bottom: 20px;
}

.description {
	margin-bottom: 0;
}

.seperate {
	width: 100%;
	height: 1px;
	background-color: #cfd3db;
}

.info-group {
	text-align: right;
	pointer-events: auto;
}

.info-group .language {
	margin-bottom: 30px;
}

.info-group .hotline {
	margin-bottom: 5px
}

.info-group .mailto {
	margin-bottom: 15px;
}

.language .language-btn {
	padding: 10px 20px;
	line-height: 1;
	background: transparent;
	border: 1px solid #cfd3db;
	border-radius: 5px;
	color: #0093d0;
}

.language .language-btn:after {
	margin-left: 10px;
}

.language .dropdown-menu {
	right: 0px;
	left: unset !important;
	transform: translate3d(0px, 40px, 0px) !important;
}

.hotline {
	display: flex;
	justify-content: flex-end;
	color: #ec3338;
	-webkit-transition: .3s all ease-in-out;
	-moz-transition: .3s all ease-in-out;
	-o-transition: .3s all ease-in-out;
	transition: .3s all ease-in-out;
}

.hotline-svg i:before {
	font-size: 35px;
	margin-left: 0;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

.hotline-svg {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 30px;
	height: 35px;
	position: relative;
	margin-right: 10px;
}

.hotline-content {
	text-align: left;
}

.hotline-content h6 {
	font-size: 16px;
	font-weight: 400;
	line-height: 1;
	margin-bottom: 0;
}

.hotline-content h5 {
	font-family: 'Roboto', sans-serif;
	font-size: 22px;
	font-weight: 700;
	line-height: 1;
	margin-bottom: 0;
}

.hotline:hover {
	color: #6d6d6d;
}

.mailto {
	display: inline-block;
}

.mailto i {
	font-size: 1.2em;
	margin-right: 10px;
}

.mailto i:before {
	font-size: inherit;
}

.search {
	display: flex;
	justify-content: space-between;
	border-bottom: 1px solid #cfd3db;
}

.search .input {
	flex: 1;
	background: transparent;
	border: 0;
	outline: none;
}

.search .btn {
	padding-bottom: 0px;
	padding-right: 0;
	font-size: 24px;
	color: #0099d9;
	background: transparent;
	-webkit-transition: .3s all ease-in-out;
	-moz-transition: .3s all ease-in-out;
	-o-transition: .3s all ease-in-out;
	transition: .3s all ease-in-out;
}

.search .btn:hover {
	color: #ec3338;
}

.notification {
	position: relative;
	z-index: 1;
	max-width: 60%;
	width: 945px;
	margin-left: auto;
	margin-top: -6vw;
	margin-bottom: 30px;
}

.notification .left-quote {
	width: 35px;
	height: 28px;
	margin-bottom: 20px;
}

.notification .title {
	color: #ec3338;
	margin-bottom: 20px;
}

.sponsor-news {
	max-width: 50%;
	width: 810px;
	padding-top: 40px;
}

.sponsor-news .list {
	display: flex;
	align-items: flex-start;
	justify-content: flex-start;
	flex-wrap: wrap;
	margin-bottom: 25px;
}

.sponsor-news .list li {
	display: flex;
	align-items: flex-start;
	width: 50%;
	padding-right: 15px;
	margin-bottom: 5px;
}

.sponsor-news .more {
	display: inline-block;
	margin-top: 15px;
}

.more {
	font-weight: 700;
	color: #ec3338;
	-webkit-transition: .3s all ease-in-out;
	-moz-transition: .3s all ease-in-out;
	-o-transition: .3s all ease-in-out;
	transition: .3s all ease-in-out;
}

.more:hover {
	color: #0064a3;
}

.more i {
	margin-right: 10px;
}

.list {
	list-style: none;
	padding: 0;
	margin: 0;
}

.list li:before {
	color: #0064a3;
	content: '\f054';
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
	margin-right: 10px;
}

.survey {
	max-width: 37%;
	width: 600px;
	padding: 25px 30px;
	background-color: #ec3338;
	color: #fff;
	border-radius: 5px;
	margin-left: auto;
}

.survey .sub-title {
	color: #fff;
}

.survey .description {
	margin-bottom: 15px;
}

.survey .input-group {
	cursor: pointer;
	align-items: flex-start;
	flex-wrap: nowrap;
	margin-bottom: 10px;
}

.survey .input-group>span+span {
	flex: 1;
}

.survey input[type="radio"] {
	display: none;
}

.survey input[type="radio"]+span {
	content: '';
	width: 20px;
	height: 20px;
	margin-right: 10px;
	background: #fff;
	border-radius: 50%;
	display: inline-block;
	position: relative;
}

.survey input[type="radio"]:checked+span:before {
	content: '';
	display: inline-block;
	width: 50%;
	height: 50%;
	background: #808080;
	border-radius: 50%;
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	-moz-transform: translate(-50%, -50%);
	-o-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
}

.survey .button-group {
	margin-top: 20px;
}

.survey .btn {
	font-weight: 700;
	padding: 10px 30px;
	border-radius: 0;
	color: #000;
	background-color: #fff;
	margin-right: 30px;
	-webkit-transition: .3s all ease-in-out;
	-moz-transition: .3s all ease-in-out;
	-o-transition: .3s all ease-in-out;
	transition: .3s all ease-in-out;
}

.survey .btn:hover {
	background-color: #ababab;
}

.survey a {
	color: #fff;
	-webkit-transition: .3s all ease-in-out;
	-moz-transition: .3s all ease-in-out;
	-o-transition: .3s all ease-in-out;
	transition: .3s all ease-in-out;
}

.survey a:hover {
	color: #0093d0;
}

.icon-box .icon {
	width: 155px;
	height: 155px;
	margin: 15px auto 40px;
}

.icon-box .icon img {
	max-width: 100%;
	height: 100%;
	object-fit: contain;
	object-position: center;
}

.carousel .swiper-container {
	padding-bottom: 60px;
}

.carousel .swiper-pagination-bullet {
	width: 12px;
	height: 12px;
}

.carousel .swiper-pagination-bullet-active {
	background: #ec3338;
}

.carousel .swiper-pagination.swiper-pagination-clickable.swiper-pagination-bullets {
	bottom: 0;
}

.post-article {
	padding: 30px;
	display: block;
	background-color: #0099d9;
	color: #fff !important;
	border-radius: 10px;
	-webkit-transition: .25s all ease;
	-moz-transition: .25s all ease;
	-o-transition: .25s all ease;
	transition: .25s all ease;
}

.post-article .feature {
	position: relative;
	padding-top: 60%;
	width: 100%;
	overflow: hidden;
	margin-bottom: 40px;
}

.post-article .feature img {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	-webkit-transform: translate(-50%, -50%);
	-moz-transform: translate(-50%, -50%);
	-o-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	-webkit-transition: .25s all ease;
	-moz-transition: .25s all ease;
	-o-transition: .25s all ease;
	transition: .25s all ease;
}

.post-article .title {
	font-size: 20px;
	color: #fff;
	margin-bottom: 20px;
	text-align: justify;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
}

.post-article .description {
	text-align: justify;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
}

.post-article:hover {
	background-color: #808080;
}

.post-article:hover .feature img {
	-webkit-transform: translate(-50%, -50%) scale(1.1);
	-moz-transform: translate(-50%, -50%) scale(1.1);
	-o-transform: translate(-50%, -50%) scale(1.1);
	transform: translate(-50%, -50%) scale(1.1);
	-webkit-transition: .25s all ease;
	-moz-transition: .25s all ease;
	-o-transition: .25s all ease;
	transition: .25s all ease;
}

.fancybox {
	display: block;
	width: 100%;
	height: 100%;
}

.fancybox img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

.accordion .title {
	margin-bottom: 20px;
}

.accordion-item {
	padding: 10px 0px 15px;
	padding-left: 40px;
}

.accordion-item .icon {
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 48px;
	width: 67px;
	height: 67px;
	border-radius: 50%;
	background: #ec3338;
	color: #fff;
	margin-right: 30px;
}

.accordion-item span+span {
	flex: 1
}

.accordion-title {
	color: #0099d9;
	font-size: 18px;
	display: flex;
	align-items: center;
	justify-content: flex-start;
	margin-bottom: 0;
	cursor: pointer;
}

.accordion-title .icon {
	background: #0099d9;
}

.accordion-title.collapsed {
	color: #333333;
}

.accordion-title.collapsed .icon {
	background: #d0d0d0;
}

.accordion-wrapper {
	padding-top: 10px;
	padding-bottom: 15px;
	display: flex;
	align-items: start;
	justify-content: flex-start;
}

.accordion-wrapper .content {
	flex: 1;
	padding-top: 20px;
}

.partner-content {
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	margin-bottom: 30px;
}

.partner-content:before {
	content: '';
	width: 100%;
	height: 1px;
	background: #0099d9;
	position: absolute;
	z-index: -1;
	top: 50%;
	pointer-events: none;
}

.partner-content .title {
	padding: 13px 40px;
	background: #0099d9;
	color: #fff;
	border-radius: 5px;
	margin-bottom: 0;
}

.swiper-navigations {
	position: absolute;
	top: 50%;
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	transform: translateY(-50%);
	line-height: 1;
	color: #0099d9;
}

.swiper-nav {
	cursor: pointer;
}

.partner .swiper-next {
	margin-right: -1px;
}

.partner .swiper-prev {
	margin-left: -1px;
}

.partner .swiper-slide img {
	height: 50px;
	max-width: 100%;
	object-fit: contain;
	object-position: center;
	display: block;
	margin: 0px auto;
}

.footer {
	position: relative;
	color: #fff;
}

.footer a {
	color: #fff;
	-webkit-transition: .25s all ease;
	-moz-transition: .25s all ease;
	-o-transition: .25s all ease;
	transition: .25s all ease;
}

.footer a:hover {
	color: #ec3338;
}

.qr-container {
	text-align: center;
}

.qr-container h6 {
	font-size: inherit;
	font-weight: 700;
	margin-bottom: 20px;
	color: #0099d9;
}

.qr-image {
	width: 145px;
	height: 139px;
}

.qr-image img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	object-position: top center;
}

.footer-content {
	max-width: 83%;
	width: 1370px;
	margin-left: auto;
}

.footer-beauty {
	position: relative;
}

.footer-middle {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
}

.footer-info .title {
	font-size: 20px;
	font-weight: 700;
	color: #fff;
	margin-bottom: 20px;
}

.footer-info .list li {
	margin-bottom: 10px;
}

.footer-info .list li i {
	margin-right: 15px;
}

.footer-info .list li:before {
	display: none;
}

.footer-nav {
	display: flex;
	width: 905px;
	max-width: 64%;
	padding-top: 45px;
	margin-left: 100px;
}

.footer-nav .navigations {
	margin-left: auto;
	width: 278px;
	max-width: 30%;
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	flex-direction: column;
	flex-wrap: wrap;
}

.footer-menu {
	display: flex;
	justify-content: space-between;
}

.footer-menu .main-menu li a {
	font-size: inherit;
	font-weight: 400;
	line-height: inherit;
	padding: 0;
	margin-bottom: 15px;
}

.footer-menu .main-menu li:last-child a {
	margin-bottom: 0;
}

.footer-menu .main-menu+.main-menu {
	margin-left: 80px
}

.back-to-top {
	color: #000;
	margin-bottom: 15px;
	margin-left: auto;
}

.back-to-top .icon {
	width: 42px;
	height: 42px;
	border-radius: 50%;
	background: #ec3338;
	color: #fff;
	font-size: 17px;
	line-height: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 10px;
	cursor: pointer;
	-webkit-transition: .25s all ease;
	-moz-transition: .25s all ease;
	-o-transition: .25s all ease;
	transition: .25s all ease;
}

.back-to-top p {
	margin: 0
}

.back-to-top .icon:hover {
	background: #0099d9;
}

.social {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	align-items: flex-start;
	justify-content: flex-start;
	margin-top: 30px;
}

.social li+li {
	margin-left: 25px;
}

.footer-bottom {
	padding-top: 20px;
	padding-bottom: 20px;
}

.copyright {
	font-size: 16px;
	font-weight: 400;
	margin: 0;
}

.footer-background {
	position: absolute;
	top: -50%;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: -1;
}

.footer-background .background {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: top center;
	position: relative;
	left: 30%;
	transform: translateX(-30%);
}

.body-container {
	overflow: hidden;
}

.content-wrapper {
	position: relative;
}

.background-container {
	position: absolute;
	z-index: -1;
	top: 0;
	right: 0;
	bottom: -100%;
	left: 0;
	overflow: hidden;
	pointer-events: none;
}

.background-container.home:before {
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	background-image: url('../images/bgHome.png');
	background-repeat: no-repeat;
	background-position: top;
	background-size: contain;
	/* fixed image background */
	width: 100%;
	min-width: 600px;
	left: 50%;
	-webkit-transform: translateX(-50%);
	-moz-transform: translateX(-50%);
	-o-transform: translateX(-50%);
	transform: translateX(-50%);
}

.background-container.mini:before {
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	background-image: url('../images/bgMini.png');
	background-repeat: no-repeat;
	background-position: top;
	background-size: contain;
	/* fixed image background */
	width: 100%;
	min-width: 600px;
	left: 50%;
	-webkit-transform: translateX(-50%);
	-moz-transform: translateX(-50%);
	-o-transform: translateX(-50%);
	transform: translateX(-50%);
}

.tab-nav {
	display: flex;
	align-items: center;
	justify-content: center;
	padding-bottom: 30px;
}

.tab-nav ul {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	align-items: flex-end;
	justify-content: center;
	border-bottom: 1px solid #d1d1d1;
}

.tab-nav .nav-item+.nav-item a {
	margin-left: 55px;
}

.tab-nav .nav-item a {
	font-weight: 500;
	display: block;
	padding-bottom: 12px;
	line-height: 1;
	position: relative;
	text-align: center;
}

.tab-nav .nav-item a:before {
	content: '';
	display: block;
	width: 0;
	height: 4px;
	position: absolute;
	bottom: -4px;
	left: 50%;
	background: #ec3338;
	-webkit-transition: .25s all ease;
	-moz-transition: .25s all ease;
	-o-transition: .25s all ease;
	transition: .25s all ease;
}

.tab-nav .nav-item a:hover {
	color: #ec3338;
}

.tab-nav .nav-item a:hover:before {
	width: 100%;
	left: 0;
}

.tab-nav .nav-item.active a {
	color: #ec3338;
}

.tab-nav .nav-item.active a:before {
	width: 100%;
	left: 0;
	-webkit-transition: .25s all ease;
	-moz-transition: .25s all ease;
	-o-transition: .25s all ease;
	transition: .25s all ease;
}

.tab-inner {
	padding-top: 20px;
}

.tab-inner .btn {
	margin-top: 15px;
}

.tab-title {
	font-family: 'Roboto Condensed';
	font-weight: 600;
	font-size: 35px;
	margin-bottom: 30px;
}

.tab-inner .fancybox {
	padding: 40px 0;
}

.tab-nav-mobile {
	display: none;
}

.timeline {
	display: flex;
	align-items: flex-start;
	justify-content: flex-start;
	flex-direction: column;
	list-style: none;
	padding: 0;
	margin: 0;
	margin-top: 10px;
	width: 100%;
}

.timeline .timeline-item:before {
	content: '';
	width: 1px;
	height: 100%;
	display: block;
	position: absolute;
	top: 0;
	transform: translateX(50%);
	background: #d7d7d7;
	right: 0;
}

.timeline-item {
	width: 50%;
	position: relative;
	text-align: right;
	padding-top: 30px;
	padding-right: 60px;
	box-sizing: border-box;
}

.timeline-item .label {
	font-family: 'Roboto';
	font-size: 24px;
	line-height: 1;
	color: #207fbf;
	margin-bottom: 30px;
}

.timeline-item .label:before {
	content: '';
	width: 24px;
	height: 24px;
	background: #207fbf;
	display: block;
	position: absolute;
	right: 0;
	transform: translateX(50%);
	border-radius: 50%;
}

.timeline-item .description {
	color: #333333;
}

.timeline .timeline-item:nth-child(even) {
    align-self: flex-end;
    text-align: justify;
    padding-left: 60px;
    padding-right: 0;
}

.timeline .timeline-item:nth-child(even):before {
	right: 100%;
	transform: translateX(-50%);
}

.timeline .timeline-item:nth-child(even) .label:before {
	left: 0;
	transform: translateX(-50%);
}

.payment-button {
	padding-bottom: 20px;
}

.locations {
	margin-left: -15px;
	margin-right: 15px;
}

.locations .list {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
}

.locations .list li {
	max-width: 25%;
	padding: 0 15px;
}

.locations .list li:before {
	content: '';
	display: none;
}

.locations .list li a {
	display: flex;
	align-items: flex-start;
	justify-content: flex-start;
	margin-bottom: 45px;
}

.locations .list .icon {
	width: 50px;
	height: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #207fbf;
	border-radius: 50%;
	margin-right: 10px;
	-webkit-transition: .25s all ease;
	-moz-transition: .25s all ease;
	-o-transition: .25s all ease;
	transition: .25s all ease;
}

.locations .list .icon img {
	width: 40%;
}

.locations .list .content {
	font-size: 17px;
	font-weight: 500;
	line-height: 1;
	flex: 1;
	color: #000;
	-webkit-transition: .25s all ease;
	-moz-transition: .25s all ease;
	-o-transition: .25s all ease;
	transition: .25s all ease;
}

.locations .list .label {
	font-size: inherit;
	margin-bottom: 10px;
}

.locations .list .address {
	font-size: inherit;
	font-weight: 400;
	margin-bottom: 0;
}

.locations .list a:hover .icon {
	background: #ec3338;
}

.locations .list a:hover .content {
	color: #ec3338;
}

.files .list li {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	flex-wrap: nowrap;
}

.files .list li+li {
	margin-top: 20px;
}

.files .list li:before {
	display: none;
}

.files .list .file-item {
	display: flex;
	align-items: flex-start;
	justify-self: flex-start;
	color: #333333;
}

.files .list .file-item:before {
	content: '';
	width: 9px;
	height: 9px;
	display: inline-block;
	background: #959595;
	margin-top: 5px;
	margin-right: 10px;
	border-radius: 50%;
}

.files .list .file-item:hover {
	color: #ec3338;
}

.files .list .label {
	font-size: inherit;
	margin-bottom: 0;
}

.files .list .date {
	color: #999999;
}

.files .list .btn {
	padding: 0;
	background: transparent;
	color: #207fbf;
	margin: 0;
	margin-left: 35px;
}

.files .list .btn:hover {
	color: #ec3338;
}

.files .navigations {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	margin-top: 20px;
}

.files.reports .list li {
	justify-content: flex-start;
}

.project {
	padding-right: 70px;
}

.project .title {
	margin-bottom: 25px;
}

.files.projects .list .file-item:before {
	display: none;
}

.files.projects .list li {
	padding-top: 20px;
	padding-bottom: 20px;
	border-top: 1px solid #e1e1e1;
}

.files.projects .list li+li {
	margin-top: 0;
}

.files.projects .list li:last-child {
	border-bottom: 1px solid #e1e1e1;
}

.posts .post-article {
	margin-bottom: 30px;
}

.posts .navigations {
	display: flex;
	align-items: center;
	justify-content: center;
	margin-top: 10px;
}

.page-number {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 32px;
	height: 32px;
	background: #dcdcdc;
	color: #333333;
	border-radius: 50%;
	margin: 0 2.5px;
}

.page-number:hover {
	background: #797979;
	color: #fff;
}

.page-number.active {
	background: #0099d9;
	color: #fff;
}

.contact-title {
	font-size: 35px;
}

.contact>h6 {
	font-size: 20px;
	font-weight: 600;
	margin-bottom: 20px;
	color: #333333;
}

.contact .list li+li {
	margin-top: 10px;
}

.contact .list li:before {
	display: none;
}

.contact .list li i {
	margin-right: 15px;
	color: #666666;
}

.contact .list li span {
	color: #333333;
}

.input-group {
	margin-bottom: 30px;
}

.input-text {
	padding: 14px 20px;
	line-height: 1;
	width: 100%;
	box-sizing: border-box;
	border: 1px solid #e1e1e1;
	outline: none;
}

.map {
	margin-top: 60px;
}

.map iframe {
	width: 100%;
	height: 36vw;
}

.post-wrapper {
	padding-bottom: 20px;
	border-bottom: 1px solid #d1d1d1;
}

.post-title {
	font-size: 24px;
	font-weight: 600;
	color: #ec3338;
	margin-bottom: 20px;
}

.post-date {
	color: #0099d9;
	margin-bottom: 30px;
}

.image-box .captions {
	font-size: 16px;
	font-weight: 300;
	font-style: italic;
	color: #666666;
	margin-top: 15px;
}

.image-box.center {
	text-align: center;
	margin: 30px auto;
}

.post-share {
	display: flex;
	align-items: center;
	justify-content: flex-end;
}

.post-share>p {
	margin: 0;
}

.post-share ul {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	align-items: center;
	justify-content: center;
}

.post-share li a {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 37px;
	height: 37px;
	background: #999999;
	color: #fff;
	border-radius: 50%;
	font-size: 19px;
	line-height: 1;
	margin-left: 15px;
	-webkit-transition: .25s all ease;
	-moz-transition: .25s all ease;
	-o-transition: .25s all ease;
	transition: .25s all ease;
}

.post-share li a:hover {
	background: #ec3338;
}

.post-related {
	padding-top: 50px;
}

.post-related .title {
	font-size: 25px;
	font-family: "Roboto Condensed", sans-serif;
	font-weight: 600;
	margin-bottom: 30px;
}

.post-related .navigations {
	display: flex;
	margin-top: 30px;
}

.post-related .navigations .page-number+.page-number {
	margin-left: 10px;
}

.post-related .list li:before {
	content: '';
	width: 8px;
	height: 8px;
	background: #999999;
	display: inline-block;
	border-radius: 50%;
	margin-top: 8px;
}

.post-related .list li {
	display: flex;
	align-items: flex-start;
	justify-content: flex-start;
}

.post-related .list li+li {
	margin-top: 15px;
}

.post-related .list li a {
	flex: 1;
	color: #333333;
}

.post-related .list li a:hover {
	color: #ec3338;
}

.btn-stick-bottom {
	position: fixed;
	right: 1rem;
	bottom: 1rem;
	width: 50px;
	height: 50px;
	border-radius: 50%;
	padding: 10px;
	background: #0099d9;
	border:solid 1px #fff;
	z-index:5
}
	.btn-stick-bottom:hover {
		background: #ec3338;
	}

@media(max-width: 1749px) {
	body {
		font-size: 14px;
		line-height: 20px;
	}
	.main-menu li a {
		font-size: 15px;
		line-height: 17px;
		padding: 0 10px 5px;
	}
	.main-menu li a i {
		font-size: 18.75px;
	}
	.logo {
		width: 106.5px;
		height: 106.5px;
	}
	.header {
		padding: 17px 0;
	}
	.header.mini .logo {
		width: 90px;
		height: 90px;
	}
	.menu-container {
		max-width: 82%;
		width: 1017px;
	}
	.title {
		font-size: 22.5px;
		margin-bottom: 30px;
	}
	.title-big {
		font-size: 34px;
	}
	.section {
		padding: 37.5px 0;
	}
	.banner.mini .title-big {
		font-size: 26px;
		margin-bottom: 7.5px;
	}
	.breadcrumbs>i {
		margin: 0 10px;
	}
	.info-box {
		width: 294px;
	}
	.info-group .language {
		margin-bottom: 20px;
	}
	.info-group .mailto {
		margin-bottom: 10px;
	}
    .banner.mini .info-group .mailto { margin-bottom: 5px; }
	.language .language-btn {
		padding: 7.5px 15px;
	}
	.language .dropdown-menu {
		transform: translate3d(0px, 31px, 0px) !important;
	}
	.hotline-svg {
		width: 20px;
		height: 26px;
		margin-right: 7.5px;
	}
	.hotline-svg i:before {
		font-size: 26px;
	}
	.hotline-content h6 {
		font-size: 12px;
	}
	.hotline-content h5 {
		font-size: 16.5px;
	}
	.mailto i {
		margin-right: 7.5px;
	}
	.search .btn {
		font-size: 20px;
	}
	.notification {
		margin-bottom: 20px;
	}
	.notification .left-quote {
		width: 26px;
		height: 20px;
		margin-bottom: 20px;
	}
	.notification .title {
		margin-bottom: 15px;
	}
	.sponsor-news {
		padding-top: 30px;
	}
	.sponsor-news .list {
		margin-bottom: 18px;
	}
	.sponsor-news .list li {
		margin-bottom: 3.75px;
	}
	.sponsor-news .more {
		margin-top: 11px;
	}
	.survey {
		padding: 18px 22.5px;
	}
	.survey input[type="radio"]+span {
		width: 15px;
		height: 15px;
		margin-right: 7.5px;
	}
	.sub-title {
		font-size: 18px;
		margin-bottom: 14px;
	}
	.survey .description {
		margin-bottom: 11px;
	}
	.survey .button-group {
		margin-top: 14px;
	}
	.survey .btn {
		padding: 7.5px 22.5px;
	}
	.icon-box .icon {
		width: 116px;
		height: 116px;
		margin: 11px auto 30px;
	}
	.carousel .swiper-container {
		padding-bottom: 45px;
	}
	.carousel .swiper-pagination-bullet {
		width: 9px;
		height: 9px;
	}
	.post-article {
		padding: 22.5px;
	}
	.post-article .feature {
		margin-bottom: 30px;
	}
	.post-article .title {
		margin-bottom: 15px;
		font-size: 15px;
	}
	.accordion-item {
		padding: 7.5px 0 11px;
		padding-left: 30px;
	}
	.accordion-item .icon {
		width: 50px;
		height: 50px;
		font-size: 36px;
		margin-right: 22.5px;
	}
	.accordion-title {
		font-size: 14px;
	}
	.accordion-wrapper {
		padding: 7.5px 0px 11px;
	}
	.accordion-wrapper .content {
		padding-top: 15px;
	}
	.partner-content {
		margin-bottom: 22.5px;
	}
	.partner-content .title {
		padding: 10px 30px;
	}
	.qr-container h6 {
		margin-bottom: 15px;
	}
	.footer-info {
		width: 480px;
		max-width: 35%;
	}
	.footer-info .title {
		font-size: 15px;
		margin-bottom: 15px;
	}
	.footer-info .list li {
		margin-bottom: 7.5px;
	}
	.footer-nav {
		padding-top: 33px;
		margin-left: 75px;
		justify-content: space-between;
	}
	.footer-menu .main-menu+.main-menu {
		margin-left: 60px
	}
	.footer-menu .main-menu li a {
		margin-bottom: 11px;
	}
	.back-to-top {
		margin-bottom: 11px;
	}
	.social {
		margin-top: 22.5px;
	}
	.footer-bottom {
		padding-top: 15px;
		padding-bottom: 15px;
	}
	.copyright {
		font-size: 12px;
	}
	.tab-nav {
		padding-bottom: 22.5px;
	}
	.tab-nav .nav-item a {
		padding-bottom: 9px;
	}
	.tab-nav .nav-item a:before {
		height: 3px;
	}
	.tab-nav .nav-item+.nav-item a {
		margin-left: 41.25px;
	}
	.tab-inner {
		padding-top: 15px;
	}
	.tab-title {
		font-size: 26px;
		margin-bottom: 22px;
	}
	.tab-inner .fancybox {
		padding: 30px 0;
	}
	.timeline {
		margin-top: 7.5px;
	}
	.timeline-item {
		padding-top: 22.5px;
		padding-right: 45px;
	}
	.timeline-item .label {
		font-size: 18px;
		margin-bottom: 22.5px;
	}
	.timeline-item .label:before {
		width: 18px;
		height: 18px;
	}
	.timeline .timeline-item:nth-child(even) {
		padding-left: 45px;
	}
	.locations .list li a {
		margin-bottom: 33px;
	}
	.locations .list .icon {
		width: 37.5px;
		height: 37.5px;
	}
	.locations .list .content {
		font-size: 14px;
		line-height: 1.1;
	}
	.files.reports .list li+li {
		margin-top: 15px;
	}
	.files .list .file-item:before {
		width: 7px;
		height: 7px;
		margin-top: 3px;
		margin-right: 7.5px;
	}
	.files .list .btn {
		margin-left: 26px;
	}
	.files .navigations {
		margin-top: 15px;
	}
	.project {
		padding-right: 52px;
	}
	.project .title {
		margin-bottom: 18px;
	}
	.files.projects .list li {
		padding: 15px 0;
	}
	.btn {
		padding: 11px 22px;
	}
	.contact-title {
		font-size: 26px;
	}
	.contact>h6 {
		font-size: 15px;
		margin-bottom: 15px;
	}
	.contact .list li+li {
		margin-top: 10px;
	}
	.input-group {
		margin-bottom: 22px;
	}
	.input-text {
		padding: 10px 15px;
	}
	.map {
		margin-top: 45px;
	}
	.post-title {
		font-size: 18px;
		margin-bottom: 15px;
	}
	.post-date {
		margin-bottom: 22px;
	}
	.image-box.center {
		margin: 22px auto;
	}
	.image-box .captions {
		font-size: 14px;
		margin-top: 10px;
	}
	.post-share li a {
		width: 27px;
		height: 27px;
		font-size: 12px;
		margin-left: 10px;
	}
	.post-related {
		padding-top: 37px;
	}
	.post-related .title {
		font-size: 18px;
		margin-bottom: 22px;
	}
	.post-related .list li+li {
		margin-top: 10px;
	}
	.post-related .navigations {
		margin-top: 22px;
	}
	.page-number {
		width: 25px;
		height: 25px;
		font-size: 13px;
	}
	.post-related .navigations .page-number+.page-number {
		margin-left: 5px;
	}
}

@media(max-width: 1199px) {
	body {
		font-size: 14px;
		line-height: 17px;
	}
	.header.mini .logo {
		width: 65px;
		height: 65px;
	}
	.main-menu li a {
		font-size: 12px;
		line-height: 15px;
		padding: 0 7px 5px;
	}
	.main-menu li a i {
		font-size: 14px;
	}
	.banner.mini .title-big {
		font-size: 20px;
		margin-bottom: 5px;
	}
	.banner.mini .title-big {
		font-size: 20px;
		margin-bottom: 5px;
	}
	.banner.mini .banner-wrapper>img {
		margin-bottom: 2vw;
		max-height: 30vw;
	}
	.banner.mini .overlay {
		bottom: 2vw;
	}
	/*.banner .overlay-wrapper>img {
		height: 37vw;
		object-fit: cover;
		object-position: left;
	}*/
	.banner.mini .title-container {
		top: 50%;
	}
	.banner.mini .title-box {
		max-width: 100%;
		width: 100%;
	}
	.banner.mini .info-container {
		position: relative;
		margin-top: -10vw;
	}
	.breadcrumbs>i {
		margin: 0 4px;
		font-size: 10px;
	}
	.logo {
		width: 76px;
		height: 76px;
	}
	.header {
		padding: 15px 0;
	}
	.section {
		padding: 27px 0;
	}
	.title {
		font-size: 16px;
		margin-bottom: 21px;
	}
	.title-big {
		font-size: 27px;
	}
	.sub-title {
		font-size: 14px;
		margin-bottom: 10px;
	}
	.info-container {
		bottom:0%;
	}
	.info-group .language {
		margin-bottom: 14px;
	}
	.info-group .mailto {
		margin-bottom: 10px;
	}
	.language .language-btn {
		padding: 4px 10px;
	}
	.language .dropdown-menu {
		transform: translate3d(0px, 23px, 0px) !important;
	}
	.hotline-svg {
		width: 14px;
		height: 20px;
		margin-right: 4px;
	}
	.hotline-svg i:before {
		font-size: 20px;
	}
	.hotline-content h6 {
		font-size: 10px;
	}
	.hotline-content h5 {
		font-size: 12px;
	}
	.mailto i {
		margin-right: 4px;
	}
	.search .btn {
		font-size: 18px;
	}
	.notification {
		margin-bottom: 14px;
		margin-top: -4vw;
	}
	.notification .left-quote {
		width: 20px;
		height: 14px;
		margin-bottom: 14px;
	}
	.notification .title {
		margin-bottom: 10px;
	}
	.sponsor-news {
		max-width: 50%;
		padding-top: 21px;
		padding-right: 15px;
	}
	.sponsor-news .list li {
		width: 100%;
	}
	.sponsor-news .list {
		margin-bottom: 12px;
	}
	.sponsor-news .list li {
		margin-bottom: 3px;
	}
	.sponsor-news .more {
		margin-top: 8px;
	}
	.survey {
		max-width: 50%;
		padding: 15px 20px;
	}
	.survey .description {
		margin-bottom: 8px;
	}
	.survey .button-group {
		margin-top: 10px;
	}
	.survey .btn {
		padding: 5px 16px;
	}
	.icon-box .icon {
		width: 83px;
		height: 83px;
		margin: 8px auto 21px;
	}
	.carousel .swiper-container {
		padding-bottom: 32px;
	}
	.carousel .swiper-pagination-bullet {
		width: 7px;
		height: 7px;
	}
	.post-article {
		padding: 16px;
	}
	.post-article .feature {
		margin-bottom: 21px;
	}
	.post-article .title {
		margin-bottom: 10px;
	}
	.accordion-item {
		padding: 5px 0 8px;
		padding-left: 21px;
	}
	.accordion-item .icon {
		width: 35px;
		height: 35px;
		font-size: 25px;
		margin-right: 16px;
	}
	.accordion-wrapper {
		padding: 5px 0px 8px;
	}
	.accordion-wrapper .content {
		padding-top: 10px;
	}
	.partner-content {
		margin-bottom: 16px;
	}
	.partner-content .title {
		padding: 7px 20px;
	}
	.footer-content {
		max-width: 100%;
	}
	.footer-menu .main-menu+.main-menu {
		margin-left: 42px
	}
	.back-to-top p {
		color: #fff;
	}
	.social {
		margin-top: 16px;
	}
	.tab-nav {
		padding-bottom: 20px;
	}
	.tab-nav .nav-item+.nav-item a {
		margin-left: 30px;
	}
	.tab-title {
		font-size: 20px;
	}
	.tab-inner .fancybox {
		padding: 20px 0;
	}
	.timeline {
		margin-top: 10px;
	}
	.timeline-item {
		padding-top: 15px;
		padding-right: 30px;
	}
	.timeline-item .label {
		font-size: 16px;
		margin-bottom: 15px;
	}
	.timeline-item .label:before {
		width: 16px;
		height: 16px;
	}
	.timeline .timeline-item:nth-child(even) {
		padding-left: 30px;
	}
	.locations .list li {
		max-width: calc(100% / 3);
	}
	.locations .list li .icon {
		width: 30px;
		height: 30px;
	}
	.project {
		padding-right: 0px;
	}
	.project .title {
		margin-bottom: 15px;
	}
	.project .fancybox {
		padding: 20px 0;
	}
	.input-group {
		margin-bottom: 15px;
	}
	.post-title {
		font-size: 16px;
	}
	.contact-title {
		font-size: 20px;
	}
	.footer-background {
		top: -60%;
	}
}

@media (max-width:991px) {
	.logo {
		width: 58px;
		height: 58px;
	}
	.header.mini {
		padding: 5px 0;
	}
	.header.mini .logo {
		width: 55px;
		height: 55px;
	}
	.header-background .top {
		height: 50px;
	}
	.header.mini .header-background .top {
		height: 43px;
	}
	.header.mini .header-background .bottom {
		max-height: calc(100% - 43px);
	}
	.menu-container {
		display: none;
	}
	.btn-menu {
		display: block;
		margin-top: 10px;
	}
	.title {
		font-size: 17px;
		margin-bottom: 15px;
	}
	.title-big {
		font-size: 20px;
	}
	.banner.mini .banner-wrapper>img {
		max-height: unset;
	}
	.banner.mini .title-container {
		top: 48%;
	}
	.banner.mini .title-box {
		max-width: 100%
	}
	.section {
		padding: 20px 0;
	}
	.notification {
		margin-top: 0;
		max-width: 100%;
	}
	.accordion {
		margin-top: 30px;
	}
	.footer-middle {
		flex-wrap: wrap;
	}
	.footer-nav {
		max-width: 60%;
		margin-left: auto;
		padding-top: 30px;
	}
	.social {
		margin-top: 10px;
	}
	.locations .list li {
		max-width: 50%;
	}
	.files .list .btn {
		margin-left: 15px;
	}
	.form-container {
		margin-top: 30px;
	}
	.contact-title {
		font-size: 18px;
	}
	.files .navigations {
		margin-bottom: 30px;
	}
	.files .list .file-item {
		flex: 1;
	}
    .info-container { position: relative; bottom: unset; margin-top: -18vw; margin-bottom: 20px; }

	.footer{
		padding-bottom:2rem;
	}
	.btn-stick-bottom {
		width: 42px;
		height: 42px;
		padding: 5px;
		right:6.5vw;
	}
}

@media(max-width: 767px) {
	.logo {
		width: 40px;
		height: 40px;
	}
	.title-big {
		font-size: 17px;
	}
	.banner .banner-wrapper>img {
		height: 70vw;
		object-fit: cover;
		position: relative;
		left: 90%;
		transform: translateX(-90%);
	}
	.banner .overlay-wrapper>img {
		height: 50vw;
		object-fit: cover;
		object-position: left center;
	}
	.banner.mini .title-container {
		top: 60%;
	}
	.banner.mini .title-big {
		font-size: 16px;
		margin-bottom: 5px;
	}
	.banner.mini .info-container {
		margin-top: -10vw;
	}
	.breadcrumbs>i {
		margin: 0 3px;
		font-size: 6px;
	}
	.title-container {
		top: 60%;
	}
	.title-box {
		margin-left: 0;
		height: 100px;
		width: 100%;
		justify-content: flex-start;
	}
	.info-container {
		position: relative;
		bottom: unset;
		margin-top: -13vw;
		margin-bottom: 20px;
	}
	.sponsor-news {
		max-width: 100%;
		padding-right: 0;
	}
	.sponsor-news .list li {
		padding-right: 0;
	}
	.survey {
		max-width: 100%;
		width: 100%;
		margin-top: 30px;
	}
	.icon-box .icon {
		margin-bottom: 20px;
	}
	.icon-box .description {
		margin-bottom: 20px;
	}
	.post-article {
		padding: 20px 15px;
	}
	.post-article .feature {
		margin-bottom: 15px;
	}
	.post-article .title {
		margin-bottom: 10px;
	}
	.accordion-item {
		padding-left: 0;
	}
	.accordion-item .icon {
		width: 27px;
		height: 27px;
		font-size: 19px;
		margin-right: 10px;
	}
	.accordion-title {
		font-size: 14px
	}
	.accordion-wrapper .content {
		padding-top: 5px;
	}
	.footer-nav {
		max-width: 100%;
		padding-top: 15px;
	}
	.footer-info {
		max-width: 100%;
	}
	.qr-container {
		margin: 0 auto 30px;
	}
	.timeline-item {
		padding-left: 30px;
		padding-right: 0;
		text-align: justify;
		width: 100%;
	}
	.timeline .timeline-item:nth-child(even) {
		align-self: flex-start;
	}
	.timeline .timeline-item:before {
		right: 100%;
		transform: translateX(-50%);
	}
	.timeline-item .label {
		margin-bottom: 10px;
	}
	.timeline-item .label:before {
		left: 0;
		transform: translateX(-50%);
	}
	.tab-nav {
		display: none;
	}
	.tab-nav-mobile {
		max-width: 100%;
		padding: 0 0 15px;
		border-bottom: 0px solid #cfd3db;
		display: block;
        margin-bottom:15px;
	}
	.tab-nav-mobile .dropdown-toggle {
		padding: 13px 30px;
		line-height: 1;
		width: 100%;
		background: #ec3338;
		color: #fff;
		border: 1px solid #c9c9c9;
		display: flex;
		align-items: center;
		justify-content: space-between;
        display:none;
	}
	.tab-nav-mobile .dropdown-menu {
		width: 100%;
		padding: 0;
		border-radius: 0;
		margin-top: 0;
        display:block; position:static;
        float:none;
        border:0px;
	}
        .tab-nav-mobile .nav-item {
            padding: 10px 15px;
            border-bottom: solid 1px #cfd3db;
        }
            .tab-nav-mobile .nav-item.active {
                background: #ed3338;
                border: 0px;
            }
                .tab-nav-mobile .nav-item.active a {
                    color: #fff;
                }
	.map iframe {
		height: 50vw;
	}
	.footer-menu {
		width: 100%;
	}
	.footer-nav {
		flex-wrap: wrap;
	}
	.footer-nav .navigations {
		flex-direction: row;
		flex-wrap: nowrap;
		width: 100%;
		max-width: 100%;
		margin-top: 10px;
		align-items: flex-end;
	}
	.back-to-top {
		margin-left: 0;
		order: 1;
		margin-bottom: 0;
	}
	.back-to-top p {
		display: none;
	}
	.back-to-top .icon {
		margin-bottom: 0;
	}
	.footer-menu .main-menu {
		width: 50%;
		padding-right: 15px;
	}
	.footer-menu .main-menu+.main-menu {
		margin-left: 0;
	}

    .tab-inner .description {
        margin-bottom:15px;
    }
	
	
}

@media(max-width: 575px) {
	.title-big {
		
	}
	.info-box {
		width: 100%;
	}
}

@media(max-width: 475px) {
	.banner-content {
		margin-top: 45vw;
	}
	.banner.mini .info-container {
		margin-top: -20vw;
	}
	.survey .input-group {
		align-items: flex-start;
		flex-wrap: nowrap;
	}
	.survey .input-group span+span {
		flex: 1;
	}
	.info-group .language {
		margin-top: 30px;
	}
	.footer {
		background: #1577b3;
		padding-top: 30px;
	}
	.qr-container h6 {
		color: #fff;
	}
	.footer-middle {
		padding-top: 20px;
	}
	.footer-info .title {
		font-size: 14px;
	}
	.locations .list li {
		max-width: 100%;
	}
}