@charset "utf-8";

/* ZOOM */
@media screen and (min-width: 1100px){
    html.zoom-110{zoom: 0.95;}
    html.zoom-125{zoom: 0.9;}
    html.zoom-150{zoom: 0.85;}
    html.zoom-175{zoom: 0.8;}
    html.zoom-200{zoom: 0.75;}
}


/* COMMON */
main {
    overflow: hidden;
}

.container {
    max-width: 1000px;
    width: calc(100% - 30px);
    margin: 0 auto;
}

.flexBox {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.center {
    text-align: center;
}

.link:hover {
    text-decoration: underline;
}

.mvChild {
    padding: 4rem 0;
    background-image: linear-gradient(to bottom, #4CAF50, #2196F3);
    background: linear-gradient(
        to bottom, 
        #03ba94 0%,    /* Xanh đậm trên cùng */
        #03bbbc 40%,   /* Xanh lơ ở giữa */
        #0091d2 100%   /* Xanh dương ở đáy */
    );
}

.mvChild h2 {
    font-size: 3.2rem;
    text-align: center;
    font-weight: 900;
    color: #ffffff;

    overflow: hidden;
    transform: translate(-100%, 0);
    transition: transform cubic-bezier(0.215, 0.61, 0.355, 1) 1s;
}

.mvChild h2 span {
    display: block;
    transform: translate(100%, 0);
    transition: transform cubic-bezier(0.215, 0.61, 0.355, 1) 1s;
}

.mvChild h2.-visible,
.mvChild h2.-visible span {
    transform: translate(0, 0);
}

.contents {
    padding: 9rem 0;
}

@media screen and (max-width: 768px) {
    .contents {
        padding: 6rem 0;
    }

    .mvChild h2 {
        font-size: min(6vw, 3.2rem);
    }
}

/* END COMMON */



/* HEADER */
header {
    position: sticky;    
    top: 0;
    left: 0;
    width: 100%;
    z-index: 99;
    align-items: center;
    background: #fff;
    caret-color: transparent;
    box-shadow: 0 0 20px rgba(0, 133, 109, 0.5);
}

header .container {
    width: 100%;
    position: relative;
    max-width: 1200px;
    padding: 2.5rem 0;
    justify-content: flex-end;
    align-items: center;
}

header .logo {
    position: absolute;
    top: 0;
    left: 0;    
    z-index: 99;
    width: 21%;
}

header .logo img {
    width: 100%;
}

@media screen and (max-width: 1024px) {
    header .container {
        padding: 1.5rem 0;
    }
}

@media screen and (max-width: 768px) {
    header {
        height: 60px;
    }

    header .container {
        padding: 0;
    }

    header .logo {
        width: 162px;
    }
}

/* END HEADER */







/* MENU */
.menu ul {
    justify-content: flex-start;
}

.menu ul li {
    margin-right: 3rem;
}

.menu a {
    text-align: center;
    line-height: 1;
    font-size: 1.2rem;
    font-weight: bold;
    display: block;
    transition: all 0.2s;
}

.menu a span {
    font-family: "Lato", sans-serif;
    display: block;
    font-size: 2rem;
    margin-bottom: 5px;
    font-weight: 900;
}

.menu .is-active {
    color: #04d1ac;
    pointer-events: none;
}

.menu .coming {
    pointer-events: none;
    color: #ccc;
}

@media screen and (min-width: 769px) {
    .menu a:hover {
        color: #04d1ac;
    }
}

@media screen and (max-width: 1024px) {
    .menu ul li {
        margin-right: 2rem;
    }

    .menu a span {
        font-size: 1.6rem;
    }
}

@media screen and (max-width: 768px) {
    .menu {        
        position: fixed;
        z-index: 9;
        top: 60px;
        left: 0;
        width: 100%;
        height: calc(100vh - 60px);
        transform: translateX(70%);
        visibility: hidden;
        pointer-events: none;
        opacity: 0;
        background: #ffffff;
        transition: 0.8s;
    }


    .menu ul {
        display: block;
        padding: 8rem 0 0;
    }

    .menu ul li {
        margin: 0 auto 6vw;
    }

    .menu a {
        font-size: min(5vw, 12px);
    }

    .menu a span {
        font-size: min(6vw, 20px);
    }

    .menu.is-show {
        transform: translateX(0);
        visibility: visible;
        pointer-events: auto;
        opacity: 1;
    }

}

/* END MENU */



/* LANGUAGE */
.lang {
    font-family: "Lato", sans-serif;
    font-weight: 900;
    position: relative;    
    z-index: 999;
    font-size: 1.4rem;
}

.change-lang-toggle {
    cursor: pointer;
    width: 12.5rem;
    background: #04d1ac;
    color: #ffffff;
    line-height: 1;
    border-radius: 2rem;
    padding: 0.5rem 0;    
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2px;
}

.change-lang-toggle::before {
    content: '';
    display: inline-block;
    width: 20px;
    height: 20px;    
    background: url(../img/common/ic-lang.svg) no-repeat top left / 100% 100%;
}


.change-lang-list {
    display: none;
    padding: 7px 0;    
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #04d1ac;    
    border-radius: 15px;
    margin-top: 5px;
}

.change-lang-list a {
    position: relative;
    display: block;
    padding: 0 0 0 35px;
    cursor: pointer;
    color: #ffffff;
}

.change-lang-list a[data-stt-active] {
    color: #fcff01;
}

.change-lang-list a[data-stt-active]::before {
    border-color: #fcff01;
}

.change-lang-list a::before {
    content: "";
    position: absolute;
    top: 11px;
    left: 15px;
    border: solid #ffffff;
    border-width: 0 2px 2px 0;
    display: inline-block;
    padding: 2px;
    transform: rotate(-45deg);
}

@media screen and (max-width: 1200px) {
    .lang {
        margin-right: 10px;
    }
}

@media screen and (min-width: 769px) {
    .change-lang-list a:hover {
        color: #fcff01;
    }

    .change-lang-list a:hover::before {
        border-color: #fcff01;
    }
    
}

@media screen and (max-width: 1024px) {
    .lang {
        font-size: 1.3rem;
    }

    .change-lang-toggle {
        width: 10rem;
    }

    .change-lang-toggle::before {
        width: 16px;
        height: 16px;
        top: 10px;
    }

    .change-lang-list a {
        padding: 0 0 0 30px;
    }
}

@media screen and (max-width: 768px) {
    .lang {
        font-size: 1.4rem;
    }

    .change-lang-toggle {
        width: 12.5rem;
        height: 30px;
    }

    .change-lang-toggle::before {
        width: 20px;
        height: 20px;
        top: 10px;
    }
}
/* END LANGUAGE */






/* BTN MENU */
.btnMenu {
    display: none;
}

@media screen and (max-width: 768px) {
    .btnMenu {
        background: #00856d;
        width: 60px;
        height: 60px;        
        display: flex;
        justify-content: center;
        align-items: center;
        cursor: pointer;
    }

    .btnMenu a {
        width: 30px;
        height: 22px;
        display: block;
        position: relative;
    }

    .btnMenu span {
        display: block;
        position: absolute;
        left: 0;
        width: 100%;
        height: 2px;
        background: #ffffff;
        transition: .4s;
    }

    .btnMenu span:nth-of-type(1) {
        top: 0;
    }

    .btnMenu span:nth-of-type(2) {
        top: 10px;
    }

    .btnMenu span:nth-of-type(3) {
        top: 20px;
    }

    .btnMenu.is-close {
        /*background: #004BC5;*/
    }

    .btnMenu.is-close span:nth-of-type(1) {
        top: 8px;
        transform: rotate(45deg);
    }

    .btnMenu.is-close span:nth-of-type(2) {
        opacity: 0;
    }

    .btnMenu.is-close span:nth-of-type(3) {
        top: 8px;
        transform: rotate(-45deg);
    }

}
/* END BTN MENU */




/* FOOTER */
footer {
    background: #00856d;
    color: #ffffff;
    padding: 30px 0;
}

footer .container {
    align-items: flex-end;
}

footer .fLogo {
    transition: all 0.2s;
}

footer .policyLink {
    margin-top: 10px;
}

footer .policyLink li {
    display: inline-block;
    font-size: 14px;
    line-height: 1;
}

footer .policyLink li a::after {
    content: '›';
    display: inline-block;
    margin-left: 5px;
}

footer .policyLink li a.is-active {
    pointer-events: none;
    text-decoration: underline;
    text-underline-offset: 5px;
}

footer .btnContact {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
    line-height: 1;
    border-radius: 50px;
    font-size: 20px;
    color: #00856d;
    background: #ffffff;
    font-weight: 700;
    text-align: center;
    padding: 15px 10px;
    border: 1px solid transparent;
    transition: all 0.2s;
}

footer .btnContact::before {
    content: '';
    display: inline-block;
    width: 28px;
    height: 28px;
    background: #00856d;
     mask: url(../img/common/ic-mail.svg) no-repeat center center/100% 100%;
    -webkit-mask: url(../img/common/ic-mail.svg) no-repeat center center/100% 100%;
    margin-top: 2px;
}

footer .coming {
    pointer-events: none;
    color: #ccc;
}

footer .coming::before {
    background: #ccc !important;
}

footer .copyR {
    font-size: 12px;
    font-weight: 900;
    font-family: 'Lato', sans-serif;
    margin-top: 20px;
}


@media screen and (min-width: 769px) {
    footer .policyLink li a:hover {
        text-decoration: underline;
        text-underline-offset: 5px;
    }

    footer .fLogo:hover {
        opacity: 0.8;
    }

    footer .btnContact:hover {
        background: #00856d;
        color: #ffffff;
        border-color: #ffffff;
    }

    footer .btnContact:hover::before {
        background: #ffffff;
    }
}

@media screen and (max-width: 1024px) {
    footer .btnContact {
        padding: 10px;
    }
}

@media screen and (max-width: 768px) {
    footer .colL {
        width: 100%;
        margin-bottom: 2rem;
        text-align: center;
    }

    footer .colR {
        width: 100%;
    }

    footer .btnContact {
        margin: 0 auto;
        max-width: 300px;
        padding: 10px;
    }

    footer .policyLink li {
        font-size: 12px;
    }

    footer .copyR {
        text-align: center;
    }
}


/* LOGO BOTTOM */
#logoBot {
    border-top: 2px solid #00856d;
    padding: 25px 0;
}

#logoBot ul {
    justify-content: center;
    gap: 10px;
}

