html {
    border: 0;
    margin: 0;
    outline: 0;
    padding: 0;
}

:focus {
    outline: 0
}

@font-face {
    font-family: 'LINESeedJP-bold';
    src:url('fonts/LINESeedJP_OTF_Bd.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'LINESeedJP';
    src:url('fonts/LINESeedJP_OTF_Rg.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'NotoSans';
    src:url('fonts/NotoSansJP-Regular.ttf') format('opentype');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'ShipporiMincho';
    src:url('fonts/ShipporiMincho-SemiBold.ttf') format('opentype');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'Arial';
    font-style: normal;
    font-weight: 500;
    src: local('Arial CE'), url('https://fonts.cdnfonts.com/s/29105/ArialCE.woff') format('woff');
}
body,div,span,applet,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,a,abbr,acronym,address,big,cite,code,del,dfn,em,font,ins,kbd,q,s,samp,small,strike,sub,sup,tt,var,dl,dt,dd,ol,ul,li,fieldset,form,label,legend,table,caption,tbody,tfoot,thead,tr,th,td {
    border: 0;
    font-size: 16px;
    margin: 0;
    outline: 0;
    padding: 0;
    vertical-align: baseline;
    font-family: NotoSans;
}
h1, h2, h3, h4, h5{
    font-family: NotoSans;
    font-weight: bold;
}
p{
    line-height: 2.2;
}
:focus {
    outline: 0
}
.inner{
    max-width: 1200px;
    margin: auto;
}
.inner-page{
    max-width: 1200px;
    margin: auto;
}
.background-top{
    position: relative;
    background-image: url('../img/background.png');
    background-size: 100% auto;
    background-repeat: no-repeat;
}
.triangle {
    position: absolute;
    width: 650px;
    height: 320px;
    background: linear-gradient(
            to top,
            #3983E1 0%,
            #68CADC 100%
    );
    clip-path: polygon(0 0, 100% 0, 0 100%);
    z-index: 100;
}

/*menu*/
.header{
    position: fixed;
    top: 0;
    z-index: 102;
    width: 100%;
    height: 118px;
    display: flex;
    align-items: center;
    background: transparent; /* lúc chưa scroll */
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}
#header.scrolled {
    background: rgb(255 255 255 / 85%);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
/* HAMBURGER */
.hamburger {
    position: fixed;
    top: 44px;
    right: 66px;
    width: 36px;
    height: 26px;
    cursor: pointer;
    z-index: 102;
}

.hamburger span {
    position: absolute;
    width: 100%;
    height: 3px;
    background: #000000;
    left: 0;
    transition: 0.4s ease;
}

.hamburger span:nth-child(1) { top: 0; }
.hamburger span:nth-child(2) { top: 11px; }
.hamburger span:nth-child(3) { bottom: 0; }

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg);
    top: 11px;
}
.hamburger.active span:nth-child(2) {
    opacity: 0;
}
.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg);
    bottom: 11px;
}

/* MENU OVERLAY */
.menu {
    position: fixed;
    top: -100%;
    left: 0;
    width: 100%;
    height: 100vh;
    background: #fff;
    transition: top 0.6s ease;
    z-index: 100;
    overflow: hidden;
}

.menu.active {
    top: 0;
}

/* MENU GRID */
.menu-grid {
    display: flex;
    align-items: center;
    height: 100%;
}

