
@font-face {
    font-family: "lobster";
    font-weight: bold;
    src: url("fonts/SVN-Lobster.ttf");
}
@font-face {
    font-family: "UTMHelve";
    font-weight: bold;
    src: url("fonts/UTMHelveBold.ttf");
}
@font-face {
    font-family: "UTMHelve";
    font-weight: normal;
    src: url("fonts/UTMHelve.ttf");
}

@font-face {
    font-family: "UTMHelvetIns";
    font-weight: normal;
    src: url("fonts/UTMHelvetIns.ttf");
}

.UTMHelvetIns {
    font-family: "UTMHelvetIns";
    font-weight: normal;
}
.mobile {
    display: none;
}
* {
    padding: 0px;
    margin: 0px;
    box-sizing: border-box;
}
a {
    color: #000;
}
a:hover {
    text-decoration: none;
    color: #01aeb7;
}
.container img {
    max-width: 100%;
}
body {
    font-family: "Roboto", sans-serif;
    font-size: 16px;
    line-height: 25px;
    padding: 0px;
    margin: 0px;
    font-weight: 400;
    color: #000;
    box-sizing: border-box;
}
a {
    text-decoration: none;
}
b,
strong {
    font-weight: 700;
}
p {
    margin: 0px;
}
ul {
}
.w-100 {
    width: 100%;
}
section,
footer {
    width: 100%;
    float: left;
}
.transition {
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}
.btn.transition {
    position: relative;
    overflow: hidden;
}
img {
    max-width: 100%;
}
.no-padding {
    padding: 0;
}
.img-scale-in:hover img {
    -webkit-transform: scale(0.8);
    transform: scale(0.8);
    cursor: pointer;
}
.img-scale img,
.img-scale-in img {
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}
.img-scale:hover img {
    -webkit-transform: scale(1.08);
    transform: scale(1.08);
    cursor: pointer;
}


.outer{
    width: 100%;
    max-width: 400px;
    margin: auto;
}

.wrap-header .logo{
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px 0px;
}
.wrap-header .logo img{
    display: block;
    max-width: 280px;
}


