/*
Theme Name: Web3B
Theme URI: thietkeweb3b.com
Author: TNS
Author URI: thietkeweb3b.com
Description: 
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: shtheme
Tags: web3b
/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Normalize
# Typography
# Elements
# Forms
# Navigation
	## Links
	## Menus
# Accessibility
# Alignments
# Clearings
## Sidebar - Widgets
# Content
	## Posts and pages
	## Comments
# Media
	## Captions
	## Galleries
## Layout construct
## Shortcode
## Footer
## Menu Mobile
## Custom css
## Responsive
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Normalize
--------------------------------------------------------------*/
@import url('https://fonts.googleapis.com/css?family=Roboto:400,400i,500,500i,700,700i&subset=vietnamese');
body {overflow-x: hidden;font-family: 'Roboto', Arial, sans-serif}
a {color: #ed1b24;}
a:hover, a:active, a:focus, a:visited {text-decoration: none}
img {max-width: 100%;height: auto}
/*--------------------------------------------------------------
# Typography
--------------------------------------------------------------*/
.flex {display: -webkit-box;display: -webkit-flex;display: -ms-flexbox;display: flex}
/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
.site-title, .site-description {font-size: 0;margin: 0}
.site-header .header-content {position: relative}
/* Header style 1 */
.site-header.logo-left .header-content {
	display: table;
	width: 100%;
	padding: 20px 0;
}
.site-header.logo-left .header-content .logo, .site-header.logo-left .header-content .main-navigation {
	display: table-cell;
	vertical-align: middle;
}
/* Header style 2 */
.site-header.logo-center {
}
.site-header.logo-center .logo {
}
/*--------------------------------------------------------------
# Main Navigation
--------------------------------------------------------------*/
.main-navigation {
	background: #ed1b24;
	margin-top: 2px;
	position: relative;
}
.main-navigation::before,
.main-navigation::after {
  content: '';
  position: absolute;
  top: 0;
  width: 10px;
  height: 48px;

  background: none;                /* bỏ bg ảnh cũ */
  background-color: #ed1b24;       /* màu muốn tô */
}

/* Bên trái */
.main-navigation::before {
  left: -10px;
  -webkit-mask: url('lib/images/before-menu.png') no-repeat center / contain;
          mask: url('lib/images/before-menu.png') no-repeat center / contain;
}

/* Bên phải */
.main-navigation::after {
  right: -10px;
  -webkit-mask: url('lib/images/after-menu.png') no-repeat center / contain;
          mask: url('lib/images/after-menu.png') no-repeat center / contain;
}
.site-header.logo-center .main-navigation {
	float: left;
	width: 100%;
}
.main-navigation ul {
	padding: 0;
	margin: 0;
}
.main-navigation ul.menu li {
	position: relative;
	display: block;
}
.main-navigation ul.menu > li {
	float: left;
}
.main-navigation ul.menu li a {
	font-size: 15px;
	color: #fff;
	display: block;
	white-space: nowrap;
	padding: 6px 20px;
	font-weight: normal;
}
.main-navigation ul.menu > li > a {
	padding: 0 30px;
	line-height: 39px;
	/*text-transform: uppercase;*/
}
.main-navigation ul.menu > li.li-home > a:before {
    content: "\f015";
    font-family: FontAwesome;
    margin-right: 5px;
}
.main-navigation ul.menu li > a:hover,
.main-navigation ul.menu li.current-menu-item > a {
	color: #fff;
}
/* Submenu 1 */
.main-navigation ul ul {
	min-width: 260px;
	left: 0;
    position: absolute;
    box-shadow: 0px 5px 5px rgba(0, 0, 0, 0.3);
    opacity: 0;
    visibility: hidden;
    z-index: 99999;
    background: #ed1b24;
    -webkit-transition: -webkit-transform 0.25s ease,opacity 0.5s ease;
    -moz-transition: -moz-transform 0.25s ease,opacity 0.5s ease;
    -o-transition: -o-transform 0.25s ease,opacity 0.5s ease;
    transition: transform 0.25s ease,opacity 0.5s ease;
}
.main-navigation ul li:hover > ul {
    opacity: 1;
    visibility: visible;
}
.main-navigation ul ul li {
	border-top: 1px solid #ccc;
}
/* Submenu 2 */
.main-navigation ul ul ul {
    position: absolute;
    left: 80%;
    top: 0px;
    opacity: 0;
    visibility: hidden;
    -moz-transition: opacity 0.2s 0.01s ease-in-out, left 0.2s 0.1s ease-out, visibility 0.1s 0.1s linear;
    -webkit-transition: opacity 0.2s 0.01s ease-in-out, left 0.2s 0.1s ease-out, visibility 0.1s 0.1s linear;
    -o-transition: opacity 0.2s 0.01s ease-in-out, left 0.2s 0.1s ease-out, visibility 0.1s 0.1s linear;
    transition: opacity 0.2s 0.01s ease-in-out, left 0.2s 0.1s ease-out, visibility 0.1s 0.1s linear;
}
.main-navigation ul ul ul li {
    width: 100%;
    opacity: 1;
}
.main-navigation ul ul li:hover ul {
	opacity: 1;
    left: 100%;
    visibility: visible;
}
/*--------------------------------------------------------------
# Elements
--------------------------------------------------------------*/
.heading {
	margin: 0 0 15px 0;
	padding: 0;
	font-size: 15px;
	color: #ed1b24;
	font-weight: normal;
	line-height: 40px;
	text-transform: uppercase;
    border-bottom: 2px solid #ed1b24; 
}
.heading a {
	position: relative;
	display: inline-block;
	color: #fff;
	background: #ed1b24;
	padding: 0 15px;
	min-width: 265px;
}
.page-title, h1.entry-title {
	font-size: 22px;
	font-weight: normal;
	color: #ed1b24;
	margin: 5px 0 15px 0;
}
.page-title-bar {
    align-items: center;
    padding: 10px 0 20px 0;
    text-align: center;
}
.page-title-bar .title {
    font-size: 24px;
    line-height: 1.4;
    margin-top: 0;
}
.breadcrumb {
	padding: 5px 0;
	margin-bottom: 10px;
	background: none;
}
#back-top {margin: 0}
#back-top a {display: block;-webkit-transition: 1s;-moz-transition: 1s;transition: 1s}
#back-top span {border-radius: 5px;display: inline-block;height: 40px;width: 40px;position: fixed;bottom: 60px;right: 30px;z-index: 9;box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);overflow: hidden;text-indent: 100%;white-space: nowrap;background: #ed1b24 url(lib/images/top.png) no-repeat center 50%;opacity: .5;-webkit-transition: opacity .3s 0s, visibility 0s .3s;-moz-transition: opacity .3s 0s, visibility 0s .3s;transition: opacity .3s 0s, visibility 0s .3s}
#back-top span:hover {opacity: 1}
iframe[name='google_conversion_frame'] {height: 0 !important;width: 0 !important;line-height: 0 !important;font-size: 0 !important;margin-top: -13px;float: left}
.col-xs-15,.col-sm-15,.col-md-15,.col-lg-15 {position: relative;min-height: 1px;padding-right: 15px;padding-left: 15px}
.col-xs-15 {width: 20%;float: left;}
@media (min-width: 768px) {.col-sm-15 {width: 20%;float: left}}
@media (min-width: 992px) {.col-md-15 {width: 20%;float: left}}
@media (min-width: 1200px) {.col-lg-15 {width: 20%;float: left}}
.wpcf7 label {font-weight: 600;display: block}
.wpcf7 div.wpcf7-validation-errors {margin: 2em 0 1em}
.wpcf7 .span.wpcf7-not-valid-tip {margin: 5px 0}
.page_nav {
	text-align: center;
	margin-bottom: 20px;
}
.page_nav * {
	display: inline-block;
	padding: 3px 10px;
	background: #FFF;
	border: 1px solid #ed1b24;
	margin: 0;
}
.page_nav .current, .page_nav .page-numbers:hover {
	background: #ed1b24;
	color: #FFF;
}
.screen-reader-text {display: none}
.btn-primary.active.focus, .btn-primary.active:focus, .btn-primary.active:hover, .btn-primary:active.focus, .btn-primary:active:focus, .btn-primary:active:hover, .open>.dropdown-toggle.btn-primary.focus, .open>.dropdown-toggle.btn-primary:focus, .open>.dropdown-toggle.btn-primary:hover {
	background: #ed1b24;border: none;
}
/*--------------------------------------------------------------
# Alignments
--------------------------------------------------------------*/
.alignleft {display: inline;float: left;margin-right: 1.5em}
.alignright {display: inline;float: right;margin-left: 1.5em}
.aligncenter {clear: both;display: block;margin-left: auto;margin-right: auto}
/*--------------------------------------------------------------
# Clearings
--------------------------------------------------------------*/
.content-sidebar-wrap:before,.content-sidebar-wrap:after {clear: both;display: table;content: " "}
.clear:before,.clear:after,.entry-content:before,.entry-content:after,.comment-content:before,.comment-content:after,.site-header:before,.site-header:after,.site-content:before,.site-content:after,.site-footer:before,.site-footer:after {content: "";display: table;table-layout: fixed}
.clear:after,.entry-content:after,.comment-content:after,.site-header:after,.site-content:after,.site-footer:after {clear: both}
/*--------------------------------------------------------------
# Sidebar - Widgets
--------------------------------------------------------------*/
.widget {
	margin: 0 0 1.5em;
}
.widget select {
	max-width: 100%;
}
.sidebar .widget {
	margin: 0 0 20px 0;
}
.sidebar .widget-title {
	font-size: 15px;
	color: #fff;
	font-weight: normal;
	text-transform: uppercase;
	text-align: left;
	text-indent: 15px;
	background: #ed1b24;
	line-height: 40px;
	height: 40px;
	margin: 0;
	position: relative;
}
.sidebar .widget_nav_menu .widget-title:after {
	position: absolute;
    left: -20px;
    font-family: 'FontAweSome';
    content: "\f039";
    color: #fff;
    top: 2px;
}
.sidebar .widget_nav_menu .widget-title {
	text-indent: 25px;
}
.sidebar .widget_nav_menu ul li a:before {
    margin-right: 10px;
    font-family: 'FontAweSome';
    content: "\f0da";
    color: #ed1b24;
}
.sidebar .widget_nav_menu > div, .widget_supports .list-supporter, 
.sidebar .content-feature-page, .sidebar .slider-products,
.sidebar .list-post-item, .sidebar .widget_text .textwidget {
	border: 1px solid #cccccc;
	border-top: none;
}
.sidebar .list-post-item, .sidebar .content-feature-page {
	padding: 10px;
}
.sidebar ul {
	margin: 0;
	padding: 0;
}
.sidebar ul li {
	display: block;
}
.sidebar .widget-title::before {
  content: '';
  position: absolute;
  width: 10px;
  height: 48px;
  left: -10px;
  top: 0;

  background: none;               /* bỏ ảnh nền cũ */
  background-color: #ed1b24;      /* màu muốn tô */

  -webkit-mask: url('lib/images/before-menu.png') no-repeat center / contain;
          mask: url('lib/images/before-menu.png') no-repeat center / contain;
}
.box-datxe {
	padding: 10px;
}
.box-datxe label {
	font-size: 14px;
	font-weight: 400;
	font-style: italic;
}
.box-datxe input[type="text"],
.box-datxe input[type="tel"],
.box-datxe input[type="email"] {
	border: 1px solid #ccc;
	height: 30px;
	width: 100%;
	padding: 0 10px;
} 
.box-datxe input[type=submit] {
	display: block;
    margin: 0 auto;
    text-transform: uppercase;
    font-size: 16px;
    color: #000;
    height: 30px;
    line-height: 30px;
    padding: 0 35px;
    background: #ed1b24;
    border: 0;
}
.box-datxe .ajax-loader {
	display: none !important;
}
/* Widget Search */
.search-form label {
	width: calc( 100% - 25px );
	float: left;
	margin-bottom: 0;
}
.search-form input[type=search] {
	width: 100%;
    border: none;
    background: none;
    outline-width: 0;
    color: #000;
    font-weight: normal;
    height: 25px;
    padding-left: 10px;
}
.search-form input[type=submit] {
	float: right;
    background: url(lib/images/btsearch.png) center center no-repeat;
    text-indent: -9999px;
    border: none;
    width: 22px;
    height: 25px;
    outline-width: 0;
}
.search-form input[type=search]::-webkit-input-placeholder,.search-form input[type=search]::-moz-placeholder,.search-form input[type=search]:-ms-input-placeholder,.search-form input[type=search]:-moz-placeholder {color: #FFF;font-weight: normal;}
.sidebar .search-form {
	padding: 5px 12px;
	background: #176fc8;
	overflow: hidden;
}
.site-header .search-form {
	position: absolute;
	top: 6px;
	right: 5px;
	width: 200px;
	border-radius: 20px;
}
.site-header input[type=search] {color: #333333}
/* Widget Custom Menu */
.sidebar .widget_nav_menu ul li {
	position: relative;
	padding: 5px 10px;
}
.sidebar .widget_nav_menu ul li:not(:last-child) {
	border-bottom: 1px solid #cccccc;
}
.sidebar .widget_nav_menu ul li a {
	font-size: 14px;
	font-weight: normal;
	display: block;
	line-height: 30px;
	color: #333333;
}
.sidebar .widget_nav_menu .menu-item-has-children .sub-menu {background: #FFF;position: absolute;left: 80%;top: -1px;z-index: 99;opacity: 1;visibility: hidden;width: 200px;border: 1px solid #cccccc;-moz-transition: opacity 0.2s 0.01s ease-in-out, left 0.2s 0.1s ease-out, visibility 0.1s 0.1s linear;
  -webkit-transition: opacity 0.2s 0.01s ease-in-out, left 0.2s 0.1s ease-out, visibility 0.1s 0.1s linear;
  -o-transition: opacity 0.2s 0.01s ease-in-out, left 0.2s 0.1s ease-out, visibility 0.1s 0.1s linear;
  transition: opacity 0.2s 0.01s ease-in-out, left 0.2s 0.1s ease-out, visibility 0.1s 0.1s linear}
.sidebar .widget_nav_menu .menu-item-has-children:hover .sub-menu {left: 100%;opacity: 1;visibility: visible}
/* Widget Recent Posts */
.sidebar .widget_recent_entries ul li {
	padding: 5px 10px;
	border-bottom: 1px solid #cccccc
}
.sidebar .widget_recent_entries ul li:last-child {
	border-bottom: none;
}
.sidebar .widget_recent_entries .post-date {
	display: block;
}
/* Widget Recent Posts */
.widget .list-post-item li {
	margin-bottom: 10px;
}
.widget .list-post-item li:last-child {
	margin-bottom: 0;
}
.widget .list-post-item .post:after {
	clear: both;
}
.widget .list-post-item .alignleft {
	width: 100px;
	margin-right: 10px;
}
.widget .list-post-item .alignright {
	width: 100px;
	margin-left: 10px;
}
.widget .list-post-item .aligncenter {
	text-align: center;
}
.widget .list-post-item h3 {
	margin: 0 0 5px 0;
	font-size: 14px;
	font-weight: 600;
	line-height: 1.4;
	max-height: 40px;
	overflow: hidden;
}
.widget .list-post-item h3 a {
	color: inherit;
}
/* Widget Support */
@media (min-width: 1200px) {
	.widget_supports .list-supporter {
		padding-top: 200px;
		background-image: url(lib/images/bg-support.png);
		background-repeat: no-repeat;
		background-position: top center;
		background-size: contain;
	}
	.widget_supports .support-style-3 {
		padding-top: 0;
		background: none;
	}
}
.widget_supports .support-style-1 {
	background-color: #ed1b24;
}
.widget_supports .support-style-1 .supporter {
	padding: 0 10px 10px 10px;
}
.widget_supports .support-style-1 li {
	padding: 5px 0;
	font-size: 14px;
	color: #FFF;
	border-top: 1px solid #FFF;
}
.widget_supports .support-style-1 li:first-child {
	border-top: none;
}
.widget_supports .support-style-1 li:last-child {
	border-bottom: none;
}
.widget_supports .support-style-1 .fa {
	width: 22px;
	margin-right: 12px;
}
.widget_supports .support-style-2 .supporter {
	margin: 0 8px;
	padding: 5px 8px 5px 50px;
	border-top: 1px solid #dddddd;
	background: url(lib/images/ic-phone.png) 7px 10px no-repeat;
	position: relative;
}
.widget_supports .support-style-2 .supporter:first-child {
	border-top: none;
}
.widget_supports .support-style-2 .name {
	font-size: 13px;
	font-weight: 600;
}
.widget_supports .support-style-2 .phone {
	font-size: 20px;
	color: #048f18;
	font-family: 'Myriad Pro', Arial, sans-serif;
	font-weight: 600;
}
.widget_supports .support-style-2 .skype {
	position: absolute;
	right: 7px;
	bottom: 10px;
	z-index: 1;
}
.widget_supports .support-style-2 .email {
	margin: 0 8px;
	font-weight: 600;
	border-top: 1px solid #dddddd;
	line-height: 30px;
}
.widget_supports .support-style-2 .email a {
	color: #333333;
}
.widget_supports .support-style-3 {
	padding: 5px 0;
}
.widget_supports .support-style-3 ul {
	padding: 10px 15px;
}
.widget_supports .support-style-3 ul li {
}
.widget_supports .support-style-3 .name {
	font-size: 16px;
	text-align: center;
}
.widget_supports .support-style-3 .phone {
	font-size: 30px;
	font-weight: bold;
	color: #ff0000;
	text-align: center;
}
/* Widget Slider Products */
.sidebar .content-feature-page, .sidebar .slider-products {
	padding: 10px 10px 0 10px;
}
.widget_slider_products li .item-product {
	overflow: hidden;
	margin-bottom: 10px;
	padding-bottom: 10px;
	border-bottom: 1px dashed #cccccc;
}
.widget_slider_products li .item-product:last-child {
	border-bottom: none;
	margin-bottom: 0;
}
.widget_slider_products li .alignleft, .widget_slider_products li .alignright {
	width: 86px;
	height: 86px;
	border-radius: 50%;
	overflow: hidden;
	background: #FFF;
    align-items: center;
}
.widget_slider_products li .alignleft {
	margin-right: 15px;
}
.widget_slider_products li .alignright {
	margin-left: 15px;
}
.widget_slider_products li h3 {
	margin: 0 0 5px;
	font-size: 15px;
	line-height: 24px;
	max-height: 48px;
	overflow: hidden;
}
.widget_slider_products li h3 a {
	color: #333333;
}
.widget_slider_products li .price {
	color: #ed1b24;
	margin: 0;
}
.sidebar .widget_listpost_widget ul {
	padding: 20px 10px;
	background: #fafafa;
}
.owl-carousel .owl-nav > div > div {
    background: #f5f5f5;
    padding: 5px 10px;
}
.owl-carousel .owl-nav .fa {font-size: 20px;color: #ed1b24}
.owl-carousel .owl-nav .owl-prev, .owl-carousel .owl-nav .owl-next {
	position: absolute;
	top: 50%;
	opacity: 0;
    transition: opacity .3s, background .3s, box-shadow .3s, -webkit-transform .3s;
    transition: transform .3s, opacity .3s, background .3s, box-shadow .3s;
    transition: transform .3s, opacity .3s, background .3s, box-shadow .3s, -webkit-transform .3s;
}
.owl-carousel .owl-nav .owl-prev {
    -webkit-transform: translateX(20%);
    -ms-transform: translateX(20%);
    transform: translateX(20%);
    left: 2%;
}
.owl-carousel .owl-nav .owl-next {
    -webkit-transform: translateX(-20%);
    -ms-transform: translateX(-20%);
    transform: translateX(-20%);
    right: 2%;
}
.owl-carousel:hover .owl-nav .owl-next, .owl-carousel:hover .owl-nav .owl-prev {
	opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
    background: transparent;
}
.owl-dots {text-align: center;-webkit-tap-highlight-color: transparent;margin: 20px 0 0 0}
.owl-dots .owl-dot {cursor: pointer;cursor: hand;-webkit-user-select: none;-khtml-user-select: none;-moz-user-select: none;-ms-user-select: none;user-select: none}
.owl-dots .owl-dot {display: inline-block;zoom: 1}
.owl-dots .owl-dot span {background: #cccccc;width: 10px;height: 10px;margin: 5px 7px;display: block;-webkit-backface-visibility: visible;-webkit-transition: opacity 200ms ease;-moz-transition: opacity 200ms ease;-ms-transition: opacity 200ms ease;-o-transition: opacity 200ms ease;transition: opacity 200ms ease;-webkit-border-radius: 30px;-moz-border-radius: 30px;border-radius: 30px}
.owl-dots .owl-dot.active span, .owl-theme .owl-dots .owl-dot span:hover {background: #f3c40a}
/* Widget Featured Page */
.widget_featuredpage .entry-title {
	font-size: 15px;
	font-weight: 600;
	line-height: 1.4;
	margin: 0;
}
.widget_featuredpage .entry-title a {
	color: #ed1b24;
}
.widget_featuredpage .alignleft, .widget_featuredpage .alignright {
	width: 30%;
}
.widget_featuredpage .alignleft {
	margin-right: 10px;
}
.widget_featuredpage .alignright {
	margin-left: 10px;
}
.widget_featuredpage .aligncenter {
	margin-bottom: 10px;
}
.widget_featuredpage p {
	font-size: 13px;
	text-align: justify;
}
/* Widget Information */
.widget_information li {
	padding: 3px 0;
}
.widget_information .fa {
	width: 14px;
	margin-right: 5px;
}
/* Widget Social */
.widget_social ul li {display: inline-block;margin-right: 5px;font-size: 20px;}
.widget_social ul li a {
    display: inline-block;
    height: 30px;
    width: 30px;
    color: #333;
    background: #fff;
    box-shadow: 0 3px 5px #616161;
    line-height: 33px;
    border-radius: 50%;
    transition: transform 300ms;
    font-size: 20px;
    text-align: center;
}
.widget_social .icon_facebook a {color: #3b5999}
.widget_social .icon_twitter a {color: #55acee}
.widget_social .icon_google a {color: #dd4b39}
.widget_social .icon_youtube a {color: #cd201f}
.widget_social .icon_linkedin a {color: #0077B5}
.widget_social .icon_pinterest a {color: #bd081c}
.widget_social .icon_instagram a {color: #e4405f}
.widget_social ul li a:hover {transform: translatey(-5px)}
/* Count Per Day */
.sidebar .cpd {
	padding: 5px 10px;
}
.sidebar .cpd li {
	padding: 5px 0;
	border-bottom: 1px solid #cccccc;
}
.sidebar .cpd li:last-child {
	border-bottom: none;
}
/*--------------------------------------------------------------
# Content
--------------------------------------------------------------*/
/*--------------------------------------------------------------
## Posts and pages
--------------------------------------------------------------*/
.sticky {display: block}
.hentry {margin: 0 0 1.5em}
.byline, .updated:not(.published) {display: none}
.single .byline, .group-blog .byline {display: inline}
.page-links {clear: both;margin: 0 0 1.5em}
.entry-content {
	line-height: 25px;
}
.single .entry-content table tr td {
    padding: 8px;
    line-height: 1.42857143;
    border: 1px solid #333;
}
.entry-meta {
	font-size: 13px;
	margin-bottom: 10px;
}
.entry-meta span {
	display: inline-block;
	margin-right: 10px;
}
.entry-meta span .fa {
	color: #ed1b24;
}
.socials-share {
    margin-top: 20px;
    padding: 20px 0 15px 0;
    border-top: 1px solid #ebebeb;
    border-bottom: 1px solid #ebebeb;
}
.socials-share .fb_iframe_widget {
    position: relative;
    top: -6px;
}
.post-next-prev {
	border-bottom: 1px solid #ebebeb;
	margin-bottom: 20px;
}
.post-next-prev-content span {
    display: block;
    font-size: 12px;
    color: #c1c1c1;
    margin-bottom: 7px;
}
.post-next-prev-content a {
    display: block;
    color: #222;
    margin-bottom: 20px;
}
.related-posts .td-related-title {
	font-size: 20px;
}
.related-posts ul {
	padding-left: 0;
    list-style-position: inside;
}
.related-posts ul li {
	margin-bottom: 5px;
}
.related-posts ul li a {
	color: #333333;
}
.sidebar .widget_nav_menu ul li a:hover,.post-next-prev-content a:hover, .related-posts ul li a:hover,.widget_slider_products li h3 a:hover, .widget .list-post-item h3 a:hover, .new-list article .more-link {color: #ed1b24;}
/*--------------------------------------------------------------
## Comments
--------------------------------------------------------------*/
.comments-area .comment-list .comment-content a {word-wrap: break-word}
.comment-form label {display: block}
.comment-form textarea,.comment-form input[type="text"], .comment-form input[type="email"], .comment-form input[type="url"] {width: 100%;padding: 5px 10px}
.comment-form input, .comment-form textarea {border: 1px solid rgba(51, 51, 51, 0.1);color: rgba(51, 51, 51, 0.7)}
.comment-form input[type="submit"] {background: #ed1b24;color: #FFF;padding: 5px 10px}
.comment-list {list-style: none;margin: 0;padding: 0}
.comment-list article, .comment-list .pingback, .comment-list .trackback {border-top: 1px solid #eaeaea;border-top: 1px solid rgba(51, 51, 51, 0.1);padding: 1.6em 0}
.comment-content {padding: 10px 20px 45px;margin: 25px 0 0;font-size: 15px;border: 1px solid #dfdfdf;border-radius: 3px;line-height: 1.5em !important}
.comment-list li .reply {position: absolute;margin: -45px 0 0 10px;padding: 5px 10px}
.comment-list .children {list-style: none;margin: 0}
.comment-list .children > li {padding-left: 0.8em}
.comment-author {padding: 10px 5px 0}
.comment-list li .avatar {background: #fff;float: left;margin: 0 10px 0 0px;border-radius: 50%;-moz-border-radius: 50%}
.comment-list p, .ping-list p {font-weight: normal;text-transform: none;margin: 10px 5px 10px 0;padding: 0;word-wrap: break-word}
.comment-list li .fn, .comment-list li .cfn {font-size: 16px;display: inline-block;margin: 10px 0 0}
.comment-list li .says {display: none}
/*--------------------------------------------------------------
# Media
--------------------------------------------------------------*/
.page-content .wp-smiley, .entry-content .wp-smiley, .comment-content .wp-smiley {border: none;margin-bottom: 0;margin-top: 0;padding: 0}
/* Make sure embeds and iframes fit their containers. */
embed, iframe, object {max-width: 100%}
.videoWrapper {
   position: relative;
   padding-bottom: 56.25%; /* 16:9 */
   padding-top: 25px;
   height: 0;
}
.videoWrapper iframe, .videoWrapper object, .videoWrapper embed{
   position: absolute;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
}
/*--------------------------------------------------------------
## Captions
--------------------------------------------------------------*/
.wp-caption {margin-bottom: 1.5em;max-width: 100%}
.wp-caption img[class*="wp-image-"] {display: block;margin-left: auto;margin-right: auto}
.wp-caption .wp-caption-text {margin: 0.8075em 0}
.wp-caption-text {text-align: center}
/*--------------------------------------------------------------
## Galleries
--------------------------------------------------------------*/
.gallery {margin-bottom: 1.5em}
.gallery-item {display: inline-block;text-align: center;vertical-align: top;width: 100%}
.gallery-columns-2 .gallery-item {max-width: 50%}
.gallery-columns-3 .gallery-item {max-width: 33.33%}
.gallery-columns-4 .gallery-item {max-width: 25%}
.gallery-columns-5 .gallery-item {max-width: 20%}
.gallery-columns-6 .gallery-item {max-width: 16.66%}
.gallery-columns-7 .gallery-item {max-width: 14.28%}
.gallery-columns-8 .gallery-item {max-width: 12.5%}
.gallery-columns-9 .gallery-item {max-width: 11.11%}
.gallery-caption {display: block}
/*--------------------------------------------------------------
## Layout construct 
--------------------------------------------------------------*/
.site-content {
	padding-top: 15px;
}
.sidebar-content .site-main,
.content-sidebar .site-main {
	float: right;
	width: 74.5%;
}
.sidebar-content .sidebar,
.content-sidebar .sidebar {
	float: left;
	width: 23.5%;
}
.content-sidebar .site-main {
	float: left;
}
.content-sidebar .sidebar {
	float: right;
}
.sidebar-content-sidebar .content-sidebar-wrap,
.sidebar-sidebar-content .content-sidebar-wrap,
.content-sidebar-sidebar .content-sidebar-wrap {
	float: left;
	width: 75.5%;
}
.sidebar-content-sidebar .site-main,
.sidebar-sidebar-content .site-main,
.content-sidebar-sidebar .site-main {
	float: right;
	width: 67.5496689%;
}
.sidebar-content-sidebar .sidebar-primary,
.sidebar-sidebar-content .sidebar-primary,
.content-sidebar-sidebar .sidebar-primary {
	float: left;
	width: 31.1258278%;
}
.sidebar-content-sidebar .sidebar-secondary,
.sidebar-sidebar-content .sidebar-secondary {
	float: right;
	width: 23.5%;
}
.sidebar-sidebar-content .sidebar {
	float: left;
}
.sidebar-sidebar-content .content-sidebar-wrap {
	float: right;
}
.content-sidebar-sidebar .sidebar-primary {
	float: right;
}
.content-sidebar-sidebar .sidebar-secondary {
	float: right;
	width: 23.5%;
}
.content-sidebar-sidebar .site-main {
	float: left;
}
.page-template-page-fullwidth .site-main {
	width: 100%;
}
@media (max-width: 992px) {
	.sidebar-content .site-main,.content-sidebar .site-main,.sidebar-content .sidebar,.content-sidebar .sidebar,.sidebar-content-sidebar .content-sidebar-wrap,.sidebar-sidebar-content .content-sidebar-wrap,.content-sidebar-sidebar .content-sidebar-wrap,.sidebar-content-sidebar .site-main,.sidebar-sidebar-content .site-main,.content-sidebar-sidebar .site-main,.sidebar-content-sidebar .sidebar-primary,.sidebar-sidebar-content .sidebar-primary,.content-sidebar-sidebar .sidebar-primary,.sidebar-content-sidebar .sidebar-secondary,.sidebar-sidebar-content .sidebar-secondary,.content-sidebar-sidebar .sidebar-secondary {width: 100%;}
}
/*--------------------------------------------------------------
## Category
--------------------------------------------------------------*/
.new-list article {
	overflow: hidden;
	margin-bottom: 20px;
}
.new-list article h3 {
	margin: 0 0 10px 0;
	font-size: 16px;
	line-height: 1.4;
}
.new-list article h3 a {
	color: #ed1b24;
	font-weight: 600;
}
.new-list article p {
	color: #747474;
	text-align: justify;
}
.new-list article .alignleft {
	width: 35.5%;
	margin-right: 15px;
	overflow: hidden;
}
.new-list article .alignleft img {width: 100%;height: auto;-webkit-transition: all 0.5s ease-in-out;-moz-transition: all 0.5s ease-in-out;-o-transition: all 0.5s ease-in-out;transition: all 0.5s ease-in-out}
.new-list article .alignleft img:hover {transform: scale(1.1);-webkit-transform: scale(1.1)}
.ps-meta-info {
    clear: both;
    overflow: hidden;
    margin-top: 20px;
    padding: 5px 0;
    border-top: 1px solid #e0dede;
    border-bottom: 1px solid #e7e6e6;
    font-size: 13px;
}
.ps-alignleft {
    display: inline;
    float: left;
    margin-right: 15px;
}
.ps-alignright {
    display: inline;
    float: right;
    margin-left: 15px;
}
.ps-inline-sep {
    padding: 0 5px;
}
.post-categories, .post-categories * {
    display: inline-block;
}
/*--------------------------------------------------------------
## Shortcode 
--------------------------------------------------------------*/
.sh-blog-shortcode .element .entry-content {
	margin: 0;
}
.sh-blog-shortcode .element .entry-thumb {
	text-align: center;
}
.sh-blog-shortcode .element .entry-thumb a {
	overflow: hidden;
	display: block;
	height: 160px;
}
.sh-blog-shortcode .element .entry-thumb a img {
	width: auto;
    height: 100%;
	-webkit-transition: all 0.5s ease-in-out;
	-moz-transition: all 0.5s ease-in-out;
	-o-transition: all 0.5s ease-in-out;
	transition: all 0.5s ease-in-out;
}
.sh-blog-shortcode .element .entry-thumb a img:hover {transform: scale(1.1);-webkit-transform: scale(1.1)}
.sh-blog-shortcode .element .entry-title {
	margin: 10px 0 5px 0;
	font-size: 16px;
	font-weight: 400;
	line-height: 1.4;
	text-align: center;
	text-transform: uppercase;
}
.sh-blog-shortcode .element .entry-field {
	margin-bottom: 10px;
}
.sh-blog-shortcode .element .entry-field span {
	display: block;
	line-height: 1.3;
	text-align: center;
}
.sh-blog-shortcode .element .entry-description {
	text-align: justify;
	line-height: 1.4;
}
.sh-blog-shortcode .element .box-lienhe {
    display: block;
    overflow: hidden;
    text-align: center;
}
.sh-blog-shortcode .element .box-lienhe .view-more {
    border: 1px solid #ed1b24;
    border-radius: 2px;
    padding: 0 15px;
    color: #555555;
    font-size: 14px;
    height: 25px;
    display: inline-block;
    line-height: 25px;
    text-align: center;
}
.feature-customer {
	margin-bottom: 20px;
}
.sh-blog-shortcode .element .box-lienhe .lien-he {
    background: #ed1b24;
    border-radius: 2px;
    padding: 0 30px;
    color: #000;
    font-size: 14px;
    height: 25px;
    display: none;
    line-height: 25px;
    float: right;
    text-align: center;
    text-transform: uppercase;
}
/* Blog Shortcode 1 */
.sh-blog-shortcode.style-1 .element .entry-thumb {
	float: left;
	width: 35%;
	margin-right: 15px;
}
.sh-blog-shortcode.style-1 .element .entry-title {
	margin: 0 0 5px 0;
}
.sh-blog-shortcode.style-1 .element .entry-title a {
	color: #ed1b24;
}
.sh-blog-shortcode.style-1 .element .entry-title a:hover {
	color: #ed1b24;
}
.sh-blog-shortcode.style-1 .element .entry-description p {
	margin-bottom: 5px;
}
/* Blog Shortcode 5 */
.sh-blog-shortcode.style-5 .post-inner:before, .sh-blog-shortcode.style-5 .post-inner:after {content: '';display: table}
.sh-blog-shortcode.style-5 .post-inner:after {clear: both;}
.sh-blog-shortcode.style-5 .entry-thumb {
	float: left;
	width: 110px;
	margin-right: 15px;
}
.sh-blog-shortcode.style-5 .element .entry-title {
	margin-top: 0;
}
.sh-blog-shortcode.style-5 .element .entry-description {
	font-size: 13px;
}
/* Blog Shortcode 6 */
.sh-blog-shortcode.style-6 .entry-thumb {
	padding: 3px;
	background: #FFF;
	border: 1px solid #cdcdcd;
}
.sh-blog-shortcode.style-6 .entry-title a {
	color: #333333;
}
.sh-blog-shortcode.style-6 .entry-title a:hover {
	color: #ed1b24;
}
.sh-blog-shortcode.style-6 .first-element-layout, .sh-blog-shortcode.style-6 .second-element-layout {
	margin-bottom: 20px;
}
.sh-blog-shortcode.style-6 .second-element-layout .entry-thumb {
	float: left;
	width: 110px;
	margin-right: 15px;
}
.sh-blog-shortcode.style-6 .second-element-layout .entry-title {
	margin-top: 0;
}
.sh-blog-shortcode.style-6 .second-element-layout .element:not(:last-child) {
	margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid #dfdfdf;
}
.sh-blog-shortcode.style-6 .second-element-layout .element:last-child {
	margin-bottom: 0;
}
.sh-blog-shortcode.style-6 .second-element-layout .element:before,.sh-blog-shortcode.style-6 .second-element-layout .element:after {content: '';display: table;}
.sh-blog-shortcode.style-6 .second-element-layout .element:after {clear: both;}
/* Blog Shortcode 7 */
.sh-blog-shortcode.style-7 .first-element-layout .element .entry-thumb {
	float: left;
	width: 30%;
	margin-right: 20px;
}
.sh-blog-shortcode.style-7 .first-element-layout .element .entry-title {
    margin: 0 0 5px 0;
}
.sh-blog-shortcode.style-7 .second-element-layout {
	margin-bottom: 20px;
}
.sh-blog-shortcode.style-7 .second-element-layout .element {
	margin-bottom: 5px;
}
.sh-blog-shortcode.style-7 .second-element-layout .element .entry-title {
	margin: 0;
}
.sh-blog-shortcode.style-7 .second-element-layout .element .entry-title a:before {
	content: '';
	display: inline-block;
	width: 5px;
	height: 5px;
	background: #ed1b24;
	border-radius: 50%;
	position: relative;
	top: -2px;
	margin-right: 5px;
}
@media (min-width: 992px) {
	.sh-blog-shortcode.style-3 .element:nth-child(3n+1),
	.sh-blog-shortcode.style-4 .element:nth-child(4n+1) {
		clear: both;
	}
}
@media (min-width: 414px) and (max-width: 992px) {
	.sh-blog-shortcode.style-3 .element:nth-child(2n+1),
	.sh-blog-shortcode.style-4 .element:nth-child(2n+1) {
		clear: both;
	}
}
@media (min-width: 414px) {
	.sh-blog-shortcode.style-2 .element:nth-child(2n+1) {
		clear: both;
	}
}
@media (max-width: 414px) {
	.sh-blog-shortcode .element {
		width: 100%;
	}
}
/*--------------------------------------------------------------
## Menu Mobile 
--------------------------------------------------------------*/
.navbar {
	display: none;
	margin-bottom: 0;
	-webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.09);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.09);
    background: #FFF;
    min-height: 46px;
    z-index: 999999;
    background: #ed1b24;
}
/* Breakpoint Responsive  */
@media (max-width: 1024px) {
	#site-navigation {display: none}
	.navbar {display: block}
	.site {padding-top: 50px}
	.logged-in .site {padding-top: 14px}
}
@media (max-width: 782px) {
	.logged-in .site {padding-top: 0}
}
.navbar-brand {
	color: #FFF;
	height: 46px;
	padding: 12px 15px;
	/*position: absolute;
	left: 50%;
    transform: translate(-50%, 0);*/
}
.navbar-brand img {max-height: 30px;}
#mobilenav {background: #1e1e1e;position: fixed;height: 100%;width: 250px;top: 0;font-size: 0.9em;left: 0;overflow-x: hidden;overflow-y: scroll;-webkit-transition: all 0.3s ease-in-out 0s;-moz-transition: all 0.3s ease-in-out 0s;transition: all 0.3s ease-in-out 0s;-webkit-transform: translate(-250px);-moz-transform: translate(-250px);-ms-transform: translate(-250px);-o-transform: translate(-250px);transform: translate(-250px);z-index: 9999999;}
#mobilenav.opened {-webkit-transform: translate(0px);-moz-transform: translate(0px);-ms-transform: translate(0px);-o-transform: translate(0px);transform: translate(0px);z-index: 9999999;}
.toplg {padding: 10px;text-align: center;}
.toplg img {max-width: 150px;margin: 0 auto;}
#mobilenav h3, #mobilenav p {color: #f2f2f2;text-align: center;font-size: 18px;}
#mobilenav .mobile-menu {margin: 15px 0;padding: 0 10px;}
#mobilenav li {display: block;position: relative;}
#mobilenav li a {color: #fff;position: relative;display: block;text-align: left;margin: 0;padding: 5px 10px;line-height: 25px;-webkit-transition: all 0.35s linear;-moz-transition: all 0.35s linear;-o-transition: all 0.35s linear;transition: all 0.35s linear;}
#mobilenav li.current-menu-item > a, #mobilenav li:hover > a {background: #282d36;}
#mobilenav .arrow {border-radius: 0;position: absolute;top: 6px;right: 5px;width: 25px;height: 25px;cursor: pointer;text-align: center;font-family: "FontAwesome";line-height: 25px;vertical-align: top;color: #FFF;-webkit-transition: all 0.25s ease 0s;-moz-transition: all 0.25s ease 0s;transition: all 0.25s ease 0s;}
#mobilenav .arrow:before {content: "\f067";}
#mobilenav li.menu-item-has-children.open>.arrow:before {content: "\f068";}
#mobilenav ul.sub-menu {display: none;list-style: none;margin: 0;padding: 0 0 0 10px;}
.panel-overlay {opacity: 0;filter: alpha(opacity=0);}
.panel-overlay.active {background: #000;position: fixed;left: 0;right: 0;top: 0;bottom: 0;z-index: 999999;min-height: 100vh;opacity: 0.35;filter: alpha(opacity=35);-webkit-transition: opacity 0.2s ease-in-out 0s;-moz-transition: opacity 0.2s ease-in-out 0s;transition: opacity 0.2s ease-in-out 0s;}
#showmenu {position: fixed;top: 0;right: 10px;z-index: 5;}
#hamburger .hamburger{margin-left:10px}
.hamburger{padding:10px;height:45px;display:inline-block;cursor:pointer;-webkit-transition-property:opacity,-webkit-filter;transition-property:opacity,filter;transition-property:opacity,filter,-webkit-filter;-webkit-transition-duration:.15s;transition-duration:.15s;-webkit-transition-timing-function:linear;transition-timing-function:linear;font:inherit;color:inherit;text-transform:none;background-color:transparent;border:0;margin:0;overflow:visible}
.hamburger-box{width:30px;height:24px;display:inline-block;position:relative}
.hamburger-inner{display:block;top:50%;margin-top:-2px}
.hamburger-inner,.hamburger-inner::after,.hamburger-inner::before{width:30px;height:2px;background-color:#FFF;border-radius:2px;position:absolute;-webkit-transition-property:-webkit-transform;transition-property:transform;transition-property:transform,-webkit-transform;-webkit-transition-duration:.15s;transition-duration:.15s;-webkit-transition-timing-function:ease;transition-timing-function:ease}
.hamburger-inner::after,.hamburger-inner::before{content:"";display:block}
.hamburger-inner::before{top:-10px}.hamburger-inner::after{bottom:-10px}
.hamburger--collapse .hamburger-inner::before{-webkit-transition:top .12s .3s cubic-bezier(.33333,.66667,.66667,1),-webkit-transform .15s cubic-bezier(.55,.055,.675,.19);transition:top .12s .3s cubic-bezier(.33333,.66667,.66667,1),transform .15s cubic-bezier(.55,.055,.675,.19);transition:top .12s .3s cubic-bezier(.33333,.66667,.66667,1),transform .15s cubic-bezier(.55,.055,.675,.19),-webkit-transform .15s cubic-bezier(.55,.055,.675,.19)}
.hamburger--collapse .hamburger-inner::after{top:-20px;-webkit-transition:top .3s .3s cubic-bezier(.33333,.66667,.66667,1),opacity .1s linear;transition:top .3s .3s cubic-bezier(.33333,.66667,.66667,1),opacity .1s linear}
.hamburger--collapse .hamburger-inner{top:auto;bottom:0;-webkit-transition-duration:.15s;transition-duration:.15s;-webkit-transition-delay:.15s;transition-delay:.15s;-webkit-transition-timing-function:cubic-bezier(.55,.055,.675,.19);transition-timing-function:cubic-bezier(.55,.055,.675,.19)}
.hamburger--collapse.is-active .hamburger-inner{-webkit-transform:translate3d(0,-10px,0) rotate(-45deg);transform:translate3d(0,-10px,0) rotate(-45deg);-webkit-transition-delay:.32s;transition-delay:.32s;-webkit-transition-timing-function:cubic-bezier(.215,.61,.355,1);transition-timing-function:cubic-bezier(.215,.61,.355,1)}
.hamburger--collapse.is-active .hamburger-inner::before{top:0;-webkit-transform:rotate(-90deg);-ms-transform:rotate(-90deg);transform:rotate(-90deg);-webkit-transition:top .12s .18s cubic-bezier(.33333,0,.66667,.33333),-webkit-transform .15s .42s cubic-bezier(.215,.61,.355,1);transition:top .12s .18s cubic-bezier(.33333,0,.66667,.33333),transform .15s .42s cubic-bezier(.215,.61,.355,1);transition:top .12s .18s cubic-bezier(.33333,0,.66667,.33333),transform .15s .42s cubic-bezier(.215,.61,.355,1),-webkit-transform .15s .42s cubic-bezier(.215,.61,.355,1)}
.hamburger--collapse.is-active .hamburger-inner::after{top:0;opacity:0;-webkit-transition:top .3s cubic-bezier(.33333,0,.66667,.33333),opacity .1s .27s linear;transition:top .3s cubic-bezier(.33333,0,.66667,.33333),opacity .1s .27s linear}
/*--------------------------------------------------------------
## Footer 
--------------------------------------------------------------*/
.site-footer {
	color: #000;
}
.site-footer .wrap {
	background: #ed1b24;
	padding: 10px 15px;
}
.site-footer p {
	margin-bottom: 0;
}
.site-footer a {
	color: #fff;
}
.footer-widgets h4.widget-title {
	font-weight: 600;
	font-size: 20px;
	text-transform: uppercase;
    color: #fff;
}
.footer-widgets .widget_nav_menu ul.menu li a:before {
    margin-right: 10px;
    font-family: 'FontAweSome';
    content: "\f0da";
    color: #fff;
}
.footer-widgets .widget_nav_menu ul.menu li {
    line-height: 30px;
}
.footer-widgets ul {
    padding-left: 0;
    list-style: none;
}

.footer-widgets ul li{
    color: #fff;
} 

.site-info .wrap {
	background: #000;
}
.site-info a,
.site-info p {
	color: #fff;
}
/*--------------------------------------------------------------
## Custom Css 
--------------------------------------------------------------*/
.timkiem .container {
    position: relative;
}
.timkiem .widget {
    margin-bottom: 0;
}
.timkiem .search-form {
    position: absolute;
    top: -32px;
    right: 15px;
    width: 200px;
    border-radius: 2px;
    background: #fff;
}
/*--------------------------------------------------------------
## Responsive 
--------------------------------------------------------------*/
@media (max-width: 1200px) {
}
@media (max-width: 992px) {
}
@media (max-width: 768px) {
	.site-info, .site-info * {
		text-align: center;
	}
}
@media (max-width: 414px) {
}
@media (max-width: 320px) {
}

#searchform {
    display: flex;
}

.search-dv {
    margin-top: 12px;
}

.search-dv input[type="text"] {
    width: 100%;
    height: 40px;
}

.btn-search-dv {
    background-color: #ed1b24;
}

.btn-search-dv i {
    color: #fff;
}

.search .search-dv {
    width: 50%;
    margin: 20px auto;
}

.page-title-none {
    font-size: 14px;
    text-align: center;
    color: red;
    margin: 40px 0;
}

.col4Custom {
    background-color: teal;
    border: 1px solid #4682b4;
    min-height: 300px;
}
.uppercase {
    text-transform: uppercase;
}
.ant-modal-mask,
.ant-image-preview-mask {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1000;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7) !important;
    filter: alpha(opacity=50);
}
.wr_popup_info_register img {
    cursor: pointer;
    border-radius: 15px;
}
.close1 {
    position: absolute;
    right: 0;
    top: 0;
    width: 32px;
    height: 32px;
    opacity: 0.4;
    cursor: pointer;
}
.close1:hover {
    opacity: 1;
}
.close1:before,
.close1:after {
    position: absolute;
    left: 15px;
    content: ' ';
    height: 33px;
    width: 2px;
    background-color: #fff;
}
.close1:before {
    transform: rotate(45deg);
}
.close1:after {
    transform: rotate(-45deg);
}
.wr_popup_info_register .ant-modal-close-x {
    width: 32px !important;
    height: 32px !important;
    line-height: 32px !important;
}
.wr_popup_info_register .ant-modal-body,
.wr_popup_info_register .ant-modal-content {
    padding: 0 !important;
    background-color: transparent !important;
}
.page-search {
    width: 100%;
    padding-top: 30px;
}
html,
body {
    padding: 0;
    margin: 0;
    font-family: Roboto, helvetica neue, Helvetica, Arial, Ubuntu, sans-serif;
    font-size: 16px;
    position: relative;
    height: 100%;
}
h1 {
    font-size: 28px;
}
h2 {
    font-size: 20px;
}
h3 {
    font-size: 18px;
}
h4 {
    font-size: 16px;
}
h5 {
    font-size: 14px;
}
h6 {
    font-size: 12px;
}
* {
    box-sizing: border-box;
}
a {
    color: inherit;
    text-decoration: none;
}
img {
    width: 100%;
}
a {
    transition: unset !important;
}
.no-select {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
.wrap-slide {
    position: relative;
}
.next-btn,
.prev-btn {
    background: #f7941e;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    opacity: 0.8;
    cursor: pointer;
    transition: all 0.5s;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    align-items: center;
    justify-content: center;
    user-select: none;
}
.next-btn img,
.prev-btn img {
    width: 9px;
    height: auto;
}
.next-btn {
    right: -65px;
}
.next-btn:hover {
    opacity: 1;
}
.prev-btn {
    left: -65px;
}
.prev-btn:hover {
    opacity: 1;
}
.form-group {
    margin-bottom: 0;
}
.ant-select {
    font-size: 16px !important;
    line-height: 24px !important;
    color: #313131 !important;
    width: 100%;
}
.ant-select-selector {
    padding-left: 20px !important;
    height: 50px !important;
    border: 1px solid rgba(49, 49, 49, 0.3) !important;
    box-sizing: border-box;
    border-radius: 4px !important;
    margin-bottom: 10px !important;
    display: flex !important;
    align-items: center !important;
}
.ant-select-show-search.ant-select-single:not(.ant-select-customize-input) .ant-select-selector input {
    height: 100% !important;
    padding-left: 7px !important;
}
.ant-select-arrow {
    position: absolute !important;
    transform: translateY(-50%) !important;
    right: 20px !important;
    margin-top: 0 !important;
    color: #313131 !important;
}
.ant-select-item {
    padding: 7px 20px !important;
}
.ant-select-dropdown {
    padding: 0 !important;
}
.ant-select-item-option-active:not(.ant-select-item-option-disabled),
.ant-select-item-option-selected:not(.ant-select-item-option-disabled) {
    color: #000 !important;
    background: rgba(245, 130, 32, 0.18) !important;
}
.accordion {
    width: 100%;
}
.accordion .accordion-title {
    padding: 12px 0 12px 4px;
    font-weight: 700;
    font-size: 20px;
    line-height: 30px;
    text-transform: uppercase;
    margin-bottom: 1px;
    cursor: pointer;
}
.accordion .accordion-title:hover {
    background: #fafafa;
}
.accordion .accordion-title img {
    max-width: 36px;
}
.table thead th,
.table thead td {
    vertical-align: inherit;
}
.wr_table {
    overflow-x: auto;
    overflow-y: auto;
    max-height: 60vh;
}
.wr_table::-webkit-scrollbar-track {
    border-radius: 10px;
    background-color: #efefef;
    opacity: 0.2;
}
.wr_table::-webkit-scrollbar {
    width: 8px;
    background-color: #efefef;
    opacity: 0.2;
}
.wr_table::-webkit-scrollbar-thumb {
    border-radius: 10px;
    background-color: #c4c4c4;
    opacity: 0.8;
}
.content-inline {
    padding: 20px 15px 40px;
}
.slick-slide.slick-active {
    z-index: 9999 !important;
}
table.gsc-search-box tbody {
    background: 0 0 !important;
}
input.gsc-input {
    background: 0 0 !important;
    text-overflow: ellipsis;
    overflow: hidden;
}
.gsc-search-button-v2 {
    width: 60px;
    height: 50px;
    border-radius: 4px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: none;
    margin: 0;
    padding: 0;
    background: #f7941e !important;
    transition: 0.3s;
    outline: 0;
}
.gsc-search-button-v2:hover {
    background: #0072bc !important;
}
.gsc-input-box {
    margin-right: 10px;
    border-radius: 4px !important;
    padding: 0;
}
table tr:last-child td.gsib_b {
    display: none;
}
.gsib_a {
    padding: 13px 20px;
}
table.gsc-search-box td.gsc-input {
    padding-right: 0;
}
@media screen and (min-width: 576px) and (max-width: 10000px) {
    .visible-xs {
        display: none;
    }
}
@media screen and (min-width: 0px) and (max-width: 575.99px) {
    .hidden-xs {
        display: none;
    }
}
.visible-xs.foo12 {
    filter: brightness(0) invert(1);
}
.accordion-title {
    user-select: none;
}
.accordion .accordion-title:hover,
.accordion-title.hover1 {
    background-color: #f7941e !important;
    color: #fff !important;
    border-radius: 4px;
}
.accordion-title.hover1 .accordion_title {
    color: #fff;
    font-weight: 700;
}
.accordion .accordion-title {
    padding: 12px 10px 12px 12px;
    margin-bottom: 2px;
}
.accordion .accordion-title:hover img,
.accordion-title.hover1 img {
    filter: brightness(0) invert(1);
}
@media screen and (min-width: 0px) and (max-width: 575.99px) {
    .accordion .accordion-title img {
        max-width: 24px;
    }
    .accordion .accordion-title {
        margin-bottom: 30px;
    }
    .justify-content-start-item {
    }
    .justify-content-start-item:last-child {
        margin-bottom: 10px;
    }
    .accordion .accordion-title:hover {
        background-color: #f7941e !important;
        color: #fff;
        font-weight: 700 !important;
    }
    .accordion .accordion-title {
        padding: 13px 16px !important;
        font-weight: 700;
        font-size: 14px;
        line-height: 17px;
        text-transform: uppercase;
        height: 50px;
        background-color: #fafafa;
        border-radius: 6px;
    }
    .hidden-xs {
        display: none;
    }
    .service-item-title h3 {
        font-weight: 700;
    }
}
@media screen and (min-width: 576px) and (max-width: 10000px) {
    .visible-xs {
        display: none;
    }
}
table td {
    vertical-align: inherit !important;
}
.spinner-border {
    width: 1.4rem !important;
    height: 1.4rem !important;
}
.img_banner_info_register {
    width: 100% !important;
    height: auto !important;
    object-fit: unset !important;
}
.wr_info_register {
    background-color: #f4cb71;
    padding: 50px;
}
.wr_info_register h1 {
    font-size: 50px;
    color: #14559a;
    text-transform: uppercase;
    font-weight: 700;
    text-align: center;
}
.wr_info_register {
    color: #000;
    font-size: 20px;
    font-weight: 700;
}
.wr_info_register_form {
    padding: 35px;
    background-color: #fff;
    border-radius: 40px;
    max-width: 621px;
    display: block;
    margin: 0 auto;
}
.wr_info_register_form form input {
    display: inline-block;
    width: 100%;
    background-color: #eee;
    border: 1px solid #eaeaea;
    border-radius: 4px;
    margin-bottom: 15px;
    padding: 15px;
}
.btn_submit_info_register {
    background-color: #f6821f;
    border-radius: 10px;
    text-align: center;
    display: block;
    margin: 10px auto;
    border: none;
    color: #fff;
    padding: 10px 25px;
    cursor: pointer;
    font-size: 20px;
    font-weight: 700;
}
@media (max-width: 575px) {
    .wr_info_register_form {
        padding: 15px;
        border-radius: 15px;
    }
    .wr_info_register h1 {
        font-size: 22px;
    }
    .wr_info_register {
        font-size: 16px;
    }
    .wr_info_register {
        background-color: #f4cb71;
        padding: 30px 20px;
    }
    .wr_info_register_form form input {
        border-radius: 4px;
        margin-bottom: 10px;
        padding: 10px 15px;
    }
    .btn_submit_info_register {
        border-radius: 8px;
        margin: 10px auto;
        padding: 8px 20px;
        cursor: pointer;
        font-size: 16px;
        font-weight: 700;
    }
}
.page-not-found {
    text-align: center;
    margin: 70px 0 120px;
}
.page-not-found img {
    width: 402px;
    height: auto;
    margin-bottom: 50px;
}
.page-not-found h2 {
    font-style: normal;
    font-weight: 700;
    font-size: 20px;
    line-height: 30px;
    margin-bottom: 14px;
}
.page-not-found p {
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
}
.page-not-found a {
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #f7941e;
}
@media (max-width: 575px) {
    .page-not-found {
        text-align: center;
        margin: 40px 0;
    }
    .page-not-found img {
        width: 343px;
        margin-bottom: 20px;
    }
    .page-not-found h2 {
        font-size: 18px;
        line-height: 27px;
        margin-bottom: 10px;
    }
    .page-not-found p {
        font-size: 14px;
        line-height: 21px;
    }
}
@media (min-width: 576px) and (max-width: 767px) {
    .page-not-found {
        text-align: center;
        margin: 50px 0;
    }
    .page-not-found img {
        width: 538px;
        margin-bottom: 20px;
    }
}
@media (min-width: 768px) and (max-width: 991px) {
}
@media (min-width: 992px) and (max-width: 1199px) {
}
@media (min-width: 1200px) {
}
.news {
    margin-top: 40px;
    color: #313131;
}
.news-top {
    margin-bottom: 70px;
}
.news-top .title-news {
    font-size: 20px;
    font-weight: 500;
    line-height: 30px;
    margin-top: 30px;
    margin-bottom: 20px;
    font-style: normal;
}
.wr-news-left > a,
.wr-news-left > a:hover {
    color: inherit;
    text-decoration: none;
}
.news-left .img-top img {
    height: 525px;
    border-radius: 10px;
    min-height: 525px;
}
.news-top .title-news {
    color: #0072bc;
}
.news-top .title-news--links:hover,
.news-top .title-news--links:active {
    color: #f7941e !important;
    text-decoration: none;
    cursor: pointer;
}
.des-news {
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}
.show-name {
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 24px;
}
.show-name .date-news {
    color: #7d7d7d;
}
.show-name img {
    margin-right: 5px;
    width: 24px;
    height: 24px;
}
.news-right {
    padding: 20px;
    background: #fafafa;
    border-radius: 10px;
}
.news-right .title-news {
    margin-bottom: 20px;
    margin-top: 0;
}
.news-right .item-news .item-news_title > a {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}
.news-right .list-news-right {
    padding: 0;
    margin: 0;
    list-style: none;
}
.news-right .list-news-right .item-news {
    margin-bottom: 10px;
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    border-bottom: 1px solid #afafaf;
    display: flex;
}
.news-right .list-news-right .item-news.slide-to a {
    text-decoration: none;
    color: #f7941e;
}
.news-right .list-news-right .item-news.slide-to a .show-name {
    color: #313131;
}
.news-right .list-news-right .item-news .show-name {
    margin: 10px 0;
    max-height: 24px;
}
.news-right .list-news-right .item-news:last-child {
    margin-bottom: 0;
    border-bottom: none;
}
.news-right .list-news-right .item-news:last-child .show-name {
    margin-bottom: 0;
}
.item-name-news {
    margin-bottom: 50px;
}
.wr-news-item {
    margin-bottom: 80px;
}
.title-child-item {
    font-style: normal;
    font-weight: 700;
    font-size: 24px;
    line-height: 36px;
    color: #0072bc;
}
.learn-more {
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    color: #f7941e;
}
.learn-more:hover {
    cursor: pointer;
    text-decoration: underline;
}
.news-item_content {
    padding: 20px;
}
.news-item_name {
    font-style: normal;
    font-weight: 500;
    font-size: 20px;
    line-height: 30px;
    color: #0072bc;
    margin-bottom: 10px;
}
.news-item {
    background: #fff;
    border-radius: 8px;
}
.news-item_name a {
    font-style: normal;
    font-weight: 500;
    font-size: 20px;
    line-height: 30px;
}
.news-item_name:hover a {
    color: #f7941e;
    cursor: pointer;
}
.news-item_des {
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 23px;
}
.news-item_date img {
    width: 24px;
    height: 24px;
    margin-right: 5px;
}
.news .news-btn {
    display: none;
    width: 255px;
    padding: 13px 0;
    margin-top: 0;
    color: #fff;
    background: #f7941e;
    font-weight: 500;
    border-radius: 6px;
    border: none;
    transition: all 0.5s;
    font-size: 18px;
    line-height: 24px;
    text-align: center;
}
.wr-news-item__button-more {
    display: inline-block;
    width: 464px;
    padding: 13px 0;
    color: #fff;
    background: #f7941e;
    font-weight: 500;
    border-radius: 6px;
    border: none;
    transition: all 0.5s;
    font-size: 18px;
    line-height: 24px;
    text-align: center;
    display: none;
}
.wr-news-item__button-more:hover {
    color: #fff;
    background: #0072bc;
    text-decoration: none;
}
.item-news_img {
    width: 100px;
    flex-shrink: 0;
    margin-right: 10px;
    margin-bottom: 10px;
    max-height: 72px;
}
.item-news_img img {
    max-height: 100%;
}
@media (max-width: 575px) {
    .wr-news-item {
        margin-bottom: 40px;
    }
    .wr-news-item--card {
        margin-bottom: 30px;
    }
    .news-top {
        margin-bottom: 40px;
    }
    .news-left {
        margin-bottom: 40px;
    }
    .news-left .img-top img {
        height: 246px;
        min-height: 246px;
    }
    .news-left .title-news {
        margin-top: 20px;
        margin-bottom: 10px;
    }
    .news-left .title-news a {
        font-size: 18px;
        line-height: 27px;
        color: #0072bc;
    }
    .des-news {
        margin-bottom: 10px;
        font-size: 14px;
        line-height: 21px;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    .show-name {
        font-size: 12px;
        line-height: 18px;
    }
    .show-name img {
        width: 16px;
        height: 16px;
    }
    .news-right {
        padding: 0;
        background: #fff;
    }
    .news-right .title-news {
        display: none;
    }
    .news-right .list-news-right .item-news {
        font-size: 18px;
        line-height: 27px;
        margin-bottom: 10px;
    }
    .list-news-right .item-news_title {
        margin-bottom: 10px;
    }
    .news .learn-more {
        display: none;
    }
    .news-item {
        box-shadow: 10px 10px 10px rgba(0, 0, 0, 0.03);
        margin-bottom: 30px;
    }
    .item-name-news {
        margin-bottom: 20px;
    }
    .news-item_content {
        padding: 10px 10px 20px;
    }
    .news-item_des {
        margin-bottom: 10px;
        font-size: 14px;
        line-height: 21px;
    }
    .news-item_date {
        font-size: 12px;
        line-height: 18px;
    }
    .news-item_date .date-news {
        color: #7d7d7d;
    }
    .news-item_date img {
        width: 16px;
        height: 16px;
        margin-left: 3px;
    }
    .news-item_name a {
        font-size: 18px;
        line-height: 27px;
    }
    .wr-news-item__button-more {
        width: 255px;
        display: inline-block;
    }
}
@media (min-width: 576px) and (max-width: 767px) {
    .wr-news-item {
        margin-bottom: 40px;
    }
    .wr-news-item--card {
        margin-bottom: 30px;
    }
    .news-top {
        margin-bottom: 40px;
    }
    .news-left {
        margin-bottom: 40px;
    }
    .news-left .img-top img {
        height: 246px;
        min-height: 246px;
    }
    .news-left .title-news {
        margin-top: 20px;
        margin-bottom: 10px;
    }
    .news-left .title-news a {
        font-size: 18px;
        line-height: 27px;
        color: #0072bc;
    }
    .des-news {
        margin-bottom: 10px;
        font-size: 14px;
        line-height: 21px;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    .show-name {
        font-size: 12px;
        line-height: 18px;
    }
    .show-name img {
        width: 16px;
        height: 16px;
    }
    .news-right {
        padding: 0;
        background: #fff;
    }
    .news-right .title-news {
        display: none;
    }
    .news-right .list-news-right .item-news {
        font-size: 18px;
        line-height: 27px;
        margin-bottom: 10px;
    }
    .list-news-right .item-news_title {
        margin-bottom: 10px;
    }
    .news .learn-more {
        display: none;
    }
    .news-item {
        box-shadow: 10px 10px 10px rgba(0, 0, 0, 0.03);
        margin-bottom: 30px;
    }
    .item-name-news {
        margin-bottom: 20px;
    }
    .news-item_content {
        padding: 10px 10px 20px;
    }
    .news-item_des {
        margin-bottom: 10px;
        font-size: 14px;
        line-height: 21px;
    }
    .news-item_date {
        font-size: 12px;
        line-height: 18px;
    }
    .news-item_date .date-news {
        color: #7d7d7d;
    }
    .news-item_date img {
        width: 16px;
        height: 16px;
        margin-left: 3px;
    }
    .news-item_name a {
        font-size: 18px;
        line-height: 27px;
    }
    .wr-news-item__button-more {
        width: 255px;
        display: inline-block;
    }
}
@media (min-width: 768px) and (max-width: 991px) {
    .wr-news-item {
        margin-bottom: 50px;
    }
    .wr-news-item--card {
        margin-bottom: 30px;
    }
    .news-top {
        margin-bottom: 50px;
    }
    .news-left {
        margin-bottom: 31px;
    }
    .news-left .img-top img {
        height: 449px;
        min-height: 449px;
    }
    .news-left .title-news {
        margin-top: 30px;
        margin-bottom: 20px;
    }
    .news-left .title-news a {
        font-size: 20px;
        line-height: 30px;
    }
    .des-news {
        margin-bottom: 20px;
        font-size: 16px;
        line-height: 24px;
    }
    .show-name {
        font-size: 14px;
        line-height: 24px;
    }
    .show-name img {
        width: 24px;
        height: 24px;
    }
    .news-right {
        padding: 0;
        background: #fff;
    }
    .news-right .title-news {
        display: none;
    }
    .news-right .list-news-right .item-news {
        font-size: 16px;
        line-height: 24px;
        margin-bottom: 20px;
    }
    .list-news-right .item-news_title {
        margin-bottom: 10px;
    }
    .news .learn-more {
        display: none;
    }
    .news-item {
        box-shadow: 10px 10px 10px rgba(0, 0, 0, 0.03);
        margin-bottom: 30px;
    }
    .item-name-news {
        margin-bottom: 30px;
    }
    .news-item_content {
        padding: 20px 18px 27px 20px;
    }
    .news-item_des {
        margin-bottom: 10px;
    }
    .news-item_date {
        font-size: 12px;
        line-height: 18px;
    }
    .news-item_date .date-news {
        color: #7d7d7d;
    }
    .news-item_date img {
        width: 16px;
        height: 16px;
        margin-left: 3px;
    }
    .news .news-btn {
        margin-top: 10px;
    }
    .wr-news-item__button-more {
        display: inline-block;
    }
    .item-news_img {
        width: 80px;
    }
    .news-right .list-news-right .item-news {
        font-size: 15px;
        line-height: 23px;
    }
    .news-right .list-news-right .item-news .show-name {
        margin: 6px 0;
        max-height: 20px;
    }
}
@media (min-width: 992px) and (max-width: 1199px) {
}
@media (min-width: 1200px) {
}
.front-pagination {
    font-size: 20px;
    line-height: 30px;
    padding: 0;
    margin: 0;
}
.front-pagination li {
    display: inline-block;
    margin-right: 0.5em;
}
.front-pagination li:last-child {
    margin-right: 0;
}
.front-pagination li > * {
    display: block;
    text-align: center;
    width: 2em;
    height: 2em;
    border: 1px solid #afafaf;
    box-sizing: border-box;
    border-radius: 6px;
    line-height: 1.8em;
}
.front-pagination li a {
    color: #313131;
    background: #fff;
    font-size: 1em;
    text-decoration: none;
    cursor: pointer;
}
.front-pagination li span {
    background: #f7941e;
    border-color: #f7941e;
    color: #fff;
    font-size: 1em;
}
.news-page {
    padding-top: 40px;
    color: #313131;
    font-style: normal;
}
.news-page .list-news > div {
    margin-bottom: 70px;
}
.news-page_title {
    font-weight: 500;
    font-size: 48px;
    line-height: 72px;
    margin-bottom: 71px;
    color: #0072bc;
}
.news-top_page_news .img-top img {
    height: 525px;
    min-height: 525px;
    border-radius: 10px;
}
.news-page_top {
    margin-bottom: 71px;
}
.news-page_item_title {
    font-weight: 500;
    font-size: 20px;
    line-height: 30px;
    color: #0072bc;
    margin-top: 30px;
    margin-bottom: 20px;
}
.news-page_item_des {
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}
.news-page_highlight {
    background: #fafafa;
    border-radius: 10px;
    padding: 20px;
}
.page_highlight__title {
    font-weight: 500;
    font-size: 20px;
    line-height: 30px;
    color: #0072bc;
    margin-bottom: 20px;
}
.list-news-highlight {
    padding: 0;
    margin: 0;
    list-style: none;
}
.item-news-highlight {
    display: flex;
    margin-bottom: 20px;
}
.item-news-highlight:last-child {
    margin-bottom: 0;
}
.item-news-highlight__title {
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    color: #313131;
    margin-bottom: 10px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}
.news-page_item_title:hover a,
.item-news-highlight__title:hover a,
.news-page_item_title a:hover {
    text-decoration: none;
    cursor: pointer;
    color: #f7941e !important;
}
.item-news-highlight__title a {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}
.item-news-highlight.slide-to a {
    text-decoration: none;
    color: #f7941e !important;
}
.news-page_item_name {
    font-size: 14px;
    line-height: 24px;
    display: flex;
    align-items: center;
    color: #313131;
}
.news-page_item_name.news-date-create {
    color: #7d7d7d;
}
.news-page_item_name img {
    width: 24px;
    height: 24px;
    margin-right: 5px;
}
.list-news {
    margin-bottom: 70px;
}
.item-list-news {
    margin-bottom: 70px;
}
.list-news .news-btn {
    width: 255px;
    padding: 13px 0;
    margin-top: 0;
    color: #fff;
    background: #f7941e;
    font-weight: 500;
    border-radius: 6px;
    border: none;
    transition: all 0.5s;
    font-size: 18px;
    line-height: 24px;
    text-align: center;
}
.news-item_bottom {
    padding: 20px 21px 24px 20px;
}
.news-item_bottom__name {
    font-weight: 500;
    font-size: 20px;
    line-height: 30px;
    display: flex;
    align-items: center;
    color: #0072bc;
    margin-bottom: 10px;
}
.news-item_bottom__des {
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    display: flex;
    align-items: center;
    color: #313131;
    margin-bottom: 23px;
}
.news-pagination {
    width: 100%;
    margin-top: -20px;
}
.item-news-highlight__img {
    width: 100px;
    flex-shrink: 0;
    margin-right: 10px;
    margin-bottom: 10px;
    max-height: 72px;
}
.item-news-highlight__img img {
    height: 72px;
    max-height: 100%;
}
@media (max-width: 575px) {
    .news-page .list-news > div {
        margin-bottom: 30px;
    }
    .news-page_top {
        margin-bottom: 40px;
    }
    .news-top_page_news {
        margin-bottom: 40px;
    }
    .news-top_page_news .img-top img {
        height: 246px;
        min-height: 246px;
    }
    .news-page_title {
        font-size: 18px;
        line-height: 27px;
        margin-bottom: 20px;
    }
    .news-page_item_title {
        margin-top: 20px;
        margin-bottom: 10px;
        font-size: 18px;
        line-height: 27px;
    }
    .news-page_item_des {
        margin-bottom: 10px;
    }
    .news-item_bottom__name {
        font-size: 18px;
        line-height: 27px;
        margin: 10px 0;
    }
    .news-item_bottom__des {
        font-size: 14px;
        line-height: 21px;
        margin-bottom: 20px;
    }
    .news-page_highlight {
        padding: 0;
        background: #fff;
    }
    .item-news-highlight {
        margin-bottom: 10px;
        border-bottom: 0.5px solid #afafaf;
        padding-bottom: 10px;
    }
    .item-news-highlight__title {
        margin-bottom: 10px;
    }
    .news-item_img-top {
        margin: 0;
    }
    .news-item_bottom__name {
        margin-top: 0;
    }
    .news-item_bottom {
        border-radius: 8px;
        box-shadow: 10px 10px 10px rgba(0, 0, 0, 0.03);
        padding: 10px 10px 21px;
    }
    .news-page_item_name img {
        width: 16px;
        height: 16px;
        margin-right: 3px;
    }
    .list-news {
        margin-bottom: 70px;
    }
    .list-news .item-list-news {
        margin-bottom: 30px;
    }
    .news-pagination {
        margin-top: 0;
    }
}
@media (min-width: 576px) and (max-width: 767px) {
    .news-page .list-news > div {
        margin-bottom: 30px;
    }
    .news-page_top {
        margin-bottom: 40px;
    }
    .news-top_page_news {
        margin-bottom: 40px;
    }
    .news-top_page_news .img-top img {
        height: 246px;
        min-height: 246px;
    }
    .news-page_title {
        font-size: 18px;
        line-height: 27px;
        margin-bottom: 20px;
    }
    .news-page_item_title {
        margin-top: 20px;
        margin-bottom: 10px;
        font-size: 18px;
        line-height: 27px;
    }
    .news-page_item_des {
        margin-bottom: 10px;
    }
    .news-item_bottom__name {
        font-size: 18px;
        line-height: 27px;
        margin: 10px 0;
    }
    .news-item_bottom__des {
        font-size: 14px;
        line-height: 21px;
        margin-bottom: 20px;
    }
    .news-page_highlight {
        padding: 0;
        background: #fff;
    }
    .item-news-highlight {
        margin-bottom: 10px;
        border-bottom: 0.5px solid #afafaf;
        padding-bottom: 10px;
    }
    .item-news-highlight__title {
        margin-bottom: 10px;
    }
    .news-item_img-top {
        margin: 0;
    }
    .news-item_bottom__name {
        margin-top: 0;
    }
    .news-item_bottom {
        border-radius: 8px;
        box-shadow: 10px 10px 10px rgba(0, 0, 0, 0.03);
        padding: 10px 10px 21px;
    }
    .news-page_item_name img {
        width: 16px;
        height: 16px;
        margin-right: 3px;
    }
    .list-news {
        margin-bottom: 70px;
    }
    .list-news .item-list-news {
        margin-bottom: 30px;
    }
    .news-pagination {
        margin-top: 0;
    }
}
@media (min-width: 768px) and (max-width: 991px) {
    .news-page .list-news > div {
        margin-bottom: 30px;
    }
    .news-page_top {
        margin-bottom: 40px;
    }
    .news-top_page_news {
        margin-bottom: 30px;
    }
    .news-top_page_news .img-top img {
        height: 449px;
        min-height: 449px;
    }
    .news-page_title {
        font-size: 48px;
        line-height: 72px;
        margin-bottom: 40px;
    }
    .news-page_item_title {
        margin-top: 30px;
        margin-bottom: 20px;
        font-size: 20px;
        line-height: 30px;
    }
    .news-page_item_des {
        margin-bottom: 20px;
    }
    .news-item_bottom__name {
        font-size: 20px;
        line-height: 30px;
        margin: 10px 0;
        margin-top: 0;
    }
    .news-item_bottom__des {
        font-size: 16px;
        line-height: 24px;
        margin-bottom: 23px;
    }
    .news-page_highlight {
        padding: 0;
        background: #fff;
    }
    .item-news-highlight {
        margin-bottom: 20px;
        border-bottom: 0.5px solid #afafaf;
        padding-bottom: 10px;
    }
    .item-news-highlight__title {
        margin-bottom: 10px;
        font-size: 16px;
        line-height: 24px;
    }
    .news-item_img-top {
        margin: 0;
    }
    .news-item_bottom__name {
        margin-top: 0;
    }
    .news-item_bottom {
        border-radius: 8px;
        box-shadow: 10px 10px 10px rgba(0, 0, 0, 0.03);
        padding: 20px 18px 24px 17px;
    }
    .news-page_item_name img {
        width: 24px;
        height: 24px;
        margin-right: 5px;
    }
    .list-news {
        margin-bottom: 50px;
    }
    .list-news .item-list-news {
        margin-bottom: 30px;
    }
    .news-pagination {
        margin-top: 10px;
    }
}
@media (min-width: 992px) and (max-width: 1199px) {
}
@media (min-width: 1200px) {
}
.news-detail {
    margin-bottom: 140px;
    overflow: hidden;
}
.news-detail-article {
    margin-bottom: 70px;
}
.news-detail-article img {
    max-width: 100%;
}
.news-relative h2 {
    font-style: normal;
    font-weight: 700;
    font-size: 24px;
    line-height: 36px;
    margin-bottom: 50px;
    color: #0072bc;
}
.news-detail .news-detail__title {
    font-style: normal;
    font-weight: 700;
    font-size: 48px;
    line-height: 72px;
    color: #0072bc;
    margin-top: 40px;
    margin-bottom: 15px;
}
.news-detail .news-detail__description {
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 15px;
}
.news-detail__info {
    display: flex;
    margin-top: 20px;
    margin-bottom: 40px;
    justify-content: flex-end;
}
.news-detail__info > div {
    display: flex;
    align-items: center;
    height: 100%;
}
.news-detail__info--date-create {
    margin-right: 30px;
}
.news-detail__info img {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    margin-right: 5px;
}
.news-detail__info span {
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #7d7d7d;
}
.news-detail .news-detail__slider {
    position: relative;
}
.news-detail .ems-card {
    margin: 0 15px;
}
.news-detail .ems-card__content--link {
    font-size: 20px;
    line-height: 30px;
    height: 60px;
}
.news-detail .ems-card__content--description {
    font-size: 16px;
    line-height: 24px;
}
.news-detail .slick-list {
    padding-bottom: 10px;
}
.news-detail .slick-list > div {
    padding-bottom: 10px;
}
@media (max-width: 575px) {
    .news-detail {
        margin-bottom: 40px;
    }
    .news-detail-article {
        margin-bottom: 40px;
    }
    .news-relative h2 {
        font-size: 18px;
        line-height: 27px;
        margin-bottom: 30px;
    }
    .news-detail .news-detail__title {
        font-size: 48px;
        line-height: 72px;
        font-size: 18px;
        line-height: 27px;
    }
    .news-detail .news-detail__description {
        font-size: 14px;
        line-height: 21px;
        margin-bottom: 15px;
    }
    .news-detail__info {
        justify-content: space-between;
        margin-top: 20px;
        margin-bottom: 40px;
    }
    .news-detail__info > div {
        display: flex;
    }
    .news-detail__info img {
        width: 16px;
        height: 16px;
        flex-shrink: 0;
    }
    .news-detail__info span {
        font-size: 12px;
        line-height: 18px;
    }
    .news-detail .ems-card__content--link {
        font-size: 20px;
        line-height: 30px;
    }
    .news-detail .ems-card__content--description {
        font-size: 16px;
        line-height: 24px;
    }
    .news-detail .ems-card {
        margin: 0 1px;
    }
}
@media (min-width: 576px) and (max-width: 767px) {
    .news-detail {
        margin-bottom: 50px;
    }
    .news-detail-article {
        margin-bottom: 40px;
    }
    .news-relative h2 {
        font-size: 24px;
        line-height: 36px;
        margin-bottom: 20px;
    }
    .news-detail .news-detail__title {
        font-style: normal;
        font-weight: 500;
        font-size: 48px;
        line-height: 72px;
        color: #0072bc;
        margin-top: 40px;
        margin-bottom: 15px;
    }
    .news-detail .news-detail__description {
        font-style: normal;
        font-weight: 400;
        font-size: 16px;
        line-height: 24px;
        margin-bottom: 15px;
    }
    .news-detail__info {
        margin-top: 20px;
        margin-bottom: 40px;
    }
    .news-detail__info > div {
        display: flex;
    }
    .news-detail__info img {
        width: 24px;
        height: 24px;
        flex-shrink: 0;
    }
    .news-detail__info span {
        font-style: normal;
        font-weight: 400;
        font-size: 16px;
        line-height: 24px;
        color: #7d7d7d;
    }
    .news-detail .ems-card__content--link {
        font-size: 20px;
        line-height: 30px;
    }
    .news-detail .ems-card__content--description {
        font-size: 16px;
        line-height: 24px;
    }
    .news-detail .ems-card {
        margin: 0 8px;
    }
}
@media (min-width: 768px) and (max-width: 991px) {
}
@media (min-width: 992px) and (max-width: 1199px) {
}
@media (min-width: 1200px) {
}
.page-single {
    overflow: hidden;
    padding: 50px 0 100px;
}
.page-single img {
    max-width: 100%;
}
@media (max-width: 575px) {
    .page-single {
        padding: 40px 0;
    }
}
@media (min-width: 576px) and (max-width: 767px) {
    .page-single {
        padding: 50px 0;
    }
}
@media (max-width: 767px) {
    .page-single h1 {
        font-size: 30px;
    }
    .page-single h2 {
        font-size: 20px;
        line-height: 28px;
        margin-bottom: 18px;
    }
    .page-single h3 {
        font-size: 18px;
        line-height: 25px;
    }
    .page-single h4 {
        font-size: 16px;
        line-height: 20px;
    }
    .page-single h5 {
        font-size: 14px;
        line-height: 18px;
    }
    .page-single p {
        font-size: 16px;
        line-height: 24px;
    }
    .page-single a {
        font-size: 16px;
        line-height: 24px;
    }
    .page-single {
        margin-bottom: 40px;
    }
    .page-single table {
        overflow-x: scroll;
        display: block;
        max-width: 100% !important;
    }
}
@media (min-width: 768px) and (max-width: 991px) {
    .page-single h2 {
        font-size: 22px;
        line-height: 30px;
        margin-bottom: 20px;
    }
    .page-single h3 {
        font-size: 20px;
        line-height: 25px;
    }
    .page-single h4 {
        font-size: 18px;
        line-height: 20px;
    }
    .page-single h5 {
        font-size: 16px;
        line-height: 18px;
    }
    .page-single p {
        font-size: 16px;
        line-height: 24px;
    }
    .page-single a {
        font-size: 16px;
        line-height: 24px;
    }
    .page-single {
        margin-bottom: 50px;
    }
}
@media (min-width: 992px) and (max-width: 1199px) {
}
.section-find-more {
    margin-right: -15px;
    margin-left: -15px;
    border: unset !important;
}
.section-find-more__title {
    font-style: normal;
    font-weight: 700;
    font-size: 20px;
    line-height: 30px;
    text-transform: uppercase;
    color: #0072bc;
    margin-bottom: 30px;
    padding: 0 15px;
}
.section-find-more__wrap-content {
    display: flex;
    flex-wrap: wrap;
}
.section-find-more__item {
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
    padding: 0 15px;
}
.section-find-more__item-sub {
    border-radius: 8px;
}
.section-find-more__item-sub:hover {
    box-shadow: 10px 10px 10px rgba(0, 0, 0, 0.03);
}
.section-find-more__item-img {
    width: 100% !important;
    height: 252px !important;
    border-top-left-radius: inherit;
    border-top-right-radius: inherit;
}
.section-find-more__item-content {
    padding: 20px 20px 30px;
}
.section-find-more__item-name {
    font-style: normal;
    font-weight: 700;
    font-size: 18px;
    line-height: 27px;
    color: #313131;
    margin-bottom: 10px;
}
.section-find-more__item-link {
    font-style: normal;
    font-weight: 500;
    font-size: 18px;
    line-height: 30px;
    color: #f7941e;
}
@media (max-width: 575px) {
    .section-find-more {
        margin-right: -15px;
        margin-left: -15px;
        border: unset !important;
    }
    .section-find-more__title {
        font-size: 18px;
        line-height: 27px;
    }
    .section-find-more__wrap-content {
        display: flex;
        flex-wrap: wrap;
    }
    .section-find-more__item {
        flex: 0 0 100% !important;
        max-width: 100% !important;
        padding: 0 16px;
        margin-bottom: 20px;
    }
    .section-find-more__item-sub {
        border-radius: 8px;
        box-shadow: 10px 10px 10px rgba(0, 0, 0, 0.03);
    }
    .section-find-more__item-img {
        width: 100% !important;
        height: 252px !important;
        border-top-left-radius: inherit;
        border-top-right-radius: inherit;
    }
    .section-find-more__item-content {
        padding: 20px 17px 30px;
    }
    .section-find-more__item-name {
        font-style: normal;
        font-weight: 700;
        font-size: 18px;
        line-height: 27px;
        color: #313131;
        margin-bottom: 10px;
    }
    .section-find-more__item-link {
        font-style: normal;
        font-weight: 500;
        font-size: 18px;
        line-height: 30px;
        color: #f7941e;
    }
}
@media (min-width: 576px) and (max-width: 767px) {
    .section-find-more {
        margin-right: -15px;
        margin-left: -15px;
        border: unset !important;
    }
    .section-find-more__title {
        font-size: 20px;
        line-height: 30px;
    }
    .section-find-more__wrap-content {
        display: flex;
        flex-wrap: wrap;
    }
    .section-find-more__item {
        flex: 0 0 50% !important;
        max-width: 50% !important;
        padding: 0 8px 0 16px;
        margin-bottom: 30px;
    }
    .section-find-more__item:nth-child(even) {
        padding: 0 16px 0 8px;
    }
    .section-find-more__item-sub {
        border-radius: 8px;
    }
    .section-find-more__item-sub:hover {
        box-shadow: 10px 10px 10px rgba(0, 0, 0, 0.03);
    }
    .section-find-more__item-img {
        width: 100% !important;
        height: 252px !important;
        border-top-left-radius: inherit;
        border-top-right-radius: inherit;
    }
    .section-find-more__item-content {
        padding: 20px 17px 30px;
    }
    .section-find-more__item-name {
        font-size: 18px;
        line-height: 27px;
        margin-bottom: 10px;
    }
    .section-find-more__item-link {
        font-size: 18px;
        line-height: 30px;
    }
}
@media (min-width: 768px) and (max-width: 991px) {
}
@media (min-width: 992px) and (max-width: 1199px) {
}
@media (min-width: 1200px) {
}
.custom-block {
    display: flex;
    flex-direction: row;
    margin-bottom: 100px;
    border: none !important;
}
.custom-block:nth-child(even) {
    flex-direction: row-reverse;
}
.custom-block:nth-child(even) .custom-block__main-image {
    margin-left: 30px;
    margin-right: 0;
}
.custom-block__main-image {
    margin-left: 0;
    margin-right: 30px;
    width: 540px;
    flex-shrink: 0;
    border-radius: 10px;
}
.custom-block__main-image img {
    max-width: 100% !important;
    width: 100% !important;
    min-height: 100px;
    height: auto !important;
    margin-bottom: 0;
    border-radius: inherit;
}
.custom-block__main-content {
    width: calc(100% - 570px);
}
.custom-block__main-content h3 {
    font-size: 20px;
    line-height: 30px;
    text-transform: uppercase;
    color: #0072bc;
    margin-bottom: 30px;
}
.custom-block__main-content p {
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #313131;
}
@media (max-width: 575px) {
    .custom-block {
        display: flex;
        flex-direction: column-reverse;
        margin-bottom: 40px;
    }
    .custom-block:nth-child(even) {
        flex-direction: column-reverse;
    }
    .custom-block:nth-child(even) .custom-block__main-image {
        margin-left: 0;
        margin-right: 0;
    }
    .custom-block__main-image {
        width: 100%;
        max-height: 700px;
        border-radius: 10px;
        margin-top: 10px;
        margin-left: 0;
        margin-right: 0;
    }
    .custom-block__main-image img {
        width: 100% !important;
        min-height: 100px;
        height: auto !important;
    }
    .custom-block__main-content {
        width: 100%;
    }
    .custom-block__main-content h3 {
        font-size: 18px;
        line-height: 27px;
        margin-bottom: 20px;
    }
    .custom-block__main-content p {
        font-size: 14px;
        line-height: 21px;
    }
}
@media (min-width: 576px) and (max-width: 767px) {
    .custom-block {
        display: flex;
        flex-direction: column-reverse;
        margin-bottom: 50px;
    }
    .custom-block:nth-child(even) {
        flex-direction: column-reverse;
    }
    .custom-block:nth-child(even) .custom-block__main-image {
        margin-left: 0;
        margin-right: 0;
    }
    .custom-block__main-image {
        width: 100%;
        max-height: 700px;
        border-radius: 10px;
        margin-top: 20px;
        margin-left: 0;
        margin-right: 0;
    }
    .custom-block__main-image img {
        width: 100% !important;
        min-height: 100px;
        height: auto !important;
    }
    .custom-block__main-content {
        width: 100%;
    }
    .custom-block__main-content h3 {
        font-size: 20px;
        line-height: 30px;
        text-transform: uppercase;
        color: #0072bc;
        margin-bottom: 30px;
    }
    .custom-block__main-content p {
        font-weight: 400;
        font-size: 16px;
        line-height: 24px;
        color: #313131;
    }
}
@media (min-width: 768px) and (max-width: 991px) {
    .custom-block__main-image {
        margin-left: 0;
        margin-right: 30px;
        width: 400px;
        flex-shrink: 0;
        border-radius: 10px;
    }
    .custom-block__main-content {
        width: calc(100% - 400px);
    }
}
@media (min-width: 992px) and (max-width: 1199px) {
}
@media (min-width: 1200px) {
}
.custom-block-2 {
    display: flex;
    flex-direction: row;
    margin-bottom: 50px;
    border: none !important;
}
.custom-block-2:nth-child(even) {
    flex-direction: row-reverse;
}
.custom-block-2:nth-child(even) .custom-block-2__main-image {
    margin-left: 0;
    margin-right: 30px;
}
.custom-block-2:nth-child(even) .custom-block-2__sub-main-content {
    background: url(../image/img-content-right.png) no-repeat center center;
    padding: 40px 40px 50px 0;
    background-size: 100% 100%;
    width: 100%;
}
.custom-block-2__main-image {
    margin-left: 30px;
    margin-right: 0;
    width: 540px;
    flex-shrink: 0;
    border-radius: 10px;
    margin-bottom: 0;
}
.custom-block-2__main-image img {
    max-width: 100%;
    width: 100% !important;
    min-height: 100px;
    height: auto !important;
    margin-bottom: 0;
    border-radius: inherit;
}
.custom-block-2__main-content {
    width: calc(100% - 570px);
    display: flex;
    align-items: center;
}
.custom-block-2__sub-main-content {
    background: url(../image/img-content-left.png) no-repeat center center;
    padding: 40px 0 50px 40px;
    background-size: 100% 100%;
    width: 100%;
}
.custom-block-2__main-content h3 {
    font-size: 20px;
    line-height: 30px;
    text-transform: uppercase;
    color: #0072bc;
    margin-bottom: 30px;
}
.custom-block-2__main-content p {
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #313131;
}
@media (max-width: 575px) {
    .custom-block-2 {
        display: flex;
        flex-direction: column-reverse;
        margin-bottom: 20px;
    }
    .custom-block-2:nth-child(even) {
        flex-direction: column-reverse;
    }
    .custom-block-2:nth-child(even) .custom-block-2__main-image {
        margin-left: 0;
        margin-right: 0;
    }
    .custom-block-2__main-image {
        width: 100%;
        max-height: 700px;
        border-radius: 10px;
        margin-bottom: 20px;
        margin-left: 0;
        margin-right: 0;
    }
    .custom-block-2__main-image img {
        width: 100% !important;
        min-height: 100px;
        height: auto !important;
    }
    .custom-block-2__main-content {
        width: 100%;
    }
    .custom-block-2__sub-main-content {
        padding: 30px 20px;
    }
    .custom-block-2__main-content h3 {
        font-size: 18px;
        line-height: 27px;
        margin-bottom: 20px;
    }
    .custom-block-2__main-content p {
        font-size: 14px;
        line-height: 21px;
    }
}
@media (min-width: 576px) and (max-width: 767px) {
    .custom-block-2 {
        display: flex;
        flex-direction: column-reverse;
        margin-bottom: 30px;
    }
    .custom-block-2:nth-child(even) {
        flex-direction: column-reverse;
    }
    .custom-block-2:nth-child(even) .custom-block-2__main-image {
        margin-left: 0;
        margin-right: 0;
    }
    .custom-block-2__main-image {
        width: 100%;
        max-height: 700px;
        border-radius: 10px;
        margin-bottom: 30px;
        margin-left: 0;
        margin-right: 0;
    }
    .custom-block-2__main-image img {
        width: 100% !important;
        min-height: 100px;
        height: auto !important;
    }
    .custom-block-2__main-content {
        width: 100%;
    }
    .custom-block-2__sub-main-content {
        padding: 30px 20px;
    }
    .custom-block-2__main-content h3 {
        font-size: 20px;
        line-height: 30px;
        text-transform: uppercase;
        color: #0072bc;
        margin-bottom: 30px;
    }
    .custom-block-2__main-content p {
        font-weight: 400;
        font-size: 16px;
        line-height: 24px;
        color: #313131;
    }
}
@media (min-width: 768px) and (max-width: 991px) {
    .custom-block-2__main-image {
        margin-left: 30px;
        margin-right: 0;
        width: 400px;
        flex-shrink: 0;
        border-radius: 10px;
    }
    .custom-block-2__main-content {
        width: calc(100% - 400px);
    }
}
@media (min-width: 992px) and (max-width: 1199px) {
}
@media (min-width: 1200px) {
}
.custom-block-introduce {
    padding: 21px 0 26px;
    box-shadow: 10px 10px 10px rgba(0, 0, 0, 0.03);
    border-radius: 10px;
    border: none !important;
    margin-bottom: 100px;
}
.custom-block-introduce ul {
    box-sizing: border-box;
    list-style: none !important;
    border-left: 5px solid #f7941e;
    padding: 10px 30px;
    margin: 0;
}
.custom-block-introduce li {
    font-style: normal;
    font-weight: 400;
    font-size: 20px;
    line-height: 30px;
    color: #313131;
    margin-bottom: 20px;
}
.custom-block-introduce li:last-child {
    margin-bottom: 0;
}
.custom-block-introduce li > span {
    font-style: normal;
    font-weight: 700 !important;
    font-size: 20px;
    line-height: 30px;
    text-transform: uppercase;
    color: #0072bc;
}
@media (max-width: 575px) {
    .custom-block-introduce {
        padding: 20px 0;
        box-shadow: 10px 10px 10px rgba(0, 0, 0, 0.03);
        border-radius: 10px;
        margin-bottom: 40px;
    }
    .custom-block-introduce ul {
        box-sizing: border-box;
        list-style: none !important;
        border-left: 5px solid #f7941e;
        padding: 10px;
        margin: 0;
    }
    .custom-block-introduce li {
        font-size: 16px;
        line-height: 24px;
        margin-bottom: 10px;
    }
    .custom-block-introduce li:last-child {
        margin-bottom: 0;
    }
    .custom-block-introduce li > span {
        font-size: 18px;
        line-height: 27px;
    }
}
@media (min-width: 576px) and (max-width: 767px) {
    .custom-block-introduce {
        padding: 20px 0;
        box-shadow: 10px 10px 10px rgba(0, 0, 0, 0.03);
        border-radius: 10px;
        margin-bottom: 50px;
    }
    .custom-block-introduce ul {
        box-sizing: border-box;
        list-style: none !important;
        border-left: 5px solid #f7941e;
        padding: 10px 30px;
        margin: 0;
    }
    .custom-block-introduce li {
        font-size: 20px;
        line-height: 30px;
    }
    .custom-block-introduce li:last-child {
        margin-bottom: 0;
    }
    .custom-block-introduce li > span {
        font-size: 20px;
        line-height: 30px;
    }
}
@media (min-width: 768px) and (max-width: 991px) {
}
@media (min-width: 992px) and (max-width: 1199px) {
}
@media (min-width: 1200px) {
}
.service-single {
    overflow-x: hidden;
}
.service-single .next-btn,
.service-single .prev-btn {
    display: flex;
}
.wr_service_detail {
    background-color: #fff;
    padding: 45px 65px;
    margin: 70px auto 73px;
    max-width: 1110px;
}
.bg_grey {
    background-color: rgb(247, 247, 247, 0.4);
}
.icon_ems {
    text-align: center;
    background-color: #fff;
    padding: 47px 0 5px 0;
    margin-bottom: -40px;
    margin-top: 70px;
}
.related-service .slick-next:before,
.related-service .slick-prev:before {
    display: none;
}
.related-service {
    margin-bottom: 70px;
}
@media screen and (min-width: 0px) and (max-width: 1199.99px) {
    .wr_service_detail {
        background-color: #fff;
        padding: 19px;
        margin: 70px auto 73px;
        max-width: 100%;
    }
    .wr_service_detail h1 * {
        font-size: 20px !important;
    }
    .wr_service_detail h2 * {
        font-size: 19px !important;
    }
    .wr_service_detail h3 * {
        font-size: 18px !important;
    }
    .wr_service_detail h4 * {
        font-size: 17px !important;
    }
    .wr_service_detail h1 {
        line-height: 20px !important;
    }
    .wr_service_detail h2 {
        line-height: 19px !important;
    }
    .wr_service_detail h3 {
        line-height: 18px !important;
    }
    .wr_service_detail h4 {
        line-height: 17px !important;
    }
    .related-service h2 {
        font-weight: 700 !important;
        font-size: 18px !important;
        line-height: 27px !important;
        margin-bottom: 30px !important;
    }
    .wr_service_detail {
        margin: 40px auto;
    }
}
@media screen and (min-width: 576px) and (max-width: 767.99px) {
}
@media screen and (min-width: 768px) and (max-width: 1199.99px) {
}
@media screen and (min-width: 1200px) and (max-width: 10000px) {
}
@media screen and (min-width: 0px) and (max-width: 1200px) {
}
.service-item1 {
    border-radius: 10px;
    cursor: pointer;
    background: #fff;
    margin-bottom: 30px;
    padding: 7px 30px 0;
    min-height: 324px;
    margin: 5px 10px;
}
.service-item1:hover {
    background: #f7941e;
    color: #fff;
}
.service-item1:hover h3 {
    color: #fff;
}
.service-item1:hover p {
    color: #fafafa;
}
.service-item1:hover .service-item-img1 .ic-eclip1 {
    background: #fff;
    opacity: 0.5;
}
.service-item-img1 {
    position: relative;
}
.service-item-img1 .ic-eclip1 {
    background: #f7941e;
    height: 54px;
    width: 54px;
    border-radius: 50%;
    position: absolute;
    bottom: 14px;
}
.service-item-img1 .service-item-icon1 {
    max-width: 120px;
    position: relative;
}
.service-item-img1 .service-item-icon1 img {
    max-width: 120px;
}
.service-item-title1 {
    margin-bottom: 10px;
    margin-top: -3px;
}
.service-item-title1 h3 {
    color: #0072bc;
    font-weight: 500;
    font-size: 20px;
    line-height: 30px;
}
.lookup-postal {
    background: #f5cc71;
    padding: 50px 0;
    margin-bottom: 70px;
}
.hover-block:hover img {
    transform: scale(1.1);
}
.lookup-postal-item-action h3 {
    color: #0072bc;
    text-transform: uppercase;
    font-style: normal;
    font-weight: 700;
    font-size: 24px;
    line-height: 36px;
    margin-bottom: 10px;
}
.lookup-postal-item-action p {
    color: #313131;
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 20px;
}
.lookup-postal-item-action input {
    height: 50px;
    width: calc(100% - 60px);
    padding: 0 10px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    box-sizing: border-box;
    border-radius: 4px;
    color: #313131;
    font-style: normal;
    font-weight: 300;
    font-size: 16px;
    line-height: 24px;
}
.lookup-postal-item-action .btn-search {
    background: #0072bc;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 4px;
    margin-left: 10px;
    padding: 13px 0;
    width: 60px;
    height: 50px;
    text-align: center;
    transition: all 0.5s;
}
.lookup-postal-item-action .btn-search:hover {
    cursor: pointer;
}
.lookup-postal-item-action .btn-search img {
    width: 16.5px;
}
.lookup-postal-item img {
    max-width: 100%;
}
.lookup-postal-item {
    text-align: center;
}
.lookup-postal-item div {
    max-width: 120px;
    margin: auto;
}
.lookup-postal-item p {
    color: #0072bc;
    font-size: 18px;
    text-transform: uppercase;
    margin-bottom: 0;
    line-height: 24px;
}
.lookup-postal a:hover {
    text-decoration: none;
}
@media (max-width: 575px) {
    .lookup-postal {
        padding: 40px 0;
        margin-bottom: 40px;
    }
    .lookup-postal-item div {
        max-width: 60px;
    }
    .lookup-postal-item-action h3 {
        font-size: 20px;
        line-height: 30px;
        margin-bottom: 10px;
    }
    .lookup-postal-item-action p {
        font-size: 12px;
        line-height: 18px;
        margin-bottom: 20px;
    }
    .lookup-postal-item p {
        font-size: 14px;
        line-height: 24px;
        padding: 0 10px;
    }
    .lookup-postal-item-action .btn-search {
        width: 64px;
        height: 50px;
    }
    .lookup-postal-item-action {
        margin-bottom: 20px;
    }
}
@media (min-width: 576px) and (max-width: 767px) {
    .lookup-postal {
        margin-bottom: 50px;
    }
    .lookup-postal-item-action .btn-search {
        width: 60px;
        height: 50px;
    }
    .lookup-postal-item-action {
        margin-bottom: 52.25px;
    }
    .lookup-postal-item-action h3 {
        font-size: 20px;
        line-height: 30px;
    }
    .lookup-postal-item-action p {
        font-size: 16px;
        line-height: 24px;
        margin-bottom: 26px;
    }
    .lookup-postal-item .amount img {
        height: 71.67px;
        width: 82.5px;
    }
    .lookup-postal-item .search-postal img {
        height: 75px;
        width: 56.26px;
    }
    .lookup-postal-item .scan img {
        height: 80px;
        width: 90px;
    }
}
@media (min-width: 768px) and (max-width: 991px) {
}
@media (min-width: 992px) and (max-width: 1199px) {
}
@media (min-width: 1200px) {
}
@media (max-width: 320px) {
    .lookup-postal-item p {
        padding: 0;
    }
}
.service-stand-out {
    margin-bottom: 70px;
}
.service-stand-out .service-title {
    text-align: center;
}
.service-stand-out .service-title h2 {
    font-style: normal;
    font-weight: 700;
    font-size: 48px;
    line-height: 72px;
    margin-bottom: 55px;
    text-align: center;
}
.service-stand-out .service-item {
    margin-bottom: 50px;
    cursor: pointer;
}
.service-stand-out .service-item:hover a {
    text-decoration-line: underline;
    color: #f7941e;
}
.service-stand-out .service-item:hover img {
    filter: brightness(0) invert(56%) sepia(95%) saturate(651%) hue-rotate(347deg) brightness(101%) contrast(94%);
    transform: scale(1.1);
}
.service-stand-out .service-item-icon {
    width: 143px;
    height: 141px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.service-stand-out .service-item-icon img {
    width: 100%;
    height: 100%;
}
.service-stand-out .service-item-content {
    margin-left: 10px;
}
.service-stand-out .service-item-content h3 {
    font-weight: 700;
    font-size: 18px;
    line-height: 30px;
    color: #0072bc;
    text-transform: uppercase;
    cursor: pointer;
    margin-bottom: 5px;
}
.service-stand-out .service-item-content p {
    font-size: 16px;
    line-height: 24px;
    color: #313131;
    opacity: 0.87;
    margin-bottom: 0;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    height: 96px;
}
.service-stand-out .service-btn {
    width: 255px;
    display: inline-block;
    padding: 13px 0;
    font-weight: 500;
    font-size: 18px;
    line-height: 24px;
    color: #fff;
    background: #f7941e;
    font-weight: 500;
    border-radius: 5px;
    border: none;
    transition: all 0.5s;
    text-align: center;
}
.service-stand-out .service-btn:hover,
.service-stand-out .service-btn:active {
    background: #0072bc;
    text-decoration: none;
}
@media (max-width: 575px) {
    .service-stand-out {
        margin-bottom: 40px;
    }
    .service-stand-out .service-title h2 {
        font-size: 20px;
        line-height: 30px;
        margin-bottom: 20px;
    }
    .service-stand-out .service-item {
        flex-direction: column;
        padding: 25px;
        border-top: 1px dashed silver;
        margin-left: -15px;
        margin-right: -15px;
        margin-bottom: 0;
    }
    .service-stand-out .service-item:hover a {
        color: #fff;
        text-decoration: none;
    }
    .service-stand-out .service-item:hover {
        background: #f7941e;
    }
    .service-stand-out .service-item:hover * {
        color: #fff;
    }
    .service-stand-out .service-item:hover .service-item-icon img {
        filter: brightness(0) invert(1);
    }
    .service-stand-out .service-items .col-md-6:last-child .service-item {
        border-bottom: 1px dashed silver;
    }
    .service-stand-out .service-item-icon {
        width: 107.14px;
        height: 98.54px;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .service-stand-out .service-item {
        margin-bottom: 0;
    }
    .service-stand-out .service-item-content {
        margin-left: 0;
    }
    .service-stand-out .service-item-content h3 {
        font-size: 16px;
        line-height: 27px;
    }
    .service-stand-out .service-item-content p {
        font-size: 14px;
        line-height: 24px;
        display: none;
    }
    .service-stand-out .service-btn {
        margin-top: 20px;
    }
}
@media (min-width: 576px) and (max-width: 767px) {
    .service-stand-out {
        margin-bottom: 50px;
    }
    .service-stand-out .service-title h2 {
        font-size: 30px;
        line-height: 45px;
        margin-bottom: 43px;
    }
    .service-stand-out .service-item-icon {
        width: 176px;
        height: 162px;
        margin-bottom: auto;
        margin-right: 20px;
    }
    .service-stand-out .service-item {
        padding: 40px;
        margin-bottom: 0;
        border-top: 1px dashed silver;
        margin-left: -15px;
        margin-right: -15px;
    }
    .service-stand-out .service-items .col-md-6:last-child .service-item {
        border-bottom: 1px dashed silver;
    }
    .service-stand-out .service-item-content h3 {
        font-size: 20px;
        line-height: 30px;
        margin-bottom: 10px;
    }
    .service-stand-out .service-item-content p {
        font-size: 16px;
        line-height: 24px;
    }
    .service-stand-out .service-btn {
        margin-top: 40px;
    }
}
@media (min-width: 768px) and (max-width: 991px) {
}
@media (min-width: 992px) and (max-width: 1199px) {
}
@media (min-width: 1200px) {
}
.download-ems {
    background-color: #f7941e;
    margin-bottom: 70px;
    position: relative;
    background-repeat: no-repeat;
    background-size: 100%;
}
.download-ems h2 {
    color: #fff !important;
}
.download-ems-content {
    color: #fff;
    display: grid;
    grid-gap: 0;
    grid-template-areas: 'd-title d-phone' 'd-content d-phone' 'd-img d-phone';
    grid-auto-rows: max-content max-content auto;
    grid-auto-columns: minmax(442px, auto) minmax(100px, 442px);
}
.download-ems-content h2 {
    font-style: normal;
    font-weight: 500;
    font-size: 48px;
    line-height: 72px;
    grid-area: d-title;
    margin-top: 70px;
    margin-bottom: 0;
}
.download-ems-content-text {
    margin-top: 40px;
    margin-bottom: 40px;
    grid-area: d-content;
}
.download-ems-content-text p {
    font-style: normal;
    font-weight: 400;
    font-size: 20px;
    line-height: 30px;
    margin-bottom: 20px;
}
.download-ems-content-text p:last-child {
    margin-bottom: 0;
}
.download-ems-content-img {
    grid-area: d-img;
    padding-bottom: 54px;
}
.download-ems-content-img img {
    height: 81px;
    width: auto;
    margin-right: 20px;
    margin-bottom: 16px;
}
.download-ems-content-phone {
    grid-area: d-phone;
    display: flex;
    align-items: flex-end;
}
.download-ems-img {
    height: 100%;
    display: flex;
    align-items: flex-end;
}
.download-ems-img img {
    height: auto;
}
@media (max-width: 575px) {
    .download-ems {
        margin-bottom: 40px;
        background-size: 100% 60%;
    }
    .download-ems-content {
        grid-template-areas: 'd-title d-title' 'd-content d-content' 'd-img d-phone';
        grid-auto-columns: minmax(144px, auto) 144px;
    }
    .download-ems-content h2 {
        margin-top: 40px;
        margin-bottom: 0;
        text-align: center;
        font-size: 20px;
        line-height: 30px;
    }
    .download-ems-content-text {
        margin-top: 20px;
        margin-bottom: 20px;
    }
    .download-ems-content-text p {
        font-style: normal;
        font-weight: 400;
        font-size: 14px;
        line-height: 21px;
        margin-bottom: 9px;
    }
    .download-ems-content-img {
        padding-bottom: 24px;
    }
    .download-ems-content-img img {
        height: 47px;
    }
}
@media (min-width: 576px) and (max-width: 767px) {
    .download-ems {
        margin-bottom: 51px;
        background-size: 100% 40%;
    }
    .download-ems-content {
        grid-template-areas: 'd-title d-title' 'd-content d-phone' 'd-img d-phone';
        grid-auto-columns: minmax(309px, auto) minmax(100px, 309px);
    }
    .download-ems-content h2 {
        font-size: 30px;
        line-height: 45px;
        margin-top: 50px;
    }
    .download-ems-content-text {
        margin-top: 30px;
        margin-bottom: 30px;
    }
    .download-ems-content-text p {
        font-style: normal;
        font-weight: 400;
        font-size: 20px;
        line-height: 30px;
        margin-bottom: 20px;
    }
    .download-ems-content-img {
        padding-bottom: 34px;
    }
    .download-ems-content-img img {
        height: 81px;
        width: auto;
        margin-right: 20px;
        margin-bottom: 16px;
    }
}
@media (min-width: 768px) and (max-width: 991px) {
    .download-ems-content {
        grid-template-areas: 'd-title d-title' 'd-content d-phone' 'd-img d-phone';
        grid-auto-columns: 55% 45%;
    }
}
@media (min-width: 992px) and (max-width: 1199px) {
}
@media (min-width: 1200px) {
}
.news-stand-out {
    margin-bottom: 80px;
    overflow: hidden;
}
.news-title h2 {
    font-weight: 700;
    font-size: 48px;
    line-height: 72px;
    margin-bottom: 53px;
    text-align: center;
}
.news-stand-out .slick-list {
    padding-bottom: 10px;
}
.news-stand-out .ems-card {
    margin: 5px 15px;
}
.news-stand-out .ems-card__content--info-right a {
    color: #f7941e;
    font-weight: 500;
    font-size: 18px;
    line-height: 30px;
    text-transform: capitalize;
}
.news-btn {
    display: inline-block;
    width: 255px;
    padding: 13px 0;
    margin-top: 50px;
    color: #fff;
    background: #f7941e;
    font-weight: 500;
    border-radius: 6px;
    border: none;
    transition: all 0.5s;
    font-size: 18px;
    line-height: 24px;
    text-align: center;
}
.news-stand-out .news-btn:hover {
    text-decoration: none;
    color: #fff;
    background: #0072bc;
}
.news-stand-out .slick-arrow {
    display: none !important;
}
@media (max-width: 575px) {
    .news-stand-out {
        margin-bottom: 40px;
    }
    .news-title h2 {
        font-size: 20px;
        line-height: 30px;
        margin-bottom: 20px;
    }
    .news-btn {
        margin-top: 16px;
    }
}
@media (min-width: 576px) and (max-width: 767px) {
    .news-stand-out {
        margin-bottom: 100px;
    }
    .news-title h2 {
        font-size: 30px;
        line-height: 45px;
        margin-bottom: 30px;
    }
    .news-btn {
        margin-top: 30px;
    }
}
@media (min-width: 768px) and (max-width: 991px) {
}
@media (min-width: 992px) and (max-width: 1199px) {
}
@media (min-width: 1200px) {
}
.fast-service {
    overflow: hidden;
    margin-bottom: 128.93px;
}
.fast-service-title {
    margin-bottom: 50px;
}
.fast-service-title h2 {
    font-style: normal;
    font-weight: 700;
    font-size: 40px;
    line-height: 72px;
    color: #313131;
    margin: 0;
    max-width: 880px;
    margin-left: auto;
    margin-right: auto;
}
.fast-service-img {
    min-height: 100px;
}
.fast-service-img img {
    height: auto;
}
.fast-service-item {
    margin-bottom: 37px;
    display: flex;
    align-items: center;
    width: 100%;
}
.fast-service-item:last-child {
    margin-bottom: 0;
}
.fast-service-item img {
    height: 68px;
    width: 71px;
}
.fast-service-item-icon {
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.fast-service-item-content {
    margin-left: 20px;
}
.fast-service-item-content > div {
    font-weight: 700;
    font-size: 40px;
    line-height: 54px;
    color: #0054a6;
    margin-bottom: 5px;
}
.fast-service-item-content > p {
    font-weight: 500;
    font-size: 18px;
    line-height: 27px;
    color: #313131;
    margin: 0;
}
.fade-in-section {
    transition: opacity 1200ms ease-out, transform 600ms ease-out, visibility 1200ms ease-out;
    will-change: opacity, transform, visibility;
}
.fade-in-section.is-visible {
    opacity: 1;
    transform: none;
    visibility: visible;
}
@media (max-width: 575px) {
    .fast-service {
        margin-bottom: 40px;
    }
    .fast-service-title {
        margin-bottom: 20px;
    }
    .fast-service-title h2 {
        font-size: 20px;
        line-height: 30px;
    }
    .fast-service-img {
        margin-bottom: 15px;
    }
    .fast-service-item {
        margin-bottom: 10px;
        justify-content: center;
    }
    .fast-service-item-icon {
        width: 80px;
        height: 80px;
    }
    .fast-service-item-content {
        margin-left: 0;
        min-width: 160px;
    }
    .fast-service-item-content > div {
        font-size: 18px;
        line-height: 27px;
        margin-bottom: 10px;
    }
    .fast-service-item-content > p {
        font-size: 16px;
        line-height: 24px;
    }
}
@media (min-width: 576px) and (max-width: 767px) {
    .fast-service {
        margin-bottom: 100px;
    }
    .fast-service-title {
        margin-bottom: 30px;
    }
    .fast-service-title h2 {
        font-size: 30px;
        line-height: 45px;
    }
    .fast-service-img {
        margin-bottom: 40px;
    }
    .fast-service-item {
        width: 50%;
        margin-bottom: 20px;
        float: left;
    }
    .fast-service-item-icon {
        width: 100px;
        height: 100px;
    }
    .fast-service-item-content {
        margin-left: 0;
        min-width: 160px;
    }
    .fast-service-item-content > div {
        font-size: 40px;
        line-height: 54px;
        margin-bottom: 5px;
    }
    .fast-service-item-content > p {
        font-size: 18px;
        line-height: 27px;
    }
}
@media (min-width: 768px) and (max-width: 991px) {
}
@media (min-width: 992px) and (max-width: 1199px) {
}
@media (min-width: 1200px) {
}
.partner {
    margin-bottom: 110px;
}
.partner-title h2 {
    font-weight: 700;
    font-size: 48px;
    line-height: 72px;
    color: #313131;
    margin-bottom: 50px;
}
.partner-item {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 106px;
    width: 168px;
    margin: auto;
}
.partner-item img {
    width: 75%;
    height: 75%;
    margin: auto;
}
.slick-dots {
    bottom: -50px;
}
.slick-dots li button:before {
    font-size: 10px;
    color: #313131;
    opacity: 0.2;
}
.slick-dots li.slick-active button:before {
    color: #f7941e;
}
.partner .slick-arrow {
    display: none;
}
@media (max-width: 575px) {
    .partner {
        margin-bottom: 70.84px;
    }
    .partner-item {
        height: 58.15px;
        width: 92.16px;
        margin: auto;
    }
    .partner-title h2 {
        margin-bottom: 20px;
        font-size: 20px;
        line-height: 30px;
    }
    .slick-dots {
        bottom: -40px;
    }
}
@media (min-width: 576px) and (max-width: 767px) {
    .partner {
        margin-bottom: 140px;
    }
    .partner-title h2 {
        margin-bottom: 20px;
        font-size: 30px;
        line-height: 72px;
    }
    .slick-dots {
        bottom: -50px;
    }
}
@media (min-width: 768px) and (max-width: 991px) {
}
@media (min-width: 992px) and (max-width: 1199px) {
}
@media (min-width: 1200px) {
}
.wr_title_nhom_dich_vu {
    margin-bottom: 50px;
}
.evennn {
    background-color: #fff;
}
.odddd {
    background-color: rgba(247, 148, 30, 0.05);
}
.main-service {
    margin-top: 0;
    margin-bottom: 0;
}
.main-service > div:nth-child(even) {
    background-color: rgba(247, 148, 30, 0.05);
}
.main-service > div:nth-child(odd) {
    background-color: #fff;
}
.wr_service_2_level {
    margin-bottom: 0;
}
.wr_service_2_level,
.wr_service_1_level {
    padding-top: 50px;
    padding-bottom: 60px;
}
.wr_service_2_level:first-child {
    padding-top: 70px;
}
.wr_title_nhom_dich_vu h3,
.wr_service_1_level h3 {
    font-weight: 500;
    font-size: 48px;
    line-height: 72px;
    color: #0072bc;
}
.accordion {
    width: 100%;
}
.accordion-title {
    padding: 15px 4px;
    color: #f7941e;
    font-weight: 700;
    font-size: 20px;
    line-height: 30px;
    text-transform: uppercase;
    cursor: pointer;
}
.accordion-title img {
    max-width: 32px;
}
.main-service .service-item,
.service-packages .service-item {
    border-radius: 10px;
    cursor: pointer;
    background: #fff;
    margin-bottom: 20px;
    padding: 7px 30px 0;
    min-height: 324px;
}
.main-service .service-item:hover {
    background: #f7941e;
    color: #fff;
}
.main-service .service-item:hover h3 {
    color: #fff;
}
.main-service .service-item:hover p {
    color: #fafafa;
}
.main-service .service-item:hover .service-item-img .ic-eclip {
    background: #fff;
    opacity: 0.5;
}
.main-service .service-item-img {
    position: relative;
}
.main-service .service-item-img .ic-eclip {
    background: #f7941e;
    height: 54px;
    width: 54px;
    border-radius: 50%;
    position: absolute;
    bottom: 14px;
}
.main-service .service-item-img .service-item-icon {
    max-width: 120px;
    z-index: 1;
    position: relative;
}
.main-service .service-item-img .service-item-icon img {
    width: 120px;
    height: 120px;
    border-radius: 4px;
    margin-bottom: 15px;
}
.main-service .service-item-title {
    margin-bottom: 10px;
    margin-top: -3px;
}
.main-service .service-item-title h3 {
    color: #0072bc;
    font-weight: 500;
    font-size: 20px;
    line-height: 30px;
}
.wr_content_nhom_dich_vu .accordion-title {
    color: #0072bc;
}
.main-service .service-item-description p,
.service-item-description1 p {
    font-size: 16px;
    line-height: 24px;
    color: #313131;
    margin-bottom: 0;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}
.arrow-accordion {
    display: inline-block;
    border: solid #000;
    border-width: 0 3px 3px 0;
    padding: 6px;
    margin-left: 6px;
    margin-bottom: 16px;
    border-radius: 6%;
}
.down {
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
}
.up {
    transform: rotate(-135deg);
    -webkit-transform: rotate(-135deg);
}
.service-packages {
    background: #e5e5e5;
    padding: 70px 0;
}
table {
    border-collapse: collapse;
    border-radius: 10px;
    text-align: center;
}
thead {
    background: #0072bc;
}
tbody {
    background: #fafafa;
}
.estimate-charge-tab-table table tr {
    border-bottom: none;
}
table tr th {
    color: #fff;
    font-weight: 700;
    font-size: 18px;
    line-height: 30px;
    padding: 20px !important;
}
table tr td {
    font-size: 16px;
}
table tr:first-child th:first-child {
    border-top-left-radius: 6px;
}
table tr:first-child th:last-child {
    border-top-right-radius: 6px;
}
table tr:last-child td:first-child {
    border-bottom-left-radius: 6px;
}
table tr:last-child td:last-child {
    border-bottom-right-radius: 6px;
}
.price-list {
    background: #fff;
    padding: 44px 65px;
    margin-bottom: 70px;
}
.price-list .service-packages-logo {
    margin-bottom: 40px;
}
.price-list .service-packages-logo img {
    max-width: 194px;
}
.price-list .service-packages-title {
    margin-bottom: 20px;
}
.price-list .service-packages-content .decision {
    margin-bottom: 30px;
}
.price-list .service-packages-content .decision p {
    font-size: 16px;
    line-height: 24px;
    color: #313131;
}
.price-list .service-packages-content .tab {
    margin-bottom: 30px;
}
.price-list .service-packages-content .tab div {
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    padding: 7px 39px;
    border-radius: 50px;
    border: 1px solid #f7941e;
    margin-right: 40px;
    color: #f7941e;
}
.price-list .service-packages-content .define {
    margin-bottom: 30px;
}
.price-list .service-packages-content .define h3 {
    font-weight: 500;
    font-size: 20px;
    line-height: 24px;
    color: #0072bc;
    text-transform: uppercase;
    margin-bottom: 20px;
}
.price-list .service-packages-content .define p {
    margin-bottom: 10px;
    font-size: 16px;
    line-height: 24px;
    color: #313131;
}
.price-list .service-packages-content .main-charge {
    margin-bottom: 30px;
}
.price-list .service-packages-content .main-charge h3 {
    font-weight: 500;
    font-size: 20px;
    line-height: 24px;
    color: #0072bc;
    text-transform: uppercase;
    margin-bottom: 20px;
}
.price-list .service-packages-content .main-charge .main-charge-price h4 {
    font-weight: 500;
    font-size: 18px;
    line-height: 24px;
    color: #0072bc;
    margin-bottom: 0;
}
.price-list .service-packages-content .main-charge .main-charge-price p {
    font-style: italic;
    font-size: 16px;
    line-height: 24px;
    color: #313131;
    float: right;
    margin-bottom: 8px;
}
.price-list .service-packages-content .main-charge .main-charge-price table {
    margin-bottom: 30px;
}
.price-list .service-packages-content .main-charge .main-charge-area {
    font-size: 16px;
    line-height: 24px;
    color: #313131;
}
.price-list .service-packages-content .main-charge .main-charge-area h4 {
    font-weight: 500;
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 20px;
    color: #0072bc;
}
.price-list .service-packages-content .main-charge .main-charge-area .area {
    margin-bottom: 20px;
}
.price-list .service-packages-content .main-charge .main-charge-area .charge-area .charge-area-urban {
    margin-bottom: 44px;
}
.price-list .service-packages-content .extra-charge h3 {
    font-weight: 500;
    font-size: 20px;
    line-height: 24px;
    color: #0072bc;
    text-transform: uppercase;
    margin-bottom: 20px;
}
.price-list .service-packages-content .extra-charge h4 {
    font-weight: 500;
    font-size: 18px;
    line-height: 24px;
    color: #0072bc;
    margin-bottom: 20px;
}
.price-list .service-packages-content .extra-charge h5 {
    font-weight: 500;
    font-size: 18px;
    line-height: 24px;
    color: #0072bc;
    margin-bottom: 30px;
}
.price-list .service-packages-content .extra-charge h5:last-child {
    margin-bottom: 0;
}
.price-list .service-packages-content .extra-charge h5 span {
    margin-left: 11px;
    font-weight: 500;
    font-size: 18px;
    line-height: 24px;
    text-decoration-line: underline;
    color: #f7941e;
}
.price-list .service-packages-content .extra-charge p {
    font-size: 16px;
    line-height: 24px;
    color: #313131;
    margin-bottom: 30px;
}
.price-list .service-packages-title h3 {
    font-weight: 700;
    font-size: 28px;
    line-height: 42px;
    color: #0072bc;
    text-transform: uppercase;
}
.related-service h2 {
    font-weight: 700;
    font-size: 24px;
    line-height: 36px;
    color: #0072bc;
    margin-bottom: 50px;
    text-transform: uppercase;
}
.service-packages .service-item {
    margin: 5px 15px;
}
.extra-service-packages {
    margin-top: 123px;
    margin-bottom: 110px;
}
.extra-service-packages-logo img {
    max-width: 194px;
}
.extra-service-packages-logo {
    margin-bottom: 53px;
}
.extra-service-packages-title {
    margin-bottom: 40px;
}
.extra-service-packages-title h3 {
    font-weight: 700;
    font-size: 28px;
    line-height: 30px;
    text-transform: uppercase;
    color: #0072bc;
}
.extra-service-packages-content .extra-charge {
    margin-bottom: 30px;
}
.extra-service-packages-content .extra-charge h3 {
    font-weight: 500;
    font-size: 20px;
    line-height: 24px;
    color: #0072bc;
    text-transform: uppercase;
    margin-bottom: 0;
}
.extra-service-packages-content .extra-charge-price p {
    font-size: 16px;
    line-height: 24px;
    color: #313131;
    margin-bottom: 10px;
    font-style: italic;
    float: right;
}
.extra-service-packages-content .packages {
    margin-bottom: 30px;
}
.extra-service-packages-content .packages:last-child {
    margin-bottom: 0;
}
.extra-service-packages-content .packages h3 {
    font-weight: 500;
    font-size: 20px;
    line-height: 24px;
    text-transform: uppercase;
    color: #0072bc;
    margin-bottom: 20px;
}
.extra-service-packages-content .packages p {
    font-size: 16px;
    line-height: 24px;
    color: #313131;
}
.accordion-title.hover1 {
    background-color: #f7941e !important;
    color: #fff;
}
.wr_content_nhom_dich_vu .accordion .accordion-title {
    padding: 12px 10px 10px 12px;
}
@media screen and (min-width: 0px) and (max-width: 575.99px) {
    .wr_service_2_level:first-child {
        padding-top: 40px;
    }
    .wr_title_nhom_dich_vu {
        margin-bottom: 30px;
    }
    .accordion .accordion-title img {
        max-width: 24px;
    }
    .accordion .accordion-title {
        margin-bottom: 30px;
    }
    .justify-content-start > div:first-child {
        margin-top: -10px;
    }
    .justify-content-start-item {
    }
    .justify-content-start-item:last-child {
        margin-bottom: 10px;
    }
    .wr_title_nhom_dich_vu h3 {
        height: 30px;
        font-weight: 700;
        font-size: 20px;
        line-height: 30px;
    }
    .wr_service_1_level h3 {
        height: 30px;
        font-weight: 700;
        font-size: 20px;
        line-height: 30px;
    }
    .wr_content_nhom_dich_vu .accordion .accordion-title:hover {
        background-color: #f7941e !important;
        color: #fff !important;
        font-weight: 700 !important;
    }
    .accordion .accordion-title {
        padding: 13px 16px !important;
        font-weight: 700;
        font-size: 14px;
        line-height: 17px;
        text-transform: uppercase;
        height: 50px;
        background-color: #fafafa;
        border-radius: 6px;
    }
    .main-service .service-item,
    .service-packages .service-item {
        border-radius: 10px;
        min-height: 324px;
        text-align: left;
        padding: 43px 30px;
        filter: drop-shadow(10px 10px 10px rgba(0, 0, 0, 0.03));
    }
    .accordion-title .accordion_title {
        font-size: 18px;
        line-height: 24px;
        font-weight: 400;
    }
    .wr_service_2_level,
    .wr_service_1_level {
        padding-top: 20px;
        padding-bottom: 20px;
    }
    .hidden-xs {
        display: none;
    }
}
@media screen and (min-width: 576px) and (max-width: 10000px) {
    .visible-xs {
        display: none;
    }
}
@media screen and (min-width: 576px) and (max-width: 767.99px) {
}
@media screen and (min-width: 768px) and (max-width: 1199.99px) {
}
@media screen and (min-width: 1200px) and (max-width: 10000px) {
}
@media screen and (min-width: 0px) and (max-width: 1200px) {
}
@media screen and (min-width: 576px) and (max-width: 1199.99px) {
    .wr_title_nhom_dich_vu h3,
    .wr_service_1_level h3 {
        font-size: 29px;
    }
    .fast-service-item-icon {
        width: 75px !important;
        height: 75px !important;
    }
    .fast-service-item-content > div {
        font-size: 27px !important;
        line-height: 40px !important;
    }
    .fast-service-item {
        margin-bottom: 27px !important;
    }
    .fast-service-item:last-child {
        margin-bottom: 0 !important;
    }
}
.evennn.fast-service,
.odddd.fast-service {
    margin-bottom: 0 !important;
    padding-bottom: 60px;
    padding-top: 60px;
}
.page-under-construction {
    text-align: center;
    margin: 70px 0 120px;
}
.page-under-construction img {
    width: 402px;
    height: auto;
    margin-bottom: 50px;
}
.page-under-construction h2 {
    font-style: normal;
    font-weight: 700;
    font-size: 20px;
    line-height: 30px;
    margin-bottom: 14px;
}
.page-under-construction p {
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
}
.page-under-construction a {
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #f7941e;
}
@media (max-width: 575px) {
    .page-under-construction {
        text-align: center;
        margin: 40px 0;
    }
    .page-under-construction img {
        width: 343px;
        margin-bottom: 20px;
    }
    .page-under-construction h2 {
        font-size: 18px;
        line-height: 27px;
        margin-bottom: 10px;
    }
    .page-under-construction p {
        font-size: 14px;
        line-height: 21px;
    }
}
@media (min-width: 576px) and (max-width: 767px) {
    .page-under-construction {
        text-align: center;
        margin: 50px 0;
    }
    .page-under-construction img {
        width: 538px;
        margin-bottom: 20px;
    }
}
@media (min-width: 768px) and (max-width: 991px) {
}
@media (min-width: 992px) and (max-width: 1199px) {
}
@media (min-width: 1200px) {
}
.banner-recruitment {
    position: relative;
}
.banner-recruitment img {
    height: 356px;
}
.banner-recruitment .title-recruitment {
    position: absolute;
    width: 100%;
    top: 44%;
    font-style: normal;
    font-weight: 500;
    font-size: 45px;
    line-height: 55px;
    text-transform: uppercase;
    color: #fff;
}
.breadcrumb-recruitment {
    background: #f7f7f7;
}
.breadcrumb-recruitment img {
    max-width: 20px;
}
.breadcrumb-recruitment .breadcrumb {
    color: #313131;
}
.content-recruitment {
    margin: 70px 0;
}
.wr-search {
    background: #fff;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.16);
    border-radius: 10px;
    padding: 42px 40px 50px;
}
.title-search {
    font-style: normal;
    font-weight: 700;
    font-size: 20px;
    line-height: 30px;
    text-transform: uppercase;
    color: #0072bc;
    margin-bottom: 30px;
}
.form-search-recruitment .form-group {
    margin-bottom: 0;
}
.form-search-recruitment .input-custom {
    padding: 13px 20px;
    background: #fff;
    border: 1px solid rgba(49, 49, 49, 0.3);
    box-sizing: border-box;
    border-radius: 4px;
    height: calc(1.5em + 1rem + 12px);
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #313131;
}
.form-search-recruitment .input-custom::placeholder {
    color: #afafaf;
}
.form-search-recruitment .btn-submit {
    background: #f7941e;
    border-radius: 6px;
    font-weight: 500;
    font-size: 18px;
    line-height: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff;
    width: 100%;
    height: 50px;
}
.form-search-recruitment .btn-submit:hover {
    background: #0054a6;
}
.content-result-recruitment {
    margin-top: 54px;
}
.content-result-recruitment .title-search {
    margin-top: 6px;
}
.img-right-block .slick-slider {
    position: -webkit-sticky;
    position: sticky;
    top: 90px;
}
.content-result-recruitment .img-right-recruitment img {
    max-width: 340px;
    border-radius: 5px;
}
.item-result {
    padding: 20px 30px;
    background: #fafafa;
    border-radius: 10px;
    margin-bottom: 20px;
}
.item-result img.icon-white,
.item-result img.icon-mobile,
.item-result:hover img.icon-black,
.item-result:hover img.icon-black-learnmore,
.item-result img.icon-white-learnmore {
    display: none;
}
.item-result:hover {
    color: #fff;
    background: #f7941e;
    box-shadow: 20px 10px 60px rgba(0, 0, 0, 0.05);
}
.item-result:hover img.icon-white-learnmore {
    display: block;
}
.item-result:hover img.icon-white {
    display: block;
}
.item-result img {
    max-width: 24px;
}
.item-result .title-job {
    font-weight: 500;
    font-size: 20px;
    line-height: 30px;
    color: #000;
}
.item-result:hover .title-job {
    color: #fff;
}
.item-result .address-date {
    font-style: normal;
    font-weight: 400;
    font-size: 12px;
    line-height: 14px;
    color: #7d7d7d;
}
.item-result:hover .address-date {
    color: #fff;
}
.item-result .address-date img {
    margin-right: 5px;
}
.item-result .address-date .address {
    margin-right: 30px;
}
.item-result .learn-more {
    font-weight: 500;
    font-size: 18px;
    line-height: 24px;
    text-align: center;
    color: #f7941e;
}
.item-result:hover .learn-more {
    color: #fff;
}
.item-result .learn-more a {
    margin-right: 5px;
}
.item-result .learn-more a:hover {
    color: #fff;
}
.wr-search .ant-select-selector {
    margin-bottom: 0 !important;
}
.wr-search .error-recruitment {
    margin-top: 20px;
    margin-bottom: -6px;
    font-size: 16px;
    line-height: 24px;
    color: #fa292d;
}
.content-recruitment .contact-recruitment {
    font-weight: 500;
    font-size: 18px;
    line-height: 24px;
    color: #000;
    margin-top: 30px;
}
.content-recruitment .contact-recruitment a {
    color: #0072bc;
}
.list-result-recruitment .item-result-mobile {
    display: block;
    text-decoration: none;
}
@media (max-width: 767px) {
    .content-result-recruitment .img-right-block {
        display: none;
    }
    .input-text {
        margin-bottom: 20px;
    }
    .input-select {
        margin-bottom: 20px;
    }
    .wr-search {
        padding: 30px 16px;
    }
    .learn-more .learn-more-icon {
        display: block;
    }
    .learn-more .learn-more-text {
        display: none;
    }
    .list-result-recruitment .name-job {
        max-width: 80%;
    }
    .item-result img.icon-mobile {
        display: block;
    }
    .item-result:hover img.icon-mobile {
        filter: brightness(0) invert(1);
    }
    .item-result {
        padding: 13px 20px;
    }
    .item-result img.icon-white,
    .item-result img.icon-black {
        display: none;
    }
    .item-result:hover img.icon-white,
    .item-result:hover img.icon-black {
        display: none;
    }
    .item-result .address-date {
        font-style: normal;
        font-weight: 400;
        font-size: 12px;
        line-height: 14px;
        color: #313131;
    }
    .list-result-recruitment .item-result-mobile {
        display: block;
        text-decoration: none;
    }
    .item-result .title-job {
        font-style: normal;
        font-weight: 500;
        font-size: 18px;
        line-height: 27px;
    }
    .content-result-recruitment .title-search {
        font-style: normal;
        font-weight: 700;
        font-size: 18px;
        line-height: 27px;
    }
    .wr-search .title-search {
        font-style: normal;
        font-weight: 700;
        font-size: 18px;
        line-height: 27px;
    }
}
@media (min-width: 768px) and (max-width: 991px) {
    .content-result-recruitment .img-right-block {
        display: none;
    }
    .input-text {
        margin-bottom: 30px;
    }
    .input-select {
        margin-bottom: 30px;
    }
    .wr-search {
        padding: 48px 20px;
    }
}
@media (min-width: 992px) and (max-width: 1199px) {
}
@media (min-width: 1200px) {
}
.phone-number {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 18px 19px;
    background: #f7941e;
    bottom: 50px;
    left: 50px;
    border-radius: 50%;
    z-index: 10;
    font-weight: 500;
    font-size: 18px;
    line-height: 24px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.16);
    cursor: pointer;
    transition: all 0.35s;
    max-width: 60px;
    position: fixed;
    color: #fff;
}
.phone-number a:hover {
    color: #fff;
    text-decoration: none;
}
.phone-number:not(.phone-active) {
    animation: phone-shake 1s ease-in-out infinite;
}
.phone-active {
    border-radius: 40px;
    white-space: nowrap;
    box-sizing: content-box;
    padding: 10px 40px !important;
}
@keyframes phone-shake {
    15%,
    85% {
        transform: rotate(0deg);
    }
    35%,
    45%,
    55%,
    65% {
        transform: rotate(10deg);
    }
    30%,
    40%,
    50%,
    60%,
    75% {
        transform: rotate(-10deg);
    }
}
@media screen and (max-width: 540px) {
    .phone-number {
        max-width: 50px;
        bottom: 30px;
        left: 13px;
        padding: 12px;
    }
}
.electronic-bill-of-landing {
    background: #f7941e;
    border-radius: 10px 0 0 10px;
    writing-mode: vertical-rl;
    z-index: 99;
    right: 0;
    color: #fff;
    font-weight: 500;
    font-size: 18px;
    line-height: 24px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.16);
    cursor: pointer;
    position: fixed;
    top: calc(50% - 140px);
    white-space: nowrap;
    transition: background 0.3s;
}
.electronic-bill-of-landing a {
    padding: 19px 20px;
    display: block;
}
.electronic-bill-of-landing:hover {
    background: #0072bc;
}
.electronic-bill-of-landing:hover a {
    color: #fff;
    text-decoration: none;
}
@media screen and (max-width: 540px) {
    .electronic-bill-of-landing {
        font-size: 14px;
    }
    .electronic-bill-of-landing a {
        padding: 11px 5px 16px;
    }
}
.main-banner img {
    height: 100%;
    width: 100%;
}
.main-banner .slick-list {
    height: 600px;
}
.main-banner__slider-item {
    height: 600px;
    width: 100%;
}
.main-banner .slick-dots {
    bottom: 21px !important;
}
.main-banner .slick-dots li:not(.slick-active) button:before {
    color: #313131;
    opacity: 1;
}
.main-banner .slick-dots li.slick-active button:before {
    color: #fff;
}
.main-banner .slick-slide img {
    transform: scale(1.5);
    transition: all 1.3s;
}
.main-banner .slick-slide.slick-active img {
    transform: scale(1);
}
.main-banner .slick-slide.slick-active {
    z-index: 9999 !important;
}
.carousel-indicators {
    bottom: 5px;
}
.carousel-indicators li {
    width: 10px;
    height: 10px;
    background: #313131;
    opacity: 0.8;
    border-radius: 50%;
    border-top: unset;
    border-bottom: unset;
    margin-right: 16px;
}
.carousel-indicators .active {
    background: #fff;
}
.carousel-control-prev,
.carousel-control-next {
    display: none;
}
@media (max-width: 575px) {
    .main-banner {
        min-height: 210px;
    }
    .main-banner .slick-list {
        height: 210px;
    }
    .main-banner .slick-dots {
        bottom: 7.3px !important;
    }
    .main-banner img {
        height: 210px;
    }
}
@media (min-width: 576px) and (max-width: 767px) {
    .main-banner {
        min-height: 210px;
    }
    .main-banner .slick-dots {
        bottom: 8.3px !important;
    }
    .main-banner .slick-list {
        height: 239px;
    }
    .main-banner img {
        height: 239px;
    }
}
@media (min-width: 768px) and (max-width: 991px) {
    .main-banner {
        min-height: 210px;
    }
    .main-banner .slick-dots {
        bottom: 8.3px !important;
    }
    .main-banner .slick-list {
        height: 239px;
    }
    .main-banner img {
        height: 239px;
    }
}
@media (min-width: 992px) and (max-width: 1199px) {
}
@media (min-width: 1200px) {
}
.sub-banner {
    position: relative;
}
.sub-banner img {
    height: 356px;
    object-fit: cover;
}
.sub-banner-title {
    width: 100%;
    position: absolute;
    top: 42%;
    color: #fff;
    font-weight: 500;
    font-size: 45px;
    line-height: 55px;
}
.sub_banner_tablet {
    display: none;
}
.sub_banner_desktop {
    display: none;
}
@media screen and (min-width: 576px) and (max-width: 1199.99px) {
    .sub_banner_tablet {
        display: block;
    }
    .sub-banner-title {
        font-size: 31px !important;
        font-weight: 700 !important;
    }
    .sub-banner {
        height: 300px !important;
    }
    .sub-banner img {
        height: 300px !important;
    }
}
@media screen and (min-width: 1200px) and (max-width: 10000px) {
    .sub_banner_desktop {
        display: block;
    }
}
@media screen and (min-width: 0px) and (max-width: 575.99px) {
    .sub-banner-title {
        font-size: 20px !important;
        font-weight: 700 !important;
    }
    .sub-banner {
        height: 210px !important;
    }
    .sub-banner img {
        height: 210px !important;
    }
}
.sub-banner ~ .service-single .sub-banner {
    display: none;
}
.sub-banner:after {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    content: '';
    background: linear-gradient(90deg, #f7941e 40.1%, #0072bc 100%);
    opacity: 0.4;
    transform: rotate(-180deg);
    z-index: 1;
    user-select: none;
    pointer-events: none;
}
.sub-banner.sub-banner_info_register:after {
    opacity: 0;
}
.sub-banner-title span {
    position: absolute;
    z-index: 2;
}
.top-header {
    background: #f0f0f0;
}
.wrapper-top-header .left-header {
    font-style: normal;
    font-weight: 400;
    font-size: 20px;
    line-height: 30px;
}
.wrapper-top-header .left-header span {
    font-size: 20px;
}
.wrapper-top-header .left-header span.hotline1 {
    font-weight: 500;
    color: #0072bc;
}
.wr_dropdown_language {
    color: #0072bc !important;
}
.dropdown button {
    color: #313131;
    background-color: unset;
    border-color: unset;
    border: none;
    font-weight: 700;
    margin-bottom: 4px;
    padding-left: 5px;
}
.dropdown button:active {
    background-color: unset !important;
    color: #313131 !important;
}
.dropdown button:focus {
    box-shadow: none !important;
    background-color: unset !important;
    color: #313131 !important;
}
.dropdown button::after {
    content: unset;
}
.dropdown button:hover,
.show > .btn-primary.dropdown-toggle {
    background-color: unset;
    color: #333;
    border-color: unset;
    outline: none;
}
.action-form {
    background: #f7941e;
    padding: 0 12px;
    color: #fff;
    font-weight: 500;
    margin-left: 30px;
}
.wrapper-top-header .action-form > a,
.wrapper-top-header .action-form > a:hover,
.wrapper-top-header .action-form > a:active {
    color: #fff;
}
.arrow-menu {
    display: inline-block;
    border: solid #0072bc;
    border-width: 0 1px 1px 0;
    padding: 3px;
    margin-left: 9px;
    margin-bottom: 4px;
}
.down {
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
}
.right-header .dropdown button {
    vertical-align: unset;
}
.right-header__label,
.left-header__label {
    color: #0072bc;
}
.right-header .dropdown button:active,
.right-header .dropdown button:focus {
    color: #0072bc !important;
}
@media (max-width: 575px) {
    .top-header {
        height: 40px;
    }
    .top-header .right-header {
        height: 40px;
        font-size: 12px;
    }
    .top-header .wrapper-top-header {
        margin: 0 -15px;
        line-height: 40px;
    }
    .wrapper-top-header .left-header {
        display: none;
    }
    .wrapper-top-header .right-header {
        justify-content: flex-start;
        padding-left: 15px;
    }
    .wrapper-top-header .right-header .action-form {
        margin-left: auto;
    }
}
@media (min-width: 576px) and (max-width: 767px) {
    .wrapper-top-header .right-header .action-form {
        margin-left: 20px;
    }
}
@media (min-width: 768px) and (max-width: 991px) {
}
@media (min-width: 992px) and (max-width: 1199px) {
}
@media (min-width: 1200px) {
}
.bottom-header {
    position: -webkit-sticky;
    position: sticky;
    top: -1px;
    z-index: 98;
    background: #fff;
}
.wrapper-bottom-header {
    display: flex;
    flex: 1 1 100%;
    height: 90px;
    line-height: 90px;
    position: relative;
}
.wrapper-bottom-header .left-header img {
    height: 28px;
    width: auto;
}

@media (max-width: 575px) {
    .wrapper-bottom-header {
        height: 74px;
        line-height: 74px;
    }
    .wrapper-bottom-header .left-header img {
        height: 24.66px;
        width: auto;
    }
    ul.menu li {
        display: none;
    }
    ul.menu li[class^='menu-button'] {
        display: block;
    }
}
@media (min-width: 576px) and (max-width: 767px) {
    ul.menu li {
        display: none;
    }
    ul.menu li[class^='menu-button'] {
        display: block;
    }
}
@media (min-width: 768px) and (max-width: 991px) {
    ul.menu li {
        display: none;
    }
    ul.menu li[class^='menu-button'] {
        display: block;
    }
}
@media (min-width: 992px) and (max-width: 1199px) {
}
@media (min-width: 1200px) {
}
.sidebar-header {
    display: none;
    position: absolute;
    width: 100%;
    top: 89px;
    z-index: 999;
    height: calc(100vh - 139px);
    overflow: hidden;
}
.sidebar-header.show {
    display: block;
}
.faded-sidebar {
    width: 100%;
    height: 100%;
    z-index: 999;
    position: absolute;
    top: 0;
    left: 0;
    background: #333;
    opacity: 0.6;
}
.content-sidebar {
    width: 90%;
    height: 100%;
    z-index: 1000;
    position: absolute;
    top: 0;
    right: 0;
    background: #fff;
    overflow-x: hidden;
    overflow-y: scroll;
    -webkit-overflow-scrolling: touch;
}
.content-sidebar a:hover,
.content-sidebar a:active {
    text-decoration: none;
    color: #f7941e;
}
.content-sidebar ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
.content-sidebar > ul > li:last-child {
    margin-bottom: 120px;
}
.sidebar-header.show .content-sidebar {
    animation: show 0.5s;
}
.content-sidebar-label.show > span > img {
    transform: rotate(180deg);
}
@keyframes show {
    from {
        right: -90%;
    }
    to {
        right: 0;
    }
}
.content-sidebar > ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
.content-sidebar > ul > li {
    line-height: 83px;
    color: #f7941e;
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    border-bottom: 1px solid #eee;
    padding-left: 30px;
}
.content-sidebar > ul > li a {
    color: #f7941e;
    padding-right: 20px;
    display: block;
}
.content-sidebar > ul > li img {
    width: 11px;
}
.content-sidebar > ul > li span {
    float: right;
}
.content-sidebar .sidebar-sub-menu {
    padding-left: 30px;
    display: none;
}
.content-sidebar > ul.show > li > .sidebar-sub-menu {
    display: block;
}
.content-sidebar .sidebar-sub-menu.show {
    display: block;
}
@media (max-width: 575px) {
    .sidebar-header {
        top: 73px;
        height: calc(100vh - 113px);
    }
}
@media (min-width: 576px) and (max-width: 767px) {
}
@media (min-width: 768px) and (max-width: 991px) {
}
@media (min-width: 992px) and (max-width: 1199px) {
}
@media (min-width: 1200px) {
}
.wrapper-top-header {
    display: flex;
    flex: 1 1 100%;
    height: 50px;
    line-height: 50px;
}
.left-header {
    display: flex;
    flex: 1 0 auto;
    align-items: center;
}
.right-header {
    display: flex;
    flex: 1 0 auto;
    justify-content: flex-end;
}
.footer {
    position: relative;
    background: #0072bc;
    color: #fff;
    padding-top: 60px;
    overflow: hidden;
}
.footer h1,
.footer h2,
.footer h3,
.footer h4,
.footer h5,
.footer h6 {
    color: #fff !important;
}
.footer ul {
    margin-bottom: 0;
}
.footer-wrap {
    position: relative;
    padding-bottom: 230px;
}
.footer a:hover {
    color: #fff;
}
.footer-grid {
    display: grid;
    grid-auto-columns: calc(43% - 45px) calc(19% - 45px) calc(19% - 45px) calc(19% - 45px);
    grid-column-gap: 60px;
    grid-template-areas: 'f-jsc f-introduce f-search f-service' 'f-contact f-introduce f-search f-service' 'f-contact f-column f-column f-column' 'f-contact f-column-bct f-column-bct f-column-bct' 'f-contact f-download-app f-download-app f-download-app';
    grid-auto-rows: max-content max-content max-content max-content auto;
}
.footer-grid > div > h3 {
    font-style: normal;
    font-weight: 700;
    font-size: 16px;
    line-height: 30px;
    text-transform: uppercase;
}
.footer-section__contact {
    grid-area: f-contact;
}
.footer-section__service {
    grid-area: f-service;
}
.footer-section__search {
    grid-area: f-search;
}
.footer-section__download-app {
    grid-area: f-download-app;
}
.footer-section__download-app h3 {
    margin-bottom: 12px;
}
.footer-section__download-app img {
    height: 50px;
    display: inline-block;
    width: auto;
}
.footer-section__download-app img {
    margin-right: 20px;
}
.footer-section__download-app img:last-child {
    margin-right: 0;
}
.footer-column {
    grid-area: f-column;
}
.three-line {
    position: absolute;
    bottom: 0;
    pointer-events: none;
}
.three-line img {
    width: 100%;
}
.footer-section__jsc {
    grid-area: f-jsc;
    margin-bottom: 20px;
}
.footer-section__jsc h3 {
    margin-bottom: 10px;
}
.footer-section__jsc p {
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 24px;
    margin: 0;
    padding-right: 40px;
}
.footer-section__contact h3 {
    margin-bottom: 10px;
    font-weight: 700;
    font-size: 24px;
    line-height: 29px;
    text-transform: uppercase;
}
.footer-section__contact h5 {
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 22px;
    margin: 0;
}
.footer-section__contact div {
    font-style: normal;
    font-weight: 300;
    font-size: 16px;
    line-height: 22px;
}
.headquarter-contact {
    margin-bottom: 10px;
}
.headquarter-contact > div {
    display: flex;
    align-items: center;
}
.headquarter-contact img {
    width: 16px;
    height: 16px;
    margin-right: 4px;
    flex-shrink: 0;
}
.headquarter-contact svg {
    width: 16px;
    height: 16px;
    margin-right: 4px;
    flex-shrink: 0;
}
ul.menu-footer {
    list-style-type: none;
    padding: 0;
}
ul.menu-footer li {
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 27px;
    text-transform: capitalize;
    margin-bottom: 10px;
}
.footer-section__introduce {
    grid-area: f-introduce;
    margin-bottom: 30px;
}
.footer .footer-section__introduce h3,
.footer .footer-column__support h3,
.footer .footer-column__connection h3 {
    font-weight: 700;
    font-size: 16px;
    line-height: 30px;
    margin-bottom: 10px;
    text-transform: uppercase;
}
.footer .footer-section__introduce a:hover {
    color: #fff;
}
.footer-column__support {
    margin-bottom: 25px;
}
.support-content img {
    height: 41px;
    width: 41px;
    margin-right: 19px;
}
.support-content-icon {
    width: 59.88px;
    height: 60px;
    margin-right: 10px;
}
.support-content-icon img {
    width: 100%;
    height: 100%;
}
.support-content-icon svg {
    width: 100%;
    height: 100%;
}
.support-content-text div {
    font-size: 18px;
    line-height: 27px;
}
.support-content-text p {
    font-style: normal;
    font-weight: 700;
    font-size: 28px;
    line-height: 24px;
    margin-bottom: 0;
    white-space: nowrap;
}
.footer-column__connection {
    margin-bottom: 25px;
}
.footer-column__connection h3 {
    margin-bottom: 9px;
}
.footer-column__connection .footer-column__social img {
    height: 40px;
    width: 40px;
}
.footer-column__connection .footer-column__social svg {
    height: 40px;
    width: 40px;
}
.footer-column__connection .footer-column__social a {
    margin-right: 5px;
}
.footer-column__connection .footer-column__social a:last-child {
    margin-right: 0;
}
.footer-column__bct {
    margin-bottom: 25px;
    grid-area: f-column-bct;
}
.footer-column__bct img {
    width: 199px;
    height: 75px;
}
.footer .copy-right-logo {
    position: absolute;
    bottom: 12px;
    z-index: 99;
}
.footer .copy-right-logo img {
    height: 18px;
    width: auto;
}
.footer .copy-right {
    width: calc(100% - 30px);
    position: absolute;
    bottom: 11px;
    z-index: 99;
    color: #0072bc;
    text-align: center;
    font-style: normal;
    font-weight: 300;
    font-size: 14px;
    line-height: 16px;
}

.active {
    border-radius: 40px;
}
@media (max-width: 575px) {
    .footer {
        padding-top: 20px;
    }
    .footer-wrap {
        padding-bottom: 78px;
    }
    .footer-section__jsc h3 {
        margin-bottom: 10px;
    }
    .footer-section__jsc p {
        font-size: 14px;
        line-height: 21px;
        padding-right: 0;
    }
    .footer-grid {
        grid-template-areas: 'f-jsc f-jsc' 'f-introduce f-search' 'f-service f-column' 'f-contact f-contact' 'f-download-app f-download-app' 'f-column-bct f-column-bct';
        grid-auto-columns: 50% 50%;
        grid-column-gap: 0;
        grid-row-gap: 0;
        grid-auto-rows: max-content max-content max-content max-content max-content max-content;
    }
    .footer-grid > div > h3 {
        font-size: 20px;
        line-height: 30px;
    }
    .footer .footer-column__bct img {
        width: 162px;
        height: auto;
    }
    ul.menu-footer li {
        font-size: 14px;
        line-height: 21px;
    }
    .footer-column__connection .footer-column__social img {
        width: 24px;
        height: auto;
    }
    .footer-column__connection .footer-column__social svg {
        width: 24px;
        height: auto;
    }
    .footer-column > div {
        margin-bottom: 20px;
    }
    .footer-column > div:last-child {
        margin-bottom: 0;
    }
    .support-content-icon {
        width: 40px;
        height: 40px;
        margin-right: 5px;
    }
    .support-content-text div {
        font-size: 14px;
        line-height: 21px;
    }
    .support-content-text p {
        font-size: 20px;
        line-height: 30px;
    }
    .footer-section__contact {
        margin-bottom: 20px;
    }
    .footer-section__contact h5 {
        font-style: normal;
        font-weight: 500;
        font-size: 18px;
        line-height: 27px;
    }
    .footer-section__contact div {
        font-style: normal;
        font-weight: 300;
        font-size: 14px;
        line-height: 21px;
    }
    .footer .order {
        font-size: 14px;
        line-height: 21px;
        padding: 13px 6px 14px 7px;
        bottom: 180px;
    }
    .footer .copy-right {
        text-align: right;
    }
    .footer .phone {
        width: 50px;
        height: 49.86px;
        left: 16px;
        bottom: 30.14px;
    }
    .footer .phone img {
        width: 22px;
    }
    .footer .copy-right {
        width: unset;
        font-style: normal;
        font-weight: 300;
        font-size: 8px;
        line-height: 9px;
        text-align: right;
        right: 16px;
        bottom: 6.42px;
        opacity: 0.8;
    }
    .footer .copy-right-logo {
        left: 16px;
        bottom: 6.42px;
    }
    .footer .copy-right-logo img {
        height: 9px;
        width: auto;
    }
    .footer-section__introduce h3,
    .footer-column__support h3,
    .footer-column__connection h3 {
        font-size: 20px;
        line-height: 30px;
    }
    .footer-section__introduce,
    .footer-section__search,
    .footer-section__service,
    .footer-column {
        margin-bottom: 20px;
    }
    .footer-section__download-app--img img {
        margin-bottom: 20px;
    }
    .footer-section__download-app h3 {
        margin-bottom: 14px;
    }
}
@media (min-width: 576px) and (max-width: 767px) {
    .footer {
        padding-top: 50px;
    }
    .footer-wrap {
        padding-bottom: 129px;
    }
    .footer-section__jsc {
        margin-bottom: 44px;
    }
    .footer-section__jsc h3 {
        margin-bottom: 10px;
    }
    .footer-section__jsc p {
        font-size: 16px;
        line-height: 24px;
        padding-right: 0;
    }
    .footer-grid {
        grid-template-areas: 'f-jsc f-jsc f-jsc' 'f-introduce f-search f-service' 'f-contact f-contact f-download-app' 'f-contact f-contact f-column' 'f-contact f-contact f-column-bct';
        grid-auto-columns: calc(33.33% - 20px) calc(33.33% - 20px) calc(33.33% - 20px);
        grid-column-gap: 30px;
        grid-auto-rows: min-content min-content max-content max-content min-content;
    }
    .footer-grid > div > h3 {
        font-size: 18px;
        line-height: 30px;
    }
    .footer .footer-column__bct img {
        width: 162px;
        height: auto;
    }
    ul.menu-footer li {
        font-size: 18px;
        line-height: 27px;
    }
    .footer-column > div {
        margin-bottom: 30px;
    }
    .footer-column > div:last-child {
        margin-bottom: 20px;
    }
    .support-content-icon {
        width: 60px;
        height: 60px;
        margin-right: 10px;
    }
    .support-content-text div {
        font-size: 18px;
        line-height: 27px;
        margin-bottom: 2px;
    }
    .support-content-text p {
        font-size: 24px;
        line-height: 24px;
    }
    .footer-section__contact h5 {
        font-style: normal;
        font-weight: 500;
        font-size: 18px;
        line-height: 27px;
    }
    .footer-section__contact div {
        font-style: normal;
        font-weight: 300;
        font-size: 18px;
        line-height: 22px;
    }
    .footer-column__connection .footer-column__social img {
        width: 40px;
        height: auto;
    }
    .footer-column__connection .footer-column__social svg {
        width: 40px;
        height: auto;
    }
    .footer .order {
        font-size: 18px;
        line-height: 24px;
        padding: 19px 20px;
        bottom: 300px;
    }
    .footer .copy-right {
        text-align: right;
    }
    .footer .phone {
        width: 80.22px;
        height: 80px;
        left: 30px;
        bottom: 40px;
    }
    .footer .phone img {
        width: 22px;
    }
    .footer .copy-right {
        width: unset;
        font-style: normal;
        font-weight: 300;
        font-size: 14px;
        line-height: 16px;
        text-align: right;
        right: 32px;
        bottom: 6px;
    }
    .footer .copy-right-logo {
        left: 32px;
        bottom: 5px;
    }
    .footer .copy-right-logo img {
        height: 18px;
        width: auto;
    }
    .footer-section__download-app {
        margin-bottom: 20px;
    }
    .footer-section__download-app h3 {
        margin-bottom: 14px;
    }
    .footer-section__download-app img {
        height: 41px;
    }
    .footer-section__download-app img {
        margin-right: 9.11px;
        margin-bottom: 9.11px;
    }
    .footer-section__download-app img:last-child {
        margin-right: 0;
        margin-bottom: 0;
    }
    .footer-section__introduce,
    .footer-section__search,
    .footer-section__service {
        margin-bottom: 40px;
    }
}
@media (min-width: 768px) and (max-width: 991px) {
}
@media (min-width: 992px) and (max-width: 1199px) {
    .footer-grid {
        display: grid;
        grid-auto-columns: calc(52% - 45px) calc(20% - 45px) calc(20% - 45px) calc(21% - 45px);
        grid-column-gap: 25px;
    }
}
@media (min-width: 1200px) {
}
.wrapper-breadcrumb {
    background: #f7f7f7;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 14px;
}
.bgwhite {
    background: #fff !important;
}
.wrapper-breadcrumb img {
    width: 13px;
    height: 13px;
}
.breadcrumb {
    background-color: unset;
    margin-bottom: 0;
    padding: 0.75rem 8px;
}
@media (max-width: 575px) {
    .wrapper-breadcrumb {
        font-size: 10px;
        line-height: 12px;
    }
}
@media (min-width: 576px) and (max-width: 767px) {
}
@media (min-width: 768px) and (max-width: 991px) {
}
@media (min-width: 992px) and (max-width: 1199px) {
}
@media (min-width: 1200px) {
}
.ems-card {
    border-radius: 8px;
}
.ems-card:hover {
    box-shadow: 10px 10px 10px rgba(0, 0, 0, 0.03);
}
.ems-card__img {
    width: 100%;
    height: 252px;
    min-height: 252px;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
}
.ems-card__content {
    padding: 20px;
}
.ems-card__content--link {
    font-style: bold;
    font-weight: 500;
    font-size: 18px;
    line-height: 27px;
    display: block;
    color: #0072bc;
    cursor: pointer;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    height: 54px;
    margin-bottom: 10px;
}
.ems-card__content--link:hover {
    color: #f7941e;
    text-decoration: none;
}
.ems-card__content--description {
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #313131;
    margin-top: 10px;
    margin-bottom: 23px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    height: 72px;
    margin-bottom: 20px;
}
.ems-card__content--info {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.ems-card__content--info-left,
.ems-card__content--info-right {
    display: flex;
}
.ems-card__content--info-left img,
.ems-card__content--info-right img {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    margin-right: 5px;
}
.ems-card__content--info-left span,
.ems-card__content--info-right span {
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 24px;
    color: #7d7d7d;
    white-space: nowrap;
}
.ems-card__content--info-right span {
    color: #313131;
}
@media (max-width: 575px) {
    .ems-card {
        box-shadow: 10px 10px 10px rgba(0, 0, 0, 0.03);
    }
    .ems-card__img {
        height: 246px;
        min-height: 246px;
    }
    .ems-card__content {
        padding: 10px 10px 34px;
    }
    .ems-card__content--link {
        font-size: 16px;
        line-height: 24px;
        height: 48px;
        margin-bottom: 10px;
    }
    .ems-card__content--description {
        font-size: 14px;
        line-height: 21px;
        -webkit-line-clamp: 3;
        height: 66px;
        margin-bottom: 10px;
    }
    .ems-card__content--info-left img,
    .ems-card__content--info-right img {
        width: 16px;
        height: 16px;
        flex-shrink: 0;
        margin-right: 3px;
    }
    .ems-card__content--info-left span,
    .ems-card__content--info-right span {
        font-size: 12px;
        line-height: 18px;
    }
}
@media (min-width: 576px) and (max-width: 767px) {
    .ems-card {
        box-shadow: 10px 10px 10px rgba(0, 0, 0, 0.03);
    }
    .ems-card__img {
        height: 252px;
        min-height: 252px;
    }
    .ems-card__content {
        padding: 20px 18px 20px 17px;
    }
    .ems-card__content--link {
        font-size: 18px;
        line-height: 27px;
        height: 55px;
        margin-bottom: 10px;
    }
    .ems-card__content--description {
        font-size: 16px;
        line-height: 24px;
        -webkit-line-clamp: 3;
        height: 72px;
        margin-bottom: 20px;
    }
    .ems-card__content--info-left img,
    .ems-card__content--info-right img {
        width: 16px;
        height: 16px;
        flex-shrink: 0;
        margin-right: 3px;
    }
    .ems-card__content--info-left span,
    .ems-card__content--info-right span {
        font-size: 12px;
        line-height: 18px;
    }
}
@media (min-width: 768px) and (max-width: 991px) {
}
@media (min-width: 992px) and (max-width: 1199px) {
}
@media (min-width: 1200px) {
}
@media screen and (max-width: 375px) {
    .ems-card__img,
    .news-left .img-top img,
    .news-top_page_news .img-top img {
        max-width: 343px;
        margin: auto;
    }
}
.wr-contact .slick-next {
    right: 0 !important;
}
.banner-contact {
    position: relative;
}
.banner-contact img {
    height: 356px;
}
.banner-contact .title-contact {
    position: absolute;
    width: 100%;
    top: 44%;
    font-style: normal;
    font-weight: 500;
    font-size: 45px;
    line-height: 55px;
    text-transform: uppercase;
    color: #fff;
}
.breadcrumb-contact {
    background: #f7f7f7;
}
.breadcrumb-contact img {
    max-width: 20px;
}
.breadcrumb-contact .breadcrumb {
    color: #313131;
}
.list-address {
    margin: 0;
    padding: 0;
    list-style: none;
}
.personal-contact {
    flex: 0 0 31%;
}
.title-form {
    font-style: normal;
    font-weight: 500;
    font-size: 18px;
    line-height: 24px;
    color: #313131;
}
.title-form img {
    max-width: 50px;
    margin-right: 5px;
}
.contact__right-form .is-success {
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    color: #f7941e;
    padding-top: 10px;
}
.content-contact {
    margin: 70px 0;
}
.address-contact {
    grid-template-columns: auto auto auto auto;
    grid-gap: 30px;
    margin-bottom: 48px;
    grid-auto-columns: 25% 25% 25% 25%;
}
@media screen and (min-width: 576px) and (max-width: 1199.99px) {
    .address-contact {
        grid-template-columns: auto auto;
        grid-gap: 30px;
        margin-bottom: 48px;
        grid-auto-columns: 50% 50%;
    }
}
.address-contact .img-top-contact {
    width: 50px;
    height: 50px;
    margin-bottom: 10px;
}
.address-contact .company-name-contact {
    font-style: normal;
    font-weight: 700;
    font-size: 22px;
    line-height: 27px;
    color: #0072bc;
    margin-bottom: 20px;
}
.address-contact .list-address li {
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #313131;
}
.address-contact .list-address li a:hover {
    color: #313131;
}
.address-contact .list-address li:last-child {
    margin-bottom: 0x;
}
.contact__left-form .contact__left-form-img {
    margin-bottom: 20px;
    border-radius: 10px;
}
.contact__left-form .contact__left-form-title {
    font-style: normal;
    font-weight: 500;
    font-size: 18px;
    line-height: 21px;
    color: #313131;
    margin-bottom: 20px;
}
.contact__left-form-personal {
    grid-template-columns: auto auto auto;
    grid-gap: 0;
    grid-auto-columns: 33% 33% 33%;
}
.contact__left-form-personal .img-skype {
    width: 26px;
    height: 26px;
    margin-right: 12px;
    flex-shrink: 0;
}
.contact__left-form-personal .name-contact-skype {
    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    line-height: 17px;
    color: #313131;
}
.contact__left-form-personal .des-contact-skype {
    margin: 0;
    font-style: normal;
    font-weight: 300;
    font-size: 12px;
    line-height: 15px;
    color: #313131;
}
.contact__right-form {
    padding: 13px 34.57px 28px;
    background: #fff;
    box-shadow: 0 0 40px rgba(0, 0, 0, 0.1);
    border-radius: 4px;
}
.contact__right-form .form-contact .form-group {
    margin-bottom: 10px;
}
.contact__right-form .form-contact .form-group:last-child {
    margin-bottom: 0;
}
.contact__right-form-title {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}
.contact__right-form-title-icon {
    width: 52.38px;
    height: 50px;
    flex-shrink: 0;
    margin-right: 5px;
}
.contact__right-form-title-title {
    font-style: normal;
    font-weight: 500;
    font-size: 18px;
    line-height: 24px;
    text-transform: uppercase;
    color: #313131;
}
.contact__right-form .form-contact input,
.contact__right-form .form-contact textarea {
    padding: 14px 16px;
    font-size: 14px;
    line-height: 21px;
}
.contact__right-form .form-contact {
    padding: 0 8.38px;
}
.contact__right-form .form-contact input,
.contact__right-form .form-contact textarea {
    padding: 13px 20px;
    font-size: 16px;
    line-height: 24px;
    color: #313131;
    height: 50px;
    background: #fff;
    border: 1px solid rgba(49, 49, 49, 0.3);
    box-sizing: border-box;
    border-radius: 4px;
}
.contact__right-form .form-contact textarea {
    height: 92px;
}
.contact__right-form .form-contact input::placeholder,
.contact__right-form .form-contact textarea::placeholder {
    color: #afafaf;
}
.contact__right-form .form-contact textarea {
    min-height: 92px;
}
.contact__right-form .form-contact .form-group {
    margin-bottom: 10px;
}
.contact__right-form .form-contact .form-group:last-child {
    margin-bottom: 0;
}
.contact__right-form button {
    background: #f7941e;
    border-radius: 6px;
    font-weight: 500;
    font-size: 18px;
    line-height: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff;
    width: 100%;
    margin-top: 20px;
    height: 50px;
    transition: 0.3s;
    border: none;
}
.contact__right-form button:hover {
    background: #0072bc;
    color: #fff !important;
    border: none !important;
}
@media (max-width: 575px) {
    .content-contact {
        margin-top: 40px;
        margin-bottom: 40px;
    }
    .address-contact {
        grid-template-columns: auto;
        grid-gap: 30px;
        margin-bottom: 40px;
    }
    .address-contact .img-top-contact {
        margin-bottom: 10px;
    }
    .address-contact .company-name-contact {
        font-size: 18px;
        line-height: 27px;
        margin-bottom: 10px;
    }
    .address-contact .list-address li {
        font-size: 14px;
        line-height: 21px;
    }
    .contact__left-form .contact__left-form-img {
        margin-bottom: 20px;
    }
    .contact__left-form .contact__left-form-title {
        margin-bottom: 10px;
    }
    .contact__left-form-personal {
        grid-template-columns: auto auto;
        grid-gap: 10px 20px;
        margin-bottom: 20px;
        grid-auto-columns: 50% 50%;
    }
    .contact__left-form-personal .img-skype {
        margin-right: 5px;
    }
    .contact__left-form-personal .name-contact-skype {
        font-size: 14px;
        line-height: 21px;
    }
    .contact__left-form-personal .des-contact-skype {
        font-size: 12px;
        line-height: 18px;
    }
    .contact__right-form {
        padding: 30px 16px;
        border-radius: 10px;
    }
    .contact__right-form-title {
        margin-bottom: 20px;
    }
    .contact__right-form-title-icon {
        width: 30px;
        height: 30px;
        margin-right: 5px;
    }
    .contact__right-form-title-title {
        font-size: 18px;
        line-height: 27px;
    }
    .contact__right-form .form-contact {
        padding: 0 6px;
    }
    .contact__right-form .form-contact input,
    .contact__right-form .form-contact textarea {
        padding: 14px 16px;
        font-size: 14px;
        line-height: 21px;
    }
    .contact__right-form button {
        font-size: 18px;
        line-height: 24px;
    }
}
@media (min-width: 576px) and (max-width: 767px) {
    .content-contact {
        margin-top: 50px;
        margin-bottom: 40px;
    }
    .address-contact {
        grid-template-columns: auto auto;
        grid-gap: 30px;
        margin-bottom: 50px;
        grid-auto-columns: 50% 50%;
    }
    .address-contact .img-top-contact {
        margin-bottom: 10px;
    }
    .address-contact .company-name-contact {
        font-size: 22px;
        line-height: 27px;
        margin-bottom: 20px;
    }
    .address-contact .list-address li {
        font-size: 16px;
        line-height: 24px;
    }
    .contact__left-form .contact__left-form-img {
        margin-bottom: 20.65px;
    }
    .contact__left-form .contact__left-form-title {
        margin-bottom: 20px;
    }
    .contact__left-form-personal {
        grid-template-columns: auto auto auto;
        grid-gap: 10px;
        margin-bottom: 30px;
        grid-auto-columns: 33% 33% 33%;
    }
    .contact__left-form-personal .img-skype {
        margin-right: 12px;
    }
    .contact__left-form-personal .name-contact-skype {
        font-size: 14px;
        line-height: 17px;
    }
    .contact__left-form-personal .des-contact-skype {
        font-size: 12px;
        line-height: 15px;
    }
    .contact__right-form {
        padding: 13px 34.57px 28px;
        border-radius: 4px;
    }
    .contact__right-form-title {
        margin-bottom: 10px;
    }
    .contact__right-form-title-icon {
        width: 52.38px;
        height: 50px;
        margin-right: 5.24px;
    }
    .contact__right-form-title-title {
        font-size: 18px;
        line-height: 24px;
    }
    .contact__right-form .form-contact input,
    .contact__right-form .form-contact textarea {
        padding: 13px 20px;
        font-size: 16px;
        line-height: 24px;
    }
    .contact__right-form button {
        font-size: 18px;
        line-height: 24px;
    }
}
@media (min-width: 768px) and (max-width: 991px) {
    .contact__left-form-personal {
        margin-bottom: 20px;
    }
}
@media (min-width: 992px) and (max-width: 1199px) {
}
@media (min-width: 1200px) {
}
a.link_skype {
    text-decoration: none;
}
.title-learn-more {
    font-weight: 700;
    font-size: 20px;
    line-height: 30px;
    color: #0072bc;
    margin-bottom: 30px;
}
.name-lean-more {
    margin: 20px 10px 10px;
    font-weight: 700;
    font-size: 18px;
    line-height: 27px;
    color: #313131;
}
.lean-more-redirect {
    font-weight: 500;
    font-size: 18px;
    line-height: 30px;
    display: flex;
    align-items: center;
    color: #f7941e;
    margin: 0 10px 30px;
}
.lean-more-redirect:hover a {
    color: #f7941e;
}
@media (max-width: 767px) {
    .title-learn-more {
        font-style: normal;
        font-weight: 700;
        font-size: 18px;
        line-height: 27px;
    }
}
.content-share-holder {
    margin: 50px 0 80px;
}
.show-year {
    margin-bottom: 24px;
}
.show-title {
    font-style: normal;
    font-weight: 500;
    font-size: 20px;
    line-height: 30px;
    margin-right: 10px;
}
.choose-year {
    margin-bottom: 0;
    width: 226px;
    background: #fff;
    box-sizing: border-box;
    border-radius: 4px;
}
.choose-year select {
    height: 48px;
}
.choose-year .ant-select-selector {
    margin-bottom: 0 !important;
}
.choose-year .ant-select-arrow {
    top: 50% !important;
}
.list-share-holder {
    margin-bottom: 80px;
}
.item-share-holder {
    background: #f7f7f7;
    border-radius: 5px;
    padding: 13px 20px;
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #313131;
    margin-bottom: 20px;
}
.item-share-holder a {
    color: #f7941e;
    font-weight: 500;
    font-size: 18px;
    line-height: 30px;
}
.item-share-holder:hover,
.item-share-holder:hover a {
    color: #fff !important;
    background: #f7941e;
}
.learn-more-mini-Shareholder:hover {
    box-shadow: 10px 10px 10px rgba(0, 0, 0, 0.03);
}
.content-share-holder .accordion-title {
    color: #0072bc;
}
.block-redirect:hover a {
    text-decoration: none;
}
.block-redirect:hover a .lean-more-redirect {
    text-decoration: underline;
    color: #f7941e;
}
.content-share-holder .accordion-title:hover {
    background: 0 0;
}
.content-share-holder .accordion {
    margin-bottom: 20px;
}
.item-share-holder .item-share-link-phone {
    display: none;
}
.content-share-holder .learn-more-mini-Shareholder a {
    text-decoration: none;
}
@media (max-width: 767px) {
    .content-share-holder {
        margin-bottom: 20px;
    }
    .learn-more-mini-Shareholder {
        margin-bottom: 20px;
    }
    .item-share-holder {
        background: 0 0;
    }
    .item-share-holder .name-item,
    .item-share-holder .item-share-link {
        display: none;
    }
    .item-share-holder .item-share-link-phone {
        display: block;
        font-style: normal;
        font-weight: 500;
        font-size: 14px;
        line-height: 21px;
        text-decoration: underline;
    }
    .content-share-holder .show-year {
        flex-direction: column;
        float: left;
        margin-bottom: 40px;
        align-items: flex-start !important;
    }
    .content-share-holder .show-year .show-title {
        margin-bottom: 10px;
    }
    .content-share-holder .accordion-title {
        color: #313131;
        font-style: normal;
        font-weight: 400;
        font-size: 18px;
        line-height: 24px;
        padding: 13px 0 13px 16px;
    }
    .content-share-holder .accordion-title:hover {
        background-color: #f7941e;
        color: #fff;
    }
    .item-share-holder .name-item {
        font-style: normal;
        font-weight: 500;
        font-size: 18px;
        line-height: 24px;
    }
    .item-share-holder {
        margin-top: 0;
        padding: 0;
    }
    .content-share-holder .accordion {
        margin-bottom: 40px;
    }
    .content-share-holder .background-mobile-hover {
        background: #f7941e;
    }
    .block-redirect {
        margin-bottom: 20px;
    }
}
@media (min-width: 768px) and (max-width: 991px) {
    .content-share-holder {
        margin-bottom: 20px;
    }
    .learn-more-mini-Shareholder {
        margin-bottom: 30px;
    }
    .item-share-holder {
        height: 98px;
    }
    .list-share-holder {
        margin-bottom: 50px;
    }
    .block-redirect {
        margin-bottom: 30px;
    }
}
@media (min-width: 992px) and (max-width: 1199px) {
    .content-share-holder {
        margin-bottom: 20px;
    }
    .learn-more-mini-Shareholder {
        margin-bottom: 30px;
    }
    .item-share-holder {
        height: 98px;
    }
    .block-redirect {
        margin-bottom: 30px;
    }
}
@media (min-width: 1200px) {
}
.estimate-charge-tab {
    margin-top: 70px;
    margin-bottom: 120px;
}
.estimate-charge-tab .nav {
    flex-wrap: nowrap !important;
}
.order-search {
    margin-bottom: 70px;
}
.search-holiday {
    padding: 36px;
    box-shadow: 20px 10px 60px rgba(0, 0, 0, 0.05);
    border-radius: 10px;
    margin: 70px 0;
}
.search-holiday.post-office {
    padding: 40px;
}
.search-holiday-text {
    margin-bottom: 18px;
    font-size: 16px;
    line-height: 24px;
    color: #313131;
}
.search-holiday-text img {
    width: 32px;
    height: 32px;
    margin-right: 10px;
}
.search-holiday-action input {
    width: 100%;
    border: 1px solid rgba(49, 49, 49, 0.3);
    border-radius: 4px;
    padding: 13px 20px;
}
.search-holiday-action.post-office input {
    text-transform: uppercase;
}
.search-holiday-action.post-office input::placeholder {
    text-transform: initial;
}
.search-holiday-action select {
    margin-right: 30px;
    width: 785px;
    height: 50px;
    border: 1px solid rgba(49, 49, 49, 0.3);
    border-radius: 4px;
    padding: 13px 20px;
}
.search-holiday-action .ant-select-selector {
    margin-bottom: 0 !important;
}
.search-holiday-action .ant-select-arrow {
    top: 50% !important;
}
.search-holiday-action button {
    color: #fff;
    background: #f7941e;
    border-radius: 6px;
    border: none;
    font-weight: 500;
    font-size: 18px;
    line-height: 24px;
    width: 100%;
    height: 100%;
}
.search-holiday-action button:hover {
    background: #0072bc;
}
.search-holiday .general-rules {
    margin-top: 20px;
    font-weight: 500;
    font-size: 18px;
    line-height: 30px;
    text-decoration-line: underline;
    color: #f7941e;
}
.search-holiday .general-rules a:hover {
    color: #f7941e;
}
.search-holiday-error {
    font-size: 16px;
    line-height: 24px;
    color: #fa292d;
    margin-top: 20px;
}
.order-search-info,
.order-search-info-status {
    margin-bottom: 70px;
}
.order-search-info-top {
    background: #ed1b24;
    border-radius: 10px 10px 0 0;
    padding: 26px 30px;
}
.order-search-info-top-text {
    border-right: 1px solid #fff;
}
.order-search-info-top-text:nth-of-type(2) {
    padding: 0 33px;
}
.order-search-info-top-text:nth-of-type(3) {
    padding: 0 58px;
}
.order-search-info-top-text:nth-of-type(4) {
    padding-left: 59px;
    border-right: none;
}
.order-search-info-top-text div {
    color: #fff;
    font-size: 14px;
    line-height: 21px;
}
.order-search-info-top-text p {
    font-weight: 700;
    font-size: 18px;
    line-height: 27px;
    color: #fff;
    margin-bottom: 0;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}
.order-search-info-middle {
    padding: 23px 30px;
    background: #fafafa;
    border-bottom: 1px dashed #afafaf;
}
.order-search-info-middle div {
    font-size: 16px;
    line-height: 21px;
    color: #313131;
}
.order-search-info-middle span {
    font-weight: 700;
    font-size: 18px;
    line-height: 27px;
    color: #313131;
    margin-left: 20px;
}
.order-search-info-bottom {
    padding: 23px 30px;
    background: #fafafa;
    border-radius: 0 0 10px 10px;
}
.order-search-info-bottom div {
    font-size: 16px;
    line-height: 21px;
    color: #313131;
}
.order-search-info-bottom span {
    font-weight: 700;
    font-size: 18px;
    line-height: 27px;
    color: #313131;
    margin-left: 20px;
}
.order-search-info-status-title {
    margin-bottom: 35px;
}
.order-search-info-status-title h3 {
    font-weight: 700;
    font-size: 20px;
    line-height: 24px;
    text-transform: uppercase;
    color: #ed1b24;
}
.order-search-info-play-title {
    margin-bottom: 40px;
}
.order-search-info-play-title h3 {
    font-weight: 700;
    font-size: 20px;
    line-height: 24px;
    text-transform: uppercase;
    color: #0072bc;
    padding-bottom: 23px;
    border-bottom: 1px dashed #afafaf;
}
.search table,
.estimate-charge-tab table {
    border-collapse: collapse;
    border-radius: 10px;
    text-align: center;
    margin-right: 3px;
}
.search .international table {
    text-align: left;
}
.search thead,
.estimate-charge-tab thead {
    background: #ed1b24;
}
.search .tbody,
.estimate-charge-tab tbody {
    background: #fafafa;
}
.search table tr th,
.estimate-charge-tab table tr th {
    color: #fff;
    font-weight: 700;
    font-size: 18px;
    line-height: 30px;
    padding: 20px !important;
    border-bottom: none;
	text-align: center;
}
.search table tr td,
.estimate-charge-tab table tr td {
    padding: 20px !important;
    font-size: 16px;
    border-top: none;
    color: #313131;
}
.search table tr:first-child th:first-child,
.estimate-charge-tab table tr:first-child th:first-child {
    border-top-left-radius: 6px;
}
.search table tr:first-child th:last-child,
.estimate-charge-tab table tr:first-child th:last-child {
    border-top-right-radius: 6px;
}
.search table tr:last-child td:first-child,
.estimate-charge-tab tr:last-child td:first-child {
    border-bottom-left-radius: 6px;
}
.search table tr:last-child td:last-child,
.estimate-charge-tab tr:last-child td:last-child {
    border-bottom-right-radius: 6px;
}
.banned-order select.form-control {
    padding: 13px 20px;
    height: 50px;
    border-radius: 4px;
    width: 785px;
    margin-right: 30px;
}
.regulations {
    font-weight: 500;
    font-size: 18px;
    line-height: 30px;
    text-decoration-line: underline;
    color: #f7941e;
    margin-top: 20px;
    cursor: pointer;
}
.banned-order-tab .nav-item {
    width: 370px;
}
.banned-order-tab .nav-item:nth-of-type(1) .nav-link {
    border-radius: 10px 0 0 10px;
}
.banned-order-tab .nav-item:nth-of-type(3) .nav-link {
    border-radius: 0 10px 10px 0;
}
.banned-order-tab .nav-item .nav-link {
    background: #fafafa;
    padding: 25px 0;
    color: #313131;
    font-size: 20px;
    line-height: 30px;
}
.banned-order-tab .nav-item .nav-link.active {
    background-color: #f7941e;
    color: #fff;
    font-weight: 500;
}
.banned-order-tab .tab-content {
    margin-top: 50px;
}
.banned-order-tab-title {
    border-bottom: 1px dashed #afafaf;
    margin-bottom: 30px;
}
.banned-order-tab-title h3 {
    color: #0072bc;
    font-weight: 700;
    font-size: 20px;
    line-height: 24px;
    text-transform: uppercase;
    padding-bottom: 23px;
}
.banned-order-tab-content-wrapper {
    padding: 0 15px;
    font-size: 16px;
}
.banned-order-tab-content-wrapper div {
    margin-bottom: 20px;
}
.banned-order-tab-content span {
    margin-left: 64px;
}
.holiday-schedule-title {
    border-bottom: 1px dashed #afafaf;
    margin-bottom: 30px;
}
.holiday-schedule-title h3 {
    color: #0072bc;
    font-weight: 700;
    font-size: 20px;
    line-height: 24px;
    text-transform: uppercase;
    padding-bottom: 23px;
}
.holiday-schedule-content h3 {
    font-weight: 500;
    font-size: 20px;
    line-height: 30px;
    color: #313131;
    margin-bottom: 30px;
}
.estimate-charge-tab .nav-item {
    flex: 1;
}
.estimate-charge-tab .nav-item:nth-of-type(1) .nav-link {
    border-radius: 10px 0 0 10px;
}
.estimate-charge-tab .nav-item:nth-of-type(2) .nav-link {
    border-radius: 0 10px 10px 0;
}
.estimate-charge-tab .nav-item .nav-link {
    background: #fafafa;
    padding: 25px 109px;
    color: #313131;
    font-size: 20px;
    line-height: 30px;
    transition: background 0.3s !important;
    font-weight: 400;
}
.estimate-charge-tab .nav-item .nav-link.active {
    font-weight: 500;
}
.estimate-charge-tab .nav-item .nav-link:hover {
    background-color: #f7941e;
    color: #fff;
}
.estimate-charge-tab .nav-item .nav-link.active {
    background-color: #f7941e;
    color: #fff;
}
.estimate-charge-tab .tab-content {
    margin-top: 50px;
}
.estimate-charge-tab-title {
    margin-bottom: 40px;
}
.estimate-charge-tab-title h3 {
    color: #0072bc;
    font-weight: 700;
    font-size: 20px;
    line-height: 24px;
    text-transform: uppercase;
}
.estimate-charge-tab-content select.form-control {
    padding: 13px 20px;
    height: 50px;
    border-radius: 4px;
    margin-bottom: 24px;
}
.estimate-charge-tab-content input.form-control {
    padding: 13px 20px;
    height: 50px;
    border-radius: 4px;
    margin-bottom: 24px;
}
.estimate-charge-tab-content label {
    font-weight: 500;
    font-size: 18px;
    line-height: 30px;
    color: #313131;
    margin-bottom: 10px;
}
.estimate-charge-tab-content .ant-select {
    margin-bottom: 24px !important;
}
.estimate-charge-tab-content .ant-select .ant-select-selector {
    margin-bottom: 0 !important;
}
.estimate-charge-tab-content button {
    background: #f7941e;
    border-radius: 6px;
    padding: 13px 0;
    width: 100%;
    border: none;
    font-weight: 500;
    font-size: 18px;
    line-height: 24px;
    transition: background 0.3s;
    max-height: 50px;
}
.estimate-charge-tab-content button:hover {
    background: #0072bc;
}
.estimate-charge-tab-content-btn {
    width: 100%;
    padding: 0 15px;
    margin-top: 16px;
}
.estimate-charge-tab-content-btn button {
    color: #fff;
}
.estimate-charge-tab-table {
    margin-top: 70px;
}
.estimate-charge-tab-table-title {
    margin-bottom: 40px;
}
.estimate-charge-tab-table-title h3 {
    font-weight: 700;
    font-size: 20px;
    line-height: 24px;
    color: #0072bc;
    text-transform: uppercase;
    margin-bottom: 0;
}
.note {
    font-size: 16px;
    font-style: italic;
    line-height: 19px;
    color: #7d7d7d;
}
.note a {
    text-decoration: underline;
}
.note a:hover {
    color: #7d7d7d;
}
.estimate-charge-tab-table table tbody tr {
    border-bottom: 1.5px dashed #afafaf;
}
#custom-scrollbar::-webkit-scrollbar-track {
    border-radius: 10px;
    background-color: #efefef;
    opacity: 0.2;
}
#custom-scrollbar::-webkit-scrollbar {
    width: 8px;
    background-color: #efefef;
    opacity: 0.2;
}
#custom-scrollbar::-webkit-scrollbar-thumb {
    border-radius: 10px;
    background-color: #c4c4c4;
    opacity: 0.8;
}
.ic-important {
    color: #ff002e;
}
.not-found-office {
    padding: 21px;
    background: #fff;
    min-height: 203px;
    font-size: 16px;
    color: #313131;
    line-height: 24px;
}
.content-international .accordion-title {
    font-weight: 700;
    font-size: 20px;
    line-height: 30px;
    text-transform: uppercase;
    color: #0072bc;
}
.content-international .accordion .weight-size {
    padding: 10px 0;
    font-size: 16px;
    line-height: 24px;
    color: #313131;
}
.search table {
    border-collapse: collapse;
}
.search table td {
    border: 2px dashed #ddd;
}
.search table th {
    border: 1px solid #fff;
}
.search table tr:first-child th {
    border-top: 0;
}
.search table tr:last-child td {
    border-bottom: 2px dashed #ddd;
}
.search table tr td:first-child {
    border-left: 2px dashed #ddd;
}
.search table tr td:last-child {
    border-right: 2px dashed #ddd;
}
.code_clickable {
    text-decoration: underline;
    color: #f7941e;
    cursor: pointer;
}
.code_clickable:hover {
    color: #0072bc;
}
@media screen and (min-width: 0px) and (max-width: 1199.99px) {
    .estimate-charge-tab .nav-item .nav-link {
        padding: 4px 40px !important;
        font-size: 14px !important;
        line-height: 21px !important;
        display: flex;
        height: 50px !important;
        width: 100% !important;
        justify-content: center;
        align-items: center;
    }
    .estimate-charge-tab .nav-item {
        height: 50px !important;
        width: 100% !important;
    }
    .estimate-charge-tab-title h3 {
        color: #0072bc !important;
        font-weight: 700 !important;
        font-size: 18px !important;
        line-height: 27px !important;
        text-transform: unset !important;
    }
    .estimate-charge-tab-content label {
        font-weight: 700 !important;
        font-size: 16px !important;
        line-height: 24px !important;
    }
    .estimate-charge-tab-title {
        margin-bottom: 20px !important;
    }
    .estimate-charge-tab {
        margin-top: 40px !important;
        margin-bottom: 40px !important;
    }
    .estimate-charge-tab .tab-content {
        margin-top: 31px !important;
    }
    .estimate-charge-tab-content-btn {
        margin-top: 6px !important;
    }
    .search-holiday {
        margin: 50px auto !important;
    }
    .search-holiday-text img {
        width: 22px !important;
        height: 22px !important;
    }
    .search-holiday-text {
        margin-bottom: 20px !important;
    }
    .search-holiday-action button {
        height: 50px !important;
    }
    .order-search-info-top.row,
    .order-search-info-middle.row,
    .order-search-info-bottom.row {
        margin-left: 0 !important;
        margin-right: 0 !important;
    }
    .order-search-info-top {
        padding: 16px 20px !important;
    }
    .order-search-info-middle {
        padding: 20px 30px !important;
    }
    .order-search-info-middle span {
        margin-left: 10px !important;
    }
    .order-search-info {
        margin-bottom: 50px !important;
    }
    .order-search-info-status-title {
        margin-bottom: 30px !important;
    }
}
@media screen and (min-width: 0px) and (max-width: 575.99px) {
    .order-search-info-top-text {
        padding-left: 0;
        padding-right: 0;
    }
    .order-search-info-top-text:nth-of-type(1),
    .order-search-info-top-text:nth-of-type(2) {
        border-bottom: 1px solid #fff;
    }
    .order-search-info-top-text:nth-of-type(2) {
        padding-left: 15px !important;
        border-right: unset !important;
        padding-right: 0 !important;
        padding-bottom: 10px !important;
    }
    .order-search-info-top-text:nth-of-type(3) {
        padding: 13px 0 0 !important;
    }
    .order-search-info-top-text:nth-of-type(4) {
        padding-left: 15px !important;
        border-right: none;
        padding-top: 13px !important;
    }
    .order-search-info-top-text p {
        white-space: unset !important;
        font-size: 16px !important;
    }
    .search-holiday-action button {
        margin-top: 20px !important;
    }
    .search-holiday {
        padding: 15px !important;
    }
    .search-holiday-text {
        font-size: 15px !important;
        line-height: 22px !important;
    }
    .search-holiday .general-rules {
        margin-top: 16px !important;
        font-size: 16px !important;
        line-height: 27px !important;
    }
    .order-search.international .wr_table {
        max-height: calc(100vh - 300px) !important;
    }
    .order-search table tr td {
        padding: 14px !important;
    }
    .order-search.international .ant-select {
        font-size: 14px !important;
    }
    .search-holiday-action button {
        height: 40px !important;
        font-size: 16px !important;
    }
    .content-international .accordion-title {
        font-weight: 400 !important;
        font-size: 15px !important;
        line-height: 20px !important;
        color: #313131;
    }
}
@media screen and (min-width: 576px) and (max-width: 1199.99px) {
    .order-search-info-top-text:nth-of-type(1) {
        padding-left: 0 !important;
    }
    .order-search-info-top-text:nth-of-type(2) {
        padding: 0 15px !important;
    }
    .order-search-info-top-text:nth-of-type(3) {
        padding: 0 15px !important;
    }
    .order-search-info-top-text:nth-of-type(4) {
        padding-left: 15px !important;
        padding-right: 0 !important;
    }
    .order-search-info-top-text p {
        white-space: unset !important;
    }
    .search-holiday {
        padding: 35px !important;
    }
}
@media screen and (min-width: 0px) and (max-width: 991px) {
    .content-international .accordion-title {
        font-weight: 400 !important;
        color: #313131;
    }
}
@media screen and (min-width: 768px) and (max-width: 991px) {
    .content-international .accordion-title {
        font-weight: 400 !important;
        font-size: 18px !important;
        line-height: 24px !important;
        color: #313131;
    }
}
.wr_back {
    text-align: right;
}
.back_btn1 {
    color: #f7941e;
    text-decoration: underline;
    cursor: pointer;
    padding: 5px 0 5px 25px;
}
.back_btn1:hover {
    color: #0072bc;
}
.btn_download_excel1 {
    padding: 10px 30px;
    background-color: #f7941e;
    cursor: pointer;
    border: none;
    border-radius: 6px;
    color: #fff;
}
.btn_download_excel1:hover {
    background-color: #0072bc;
}
.download_icon1 {
    transform: translateY(-4px);
    margin-right: 5px;
}
.search-post-office-wrapper {
    margin: 70px 0;
}
.search-post-office-wrapper .ant-select-arrow {
    right: 11px;
    margin-top: -6px !important;
}
.search-post-office-action {
    width: 100%;
    padding: 20px;
    background: #f7f7f7;
    margin-bottom: 30px;
    border-radius: 10px;
}
.search-post-office-action .form-group {
    width: 100%;
    margin-bottom: 10px;
}
.search-post-office-action .form-group select {
    padding: 13px 20px;
    height: 50px;
}
.search-post-office-action button {
    margin-top: 10px;
    background: #f7941e;
    border-radius: 6px;
    padding: 12px 0;
    width: 100%;
    border: none;
    color: #fff;
    font-weight: 500;
    font-size: 18px;
    line-height: 24px;
}
.search-post-office-action button:hover {
    background: #0072bc;
}
.search-post-office-action img {
    width: 16px;
    height: 16px;
    position: absolute;
    left: 14px;
    top: 17px;
}
.search-post-office-list {
    padding: 20px;
    background: #f7f7f7;
    border-radius: 10px;
}
.search-post-office-list-item-wrapper {
    max-height: 624px;
    overflow: auto;
}
.search-post-office-list-title h3 {
    font-weight: 700;
    font-size: 20px;
    line-height: 24px;
    color: #0054a6;
    text-transform: uppercase;
    margin-bottom: 20px;
}
.search-post-office-list-title h3 i {
    color: #313131;
    font-size: 16px;
    text-transform: lowercase;
}
.search-post-office-content-item {
    padding: 21px;
    background: #fff;
    border-bottom: 1px solid #afafaf;
    cursor: pointer;
}
.search-post-office-content-item:last-child {
    border-bottom: none;
}
.search-post-office-content-item-title {
    margin-bottom: 10px;
}
.search-post-office-content-item-title svg {
    height: 15px;
    width: 11px;
    margin-right: 8px;
}
.search-post-office-content-item-title h3 {
    font-weight: 500;
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 0;
}
.search-post-office-content-item-description {
    padding-left: 20px;
    margin-bottom: 10px;
}
.search-post-office-content-item-description p {
    line-height: 21px;
    color: #313131;
    margin-bottom: 5px;
}
.search-post-office-content-item-action a {
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    color: #f7941e !important;
    cursor: pointer;
}
.not-found-office {
    padding: 21px;
    background: #fff;
    min-height: 203px;
    font-size: 16px;
    color: #313131;
    line-height: 24px;
}


@media (max-width: 575px) {
    .search-post-office-action {
        margin-bottom: 30px;
    }
    .search-post-office-list {
        margin-bottom: 40px;
    }

    .search .search-dv {
        width: 100%;
        margin: 40px auto;
    }

    .col-6 {
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        max-width: 50%;
    }
    
    .row {
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        margin-right: -15px;
        margin-left: -15px;
    }
}
@media (min-width: 576px) and (max-width: 767px) {
}
@media (min-width: 768px) and (max-width: 991px) {
}
@media (min-width: 992px) and (max-width: 1199px) {
}
@media (min-width: 1200px) {
}