/* COLUMN */
.menu .menu-title{
    height: 320px;
    margin-right: 75px;
    margin-top: -15px;
}
.menu-grid h2 {
    font-size: 35px;
    font-weight: bold;
    background: linear-gradient(to top, #3983E1, #68CADC);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;

    /* hỗ trợ Firefox mới */
    background-clip: text;
    color: transparent;
}

.menu ul {
    list-style: none;
}

.menu li {
    padding: 28px 0;
    opacity: 0;
    transform: translateY(-15px);
    transition: 0.5s ease;
}
.menu li:first-child{
    padding-top: 0 !important;
}

.menu a {
    text-decoration: none;
    color: #7C7C7C;
    font-family: ShipporiMincho;
    display: flex;
    align-items: center;
}

.menu a:hover {
    color: #4aa3df;
}
.logo{
    position: fixed;
    z-index: 101;
    margin: 0 42px;
}
.logo img{
    max-width: 210px;
}
.menu .btn-viewmore {
    opacity: 0;
    transform: translateY(-15px);
    transition: 0.5s ease;
}
/* ANIMATION DELAY */
.menu.active li {
    opacity: 1;
    transform: translateY(0);
}

.menu.active .btn-viewmore {
    opacity: 1;
    transform: translateY(0);
}

/*.menu.active .menu-column:nth-child(1) h2 { transition-delay: 0.2s; }*/
/*.menu.active .menu-column:nth-child(2) h2 { transition-delay: 0.3s; }*/

.menu.active .menu-column a{
}
.menu.active .menu-column:nth-child(2) li:nth-child(2) { transition-delay: 0.4s; }
.menu.active .menu-column:nth-child(2) li:nth-child(1) { transition-delay: 0.3s; }
.menu.active .menu-column:nth-child(2) li:nth-child(3) { transition-delay: 0.5s; }
.menu.active .menu-column:nth-child(2) li:nth-child(4) { transition-delay: 0.6s; }

.menu.active .menu-column:nth-child(3) li:nth-child(1) { transition-delay: 0.4s; }
.menu.active .menu-column:nth-child(3) li:nth-child(2) { transition-delay: 0.5s; }
.menu.active .menu-column:nth-child(3) li:nth-child(3) { transition-delay: 0.6s; }
.menu.active .menu-column:nth-child(3) li:nth-child(4) { transition-delay: 0.7s; }
.menu.active .btn-viewmore{ transition-delay: 1.2s; }


.menu .menu-column:nth-child(2){
    width: 440px;
    height: 320px;
    margin-right: 140px;
}
.menu .menu-column li a span.gradient-icon {
    width: 35px;
    height: 6px;
    margin-right: 15px;
    background: linear-gradient(90deg, #3983E1, #68CADC);
}
.menu .menu-column:nth-child(3) li{
    padding: 20px 0;
}
.menu .menu-column:nth-child(3) li a span.gradient-icon{
    width: 22px;
    height: 4px;
}
.menu .menu-column:nth-child(2) li a{font-size: 24px;}
.menu .menu-column:nth-child(2) li a span{}
.menu .menu-column:nth-child(3){
    height: 320px;
    width: 300px;
}
.menu.active .menu-column:nth-child(3) li a{
    font-size: 18px;
}
.menu .btn-viewmore {
    position: absolute;
    bottom: 60px;
    right: 124px;
}
.menu .btn-viewmore a img{
    position: unset;
    width: 29px;
    margin-right: 39px;
}
.ct-title{
    margin-bottom: 45px;
}
.ct-title h2{
    font-family: Arial;
    font-size: 50px;
}
.ct-title p {
    display: inline-flex;
    align-items: center;
    font-family: ShipporiMincho;
    font-size: 24px;
    color: #7C7C7C;
}

.ct-title p .gradient-icon {
    width: 35px;
    height: 6px;
    margin-left: 15px;
    background: linear-gradient(90deg, #3983E1, #68CADC);
}
.ct1{
    padding-top: 250px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding-bottom: 175px;
}
.ct1 .ct1-text1{
    padding-top: 100px;
}
.ct1 .ct1-text2{
    padding-right: 50px;
}
.ct2 {
    display: flex;
    padding-bottom: 210px;
}
.ct2 img {
    max-width: 576px;
    padding-right: 65px;
}
.ct2 .ct2-info .ct2-p{
    padding-bottom: 40px;
}
.btn-viewmore a {
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    display: inline-block;
    border-radius: 60px;
}
.btn-viewmore a  span img{
    position: absolute;
    padding: 0;
    right: 20px;
    width: 15px;
}
.btn-viewmore a  span{
    position: relative;
    display: flex;
    width: 303px;
    height: 60px;
    color: #ffffff;
    justify-content: center;
    align-items: center;
    border-radius: 60px;
    font-size: 20px;
    overflow: hidden;
    transition: 0.5s;
    z-index: 1;
    font-family: ShipporiMincho;
}
.btn-viewmore a  span:before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: -1;
    left: 0;
    transition: 0.5s;
    background: rgb(57, 131, 225);
    background: linear-gradient(90deg, rgb(57, 131, 225) 0%, rgb(104, 202, 220) 100%);
}
.btn-viewmore a  span:after {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: -2;
    left: 0;
    background: rgb(104, 202, 220);
    background: linear-gradient(90deg, rgb(104, 202, 220) 0%, rgb(84, 137, 225) 100%);
}
.btn-viewmore a  span:hover:before {
    opacity: 0;
}
.ct3{
    display: flex;
    justify-content: space-between;
    padding-bottom: 265px;
}
.ct3 .ct3-info{
    padding-top: 75px;
}
.ct3 .ct3-info p.ct3-p{
    padding-bottom: 70px;
}
.ct3 .ct3-img{}
.ct3 .ct3-img img{
    max-width: 246px;
    margin-left: 28px;
}
.ct4{
    padding-bottom: 175px;
}
.ct4 .ct4-slider {
    width: 100%;
    overflow: hidden;
    padding-bottom: 10px;
    text-align: center;
    padding-top: 40px;
}

.ct4 .slider-track {
    display: flex;
    padding-bottom: 95px;
}

.ct4 .slider-track a {
    width: 31%;
    flex-shrink: 0;
    margin-right: 4%;
    background: transparent;
    transition: 0.5s;
}

.ct4 .slider-track img {
    width: 100%;
    display: block;
}
.ct4 .slider-track a:hover {
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    transform: scale(1.1);
}
.ct5{
    display: flex;
    justify-content: space-between;
    padding-bottom: 210px;
}
.ct5 .ct-title{
    padding-top: 20px;
}
.ct5 .ct5-content{
    width: 876px;
    text-align: center;
}
.ct5 .ct5-content .ct5-list{
    display: flex;
    flex-direction: column;
    text-align: left;
    padding-bottom: 68px;
}
.ct5 .ct5-content .ct5-list a{
    padding: 25px 10px;
    border-bottom: 1px solid #707070;
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    color: #000000;
}
.ct5 .ct5-content .ct5-list .ct5-cate{
    font-size: 12px;
    background: #B9EDF5;
    padding: 5px;
    margin-right: 45px;
}
.ct5 .ct5-content .ct5-list .ct5-date{
    font-size: 20px;
    margin-right: 30px;
}
.ct5 .ct5-content .ct5-list .ct5-title{}
.ct6 {
    display: flex;
    padding-bottom: 210px;
    justify-content: space-between;
}
.ct6 img {
    max-width: 576px;
    padding-right: 65px;
}
.ct6 .ct6-info .ct6-p{
    padding-bottom: 40px;
}

.footer{
    background: #ffffff;
    box-shadow: rgba(0, 0, 0, 0.45) 0px -20px 20px -20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 38px 55px;
}
.footer .ft-left{
    display: flex;
    align-items: center;
}
.footer .ft-left a{
    margin-right: 35px;
}
.footer .ft-left p{
    font-size: 12px;
    line-height: 1.7;
    color: #6A6A6B;
}
.footer .ft-left p .copyright{
    font-size: 12px;
}
.footer .ft-left img{
    max-width: 68px;
}
.footer .ft-right{
    display: flex;
    align-items: center;
}
.footer .ft-right .ft-menu{
    display: flex;
    align-items: center;
    margin-right: 50px;
    color: #6A6A6B;
    font-family: ShipporiMincho;
}
.footer .ft-right .ft-menu span.gradient-icon{
    width: 22px;
    height: 4px;
    margin-right: 10px;
    background: linear-gradient(90deg, #3983E1, #68CADC);
}
.footer .ft-right .btn-viewmore{
}
.footer .ft-right .btn-viewmore img{
    position: unset;
    width: 29px;
    margin-right: 39px;
}
.footer .ft-right .btn-viewmore a  span{
    font-size: 20px;
}

.page-content{
    margin-top: 118px;
    padding-bottom: 150px;
    position: relative;
}
.page-title{
    position: relative;
}
.page-content .shape {
    position: absolute;
    right: 0;
    width: 45%;
    height: 234px;
    background: #68CADC;
    clip-path: polygon(
            0 0,        /* góc trên trái */
            100% 0,     /* góc trên phải */
            100% 100%,  /* góc dưới phải */
            45% 100%    /* cắt góc dưới trái */
    );
}
.page-content .ct-title{
    height: 234px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-bottom: 95px;
}
.os1{
    display: flex;
    padding-bottom: 165px;
}
.os1 img{max-width: 742px;}
.os1 .os1-text{
    padding-left: 75px;
}
.os1 .os1-text h3{
    font-size: 24px;
    line-height: 1.8;
    padding-bottom: 50px;
}
.os1 .os1-text p{}
.os2 .feature {
    position: relative;
    width: 100%;
    padding-bottom: 175px;
}
.os2 .bg-blue {
    width: 94%;
    height: 510px;
    margin-right: auto;     /* lệch phải */
    background: linear-gradient(90deg, #B3E5EE 0%, #ACDAEE 70%, #9DC3F0 100%);
    display: flex;
    justify-content: space-between;
}
.os2 .bg-blue .num {
    font-size: 90px;
    color: #ffffff;
    font-family: "Arial Black", Arial, sans-serif;
    font-weight: bold;
    padding-top: 45px;
    padding-left: 30px;
}
.os2 .bg-blue .title {
    font-size: 24px;
    font-weight: bold;
    padding-top: 40px;
    padding-right: 60px;
}
.os2 .box-white {
    position: absolute;
    top: 100px;
    right: 0;
    width: 94%;
    filter: drop-shadow(0px 4px 10px rgba(0, 0, 0, 0.2));
    padding: 10px;
}
.os2 .wrapper-with-shadow {
    padding: 80px 60px 60px 70px;
    background-color: #FFFFFF;
    clip-path: polygon(
            180px 0,   /* Bắt đầu sau 50px ở cạnh trên */
            100% 0,   /* Đến góc trên bên phải */
            100% 100%,/* Đến góc dưới bên phải */
            0 100%,   /* Đến góc dưới bên trái */
            0 100px    /* Kết thúc ở 50px dưới góc trên bên trái */
    );
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 4px;
}
.os2 .box-white img {
    width: 51%;
    margin-left: 20px;
}
.br1{
    padding-bottom: 185px;
}
.br1 h3{
    font-size: 24px;
    line-height: 1.8;
    padding-bottom: 40px;
}
.br1 p{
    padding-bottom: 105px;
}
.br1 .br1-box{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.br1 .br1-box .btn-viewmore a span{}
.br2{
    position: relative;
    padding-bottom: 215px;
}
.br2 .br2-bg{
    position: absolute;
    top: 0;
    width: 56%;
    height: 477px;
    background: linear-gradient(90deg, #B3E5EE 0%, #ACDAEE 70%, #9DC3F0 100%);
    z-index: -1;
}
.br2 .br2-content{
    z-index: 100;
}
.br2 .br2-content .br-title{
    text-align: right;
    padding-bottom: 120px;
}
.br2 .br2-content .br-title h3{
    font-size: 36px;
    font-family: 'ShipporiMincho';
    padding-bottom: 10px;
}
.br2 .br2-content .br-title div{
    width: 147px;
    height: 6px;
    margin-left: auto;
    background: linear-gradient(90deg, #3983E1, #68CADC);
}
.br2 .br2-content .br-title p{
    font-size: 20px;
    color: #7C7C7C;
}
.br2 .br2-content .br2a{
    padding-bottom: 70px;
    display: flex;
    justify-content: space-between;
}
.br2 .br2-content .br2a-img .br2a-numb{
    font-size: 90px;
    color: #ffffff;
    font-family: "Arial Black", Arial, sans-serif;
    font-weight: bold;
    line-height: 1;
    margin-bottom: -25px;
}
.br2 .br2-content .br2a .br2a-text{
    width: 33%;
    display: flex;
    flex-direction: column;
    padding-left: 45px;
}
.br2 .br2-content .br2a-img{
    width: 67%;
    padding-top: 25px;
}
.br2 .br2-content .br2a-text{}
.br2 .br2-content .br2a-text .br2a-text1{
    font-size: 20px;
    padding-bottom: 20px;
    line-height: 1.5;
}
.br2 .br2-content .br2a-text .br2a-text2{}


/* 🔍 button */
.br2b .zoom-btn {
    position: absolute;
    bottom: 12px;
    right: 12px;
    z-index: 10;
    background: unset;
    color: #fff;
    border: none;
    padding: 8px;
    cursor: pointer;
    font-size: 18px;
}
.br2b .zoom-btn img{
    max-width: 45px;
    transition: transform 0.35s ease;
}
.br2b .zoom-btn:hover img{
    transform: scale(1.1);
}
.is-single-slide .swiper-pagination,
.is-single-slide .thumb-grid,
.is-single-slide .thumb-nav {
    display: none !important;
}


/* MODAL OVERLAY */
.br2b .image-modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: background 0.3s ease, opacity 0.3s ease;
    z-index: 999;
}
.br2b .image-modal.active {
    background: rgba(0, 0, 0, 0.85);
    opacity: 1;
    pointer-events: auto;
}
.br2b .image-modal-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    transform: scale(0.85);
    opacity: 0;
    transition: transform 0.35s ease, opacity 0.35s ease;
}

.br2b .image-modal.active .image-modal-content {
    transform: scale(1);
    opacity: 1;
}
.br2b .image-modal img {
    width: 100%;
    height: auto;
    max-height: 90vh;
    display: block;
}
.br2b .modal-close {
    position: absolute;
    top: -14px;
    right: -14px;
    background: #fff;
    border: none;
    font-size: 18px;
    padding: 6px 10px;
    cursor: pointer;
    border-radius: 50%;
}
/*end modal*/
.br2b .thumb-grid img{
    max-height: 250px;
    object-fit: cover;
}
.br2b .wos1-img{
    padding-bottom: 35px;
}
.br2b-a{
    border-top: 1px solid #707070;
    padding-top: 20px;
    text-align: right;
}
.br2b-a a{
    color: #000000;
    font-size: 20px;
    font-family: 'ShipporiMincho';
}
.br2b-a a i{
    color: #7C7C7C;
    padding-left: 15px;
    font-size: 25px;
}
/*WORKS & OWNER’S VOICE*/
.wo1-title{
    font-size: 24px;
    padding-bottom: 40px;
}
.wo1-list{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.wo1-box{
    max-width: 560px;
    padding-bottom: 100px;
}
.wo1-img {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    border-bottom: 1px solid #707070;
}
.wo1-name{
    width: 416px;
    height: 150px;
    margin-top: -43px;
    padding-top: 35px;
    background-color: #ffffff;
    color: #000000;
    box-sizing: border-box;
    display: flex;
    align-items: flex-end;
    clip-path: polygon(135px 0, 100% 0, 100% 100%, 0 100%);
    flex-direction: column;
}
.wo1-name h4{
    font-size: 24px;
    padding-bottom: 10px;
    font-family: ShipporiMincho;
}
.wo1-name p{
    color: #7C7C7C;
}
.wo1-box a{
    font-size: 20px;
    color: #000000;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 22px 15px;
    transition: 0.3s ease;
}
.wo1-box a i{
    color: #7C7C7C;
    font-size: 25px;
    padding-left: 10px;
    transition: transform 0.3s ease;
}
.wo1-box a:hover i {
    transform: translateX(10px);
}

.pagination-news {
    display: flex;
    justify-content: center;
    width: 100%;
}

.pagination-news a {
    background-color: #FFFFFF;
    color: #E2E2E2;
    float: left;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: background-color .3s;
    margin: 0 8px;
    font-size: 19px;
    line-height: 1;
    border-radius: 50%;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
    border: unset;
}

.pagination-news li span{
    float: left;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: background-color .3s;
    margin: 0 8px;
    font-size: 19px;
    line-height: 1;
    border-radius: 50%;
}
.pagination-news li.active span{
    background-color: #B9EDF5;
    color: #000000;
}
.pagination-news .prev,
.pagination-news .next{
}
.pagination-news a:hover:not(.active) {
    background-color: #3983E1;
    color: #ffffff;
}

.page-news{
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}
.page-news .sidebar-category-menu{
    width: 25%;
    display: flex;
    flex-direction: column;
}
.page-news .sidebar-category-menu li{
    color: #000000;
    padding: 15px 0;
}
.page-news .sidebar-category-menu li a{
    color: #000000;
}
.sidebar-category-menu li a.active {
    color: rgb(57, 131, 225) !important;
    font-weight: bold;
}
.sidebar-category-menu li a:hover {
    color: rgb(57, 131, 225);
}

.page-news .news-content{
    width: 73%;
    display: flex;
    flex-direction: column;
}
.page-news .news-content a{
    color: #000000;
    margin-bottom: 100px;
}
.page-news .news-content a .news-title{
    border-bottom: 1px solid #7C7C7C;
    padding-bottom: 25px;
    display: flex;
    align-items: flex-start;
    margin-bottom: 10px;
}
.page-news .news-content a .news-title div{
    width: 15%;
    display: flex;
    padding: 5px 0;
}
.page-news .news-content a .news-title div p{
    font-size: 13px;
    padding: 0 10px;
    background: #B9EDF5;
}
.page-news .news-content a .news-title h3{
    font-size: 24px;
    width: 85%;
    line-height: 1.5;
}
.page-news .news-content a .news-date{
    color: #7C7C7C;
    text-align: right;
    padding-bottom: 50px;
}
.page-news .news-content a .news-text{}

.bc1{
    padding-bottom: 100px;
}
.bc1 h3{
    font-size: 24px;
    padding-bottom: 40px;
}
.bc1 p{
    padding-bottom: 100px;
}
.bc1 div{
    text-align: center;
}
.bc1 div img{}
.bc2{
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}
.bc2 .bc2-box{
    width: 25%;
}
.bc2 .bc2-box h3{
    font-family: "Arial Black", Arial, sans-serif;
    font-size: 80px;
    color: #B4E5ED;
    padding-bottom: 28px;
}
.bc2 .bc2-box:nth-child(1){
}
.bc2 .bc2-box:nth-child(2){
    width: 30%;
}
.bc2 .bc2-box:nth-child(3){
}
.bc2 .bc2-box:nth-child(2) h3{
    color: #BED2F7;
}
.bc2 .bc2-box:nth-child(3) h3{
    color: #DADADA;
}
.bc2 .bc2-box h4{
    padding-bottom: 28px;
    font-size: 24px;
}
.bc2 .bc2-box ul{
    padding-bottom: 50px;
}
.bc2 .bc2-box ul li{
    padding-bottom: 20px;
}
.bc2 .bc2-box div{
    display: flex;
    flex-direction: column;
}
.bc2 .bc2-box div a{
    color: #000000;
    font-size: 20px;
    padding-bottom: 20px;
}
.bc2 .bc2-box div a i{
    color: #69CBDB;
    padding-right: 10px;
}
.cp1{
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    padding-bottom: 165px;
}
.cp1 img{
    width: 50%;
    padding-right: 88px;
}
.cp1 .cp1-info{
    max-width: 600px;
}
.cp1 .cp1-info h3{
    font-size: 24px;
    padding-bottom: 40px;
}
.cp1 .cp1-info p.cp1-name{
    text-align: right;
    padding-top: 40px;
}
.cp1 .cp1-info p.cp1-name span{
    font-size: 24px;
    font-family: ShipporiMincho;
    padding-left: 10px;
}
.cp2{}
.cp2 h3{
    font-size: 24px;
    padding-bottom: 50px;
}
.cp2 table{
    width: 100%;
    margin-bottom: 90px;
}
.cp2 table tr th{
    width: 25%;
    border-top: 1px solid #707070;
    border-bottom: 1px solid #707070;
    padding: 20px 0;
    text-align: center;
}
.cp2 table tr td{
    width: 75%;
    border-top: 1px solid #707070;
    border-bottom: 1px solid #707070;
    padding: 20px 0;
    font-weight: unset;
}
.cp-map iframe {
    filter: grayscale(100%);
    -webkit-filter: grayscale(100%);
}
.pp{}
.pp h3{
    font-size: 24px;
    padding-bottom: 18px;
    margin-bottom: 18px;
    border-bottom: 1px solid #707070;
}
.pp p{
    padding-bottom: 55px;
}

/*FQA*/
.accordion-item {
    width: 100%;
}

.accordion-header {
    padding-left: 5px;
    width: 100%;
    text-align: left;
    border: none;
    outline: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    border-bottom: 1px solid #7C7C7C;
}

.accordion-header:hover {
}
.accordion-header p{
    display: flex;
    align-items: center;
    font-size: 24px;
}
.question-title {
    font-family: "Arial", Arial, sans-serif;
    font-weight: bold;
    font-size: 50px;
    background: linear-gradient(
            270deg, #3983E1, #68CADC);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}
.accordion-header .gradient-icon{
    width: 35px;
    height: 6px;
    margin-left: 20px;
    margin-right: 30px;
    background: linear-gradient(90deg, #3983E1, #68CADC);
}
.accordion-header .arrow-icon {
    transition: transform 0.3s ease;
    font-size: 25px;
    color: #7C7C7C;
}
.accordion-header.active .arrow-icon {
    transform: rotate(90deg);
}
.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
    will-change: max-height;
}
.content-inner {
    padding: 25px 25px 50px 155px;
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity 0.4s ease-out, transform 0.4s ease-out;
}

.accordion-content.show {
    max-height: 500px;
}

.accordion-content.show .content-inner {
    opacity: 1;
    transform: translateY(0);
}
.contact-page{}
.contact-page h3{
    font-size: 24px;
    padding-bottom: 50px;
}
.contact-page table{
    width: 100%;
    margin-bottom: 50px;
}
.contact-page table tr{}
.contact-page table tr td{
    width: 73%;
    padding: 18px 0;
    font-size: 20px;
}
.contact-page table tr td p{}
.contact-page table tr td input{
    width: 100%;
    border: 1px solid #707070;
    font-size: 20px;
    padding: 15px;
}
.contact-page table tr td textarea{
    width: 100%;
    height: 232px;
    font-size: 20px;
}
.contact-page table tr th{
    width: 27%;
    padding: 18px 30px 18px 0;
    font-size: 20px;
}
.contact-page table tr th span.required{
    float: right;
    background: #B9EDF5;
    padding: 3px 20px;
}
.contact-page table tr select{
    font-size: 20px;
    width: 100%;
    padding: 15px;
}
.contact-page table tr.content-row th{
    vertical-align: top;
}
.contact-privacy{}
.contact-privacy p{
    padding-bottom: 60px;
}
.contact-privacy label{
    font-size: 20px;
}
.contact-privacy label input{width: 20px;height: 20px;}
.contact-privacy a {
    color: #000000;
    text-decoration: underline;
}
.form-btn{
    text-align: center;
    display: flex;
    justify-content: center;
    padding-top: 80px;
}
.form-btn p.btn {
    text-align: center;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    display: inline-block;
    border-radius: 60px;
}
.form-policy p:nth-child(1) {
    font-size: 12px;
    padding-bottom: 40px;
}
.form-btn p.btn {
    position: relative;
    display: flex;
    width: 450px;
    height: 90px;
    color: #ffffff;
    justify-content: center;
    align-items: center;
    border-radius: 60px;
    font-size: 24px;
    overflow: hidden;
    transition: 0.5s;
    z-index: 1;
    font-family: ShipporiMincho;
}
.form-btn p.btn:before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: -1;
    left: 0;
    transition: 0.5s;
    background: rgb(57, 131, 225);
    background: linear-gradient(90deg, rgb(57, 131, 225) 0%, rgb(104, 202, 220) 100%);
}
.form-btn p.btn:after {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: -2;
    left: 0;
    background: rgb(104, 202, 220);
    background: linear-gradient(90deg, rgb(104, 202, 220) 0%, rgb(84, 137, 225) 100%);
}

.form-btn p.btn:hover:before {
    opacity: 0;
}
.form-btn p.btn input{
    background: unset;
    border: unset;
    width: 100%;
    height: 100%;
    font-size: 24px;
    color: #ffffff;
    font-family: 'ShipporiMincho';
}

.wos1{
    padding-top: 70px;
    padding-bottom: 145px;
}
.wos1 .wos1-title{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 35px;
}
.wos1 .wos1-title h3{
    font-size: 24px;
}
.wos1 .wos1-title p{
    font-size: 20px;
    color: #7C7C7C;
}
.wos1 .wos1-info{
    display: flex;
    justify-content: space-between;
}
.wos1 .wos1-info p{
    width: 48%;
}
.wos1 .wos1-info .wos1-info-r{
    width: 48%;
}
.wos1 .wos1-info .wos1-info-r h4{
    font-size: 24px;
    font-family: 'Arial';
    padding-bottom: 17px;
}
.wos1 .wos1-info .wos1-info-r table{
    width: 100%;
}
.wos1 .wos1-info .wos1-info-r table tr th{
    width: 30%;
    border-top: 1px solid #707070;
    border-bottom: 1px solid #707070;
    padding: 20px 0;
    text-align: center;
}
.wos1 .wos1-info .wos1-info-r table tr td{
    width: 70%;
    border-top: 1px solid #707070;
    border-bottom: 1px solid #707070;
    padding: 20px 0;
    font-weight: unset;
}
.wos1-img {
    max-width: 1200px;
    margin: auto;

    padding-bottom: 130px;
}

.wos1-img .main-swiper .swiper-wrapper{
    height: 710px;
}
.wos1-img .main-swiper img {
    width: 100%;
    object-fit: cover;
}
.thumb-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.thumb-grid img {
    width: 100%;
    cursor: pointer;
    opacity: 0.6;
    border: 2px solid transparent;
}

.thumb-grid img.active {
    opacity: 1;
    border-color: #00bcd4;
}
.thumb-grid .swiper-wrapper {
    height: auto;
    padding-bottom: 30px;
}
.thumb-grid .thumb-nav{
    text-align: right;
    padding-right: 5px;
    padding-bottom: 10px;
}
.thumb-grid .thumb-nav button{
    width: 56px;
    height: 56px;
    border-radius: 50%;
    border: unset;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
    margin-left: 15px;
    font-size: 25px;
    color: #68CADC;
    background: #ffffff;
    transition: 0.2s ease;
}
.thumb-grid .thumb-nav button:hover{
    background: #68CADC;
    color: #ffffff;
}
.thumb-grid .thumb-nav button.thumb-prev{}
.thumb-grid .thumb-nav button.thumb-next{}
.swiper-slide.active img{
    opacity: 1;
    border-color: #00bcd4;
}
.wos2{
    position: relative;
}
.wos2 .wos2-img{
    top: 90px;
    width: 332px;
    left: 47px;
}
.wos2 .wos2-img img{}
.wos2 .wos2-img .wos2-name{
    width: 90%;
    margin-left: auto;
    height: 87px;
    margin-top: -40px;
    padding-top: 20px;
    background-color: #ffffff;
    color: #000000;
    box-sizing: border-box;
    display: flex;
    align-items: flex-end;
    clip-path: polygon(190px 0, 100% 0, 100% 100%, 0 100%);
    flex-direction: column;
}
.wos2 .wos2-img .wos2-name h4{
    font-family: 'ShipporiMincho';
}
.wos2 .wos2-img .wos2-name h4 span{
    font-size: 24px;
    padding-right: 5px;
    font-family: 'ShipporiMincho';
}
.wos2 .wos2-img .wos2-name p{
    color: #7C7C7C;
}
.wos2 h3{
    font-size: 24px;
    font-family: 'Arial';
    padding-bottom: 20px;
}
.wos2 .wos2-info{padding-bottom: 125px;}
.wos2 .wos2-info h4{background: linear-gradient(90deg, #B3E5EE 0%, #ACDAEE 70%, #9DC3F0 100%);font-size: 24px;padding: 50px 0 55px 465px;line-height: 1.5;margin-bottom: 35px;}
.wos2 .wos2-info p{padding-left: 465px;}
.wos2 .btn-viewmore{
    width: 100%;
    text-align: center;
}
.single-news .entry-header{
    padding-bottom: 30px;
}
.single-news .entry-header h1{
    font-size: 24px;
    padding-bottom: 20px;
}
.single-news .entry-header .entry-meta{
    display: flex;
    align-items: center;
    color: #7f7f7f;
    justify-content: space-between;
}
.single-news .single-avatar{
    padding-bottom: 30px;
}
.single-news .single-avatar img{
    width: 100%;
    height: auto;
}
.single-news .entry-content{
    padding-bottom: 100px;
}
.related-posts-wrapper{
    display: flex;
    align-items: flex-start;
    gap: 20px;
}
.related-posts h3{
    text-align: center;
    font-size: 25px;
    padding: 25px 0;
    border-top: 1px solid #7C7C7C;
}
.related-posts-wrapper .related-item{
    width: 32%;
}
.related-posts-wrapper .related-item a{}
.related-posts-wrapper .related-item a .related-thumb{}
.related-posts-wrapper .related-item a .related-thumb img{
    width: 100%;
    height: 190px;
    object-fit: cover;
}
.related-posts-wrapper .related-item a .related-title{
    display: -webkit-box;        /* Bắt buộc để sử dụng line-clamp */
    -webkit-line-clamp: 2;      /* Số dòng muốn hiển thị */
    -webkit-box-orient: vertical; /* Bắt buộc thiết lập hướng dọc */
    overflow: hidden;           /* Ẩn phần chữ thừa */
    text-overflow: ellipsis;    /* Thêm dấu ... */

    /* Các thuộc tính bổ sung để giao diện đẹp hơn */
    line-height: 1.4em;         /* Độ cao của mỗi dòng */
    height: 2.8em;              /* Chiều cao tổng = line-height x 2 */
    margin-top: 10px;
}
.fs-14{
    font-size: 14px;
}
.animate__animated.animate__delay-0_3s {
    -webkit-animation-delay: 0.3s;
    animation-delay: 0.3s;
    -webkit-animation-delay: calc(var(--animate-delay) * 0.3);
    animation-delay: calc(var(--animate-delay) * 0.3)
}

.animate__animated.animate__delay-0_5s {
    -webkit-animation-delay: 0.5s;
    animation-delay: 0.5s;
    -webkit-animation-delay: calc(var(--animate-delay) * 0.5);
    animation-delay: calc(var(--animate-delay) * 0.5)
}

.animate__animated.animate__delay-0_9s {
    -webkit-animation-delay: 0.9s;
    animation-delay: 0.9s;
    -webkit-animation-delay: calc(var(--animate-delay) * 0.9);
    animation-delay: calc(var(--animate-delay) * 0.9)
}

.animate__animated.animate__delay-1_2s {
    -webkit-animation-delay: 1.2s;
    animation-delay: 1.2s;
    -webkit-animation-delay: calc(var(--animate-delay) * 1.2);
    animation-delay: calc(var(--animate-delay) * 1.2)
}

.animate__animated.animate__delay-0_5s {
    -webkit-animation-delay: 0.5s;
    animation-delay: 0.5s;
    -webkit-animation-delay: calc(var(--animate-delay) * 0.5);
    animation-delay: calc(var(--animate-delay) * 0.5)
}
.animate__animated.animate__delay-1_5s {
    -webkit-animation-delay: 1.5s;
    animation-delay: 1.5s;
    -webkit-animation-delay: calc(var(--animate-delay) * 1.5);
    animation-delay: calc(var(--animate-delay) * 1.5)
}
.animate__animated.animate__delay-1_7s {
    -webkit-animation-delay: 1.7s;
    animation-delay: 1.7s;
    -webkit-animation-delay: calc(var(--animate-delay) * 1.7);
    animation-delay: calc(var(--animate-delay) * 1.7)
}
.animate__animated.animate__delay-2_1s {
    -webkit-animation-delay: 2.1s;
    animation-delay: 2.1s;
    -webkit-animation-delay: calc(var(--animate-delay) * 2.1);
    animation-delay: calc(var(--animate-delay) * 2.1)
}
.animate__animated.animate__delay-2_4s {
    -webkit-animation-delay: 2.4s;
    animation-delay: 2.4s;
    -webkit-animation-delay: calc(var(--animate-delay) * 2.4);
    animation-delay: calc(var(--animate-delay) * 2.4)
}
.animate__animated.animate__delay-2_7s {
    -webkit-animation-delay: 2.7s;
    animation-delay: 2.7s;
    -webkit-animation-delay: calc(var(--animate-delay) * 2.7);
    animation-delay: calc(var(--animate-delay) * 2.7)
}
.animate__animated.animate__delay-3_0s {
    -webkit-animation-delay: 3.0s;
    animation-delay: 3.0s;
    -webkit-animation-delay: calc(var(--animate-delay) * 3.0);
    animation-delay: calc(var(--animate-delay) * 3.0)
}
.animate__animated.animate__delay-3_3s {
    -webkit-animation-delay: 3.3s;
    animation-delay: 3.3s;
    -webkit-animation-delay: calc(var(--animate-delay) * 3.3);
    animation-delay: calc(var(--animate-delay) * 3.3)
}
.animate__animated.animate__delay-3_6s {
    -webkit-animation-delay: 3.6s;
    animation-delay: 3.6s;
    -webkit-animation-delay: calc(var(--animate-delay) * 3.6);
    animation-delay: calc(var(--animate-delay) * 3.6)
}
.animate__animated.animate__delay-3_9s {
    -webkit-animation-delay: 3.9s;
    animation-delay: 3.9s;
    -webkit-animation-delay: calc(var(--animate-delay) * 3.9);
    animation-delay: calc(var(--animate-delay) * 3.9)
}
.animate__animated.animate__delay-2_5s {
    -webkit-animation-delay: 2.5s;
    animation-delay: 2.5s;
    -webkit-animation-delay: calc(var(--animate-delay) * 2.5);
    animation-delay: calc(var(--animate-delay) * 2.5)
}
.animate__animated.animate__delay-3_5s {
    -webkit-animation-delay: 3.5s;
    animation-delay: 3.5s;
    -webkit-animation-delay: calc(var(--animate-delay) * 3.5);
    animation-delay: calc(var(--animate-delay) * 3.5)
}
.animate__animated.animate__delay-4_5s {
    -webkit-animation-delay: 4.5s;
    animation-delay: 4.5s;
    -webkit-animation-delay: calc(var(--animate-delay) * 4.5);
    animation-delay: calc(var(--animate-delay) * 4.5)
}
@media screen and (min-width:737px){
    .is-sp{
        display: none;
    }
    .ct5 .ct5-content .ct5-list a:first-child{
        border-top: 1px solid #707070;
    }

    .wos2 .wos2-img{
        position: absolute;
    }
}
@media screen and (max-width:1600px){
    .triangle {
        width: 470px;
        height: 235px;
    }
    .header{
        height: 75px;
    }
    .logo {
        margin: 0 15px;
    }
    .logo img {
        max-width: 150px;
    }
    .hamburger {
        top: 25px;
        right: 35px;
    }
    .ct-title p {
        font-size: 20px;
    }
    .ct-title h2 {
        font-size: 40px;
    }
    .ct1 {
        padding-top: 170px;
        padding-bottom: 50px;
    }
    .ct1 .ct1-text1 {
        padding-top: 90px;
        width: 400px;
    }
    .ct1 .ct1-text2 {
        width: 125px;
    }
    .ct2 {
        padding-bottom: 100px;
    }
    .ct3 {
        padding-bottom: 100px;
    }
    .ct4 {
        padding-bottom: 100px;
    }
    .ct4 .slider-track {
        padding-bottom: 60px;
    }
    .ct5 {
        padding-bottom: 130px;
    }
    .ct5 .ct5-content .ct5-list{
        padding-bottom: 60px;
    }
    .ct6 {
        padding-bottom: 100px;
    }
    .page-content {
        margin-top: 75px;
    }
    .footer {
        padding: 25px 30px;
    }
    .footer .ft-left a {
        margin-right: 20px;
    }
    .footer .ft-left img {
        max-width: 55px;
    }
}
@media screen and (max-width:1400px){}
@media screen and (max-width:1200px){}
/*mobile*/
@media screen and (max-width:737px){
    body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, font, ins, kbd, q, s, samp, small, strike, sub, sup, tt, var, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td{
        font-size: 3.5vw;
    }
    .is-pc{
        display: none;
    }
    .inner-page{
        max-width: 90%;
    }
    .menu-grid {
        align-items: flex-start;
        flex-direction: column;
        width: 70%;
        margin: auto;
    }
    .menu-grid h2 {
        font-size: 7vw;
    }
    .menu .menu-title {
        height: auto;
        margin-right: 0;
        margin-top: 25vw;
        padding-bottom: 10vw;
    }
    .menu li {
        padding: 3.5vw 0;
    }
    .menu .menu-column li a span.gradient-icon {
        width: 22px;
        height: 4px;
    }
    .menu .menu-column:nth-child(2) li a {
        font-size: 4.5vw;
    }
    .menu .menu-column:nth-child(2) {
        width: auto;
        height: auto;
        margin-right: 0;
        padding-bottom: 20vw;
    }
    .menu .menu-column:nth-child(3) li {
        padding: 2.5vw 0;
    }
    .menu.active .menu-column:nth-child(3) li a {
        font-size: 3.5vw;
    }
    .menu .menu-column:nth-child(3) {
        height: auto;
        width: auto;
    }
    .menu .btn-viewmore {
        position: absolute;
        bottom: 17vw;
        right: auto;
        width: 100%;
    }
    .background-top{
        background-image: url('../img/sp-background.png');
    }
    .header {
        height: 64px;
    }
    .logo {
        margin: 0 14px;
    }
    .logo img {
        max-width: 38px;
    }
    .hamburger {
        top: 20px;
        right: 20px;
    }
    .triangle {
        width: 52vw;
        height: 26vw;
    }
    .ct1 {
        padding-top: 30vw;
        padding-bottom: 75vw;
        flex-direction: column;
        align-items: flex-end;
    }
    .ct1 .ct1-text1 {
        padding-top: 0;
        width: 85%;
        margin: auto;
    }
    .ct1 .ct1-text2 {
        width: 30%;
        padding-right: 0;
        margin-right: 12vw;
        padding-top: 17vw;
    }
    .ct2 {
        flex-direction: column;
        padding-bottom: 20vw;
    }
    .ct2 .ct2-info{
        width: 85%;
        margin: auto;
        padding-bottom: 15vw;
    }
    .ct2 .ct2-info .ct2-p {
        padding-bottom: 16vw;
    }

    .ct2 img {
        order: 2;
        padding-right: 0;
        width: 100%;
        max-width: unset;
    }
    .ct-title {
        margin-bottom: 20px;
    }
    .ct-title p {
        font-size: 4.2vw;
    }
    .ct-title p .gradient-icon {
        width: 22px;
        height: 4px;
        margin-left: 10px;
    }
    .ct-title h2 {
        font-size: 11vw;
        line-height: 1.3;
    }
    .btn-viewmore{
        text-align: center;
    }
    .btn-viewmore a span {
        width: 75vw;
        height: 15vw;
        font-size: 5vw;
    }
    .ct3 {
        padding-bottom: 22vw;
        flex-direction: column;
    }
    .ct3 .ct3-info {
        padding-top: 0;
        width: 85%;
        margin: auto;
    }
    .ct3 .ct3-img img {
        max-width: unset;
        margin-left: 0;
    }
    .ct3 .ct3-img img:nth-child(1){
        width: 68%;
    }
    .ct3 .ct3-img img:nth-child(2){
        margin-top: -26vw;
        float: right;
        margin-right: 3vw;
    }
    .ct3 .ct3-img img:nth-child(3){
        float: right;
        margin-top: -29vw;
    }
    .ct3 .ct3-img {
        padding-bottom: 10vw;
    }
    .ct3 .ct3-info p.ct3-p{
        padding-bottom: 9vw;
    }
    .ct4 {
        padding-bottom: 23vw;
    }
    .ct4 .ct-title{
        width: 85%;
        margin: auto;
    }
    .ct4 .ct4-slider {
        padding-top: 11vw;
    }
    .ct4 .slider-track a{
        width: 85%;
    }
    .ct4 .slider-track{
        padding-bottom: 16vw;
    }
    .ct5 {
        flex-direction: column;
        padding-bottom: 30vw;
    }
    .ct5 .ct-title {
        padding-top: 0;
        padding-left: 58vw;
        margin-bottom: 15vw;
    }
    .ct5 .ct5-content {
        width: 100%;
    }
    .ct5 .ct5-content .ct5-list a {
        padding: 6vw 7vw 9vw 7vw;
        flex-wrap: wrap;
        align-items: flex-start;
    }
    .ct5 .ct5-content .ct5-list .ct5-title {
        padding-top: 4vw;
    }
    .ct5 .ct5-content .ct5-list .ct5-date {
        font-size: 4vw;
        margin-right: 5vw;
    }
    .ct5 .ct5-content .ct5-list .ct5-cate {
        font-size: 3vw;
        margin-right: 5vw;
    }
    .ct5 .ct5-content .ct5-list .ct5-title {
        padding-top: 4vw;
        font-size: 4vw;
        font-weight: bold;
    }
    .ct5 .ct5-content .ct5-list {
        padding-bottom: 16vw;
    }
    .ct6 {
        padding-bottom: 32vw;
        flex-direction: column;
    }
    .ct6 .ct6-info{
        width: 85%;
        margin: auto;
    }
    .ct6 .ct6-info .ct6-p{
        padding-bottom: 18vw;
    }
    .ct6 img {
        max-width: unset;
        width: 100%;
        padding-right: 0;
        padding-bottom: 13vw;
    }
    .ct7 .btn-viewmore{
        order: 3;
    }
    .ct7 .ct2-info {
        padding-bottom: 0;
    }
    .ct7 .ct2-info .ct2-p {
        padding-bottom: 18vw;
    }
    .ct7{
        position: relative;
        z-index: 0;
    }
    .ct7 img {
        padding-bottom: 13vw;
    }
    .triangle-ft {
        position: absolute;
        bottom: 0;
        right: 0;
        z-index: 1;
        width: 30vw;
        height: 15vw;
        background: #b7e3ee;
        clip-path: polygon(
                100% 0,    /* góc trên phải */
                100% 100%, /* góc dưới phải */
                0 100%     /* góc dưới trái */
        );
    }

    .footer {
        padding: 15vw 5vw;
        position: relative;
        flex-direction: column;
    }
    .footer .ft-right {
        flex-direction: column;
        order: 1;
        align-items: flex-start;
        padding-bottom: 10vw;
    }
    .footer .ft-left img {
        max-width: 76%;
    }
    .footer .ft-right .btn-viewmore {
        order: 1;
        padding-bottom: 10vw;
    }
    .footer .ft-right .ft-menu {
        order: 2;
        margin-right: 0;
        padding-bottom: 4vw;
    }
    .footer .ft-left p {
        font-size: 3vw;
    }
    .footer .ft-left a {
        margin-right: 0;
    }
    .footer .ft-left p .copyright {
        font-size: 2.8vw;
    }
    .footer .ft-left {
        order: 2;
    }
    .fs-14{
        font-size: 4vw;
    }

    .page-content {
        margin-top: 64px;
        padding-bottom: 20vw;
    }
    .page-content .ct-title {
        height: auto;
        padding-top: 9vw;
        margin-bottom: 15vw;
    }
    .page-content .shape {
        height: 27vw;
        clip-path: polygon(0 0, /* góc trên trái */ 100% 0, /* góc trên phải */ 100% 100%, /* góc dưới phải */ 100% 100% /* cắt góc dưới trái */);
    }
    .os1 {
        padding-bottom: 25vw;
        flex-direction: column;
    }
    .os1 img {
        width: 100%;
        order: 2;
    }
    .os1 .os1-text {
        padding-left: 0;
    }
    .os1 .os1-text h3 {
        font-size: 4.3vw;
        padding-bottom: 7vw;
    }
    .os1 .os1-text p {
        padding-bottom: 17vw;
    }
    .os2 .bg-blue .num {
        font-size: 15vw;
        padding-top: 4vw;
        padding-left: 6vw;
    }
    .os2 .bg-blue .title {
        font-size: 4.3vw;
        font-weight: bold;
        padding-top: 5vw;
        padding-right: 6vw;
    }

    .os2 .box-white {
        top: 15vw;
        right: -3vw;
        width: 100%;
    }
    .os2 .wrapper-with-shadow {
        padding: 15vw 6vw 6vw 6vw;
        clip-path: polygon(32% 0, /* Bắt đầu sau 50px ở cạnh trên */ 100% 0, /* Đến góc trên bên phải */ 100% 100%, /* Đến góc dưới bên phải */ 0 100%, /* Đến góc dưới bên trái */ 0 15vw /* Kết thúc ở 50px dưới góc trên bên trái */);
        border-radius: 4px;
        flex-direction: column;
    }
    .os2 .box-white img {
        width: 100%;
        margin-left: 0;
        padding-top: 20vw;
    }
    .os2 .bg-blue {
        width: 94%;
        height: 200vw;
    }
    .wo1-title {
        font-size: 4.3vw;
        padding-bottom: 7vw;
    }
    .wo1-name {
        width: 100%;
        height: auto;
        margin-top: 0;
        padding-top: 4vw;
        padding-bottom: 4vw;
        align-items: flex-start;
        clip-path: unset;
        flex-direction: column;
    }
    .wo1-name h4{
        font-size: 3.5vw;
        padding-bottom: 1vw;
    }
    .wo1-name p{
        font-size: 3vw;
    }
    .wo1-box {
        max-width: 48%;
        padding-bottom: 2vw;
    }
    .wo1-box a {
        font-size: 3vw;
        padding: 3vw 0;
    }
    .wo1-box a i {
        display: none;
    }
    .wo1-list {
        padding-bottom: 10vw;
    }
    .pagination-news li span,
    .pagination-news a{
        width: 8vw;
        height: 8vw;
        margin: 0 1.5vw;
        font-size: 3.5vw;
    }

    .page-news {
        flex-direction: column;
    }
    .page-news .sidebar-category-menu {
        flex-direction: row;
        flex-wrap: wrap;
        width: 90%;
        margin: auto;
        padding-bottom: 14vw;
    }
    .page-news .sidebar-category-menu a {
        color: #000000;
        padding: 2vw 0;
        margin-right: 3vw;
    }
    .page-news .news-content {
        width: 100%;
    }
    .page-news .news-content a .news-title {
        border-bottom: 1px solid #7C7C7C;
        padding: 0 5vw 12vw 5vw;
        display: flex;
        align-items: flex-start;
        margin-bottom: 2vw;
        flex-direction: column;
    }

    .page-news .news-content a .news-title div{
        width: auto;
    }
    .page-news .news-content a .news-title div p{
        font-size: 3vw;
        margin-bottom: 3vw;
    }
    .page-news .news-content a .news-title h3 {
        font-size: 4.3vw;
    }
    .page-news .news-content a .news-date {
        width: 90%;
        padding-bottom: 7vw;
    }
    .page-news .news-content a .news-text {
        width: 90%;
        margin: auto;
    }
    .page-news .news-content a {
        margin-bottom: 20vw;
    }
    .bc1 h3 {
        font-size: 4.3vw;
        line-height: 1.7;
        padding-bottom: 4vw;
    }
    .bc1 p {
        padding-bottom: 15vw;
    }
    .bc1 {
        padding-bottom: 18vw;
    }
    .bc2 {
        flex-direction: column;
        padding: 0 4vw;
    }
    .bc2 .bc2-box {
        width: 100%;
        padding-bottom: 15vw;
    }
    .bc2 .bc2-box:nth-child(2) {
        width: 100%;
    }
    .bc2 .bc2-box h3 {
        font-size: 13vw;
        padding-bottom: 4vw;
    }
    .bc2 .bc2-box h4 {
        padding-bottom: 5vw;
        font-size: 4.3vw;
    }
    .bc2 .bc2-box ul li {
        padding-bottom: 3vw;
    }
    .bc2 .bc2-box ul {
        padding-bottom: 5vw;
    }
    .bc2 .bc2-box div a {
        font-size: 3.7vw;
        padding-bottom: 4vw;
    }
    .cp1 {
        padding-bottom: 25vw;
        flex-direction: column;
    }
    .cp1 img {
        width: 100%;
        padding-right: 0;
        padding-bottom: 50px;
    }
    .cp1 .cp1-info {
        max-width: 90%;
        margin: auto;
    }
    .cp1 .cp1-info h3 {
        font-size: 4.3vw;
        padding-bottom: 5vw;
    }
    .cp1 .cp1-info p.cp1-name {
        padding-top: 10vw;
    }
    .cp1 .cp1-info p.cp1-name span {
        font-size: 4.3vw;
    }
    .cp2 table {
        margin-bottom: 15vw;
    }
    .cp2 h3{
        font-size: 4.3vw;
        padding-bottom: 5vw;
    }
    .cp2 table{
        margin-bottom: 90px;
    }
    .cp2 table tr th{
        width: 35%;
        padding: 4vw 0;
    }
    .cp2 table tr td{
        width: 65%;
        padding: 4vw 0;
    }
    .cp-map iframe {
        height: 60vw;
    }
    .pp h3 {
        font-size: 4.3vw;
        padding-bottom: 3vw;
        margin-bottom: 4vw;
    }
    .pp p {
        padding-bottom: 15vw;
    }
    .accordion-header {
        align-items: flex-end;
        flex-direction: column;
        padding-top: 5vw;
    }
    .accordion-header p {
        font-size: 4.3vw;
        flex-wrap: wrap;
        width: 100%;
        line-height: 1.5;
    }
    .question-title {
        font-size: 8vw;
    }
    .accordion-header .gradient-icon {
        width: 22px;
        height: 4px;
        margin-left: 3vw;
        margin-right: 65%;
    }
    .accordion-header .arrow-icon {
        font-size: 5vw;
        padding-bottom: 2vw;
        padding-right: 3vw;
    }
    .content-inner {
        padding: 4vw 0 10vw 0;
    }
    .contact-page {
        padding-top: 15vw;
    }
    .contact-page h3 {
        font-size: 4.3vw;
        padding-bottom: 12vw;
    }
    .contact-page table tr {
        display: flex;
        flex-direction: column;
    }
    .contact-page table tr th {
        width: 100%;
        padding: 0 0 3vw 0;
        font-size: 3.5vw;
    }
    .contact-page table tr td {
        width: 100%;
        padding: 0 0 8vw 0;
        font-size: 3.5vw;
    }
    .contact-page table tr td input {
        width: 100%;
        border: 1px solid #707070;
        font-size: 3.5vw;
        padding: 2.5vw 2vw;
    }
    .contact-page table tr th span.required {
        padding: 3px 10px;
        font-size: 3vw;
    }
    .contact-page table tr select {
        font-size: 3.5vw;
        padding: 2.5vw 2vw;
    }
    .contact-page table tr td textarea {
        height: 50vw;
        font-size: 3.5vw;
    }
    .contact-page table {
        margin-bottom: 0;
    }
    .contact-privacy p {
        padding-bottom: 10vw;
    }
    .contact-privacy label {
        font-size: 3.5vw;
    }
    .contact-privacy label input {
        width: 5vw;
        height: 5vw;
    }
    .form-btn p.btn {
        width: 75vw;
        height: 15vw;
    }
    .footer .ft-right .btn-viewmore a span {
        font-size: 4.3vw;
    }
    .footer .ft-right .btn-viewmore img {
        position: unset;
        width: 8vw;
        margin-right: 10vw;
        margin-left: -10vw;
    }
    .form-btn p.btn input {
        font-size: 4.3vw;
    }

    .wos1 .wos1-title {
        align-items: flex-start;
        padding-bottom: 7vw;
        flex-direction: column;
    }
    .wos1 .wos1-title h3 {
        font-size: 4.3vw;
    }
    .wos1 {
        padding-top: 0;
        padding-bottom: 20vw;
    }
    .wos1 .wos1-title p {
        font-size: 3.5vw;
    }
    .wos1-img .main-swiper .swiper-wrapper {
        height: 80vw;
    }
    .wos1-img {
        padding-bottom: 15vw;
    }
    .wos1 .wos1-info {
        flex-direction: column;
    }
    .wos1 .wos1-info p {
        width: 100%;
        padding-bottom: 15vw;
    }
    .wos1 .wos1-info .wos1-info-r {
        width: 100%;
    }
    .wos2 {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
    }
    .wos2 h3 {
        width: 48%;
        font-size: 4.3vw;
        padding-left: 5vw;
        line-height: 2;
    }
    .wos2 .wos2-img {
        width: 52%;
        padding-right: 5vw;
    }
    .wos2 .wos2-img .wos2-name {
        width: 100%;
        height: 14vw;
        margin-top: -8vw;
        padding-top: 2vw;
        clip-path: polygon(22vw 0, 100% 0, 100% 100%, 0 100%);
    }
    .wos2 .wos2-img .wos2-name h4 span {
        font-size: 4.3vw;
    }
    .wos2 .wos2-img .wos2-name p {
        font-size: 2.5vw;
    }
    .wos2 .wos2-info h4 {
        padding: 6vw 8vw;
        font-size: 4.3vw;
        line-height: 2;
        margin-bottom: 8vw;
    }
    .wos2 .wos2-info p {
        padding: 0 5vw;
    }
    .wos2 .wos2-info {
        padding-bottom: 15vw;
    }

    .br1 {
        padding-bottom: 25vw;
    }
    .br1 h3 {
        font-size: 4.3vw;
        padding-bottom: 7vw;
    }
    .br1 p {
        padding-bottom: 15vw;
    }
    .br1-box .btn-viewmore{
        margin-bottom: 6vw;
    }
    .br1 .br1-box {
        flex-direction: column;
    }
    .br2 {
        padding-bottom: 25vw;
    }
    .br2 .br2-bg {
        width: 93%;
        height: 56vw;
    }
    .br2 .br2-content .br2a {
        flex-direction: column;
        padding-bottom: 12vw;
    }
    .br2 .br2-content .br2a-img {
        width: 93%;
        margin-left: auto;
        padding-bottom: 5vw;
        padding-top: 3vw;
    }
    .br2 .br2-content .br2a-img .br2a-numb {
        font-size: 15vw;
        margin-bottom: 0;
    }
    .br2 .br2-content .br2a .br2a-text {
        width: 90%;
        margin: auto;
        padding-left: 0;
    }
    .br2 .br2-content .br-title {
        padding-bottom: 10vw;
    }
    .br2 .br2-content .br-title h3 {
        font-size: 5vw;
    }
    .br2 .br2-content .br-title div {
        width: 21vw;
        height: 1vw;
    }
    .br2 .br2-content .br-title p {
        font-size: 3.5vw;
    }
    .br2 .br2-content .br2a-text .br2a-text1 {
        font-size: 4.3vw;
        padding-bottom: 4vw;
    }
    .br2 .wos1-img .main-swiper .swiper-wrapper .swiper-slide {
        background: #F2F2F2;
    }
    .br2b .zoom-btn img {
        max-width: 8vw;
    }
    .br2b .thumb-grid {
        margin-top: 14vw;
    }
    .br2b .thumb-grid .swiper-wrapper {
        height: auto;
        padding-bottom: 5vw;
    }
    .br2b .thumb-grid .thumb-nav button {
        width: 13vw;
        height: 13vw;
    }
    .br2b .thumb-grid .thumb-nav {
        padding-right: 5vw;
    }
    .br2b .wos1-img {
        padding-bottom: 5vw;
    }
    .br2b-a {
        padding-top: 4vw;
        padding-right: 4vw;
    }
    .br2b-a a {
        font-size: 3.8vw;
    }
    .br2b-a a i {
        padding-left: 3vw;
        font-size: 5vw;
    }
    .single-news .entry-header {
        width: 90%;
        margin: auto;
        padding-bottom: 7vw;
    }
    .single-news .entry-header h1 {
        font-size: 4.3vw;
        padding-bottom: 3vw;
    }
    .single-news .entry-content {
        width: 90%;
        margin: auto;
        padding-bottom: 20vw;
    }
    .related-posts h3 {
        font-size: 4.3vw;
    }
    .related-posts-wrapper {
        gap: 20px;
        flex-direction: column;
        width: 90%;
        margin: auto;
    }
    .related-posts-wrapper .related-item {
        width: 100%;
    }
    .related-posts-wrapper .related-item a{
        display: flex;
        align-items: center;
        margin-bottom: 0;
    }
    .related-posts-wrapper .related-item a .related-thumb{
        width: 40%;
    }
    .related-posts-wrapper .related-item a .related-thumb img{
        height: 23vw;
    }
    .related-posts-wrapper .related-item a .related-title{
        width: 60%;
        padding-left: 3vw;
        margin-top: 0;
    }
}