.wrap-menu{
    background-color: #2e7a7a;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}
.wrap-menu .show-menu{
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #ff0101;
    height: 60px;
    width: 60px;
}
.wrap-menu .show-menu > img{
    display: block;
    width: 40px;
    height: auto;
}
.wrap-menu > div:nth-child(2){
    display: flex;
    align-items: center;
    margin-left: 10px;
}
.wrap-menu > div:nth-child(2) > a > img{
    margin-right: 5px;
    width: 40px;
    height: auto;
    display: block;
}
.wrap-menu > div:nth-child(2) > div > p:nth-child(1){
    font-size: 14px;
    color: #fff;
    margin-bottom: 0px;
    line-height: 22px;
}
.wrap-menu > div:nth-child(2) > div > a:nth-child(2){
    font-size: 17px;
    font-weight: bold;
    font-family: UTMHelve;
    color: #fff;
    margin-bottom: 0px;
    line-height: 18px;
    display: block;
}
.wrap-menu > div:nth-child(3){
    margin-left: 15px;
}
.wrap-menu > div:nth-child(3) > a > img{
    height: 36px;
    width: auto;
    display: block;
}


.wrap-main-menu{
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100vh;
    display: none;
}
.wrap-main-menu.active{
    display: flex;
}
.wrap-main-menu > div:nth-child(1){
    width: 75%;
    background-color: #fff;
    position: relative;
}
.wrap-main-menu > div:nth-child(2){
    height: 100vh;
    width: 25%;
    background-color: rgba(0, 0, 0, 0.6);
    position: relative;
    opacity: 1;
}
.wrap-main-menu > div:nth-child(2) > img{
    position: absolute;
    top: 10px;
    left: 10px;
}
.wrap-main-menu > div:nth-child(1) > div:nth-child(1){
    display: flex;
    align-items: center;
}
.wrap-main-menu > div:nth-child(1) > div:nth-child(1){
    padding: 10px;
    margin: 10px;
    border: 3px solid #f0f0f0;
}
.wrap-main-menu > div:nth-child(1) > div:nth-child(1) > div > p:nth-child(1){
    font-size: 12px;
    text-transform: uppercase;
}
.wrap-main-menu > div:nth-child(1) > div:nth-child(1) > div > a:nth-child(2){
    font-family: UTMHelvetIns;
    color: red;
    font-size: 26px;
}
.wrap-main-menu > div:nth-child(1) > div:nth-child(1) > img{
    margin-right: 10px;
}
.wrap-main-menu > div:nth-child(1) > ul > li{
    /*position: relative;*/
}
.wrap-main-menu > div:nth-child(1) > ul > li > ul{
    display: none;
    position: absolute;
    top: 110px;
    left: 100px;
    width: 70%;
    padding: 0px;
    margin: 0px;
    list-style-type: none;
}
.wrap-main-menu > div:nth-child(1) > ul > li > ul > li > a{
    display: flex;
    align-items: center;
    font-size: 16px;
    margin-bottom: 10px;
}
.wrap-main-menu > div:nth-child(1) > ul > li > ul > li > a:before{
    content: '';
    display: block;
    width: 7px;
    height: 7px;
    background-color: #2e7a7a;;
    border-radius: 100%;
    margin-right: 10px;
}
.wrap-main-menu > div:nth-child(1) > ul > li.active > ul{
    display: block;
}
.wrap-main-menu > div:nth-child(1) > ul > li > a{
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 90px;
    height: 90px;
    justify-content: center;
    background-color: #e8e8e8;
    border-bottom: 1px solid #fff;
    font-size: 13px;
    text-align: center;
}
.wrap-main-menu > div:nth-child(1) > div:nth-child(3){
    padding: 10px;
}


.f-10{
    padding: 30px 0px;
    padding-top: 0px;
}
.f-10 .box-1{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
.f-10 .box-1 > img{
    display: block;
}
.f-10 .box-1 > p{
    font-family: lobster;
    font-size: 20px;
    line-height: 30px;
    text-align: center;
    margin-top: 10px;
}

.topcate .h1{
    text-align: center;
    font-size: 24px;
    line-height: 30px;
    text-transform: uppercase;
    font-family: UTMHelvetIns;
    color: #2e7a7a;
}

.f-11{
    padding: 30px 0px;
    padding-top: 0px;
}
.f-11 .main-title h3{
    padding: 0px 10px;
}
.f-11 .main-title h3{
    text-align: center;
    font-size: 20px;
    line-height: 30px;
    text-transform: uppercase;
    font-family: UTMHelvetIns;
    color: #2e7a7a;
}
.f-11 .box-1{
    display: flex;
    width: calc(100% - 30px);
    margin: auto;
    margin-top: 20px;
    align-items: center;
}
.f-11 .box-1.form-contact input{
    height: 46px;
    width: 100%;
    padding-left: 10px;
    border: 1px solid #01a283;
    border-top-left-radius: 30px;
    border-bottom-left-radius: 30px;
}
.f-11 .box-1.form-contact button{
    background: transparent;
    border: none;
    height: 46px;
    display: block;
    align-items: center;
    justify-content: center;
    background-color: #01a283;
    width: 80px;
    border-top-right-radius: 30px;
    border-bottom-right-radius: 30px;
}
.f-11 .box-2{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0px 20px;
    margin-top: 20px;
}
.f-11 .box-2 > div{
    display: flex;
    align-items: center;
    border-radius: 20px;
    width: calc(50% - 5px);
    padding: 5px 10px;
}
.f-11 .box-2 > div > img{
    margin-right: 6px;
    height: 32px;
    width: auto;
}
.f-11 .box-2 > div > a{
    font-family: UTMHelvetIns;
    font-size: 16px;
    color: #ff2626;
}
.f-11 .box-2 > div > p{
    font-family: UTMHelvetIns;
    font-size: 16px;
}
.f-11 .box-2 > div:nth-child(1){
    background-color: #2e7a7a;
    color: #fff;
}
.f-11 .box-2 > div:nth-child(2){
    border: 1px solid #ccc;
    color: #ff2626;
}


.f-12{
    padding: 20px 20px;
    background-color: #01a283;
}
.f-12 .main-title h3{
    padding: 0px 10px;
}
.f-12 .main-title h3{
    text-align: center;
    font-size: 20px;
    line-height: 30px;
    text-transform: uppercase;
    font-family: UTMHelvetIns;
    color: #fff;
}
.f-12 .box-1 .d_contact{
    display: flex;
    flex-direction: column;
    margin-top: 20px;
}
.f-12 .box-1 .d_contact input{
    height: 46px;
    width: 100%;
    padding-left: 10px;
    background-color: #fff;
    border: none;
    margin-bottom: 15px;
    border-radius: 5px;
}

.f-12 .box-1 .d_contact button{
    border: none;
    height: 46px;
    display: block;
    align-items: center;
    justify-content: center;
    background-color: #f06151;
    width: 150px;
    border-radius: 30px;
    margin: auto;
    font-family: UTMHelvetIns;
    color: #fff;
    text-transform: uppercase;
}
.wrap-footer{
    background-color: #2e7a7a;
    padding: 20px 0px;
    padding-bottom: 90px;
}
.wrap-footer > div:nth-child(1){
    display: flex;
    justify-content: center;
    align-items: center;
}
.wrap-footer > div:nth-child(1) img{
    max-width: 260px;
    display: block;
}
.wrap-footer > div:nth-child(2) > img{
    display: block;
    margin: auto;
    margin-bottom: 10px;
    margin-top: 20px;
}
.wrap-footer > div:nth-child(2) > p:nth-child(2){
    font-weight: bold;
    font-family: UTMHelve;
    font-size: 20px;
    text-align: center;
    color: #fff;
    text-transform: uppercase;
    margin-bottom: 10px;
    line-height: 24px;
}
.wrap-footer > div:nth-child(2) > p:nth-child(3){
    color: #fff;
    font-size: 16px;
    text-align: center;
    padding: 0px 10px;
}
.wrap-footer > div:nth-child(2) > p:nth-child(4){
    color: #fff;
    font-size: 16px;
    text-align: center;
    padding: 0px 10px;
}
.wrap-footer > div:nth-child(3){
    margin-top: 20px;
}
.wrap-footer > div:nth-child(3) ul{
    list-style-type: none;
    padding: 0px;
    margin: 0px;
    display: flex;
    justify-content: space-between;
    width: 100%;
    flex-wrap: wrap;
}
.wrap-footer > div:nth-child(3) ul > li{
    width: calc(50% - 1px);
    margin-bottom: 2px;
    background-color: #fff;
    padding: 10px 15px;
}
.wrap-footer > div:nth-child(3) ul > li > a{
    display: flex;
    align-items: center;
    color: #2e7a7a;
}
.wrap-footer > div:nth-child(3) ul > li > a > img{
    margin-right: 10px;
}



.wrap-footer > div:nth-child(4) {
    margin-top: 20px;
}
.wrap-footer > div:nth-child(4) p:nth-child(1) {
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    width: fit-content;
    margin: auto;
    border-bottom: 1px solid #fff;
    padding-bottom: 10px;
    text-transform: uppercase;
    margin-bottom: 10px;
}
.wrap-footer > div:nth-child(4) a {
    text-align: center;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 5px;
}
.wrap-footer > div:nth-child(4) a img {
    margin-right: 10px;
    height: 18px;
    width: auto;
    display: block;
}


.fix-footer{
    position: fixed;
    bottom: 0px;
    left: 0px;
    width: 100%;
    height: 50px;
    
}
.fix-footer > div{
    width: 100%;
    max-width: 400px;
    margin: auto;
    background-color: #2ca89f;
    display: flex;
    justify-content: space-between;
    height: 100%;
    align-items: flex-end;
}
.fix-footer > div > a{
    position: relative;
    width: calc(25% - 3px);
    border-right: 1px solid #fff;
    height: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}
.fix-footer > div > a:last-child{
    border-right: none;
}
.fix-footer > div > a > img{
    position: absolute;
    top: -55%;
    left: calc(50% - 23px);
    display: block;
    width: 46px;
    height: auto;
}
.fix-footer > div > a > span{
    font-weight: bold;
    color: #fff;
    font-size: 12px;
    text-align: center;
    display: block;
    margin-bottom: 5px;
    text-transform: uppercase;
}


#popdathen2022{
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    display: flex;
    justify-content: center;
    align-items: center;
    display: none;
}
#popdathen2022.active2{
    display: flex;
}
#popdathen2022 .d_contact{
    position: relative;
}
#popdathen2022 .d_contact > .bg{
    
}
#popdathen2022 .d_contact > .form{
    position: absolute;
    bottom: 70px;
    left: 0px;
    width: 100%;
    padding: 0px 40px;
    height: 200px;
}
#popdathen2022 .d_contact > .form .title{
    text-align: center;
    font-family: UTMHelvetIns;
    font-size: 22px;
    text-transform: uppercase;
    margin-bottom: 15px
}
#popdathen2022 .d_contact > .form input{
    width: 100%;
    border: 1px solid #ccc;
    border-radius: 2px;
    height: 50px;
    padding: 0px 10px;
    margin-bottom: 15px;
}
#popdathen2022 .d_contact > .form button{
    width: 100%;
    height: 50px;
    font-size: 18px;
    color: #fff;
    background: linear-gradient(to right,#00aa5b,rgba(48,169,198,.93));
    margin-bottom: 10px;
}
#popdathen2022 .d_contact > .form .note{
    text-align: center;
    font-family: UTMHelvetIns;
    font-size: 14px;
}
#popdathen2022 .d_contact > .form  .btn-huy{
    font-family: UTMHelvetIns;
    font-size: 14px;
    color: red;
    text-align: center;
}
#popdathen2022  #close3{
    position: absolute;
    right: 24px;
    top: 82px;
    z-index: 999;
}