@import url('https://fonts.googleapis.com/css2?family=Josefin+Sans:ital,wght@0,100..700;1,100..700&display=swap');

:root{
    --color_main: #072b89;
    --color_main2: #c8342a;
}

body {
    font-family: "Josefin Sans", sans-serif;
    font-size: 18px;
    line-height: 1.65;
}
.clamp-1 {
    text-overflow: ellipsis;
    -webkit-line-clamp: 1;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.clamp-2 {
    text-overflow: ellipsis;
    -webkit-line-clamp: 2;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.clamp-3 {
    text-overflow: ellipsis;
    -webkit-line-clamp: 3;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.scrollbar {
    overflow-y: overlay;
}

.scrollbar::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    background-color: #f5f5f5;
}

.scrollbar::-webkit-scrollbar {
    width: 6px;
    background-color: #f5f5f5;
}

.scrollbar::-webkit-scrollbar-thumb {
    border-radius: 10px;
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    background-color: #000;
}
.evo_sidebar_search,
#offcanvas-cart {
    transition: transform 0.5s cubic-bezier(0.645, 0.045, 0.355, 1),
        visibility 0.5s cubic-bezier(0.645, 0.045, 0.355, 1);
    touch-action: manipulation;
}
.evo_sidebar_search.active,
#offcanvas-cart.active {
    visibility: visible;
    transform: translateX(0);
}
.evo_sidebar_search button {
    border-radius: 0.25em;
    border-top-left-radius: 0px;
    border-bottom-left-radius: 0px;
}
.backdrop__body-backdrop___1rvky {
    transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
}
.backdrop__body-backdrop___1rvky.active {
    visibility: visible;
    opacity: 0.5;
}
.container-fluid {
    padding-right: 30px;
    padding-left: 30px;
    width: 100%;
}

.owl-prev {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}
.owl-next {
    position: absolute;

    top: 50%;
    right: 0;

    transform: translateY(-50%);
}
.slider-home .owl-prev {
    left: 20px;
}
.slider-home .owl-next {
    right: 20px;
}
.owl-nav > div {
    /* background-color: #000; */
    width: 32px;
    height: 32px;
    text-align: center;
    line-height: 50px;
    font-size: 20px;
    border-radius: 50%;
    /* border: 1px solid #1e3d37; */
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #d4d4d4;
}

img {
    -webkit-transition: all 0.7s ease;
    transition: all 0.7s ease;
}

.hover-zoom:hover img {
    transform: scale(1.05);
}
.hover-zoom {
    overflow: hidden;
}


#primary-nav.mobile li a {
    padding: 10px !important;
}

.header-pc {
    z-index: 11 !important;
}

.form-search-mobile input[type="text"]::placeholder {
    /* Chrome, Firefox, Opera, Safari 10.1+ */
    color: #fff;
    opacity: 1; /* Firefox */
}

.form-search-mobile input[type="text"]:-ms-input-placeholder {
    /* Internet Explorer 10-11 */
    color: #fff;
}

.form-search-mobile input[type="text"]::-ms-input-placeholder {
    /* Microsoft Edge */
    color: #fff;
}

/* Accordion
================================================== */

.main-menu-mobile ul li {
    width: 100%;
    border: none;
    position: relative;
}

.main-menu-mobile ul ul {
    width: 100%;
    position: relative;
    box-shadow: none;

    float: left;
    display: none;
}

.menu-toggle {
    display: block;
}

.menu-toggle {
    display: flex;
    align-items: center;
    text-align: center;
    color: #000;
    font-size: 25px;
    line-height: 39px;
    position: absolute;
    height: 40px;
    width: 40px;
    top: 50%;
    transform: translateY(-50%);
    left: 15px;
    background-size: 70%;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 99;
}

.main-menu-mobile {
    position: fixed;
    left: -400px;
    overflow: auto;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    transition: all 0.3s;
    right: 0;
    height: 100%;
    max-width: 300px;
    z-index: 999;
    bottom: 0;

    top: 0;
    background-color: #fff;
}

.main-menu-mobile.active {
    left: 0%;
}

.main-menu-mobile ul li a {
    font-size: 14px;
    text-decoration: none;
    color: #000;
    display: block;
    padding: 8px 20px;
    border-bottom: 1px solid rgba(45, 45, 45, 0.2);
}

.main-menu-mobile .sub-menu li a {
    font-size: 14px;
}

.overlay-main {
    background-color: #000000c2;
    position: absolute;
    visibility: hidden;
    opacity: 0;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    transition: all 0.3s;
    z-index: 99;
}

.overlay-main.active {
    visibility: visible;
    opacity: 0.5;
    height: 100vh;
    position: fixed;
}

.top-close-menu {
    text-align: center;
    line-height: 30px;

    top: 0;
    z-index: 3;
    right: 0;
    width: 30px;
    height: 30px;
    background-color: #333;
    background-size: 12px;
    background-repeat: no-repeat;
    background-position: center;
    color: #fff;
    border-radius: 5px;
    float: right;
}
.main-menu-mobile.active {
    left: 0%;
}

.main-menu-mobile ul li {
    width: 100%;
    border: none;
    position: relative;
}
.main-menu-mobile ul li a {
    font-size: 14px;
    text-decoration: none;
    color: #000;
    display: block;
    padding: 8px 20px;
    border-bottom: 1px solid rgba(45, 45, 45, 0.2);
}

