/* Yosu CSS */
/* General */
html,body{ 
    -webkit-overflow-scrolling : touch !important;
    overflow: auto !important; 
    /* height: 100% !important; */
}
body {
	font-family: 'SanomatSansVN', sans-serif;
	font-size: 1.5rem;
	font-weight: normal;
	color: #333;
	max-width: 1920px;
	margin-left: auto;
	margin-right: auto;
	background-color: #fff; 
    padding-right: 0 !important;
}

/* input {
	height: 40px;
} */
p {
	line-height: 1.3;
}
a {
	color: initial;
}
a:hover, a:focus {
	cursor: pointer;
	text-decoration: unset;
	color: #00b14f;
}
img {
	max-width: 100%;
	height: auto;
}
input:focus, textarea:focus {
    border-color: rgba(21,156,64,.6) !important;
    outline: 0;
    -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 1px rgba(21,156,64,.6) !important;
    box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 1px rgba(21,156,64,.6) !important;
}
ul {
	padding-left: 0;
	margin-bottom: 0;
}
li {
	list-style: none;
}
.color-main {
	color: #00b14f;
}
.bg-main {
	background-color: #00b14f;
}
.y-box-img {
    position: relative;
    display: block;
    width: 100%;
    padding-bottom: 80%;
    background: #f9f9f9;
}
.y-box-img .link {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
}
.y-box-img img {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%,-50%);
    -ms-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
}

.box-img-flex {
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
}
.box-img-flex.y-img-left{
	justify-content: flex-start;
}
.box-img-flex img {
	width: auto !important;
	height: auto;
	max-width: 100%;
	max-height: 100%;
}

.y-text-editor *{
	max-width: 100%;
}
.y-text-editor p{
	margin-bottom: 10px;
}
.y-text-editor img{
	max-width: 100%;
	height: auto !important;
	display: initial;
}
.y-text-editor iframe{
	max-width: 100%;
}
.y-text-editor table{
	width: 100%;
}
.y-text-editor i{
	font-style: italic;
}
.y-text-editor u{
    text-decoration: underline;
}
.y-text-editor a{
	text-decoration: underline;
}
.y-text-editor b,
.y-text-editor strong{
	font-weight: bold;
}
.y-text-editor ul{
	padding-left: 0;
	list-style-type: disc;
	list-style-position: inside;
}
.y-text-editor ul li{
	list-style-type: disc;
	list-style-position: inside;
}
.y-text-editor ol{
	padding-left: 0;
	list-style-type: decimal;
	list-style-position: inside;
}
.y-text-editor ol li{
	list-style-type: decimal;
	list-style-position: inside;
}

/* General CSS */
.page {
    background-color: #fff;
}
.title-main {
	color: #00b14f;
	text-align: center;
    font-size: 30px;
    margin-top: 40px;
    margin-bottom: 50px;
    line-height: 1.3;
    font-weight: bold;
    text-transform: uppercase;
}
.title-2 {
    color: #fff;
    font-size: 4.5rem;
    letter-spacing: 4px;
    padding-top: 10px;
}
.btn-main {
	background: #00b14f;
    color: #fff;
    padding: 20px 70px;
    font-size: 2rem;
    letter-spacing: 1.5px;
    border-radius: 15px;
    border: 0;
}
.btn-main:focus {
	background: #00b14f;
    color: #fff;
    text-decoration: none;
}
.btn-main:hover {
	background: #00b14f;
    color: #fff;
}
.scroll-top-btn {
    position: fixed;
    bottom: 20px;
    right: 15px;
    background-color: #00b14f;
    color: #fff;
    padding: 10px 12px;
    transition: .2s;
    text-decoration: none;
    opacity: 0;
    visibility: hidden;
    z-index: 99;
}
.scroll-top-btn:hover, .scroll-top-btn:focus {
	color: #fff;
}
.scroll-top-btn.visible {
    opacity: 0.8;
    visibility: visible;
}
.scroll-top-btn:hover {
    opacity: 1;
}

.ani-shakeUp {
    -webkit-animation: mover 0.5s infinite  alternate;
    animation: mover 0.5s infinite  alternate;
}

@-webkit-keyframes mover {
    0% { transform: translateY(10px); }
    100% { transform: translateY(-10px); }
}
@keyframes mover {
    0% { transform: translateY(10px); }
    100% { transform: translateY(-10px); }
}

/* CSS menu mobile */
.y-mobile-menu {
    width: 85%;
    position: fixed;
    top: 0;
    bottom: 0;
    left: -85%;
    background-color: #f3f3f3;
    box-sizing: border-box;
    font-size: 14px;
    transition: .2s;
    overflow-y: auto;
    overflow-x: hidden;
    z-index: 999;
}

.y-mobile-menu.show {
    left: 0;
}

.m-menu__title {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 20px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    color: rgba(0, 0, 0, .5);
}

.m-menu__title h5 {
    font-size: 14px;
    margin: 0;
    text-align: center;
    width: 100%;
}