#logoBot a {
    transition: all 0.2s;
}

@media screen and (min-width: 769px) {
    #logoBot a:hover {
        opacity: 0.8;
    }
}

@media screen and (max-width: 768px) {

}

/* END LOGO BOTTOM */





/* PAGE TOP */
#pageTop {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    border-radius: 10px;
    overflow: hidden;
    background: #333333;
    cursor: pointer;
    z-index: 8;
    display: none;    
    caret-color: transparent;
    border: 1px solid transparent;
    transition: all 0.2s;
}



@media screen and (min-width: 769px) {
    #pageTop:hover {
        background: #00856d;
        border-color: #ffffff;
    }
}

@media screen and (max-width: 768px) {
    #pageTop {
        width: 50px;
        height: 50px;
        right: 10px;
        bottom: 10px;
    }
}

/* ANIMATE */
@media screen {
    .inview {
        opacity: 0;
        transition: 1s;
    }

    .inview.is-view {
        opacity: 1;
    }

    .fade-up {
        transform: translateY(30px);
    }

    .fade-up.is-view {
        transform: translateY(0);
    }

    .fade-left {
        transform: translateX(30px);
    }

    .fade-left.is-view {
        transform: translateX(0);
    }

    .fade-right {
        transform: translateX(-30px);
    }

    .fade-right.is-view {
        transform: translateX(0);
    }

    .zoom-in {
        overflow: hidden;
    }

    .zoom-in img {
        transform: scale(1.1);
        opacity: 0;
        transform-origin: top;
        transition: 1s;
    }

    .zoom-in.is-view img {
        transform: scale(1);
        opacity: 1;
    }

    .slide-left {
        transition: -webkit-clip-path 3s cubic-bezier(.19, 1, .22, 1) .1s;
        transition: clip-path 3s cubic-bezier(.19, 1, .22, 1) .1s;
        transition: clip-path 3s cubic-bezier(.19, 1, .22, 1) .1s, -webkit-clip-path 3s cubic-bezier(.19, 1, .22, 1) .1s;
        transition-delay: 0.1s, 0.1s;
        -webkit-clip-path: inset(0 100% 0 0);
        clip-path: inset(0 0 0 100%);
    }

    .slide-left.is-view {
        -webkit-clip-path: inset(0 0 0 0);
        clip-path: inset(0 0 0 0);
    }

    .slide-right {
        transition: -webkit-clip-path 3s cubic-bezier(.19, 1, .22, 1) .1s;
        transition: clip-path 3s cubic-bezier(.19, 1, .22, 1) .1s;
        transition: clip-path 3s cubic-bezier(.19, 1, .22, 1) .1s, -webkit-clip-path 3s cubic-bezier(.19, 1, .22, 1) .1s;
        transition-delay: 0.1s, 0.1s;
        -webkit-clip-path: inset(0 100% 0 0);
        clip-path: inset(0 100% 0 0);
    }

    .slide-right.is-view {
        -webkit-clip-path: inset(0 0 0 0);
        clip-path: inset(0 0 0 0);
    }

}