.main-menu-mobile .sub {
    position: absolute;
    top: 5px;
    right: 5px;
    width: 25px;
    height: 25px;

    color: #333;
    font-size: 16px;
    text-align: center;
    line-height: 27px;
}

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

.overlay-main-1 {
    background-color: #000000c2;
    position: absolute;
    visibility: hidden;
    opacity: 0;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    transition: all 0.3s;
    z-index: 99;
}

.overlay-main-1.active {
    visibility: visible;
    opacity: 0.5;
}

.header-mobile {
    background: #fff;
}

.owl-dots .owl-dot {
    width: 32px;
    height: 2px;
    background: #ddd;
    margin: 0px 2px;
}
.owl-dots {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 20px;
}
.owl-dots .owl-dot.active {
    background: #000;
}

.main-menu-item.active{
    color: var(--color_main);
}

.box-content6 .box-content p + p{
    margin-top: 30px;
}

.box-content-banner h2, .box-content-banner h3{
    font-size: 40px;
    line-height: 1.5;
}

.page-detai-coach-box-info-add .box_content ul{
    padding: 0;
    list-style: none;
}

.page-detai-coach-box-info-add .box_content ul li{
    position: relative;
    padding-left: 30px;
    margin-top: 5px;
}

.page-detai-coach-box-info-add .box_content ul li::before{
    content: "\f058";
    font-family: "Font Awesome 6 Free";
    font-weight: 400;
    font-size: 21px;
    top: 5px;
    left: 0;
    line-height: 1;
    position: absolute;
}

.page-visson-mission .box-video iframe{
    width: 100%;
    aspect-ratio: 16 / 9;
    height: auto;
}

.bg-text-cus{
    position: relative;
}

.bg-text-cus::before{
    content: '';
    background-image: url('../images/n-line.png');
    background-repeat: no-repeat;
    background-size: contain;
    /*background-size: 31% auto;*/
    width: 100%;
    height: 100%;
    display: block;
    position: absolute;
    left: 0;
    top: 0;
}

.bg-text-cus.bg-cus-left::before{
    background-position: center left;
}

.bg-text-cus.bg-cus-right::before{
    background-position: center right;
}

.box-video-bg::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    opacity: 0.6;
}

.box-btn-tab .item-tab.active{
    background: #072b89;
    color: #fff;
}

.ani-puSh:hover{
    animation-name: pulse-shrink;
    animation-duration: .3s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
    animation-direction: alternate;
}

@keyframes pulse-shrink{
    100%{
        transform: scale(.9);
    }
}

.box-guaranteed .box-icon img{
    width: 200px;
}

.page-enrollment .box_content3 .item{
    background: linear-gradient(229.39deg, #007aff 19.05%, #c5d9f2 56.83%, #c5d9f2 90.91%);
    padding: 1px;
}

.page-enrollment .box_content3 .item .bg-box{
    background: linear-gradient(232.06deg, #e2f0ff 1.28%, #fff 74.81%);
    height: 100%;
    border-radius: 12px;
}

.page-enrollment .box_content3 .box-content li{
    padding-left: 25px;
    position: relative;
}

.page-enrollment .box_content3 .box-content li::before{
    content: '';
    position: absolute;
    top: 5px;
    left: 0;
    background-image: url(../img/icon-tick.png);
    width: 18px;
    height: 18px;
}

.hc-offcanvas-nav .menu-item.btn{
    padding: 0 17px;
}

.hc-offcanvas-nav .menu-item.btn a{
    display: inline-flex;
    border-bottom: 2px solid #fff;
}

@media(min-width:1536px){
    .container{
        max-width: 1304px;
    }
}

@media only screen and (max-width: 1366px) {
    #main {
        width: 100%;
        overflow: hidden;
    }
    .logo-box {
        width: 100%;
        overflow: hidden;
    }
}

@media(min-width: 1280px){
    .page-category-coach .box-list .item-coach{
        width: 25%;
    }
}

@media(min-width: 1024px) and (max-width: 1130px){
    .page-enrollment .box_content3 .item .bg-box{
        padding: 12px;
    }
}

@media(max-width:1023px){
    .box-content6 .box-content p + p{
        margin-top: 20px;
    }

    .box-content-banner h2, .box-content-banner h3{
        font-size: 38px;
    }
}

@media only screen and (max-width: 768px) {

    header {
        display: none !important;
    }
    header.header-mobile {
        display: block !important;
        padding: 10px 0;
        z-index: 222 !important;
    }

    .header-main-mobile {
        display: block;
    }
    .header-main-pc {
        display: none;
    }

}
@media only screen and (max-width: 736px) {
    .sitemap {
        margin-top: 0;
    }

    .owl-next {
        right: 0;
    }
    .owl-prev {
        left: 0;
    }
    .owl-carousel .owl-dot,
    .owl-carousel .owl-nav .owl-next,
    .owl-carousel .owl-nav .owl-prev {
        cursor: pointer;
        cursor: hand;
        -webkit-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        user-select: none;
        display: none;
    }
    .owl-nav > div {
        width: 40px;
        height: 40px;

        line-height: 40px;
    }

    header .right-header ul li img {
        width: 30px;
        height: 20px;
    }
    header .right-header ul li:last-child img {
        width: auto;
        height: auto;
    }

    .box-content-banner h2, .box-content-banner h3{
        font-size: 29px;
    }

    .page-detail-art .box_content iframe{
        height: 500px !important;
    }

}