.m-menu__title .m-menu-close {
    padding: 0;
    font-size: 26px;
    width: 26px;
    height: 26px;
    text-align: center;
    line-height: 22px;
    text-decoration: none;
    color: #111;
    transform: translateY(-50%) rotate(45deg);
    position: absolute;
    top: 50%;
    right: 8px;
}

.y-mobile-menu ul {
    margin: 0;
    padding-left: 0;
}

.y-mobile-menu li {
    position: relative;
    list-style-type: none;
}

.y-mobile-menu li a {
    color: #000;
    text-decoration: none;
    display: block;
    padding: 11px 20px;
    transition: .2s;
    line-height: 1.3;
}
.y-mobile-menu li.active > a {
    color: #00B140;
}
.y-mobile-menu li.has-submenu a {
    padding-right: 35px;
}

.y-mobile-menu li > a:before {
    content: '';
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    display: block;
    position: absolute;
    left: 20px;
    right: 0;
    bottom: 0;
}

.has-submenu>a {
    position: relative;
}

.has-submenu> .btn-toggle-sub {
    width: 40px;
    height: 42px;
    max-height: 100%;
    position: absolute;
    top: 0;
    right: 0;
    z-index: 2;
}
.has-submenu> .btn-toggle-sub:before {
    content: "+";
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: .2s;
    font-size: 18px;
}

.has-submenu.opened> .btn-toggle-sub:before {
    content: "-";
}

.has-submenu .sub-menu {
    padding-left: 20px;
    display: none;
}

.has-submenu .sub-menu li a {
    font-size: 14px;
}
.overlay-menu.active {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    transition: .5s;
    z-index: 888;
}

.mobile-menu-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 36px;
    height: 36px;
    padding: 5px;
    position: absolute;
    top: 50%;
    left: 15px;
    transform: translateY(-50%);
}

.mobile-menu-btn span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: #000;
}

.mobile-menu-btn span:not(:last-child) {
    margin-bottom: 6px;
}


/* Header */
.box-header-mobile {
	display: none; 
}
.top-header {
	padding: 10px 0;
}
.header {
	padding: 10px 0;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    transition: all 0.2s;
    z-index: 9;
}
.header.header-fixed {
	position: fixed;
    top: 0;
    width: 100%;
    box-shadow: 0 2px 6px 0 rgba(0,0,0,.6);
    background-color: #fff;
}
.header .logo {
	height: 62px;
}
.menu-header li {
	padding: 20px 10px;
}
.menu-header li a {
	padding: 5px 0;
	color: #fff;
}
.header-fixed .menu-header li a {
	color: #000;
}
.menu-header li.active a {
	color: #00b14f;
	border-bottom: 2px solid #00b14f;
}
.header .box-search {
	display: none;
	position: absolute;
	top: 100%;
	left: 0;
	right: 0;
	max-width: 1140px;
	width: 100%;
    margin: 0 auto;
}
.header .box-search .input-search {
	width: 100%;
	height: 44px;
	padding-left: 12px;
	padding-right: 50px;
	color: #000;
	background-color: #fff;
}
.header .box-search .btn-search {
	position: absolute;
	top: 0;
	right: 0;
	width: 40px;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: none;
	background: #00b14f;
	color: #fff;
	border: 0;
}
.header:not(.header-fixed) .top-lang {
	border: 1px solid #fff;
	color: #fff;
	background: transparent;
    padding: 3px 2px;
    text-align: center
}
.header .top-lang option {
	background-color: #000;
}

.section-header {
	position: relative;
}
.section-header .title-section-header {
	position: absolute;
	top: 50%;
	left: 0;
	right: 0;
    text-align: center;
    margin: 0 auto;
    max-width: 1000px;
    font-weight: bold;
	font-size: 50px;
}
.section-header .btn-scroll {
	position: absolute;
	content: "";
	bottom: 60px;
	left: 0;
	right: 0;
    margin: 0 auto;
    width: 40px;
    height: 80px;
    border: 1px solid #fff;
    color: #fff;
    border-radius: 20px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 14px;
}




/* Footer */
.footer .content-footer {
	padding: 60px 0;
}
.footer .logo-footer {
	margin-bottom: 20px;
}
.footer .title-footer {
	text-transform: uppercase;
}
.footer .desc-company {
	margin-bottom: 20px;
}
.footer .list-contact li {
	margin-bottom: 10px;
}
.bot-footer {
	padding: 20px 0;
	border-top: rgba(196, 196, 196, 0.5);
}
.map-footer iframe {
	width: 100%;
	height: 200px;
}





/* ========================== RESPONSIVE =================================== */
@media (min-width: 992px) {
	.header .logo {
	    justify-content: flex-start;
	}
    .header-mobile {
        display: none;
    }

	.logo-footer {
		justify-content: flex-start;	
	}
}

@media (max-width: 991px) {
	.header {
		display: none;
	}
	.header-mobile {
		position: relative;
	}
	
	.section-header .btn-scroll {
		bottom: 40px;
		width: 30px;
		height: 60px;
	}

}

@media (max-width: 767px) {
	.top-header, .top-header .list-social {
		text-align: center;
	}
	.section-header .btn-scroll {
		display: none;
	}
}