.sticky-right {
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    background-color: #0050C9;
    color: white;
    writing-mode: vertical-rl;
    width: 60px;
    display: flex;
    align-items: center;
    transform: translateX(0);
    z-index: 1;
    overflow: hidden;
    max-height: 100vh;
}

.sticky-right p {
    margin: 0;
    padding: 15px 0;
    font-size: 26px;
    font-weight: bold;
    color: #FFF6CE;
    font-family: 'Brygada 1918';
    white-space: nowrap;
}

.sticky-right span {
    display: inline-block;
    margin: 0;
    padding: 0;
    font-size: 26px;
    font-weight: bold;
    color: #FFF6CE;
    font-family: 'Brygada 1918';
}

/*=====BANNER=====*/
.banner {
    background: #0050C9;
    padding-bottom: 20px;
}

.img-banner img {
    position: relative;
    width: 100%;
    z-index: 1;
}

.logo img {
    width: 35%;
    margin-bottom: 20px;
}

.col-nav-left {
    padding-right: 0;
    width: 20%;
    position: relative;
}

.col-img-banner {
    padding-left: 0;
    width: 80%;
}

.box-left {
    height: 35%;
    background: #003c97;
    clip-path: polygon(100% 0, 100% 70%, 50% 100%, 0 70%, 0 0);
    position: absolute;
    bottom: -8px;
    left: 12px;
    width: 98%;
    z-index: 0;
}

.nav-left {
    background: #FFF6CE;
    clip-path: polygon(100% 0, 100% 90%, 50% 100%, 0 90%, 0 0);
    background-size: cover;
    height: 100%;
    padding: 30px 30px 10px 30px;
    text-align: center;
    position: relative;
    z-index: 1;
    top: 0;
    overflow: hidden;
    transition: height 0.4s ease;
}

.banner .nav-left .title p {
    font-size: 18px;
    font-family: 'Brygada 1918';
    color: #0050C9;
    line-height: 1.2;
    font-weight: bold;
    margin-bottom: 0;
}

.banner .nav-left .line {
    margin: 5px 0 20px 0;
}

.banner .nav-left li a {
    font-size: 15px;
    font-family: 'Brygada 1918';
    color: #0050C9;
    text-decoration: none;
    display: inline-block;
    margin-bottom: 20px;
}

.banner .nav-left ul {
    list-style: none;
    padding-left: 0;
}

.col-img-banner h2 {
    font-family: 'Brygada 1918';
    font-size: 96px;
    font-weight: 700;
    color: #FFF6CE;
    font-style: italic;
}

.col-img-banner p {
    font-family: 'Playball';
    font-size: 64px;
    color: #FFF6CE;
    margin-top: -30px;
}

.col-img-banner .title {
    padding-left: 55px;
}

.col-img-banner .title-1 {
    display: flex;
    margin-top: -10%;
}

.col-img-banner .title-1 img {
    width: 10%;
    height: 100%;
    margin-top: 30px;
}

.col-img-banner .video p {
    font-family: 'Brygada 1918';
    font-size: 18px;
    font-weight: 700;
    color: #FFF;
    clip-path: circle(50% at 50% 50%);
    margin-top: -30px;
}

.video-header {
    display: flex;
    justify-content: right;
}

.col-img-banner .video {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: -13%;
    margin-right: 5%;
    position: relative;
    z-index: 1;
}

@keyframes rotateText {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.col-img-banner .video svg {
    width: 250px;
    height: 250px;
    background: #0050C9;
    border-radius: 50%;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    animation: rotateText 20s linear infinite;
}

.col-img-banner .video text {
    font-family: 'Brygada 1918';
    font-weight: bold;
    fill: #fff;
    font-size: 18px;
    transform-origin: center;
}


.col-img-banner .video .show-video {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    position: absolute;
    z-index: 0;
}

.img-banner .line {
    position: relative;
}

.img-banner .line img {
    width: 21%;
    right: 35px;
    position: absolute;
    margin-top: -75px;
    object-fit: cover;
}

.btn-dangky {
    background: #0050C9;
    color: #fff !important;
    padding: 10px 30px;
    clip-path: polygon(7% 0, 93% 0, 100% 50%, 93% 100%, 7% 100%, 0% 50%);
    margin-top: 20px;
}

.banner .nav-left .icon {
    display: flex;
    justify-content: center;
}

.banner .nav-left .icon img {
    position: absolute;
    bottom: 15px;
}

.nav-left.collapsed {
    height: 70px;
    clip-path: polygon(100% 0, 100% 70%, 50% 100%, 0 70%, 0 0);
}

.nav-left.collapsed .box-left {
    display: none;
}

.popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    /* Nền mờ */
    z-index: 1000;
}

:target {
    display: flex;
}

.popup-content {
    position: relative;
    margin: 10% auto;
    padding: 20px;
    background-color: #fff;
    max-width: 800px;
    max-height: 600px;
    overflow: auto;
}

.popup iframe {
    width: 100%;
    height: 450px;
    border: none;
}

.close {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 30px;
    color: #000;
    text-decoration: none;
}

.close:hover {
    color: #FF1E00;
}

/* Ẩn nội dung khi nav bị thu nhỏ */
.nav-left.collapsed .logo,
.nav-left.collapsed .title,
.nav-left.collapsed .line,
.nav-left.collapsed ul {
    display: none;
}

.nav-left .icon {
    text-align: center;
    cursor: pointer;
    padding: 10px;
}

.banner .nav-left.collapsed .icon img {
    transform: rotate(180deg);
}

/*giới thiệu*/
.section-gioithieu {
    background: #FFF6CE;
    padding: 50px 0;
}

.section-gioithieu .image-gioithieu {
    display: flex;
}

.section-gioithieu .image-gioithieu .img-1 {
    height: 100%;
    width: 100%;
}

.section-gioithieu .image-gioithieu .img-2 {
    margin-left: -20%;
    margin-top: 30%;
    width: 100%;
}

.col-content-gt {
    padding-left: 50px;
}

.gioithieu .title {
    margin-bottom: 40px;
}

.gioithieu .title p {
    font-size: 24px;
    font-family: 'Brygada 1918';
    color: #0050C9;
}

.gioithieu .title h2 {
    font-size: 32px;
    font-family: 'Brygada 1918';
    color: #0050C9;
    font-weight: bold;
}

.gioithieu .content p {
    font-size: 16px;
    font-family: 'Brygada 1918';
    color: #0050C9;
    line-height: 1.3;
    text-align: justify;
}

.gioithieu .content span {
    font-size: 64px;
    font-family: 'Brygada 1918';
    color: #0050C9;
}

.gioithieu .content-text {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.gioithieu .content {
    padding-left: 50px;
}

.btn-xemthem a {
    font-size: 20px;
    font-family: 'Brygada 1918';
    color: #FFF8D1;
    background: #0050C9;
    text-decoration: none;
    padding: 10px 70px;
    margin-left: 50px;
    display: inline-block;
    margin-top: 20px;
}

/*giáo dục*/
.section-giaoduc {
    background: #FFF8D1;
    position: relative;
    z-index: 0;
    padding: 50px 0;
}

.section-giaoduc::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    background: #0050C9;
    z-index: -1;
    right: 10%;
}

.content-gd img {
    margin-bottom: 10px;
}

.gd-daoduc img {
    margin-left: 12px;
}

.gd-tamly img {
    margin-left: 15px;
}

.content-gd h3 {
    font-size: 20px;
    font-family: 'Brygada 1918';
    color: #FFF6CE;
    font-weight: bold;
    margin-bottom: 15px;
}

.content-gd p {
    font-size: 16px;
    font-family: 'Brygada 1918';
    color: #FFF6CE;
    text-align: justify;
    line-height: 1.3;
    margin-bottom: 0;
}

.gd-daoduc {
    padding-right: 90px;
}

.gd-thechat {
    padding-right: 90px;
}

.gd-tamly {
    padding-right: 90px;
}

/*Chương trình đào tạo*/
.section-chuongtrinh-dt {
    background: #FFF6CE;
    padding: 120px 0 70px 0;
}

.col-img-school .img-school img {
    width: 100%;
}

.title-ctdt h2 {
    color: #0050C9;
    font-family: 'Brygada 1918';
    font-size: 48px;
    text-align: center;
    margin-bottom: 50px;
    text-transform: uppercase;
    font-weight: 600;
}

.col-img-school .img-school {
    margin-bottom: 24px;
}

.col-school .content {
    background: #0050C9;
    padding: 40px;
    height: 100%;
}

.col-school .content-school {
    height: 100%;
}

.col-school .content h3 {
    font-size: 20px;
    font-family: 'Brygada 1918';
    color: #FFF6CE;
    font-weight: bold;
    margin-bottom: 15px;
}

.col-school .content p {
    font-size: 16px;
    font-family: 'Brygada 1918';
    color: #FFF6CE;
    line-height: 1.3;
    text-align: justify;
}

.col-school .content ul {
    padding-left: 1rem;
}

.col-school .content ul li {
    font-size: 16px;
    font-family: 'Brygada 1918';
    color: #FFF6CE;
    line-height: 1.3;
    text-align: justify;
}

/*Cuộc sống học đường*/
.col-img-cuocsong img {
    width: 100%;
    min-height: 510px;
}

.section-cuocsong {
    background: #0050C9;
    padding: 100px 0;
}

.section-cuocsong .title {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin-bottom: 15px;
}

.section-cuocsong .title .icon-right {
    transform: scale(-1);
}

.section-cuocsong .title h2 {
    color: #FFF6CE;
    font-family: 'Brygada 1918';
    font-size: 48px;
    text-align: center;
    text-transform: uppercase;
    font-weight: 600;
}

.section-cuocsong .content p {
    color: #FFF6CE;
    font-family: 'Brygada 1918';
    font-size: 18px;
    text-align: center;
}

.list-hoatdong .accordion-item {
    padding: 0 !important;
}

.list-hoatdong .nav-link.active {
    background: #FFF6CE;
    color: #0050C9;
    font-family: 'Brygada 1918';
    font-size: 16px;
    text-align: justify;
}

.list-hoatdong .accordion-button:not(.collapsed) {
    background: #FFF6CE;
    box-shadow: none;
    color: #0050C9;
    font-size: 20px;
    font-weight: bold;
    font-family: 'Brygada 1918';
    display: flex;
    justify-content: space-between;
    padding-bottom: 10px;
}

.list-hoatdong .accordion-button:not(.collapsed) .icon-white {
    display: none;
}

.list-hoatdong .accordion-body {
    padding-top: 0;
    padding-bottom: 20px;
}

.list-hoatdong .accordion-button:focus {
    box-shadow: none;
}

.list-hoatdong .nav-link {
    margin-bottom: 10px;

}

.list-hoatdong .accordion-flush>.accordion-item>.accordion-header .accordion-button.collapsed {
    background: #0050C9;
    border: 2px solid #FFF6CE;
    font-size: 20px;
    font-weight: bold;
    font-family: 'Brygada 1918';
    color: #FFF6CE;
    display: flex;
    justify-content: space-between;
    padding: 20px;
}

.list-hoatdong .accordion-flush>.accordion-item>.accordion-header .accordion-button.collapsed .icon-blue {
    display: none;
}

.list-hoatdong .accordion-flush>.accordion-item {
    border: 0;
}

.header-cuocsong {
    margin-bottom: 40px;
}

.list-hoatdong .accordion-button::after {
    display: none;
}

.list-hoatdong .tab-pane img {
    width: 100%;
}

/*cảm nhận của phụ huynh*/
.section-cannhan-ph {
    background: #FFF6CE;
    border-bottom: 4px solid #0050C9;
}

.title-camnhan {
    position: relative;
    margin-bottom: 30px;
}

.title-camnhan img {
    position: absolute;
    right: 13%;
    top: -20%;
}

.title-camnhan h2 {
    color: #0050C9;
    font-family: 'Brygada 1918';
    font-size: 40px;
    text-align: center;
    text-transform: uppercase;
    display: inline-block;
    font-weight: 600;
}

.content-camnhan {
    position: relative;
    display: flex;
    align-items: center;
}

.content-camnhan img {
    width: 65%;
    margin-left: 10%;
}

#cmph-slider {
    position: absolute;
    width: 100%;
    right: 48px;
    padding-left: 10%;
}

.section-cannhan-ph .row-camnhan {
    display: flex;
    align-items: center;
}

.col-title-camnhan {
    padding-left: 15%;
}

.camnhan-ph {
    background: #0050C9DE;
    padding: 30px;
    height: 300px;
}

.camnhan-ph img {
    width: 84px;
    height: 84px;
}

.camnhan-ph .thongtin p {
    font-family: 'Brygada 1918';
    font-size: 20px;
    font-weight: bold;
    color: #FFF6CE;
    margin-bottom: 0;
}

.camnhan-ph .thongtin img {
    width: 70%;
    height: 100%;
}

.title-cnph {
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}

.title-cnph img {
    margin-left: 0;
}

.content-cnph p {
    font-family: 'Brygada 1918';
    font-size: 16px;
    color: #FFF6CE;
    margin-bottom: 0;
    text-align: justify;
    line-height: 1.3;
}

.button-slider {
    display: flex;
    gap: 15px;
}

.btn-slider {
    background: #0050C9;
    padding: 10px;
}

.slider {
    position: relative;
    overflow: hidden;
    width: 100%;
}

.slide {
    display: none;
    width: 100%;
    transition: opacity 0.5s ease;
}

.slide.active {
    display: block;
    opacity: 1;
}

/*Tuyển sinh*/
.section-tuyensinh {
    background: #FFF6CE;
    padding: 70px 0 30px 0;
}

.title-tuyensinh {
    margin-bottom: 50px;
}

.title-tuyensinh h2 {
    font-family: 'Brygada 1918';
    font-size: 48px;
    color: #0050C9;
    text-align: center;
    text-transform: uppercase;
    font-weight: 600;
}

.title-tuyensinh h2 br {
    display: none;
}

/*Các chương trình tuyển sinh*/
.title-ctts {
    text-align: center;
    margin-bottom: 10px;
}

.title-ctts h2 {
    font-family: 'Brygada 1918';
    font-size: 48px;
    font-weight: 600;
    color: #FFF6CE;
    text-align: center;
    text-transform: uppercase;
    margin-bottom: 0;
}

.title-ctts h2 br {
    display: none;
}

.section-ctts {
    background: #0050C9;
    padding: 100px 0 70px 0;
    border-bottom: 4px solid #FFF6CE;
}

.list-ctts .nav-link.active {
    background: #FFF6CE;
}

.list-ctts .nav-link {
    background: #0050C9;
    border-radius: 0;
    position: relative;
    margin-bottom: 30px;
    border-left: 2px solid #FFF6CE;
    border-top: 2px solid #FFF6CE;
    border-bottom: 2px solid #FFF6CE;
}

.list-ctts .nav-link:last-child {
    margin-bottom: 0;
}

.ctts .stt {
    position: absolute;
    font-family: 'Brygada 1918';
    font-size: 36px;
    font-weight: bold;
    color: #0050C9;
    text-align: center;
    border: 2px solid #0050C9;
    padding: 10px 20px;
    top: -15px;
    left: -20px;
    background: #FFF6CE;
}

.ctts .title {
    font-family: 'Brygada 1918';
    font-size: 20px;
    font-weight: bold;
    text-transform: uppercase;
    margin-left: 70px;
    margin-top: 20px;
}

.list-ctts .nav-link.active .ctts .title {
    color: #0050C9;
}

.list-ctts .nav-link .ctts .title {
    color: #FFF6CE;
}

.ctts .topic-time {
    display: flex;
    margin-top: 25px;
    margin-bottom: 10px;
    color: #0050C9;
    font-family: 'Brygada 1918';
    justify-content: space-between;
    font-weight: 600;
}

.list-ctts .nav-link.active .topic-time {
    color: #0050C9;
}

.list-ctts .nav-link .topic-time {
    color: #FFF6CE;
}

.ctts .start-date,
.ctts .start-time,
.ctts .address {
    display: flex;
    gap: 5px;
    align-items: center;
    font-size: 15px;
}


.ctts .topic-time p {
    margin-bottom: 0;
}

.col-list-ctts {
    padding-right: 0;
    width: 40%;
}

.col-img-ctts {
    background: #FFF6CE;
    padding: 16px;
    display: flex;
    align-items: center;
    justify-content: left;
    width: 60%;
}

.img-ctts img {
    border-radius: 50px;
    width: 103%;
}

/*Tư vấn*/
.section-tuvan {
    background-image: url('../img/background-tuvan.png');
    padding-bottom: 10px;
    background-size: cover;
    background-position: bottom;
}

.uudai {
    background: #0050C9;
    border: 2px solid #FFF6CE;
    border-radius: 0 50px 0 50px;
    margin-top: 30px;
    display: block;
}

.title-uudai {
    border-radius: 0 50px 0 0;
    text-align: center;
    padding: 20px;
}

.title-uudai p {
    color: #FFF6CE;
    font-family: 'Brygada 1918';
    font-size: 24px;
    text-transform: uppercase;
    margin-bottom: 0;
    line-height: 1.3;
    font-weight: 600;
}

.tt-uudai {
    background: #FFF6CE;
    color: #0050C9;
    font-family: 'Brygada 1918';
    font-size: 20px;
    line-height: 1.3;
    text-align: center;
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-bottom: 7px;
    font-weight: 600;
}

.tt-uudai:last-child {
    margin-bottom: 0;
    border-radius: 0 0 0 47px;
}

.tt-uudai span {
    font-size: 40px;
}

.tt-uudai p {
    margin-bottom: 0;
}

.form-tuvan {
    background: #FFF6CE;
    padding: 40px 40px 70px 40px;
    margin-left: 50px;
    display: block;
}

.form-tuvan .logo {
    text-align: center;
}

.form-tuvan .logo img {
    width: 25%;
}

.form-tuvan .title h2 {
    font-family: 'Brygada 1918';
    font-size: 32px;
    color: #0050C9;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 30px;
    font-weight: 600;
}

.form-input .inline-input {
    box-shadow: none;
    border: 1px solid #999898;
    border-radius: 0;
    padding: 15px 20px;
    margin-bottom: 10px;
    font-family: 'Brygada 1918';
    font-size: 15px;
}

.g-recaptcha {
    display: flex;
    justify-content: center;
    margin-top: 30px;
}

.btn-dangky-tv {
    font-family: 'Brygada 1918';
    font-size: 16px;
    color: #FFF6CE;
    text-transform: uppercase;
    background: #0050C9;
    text-decoration: none;
    padding: 20px;
    display: inline-block;
    width: 100%;
    text-align: center;
    margin-top: 10px;
    font-weight: bold;
    border: 0;
}

.form-input .textarea {
    box-shadow: none !important;

}

.form-input .form-control {
    border-radius: 0;
    border: 1px solid #999898;
    box-shadow: none !important;
    font-family: 'Brygada 1918';
    font-size: 16px;
}

.wpcf7-select {
    background: #fff;
    border: 1px solid #999898;
    box-shadow: unset;
    margin-bottom: 10px;
    width: 100%;
    padding: 15px 20px;
    font-family: 'Brygada 1918';
    font-size: 15px;
    color: #595c5f;
}

.error-message {
    font-family: 'Brygada 1918';
    font-size: 16px;
    margin-top: 15px;
}

.popup-form .block-input {
    display: flex;
    gap: 20px;
    align-items: center;
    margin-bottom: 7px;
}

.popup-form .form-control {
    background: #f5f5f5;
    border-radius: 15px;
    border: 0;
    width: 65%;
}

.popup-form .form-label {
    width: 35%;
    text-align: right;
    font-family: 'Brygada 1918';
    font-size: 16px;
}

.popup-form .wpcf7-select {
    background: #f5f5f5;
    border-radius: 15px;
    border: 0;
    width: 65%;
}

.popup-form .inline-input {
    padding: 10px 15px;
}

.popup-form .input-cauhoi .form-label {
    width: 16%;
}

.popup-form .modal-content {
    padding: 50px 30px 30px;
}

.popup-form .modal-header .modal-title h2 {
    background: #0050C9;
    padding: 15px;
    border-radius: 20px 20px 0 0;
    color: #fff;
    font-family: 'Brygada 1918';
    font-weight: 600;
    text-align: center;
    font-size: 32px;
    margin-bottom: 0;
}

.popup-form .modal-header {
    display: block;
    position: relative;
    border-bottom: 0;
}

.popup-form .btn-close {
    position: absolute;
    right: 15px;
    top: 15px;
}

.popup-form .modal-body form {
    padding-top: 20px;
}

.popup-form .btn-dangky-tv {
    width: auto;
    margin-top: 0;
    padding: 20px;
}

.popup-form .dangky {
    display: flex;
    justify-content: center;
    margin-top: 50px;
    position: relative;
    align-items: center;
}

.popup-form .dangky::after {
    content: '';
    position: absolute;
    right: 0;
    width: 35%;
    height: 2px;
    background-color: #0050C9;
}

.popup-form .dangky::before {
    content: '';
    position: absolute;
    left: 0;
    width: 35%;
    height: 2px;
    background-color: #0050C9;
}

/*footer*/
.footer {
    background: #0143A6;
    padding: 50px 0;
}

.col-logo {
    display: flex;
    align-items: center;
}

.footer .logo {
    display: flex;
    align-items: center;
    justify-content: center;

}

.footer .logo img {
    width: 15%;
    margin-bottom: 0;
}

.footer .logo p {
    margin-bottom: 0;
    font-family: 'Brygada 1918';
    font-size: 16px;
    color: #FFF6CE;
    text-transform: uppercase;
    font-weight: bold;
    line-height: 1.3;
    text-align: center;
}

.footer .ttlh {
    font-family: 'Brygada 1918';
    font-size: 15px;
    color: #FFF6CE;
    align-items: center;
    display: flex;
    gap: 12px;
    margin-bottom: 5px;
}

.footer .ttlh:last-child {
    margin-bottom: 0;
}

.footer .ttlh i {
    font-size: 22px;
}

.footer .ttlh a {
    font-family: 'Brygada 1918';
    font-size: 15px;
    color: #FFF6CE;
    text-decoration: none;
}

.footer .ttlh i::before {
    font-weight: 500 !important;
}

@media (max-width: 991px) {
    .banner .row {
        position: relative;
    }

    .banner .nav-left .line {
        margin: 5px 0;
    }

    .logo img {
        width: 20%;
        margin-bottom: 10px;
    }

    .banner .nav-left .title p {
        font-size: 16px;
    }

    .banner .nav-left li a {
        margin-bottom: 10px;
    }

    .col-img-banner .title-1 img {
        margin-top: 0;
    }

    .sticky-right {
        display: none;
    }

    .nav-left {
        width: auto;
        overflow: hidden;
        transition: width 0.5s ease, padding 0.5s ease;
    }

    .nav-left.collapsed {
        height: 30px;
        width: 40px;
        padding:
            0;
    }

    .banner .nav-left .icon img {
        bottom: 10px;
        width: 12%;
    }

    .banner .nav-left.collapsed .icon img {
        width: 60%;
    }

    .col-img-banner {
        width: unset;
        padding-right: 0;
    }

    .col-nav-left {
        width: unset;
        padding: 0;
        position: absolute;
        z-index: 2;
    }

    .col-img-banner h2 {
        font-size: 28px;
    }

    #videoPopup .close {
        background: #fff;
    }

    .col-img-banner .video text {
        font-size: 20px;
        font-weight: 500;
    }

    .col-img-banner .video {
        margin-right: 7.5%;
    }

    .col-img-banner .video svg {
        width: 130px;
        height: 130px;
    }

    .col-img-banner .video .show-video {
        height: 85px;
        width: 85px;
    }

    .col-img-banner p {
        margin-top: 0;
        font-size: 22px;
    }

    .col-img-banner .title {
        padding-left: 12px;
    }

    .img-banner .line img {
        display: none;
    }

    .col-img-banner .title-1 {
        margin-top: -12%;
    }
    .section-gioithieu .image-gioithieu .img-1
    {
        width: 50%;
    }
    .section-gioithieu .image-gioithieu .img-2 {
        margin-left: 0;
        margin-top: -3px;
        width: 52%;
    }

    .col-content-gt {
        padding-left: 12px;
    }

    .section-gioithieu {
        padding: 50px 0 70px 0;
    }

    .gioithieu .title h2 {
        font-size: 24px;
    }

    .gioithieu .title {
        margin: 30px 0;
    }

    .gioithieu .title p {
        margin-bottom: 10px;
    }

    .gioithieu .content {
        padding-left: 0;
    }

    .gioithieu .content-text {
        align-items: start;
        gap: 10px;
    }

    .gioithieu .content span {
        font-size: 42px;
        margin-top: -10px;
    }

    .btn-xemthem {
        display: flex;
        justify-content: center;
    }

    .btn-xemthem a {
        margin-top: 0;
        margin-left: 0;
    }

    .section-giaoduc {
        padding: 70px 0;
    }

    .section-giaoduc::before {
        right: 0;
    }

    .gd-daoduc {
        padding-right: 0;
        margin-bottom: 50px;
    }

    .content-gd h3 {
        margin-bottom: 10px;
    }

    .content-gd h3 br {
        display: none;
        margin-bottom: 10px;
    }

    .gd-thechat {
        padding-right: 0;
        margin-bottom: 50px;
    }

    .gd-tamly {
        padding-right: 0;
    }

    .section-chuongtrinh-dt {
        padding: 70px 0;
    }

    .title-ctdt h2 {
        font-size: 24px;
        margin-bottom: 25px;
    }

    .col-school {
        margin-bottom: 24px;
    }
    .col-school:last-child
    {
        margin-bottom: 0;
    }
    .col-school .content {
        padding: 30px;
        background: #0050C9;
    }

    .col-school .content-school {
        height: auto;
    }

    .section-cuocsong {
        padding: 70px 0;
    }

    .section-cuocsong .title h2 {
        font-size: 24px;
    }

    .section-cuocsong .title img {
        width: 20%;
        margin-top: -10px;
    }

    .section-cuocsong .title {
        gap: 5px;
        align-items: flex-start;
    }

    .section-cuocsong .content p {
        text-align: justify;
        font-size: 16px;
    }

    .section-cuocsong .content p br {
        display: none;
    }

    .list-hoatdong {
        margin-bottom: 10px;
    }

    .list-hoatdong .accordion-flush>.accordion-item>.accordion-header .accordion-button.collapsed {
        font-size: 18px;
    }

    .list-hoatdong .accordion-button:not(.collapsed) {
        font-size: 18px;
    }

    .col-img-cuocsong img {
        width: 100%;
        min-height: 100%;
    }

    #cmph-slider {
        width: 100%;
        padding-left: 0;
        left: 0;
        position: relative;
    }

    .slider {
        margin-left: 0;
    }

    .content-camnhan img {
        display: none;
    }

    .title-cnph {
        gap: 15px;
    }

    .title-cnph img {
        display: block;
        height: 70px;
        width: 70px;
    }

    .camnhan-ph .thongtin p {
        font-size: 18px;
    }

    .content-cnph p {
        font-size: 16px;
    }

    .camnhan-ph {
        background: #0050C9;
        height: 100%;
        min-height: 280px;
    }

    .row-camnhan-ph .col-12 {
        margin-top: 10px;
        padding: 0;
    }

    .col-title-camnhan {
        padding-left: 12px;
    }

    .title-camnhan {
        margin-top: 70px;
        margin-bottom: 10px;
    }

    .title-camnhan img {
        right: 0%;
        top: -80%;
        width: 10%;
    }

    .title-camnhan h2 {
        font-size: 24px;
    }

    .title-camnhan h2 br {
        display: none;
    }

    .camnhan-ph .thongtin img {
        height: 100%;
        width: 50%;
    }

    .content-camnhan {
        display: block;
    }

    .btn-slider {
        padding: 5px 0;
        display: flex;
        justify-content: center;
    }

    .btn-slider img {
        width: 50%;
        display: block;
        margin-left: 0;
    }

    .button-slider {
        margin-top: 20px;
        gap: 7px;
        display: flex;
        justify-content: center;
    }

    .section-cannhan-ph {
        padding-bottom: 70px;
        border-bottom: 2px solid #0050C9;
    }

    .title-tuyensinh h2 {
        font-size: 24px;
        margin-bottom: 20px;
    }

    .title-tuyensinh h2 br {
        display: block;
    }

    .section-tuyensinh {
        padding: 70px 0;
    }


    .title-tuyensinh {
        margin-bottom: 0;
    }

    .step-number {
        margin-top: -22% !important;
        width: 70px !important;
        height: 70px !important;
        font-size: 34px !important;
    }

    .admission-step p {
        font-size: 18px !important;
        text-align: justify !important;
    }

    .admission-step p br {
        display: none;
    }

    .admission-step {
        height: 100% !important;
        padding: 50px 30px 20px 30px !important;
        min-height: 400px !important;
        display: none;
        flex: 1 0 100%;
    }

    .admission-step:last-child {
        margin-bottom: 0;
    }

    .admission-step h3 br {
        display: none;
    }
    .slider-mobile {
        display: block;
    }

    .admission-steps {
        display: flex;
        overflow: hidden;
        width: 100%;
        margin-top: 10px !important;
    }


    .admission-step.active {
        display: block;
    }

    .admission-steps .line {
        top: 5px !important;
    }

    .admission-steps .line::before {
        right: 0 !important;
        font-size: 14px !important;
    }
    .section-tuvan {
        padding-top: 0;
        padding-bottom: 10px;
    }

    .title-ctts h2 {
        font-size: 24px;
    }

    .title-ctts h2 br {
        display: block;
    }

    .title-uudai p {
        font-size: 18px;
    }

    .uudai {
        margin-top: 70px;
    }

    .tt-uudai {
        font-size: 18px;
    }

    .title-ctts img {
        width: 20%;
    }

    .title-ctts {
        margin-bottom: 20px;
    }

    .col-list-ctts {
        width: 100%;
        padding-right: 12px;
        padding-bottom: 20px;
    }

    .col-img-ctts {
        width: 100%;
    }

    .img-ctts img {
        width: 100%;
    }

    .list-ctts .nav-link {
        border: 2px solid #FFF6CE;
        padding: 0 12px;
    }

    .ctts .stt {
        font-size: 26px;
        padding: 7px 12px;
        top: -8px;
        left: -10px;
    }

    .ctts .title {
        font-size: 16px;
        margin-left: 50px;
        margin-top: 10px;
    }

    .ctts .start-date,
    .ctts .start-time,
    .ctts .address {
        font-size: 12px;
        gap: 3px;
    }

    .ctts .start-date i,
    .ctts .start-time i,
    .ctts .address i {
        display: none;
    }

    .section-ctts {
        padding: 70px 0;
        border-bottom: 2px solid #FFF6CE;
    }

    .form-tuvan {
        margin-top: 30px;
        margin-left: 0;
        padding: 50px 15px;
    }

    .popup-form .modal-header .modal-title h2 {
        font-size: 24px;
    }

    .popup-form .block-input {
        display: block;
    }

    .popup-form .form-label {
        width: 100%;
        text-align: left;
    }

    .popup-form .modal-body form {
        padding-top: 0;
    }

    .popup-form .wpcf7-select {
        width: 100%;
    }

    .popup-form .input-cauhoi .form-label {
        width: 100%;
    }

    .popup-form .dangky::before {
        display: none;
    }

    .popup-form .dangky::after {
        display: none;
    }

    .popup-form .btn-dangky-tv {
        padding: 15px 20px;
    }

    .popup-form .form-control {
        width: 100%;
    }

    .popup-form .modal-content {
        padding: 40px 0px 10px;
    }

    .popup iframe {
        height: 300px;
    }

    .form-tuvan .title h2 {
        font-size: 22px;
    }

    .footer {
        padding: 70px 0;
    }

    .footer .logo {
        gap: 15px;
        margin-bottom: 30px;
    }

    .footer .logo p {
        font-size: 14px;
        text-align: justify;
    }

    .footer .ttlh {
        align-items: flex-start;
    }

    .footer .ttlh i {
        font-size: 18px;
    }

    .footer .logo img {
        width: 75px;
        height: 100%;
    }

    .footer .logo p br {
        display: none;
    }
}

/* Vùng bọc chung */
.admission-container {
    background-color: #FFF8E7;
    padding: 40px;
    margin: 0 auto;
    max-width: 1200px;
    margin-top: 60px;
}

.admission-title {
    font-size: 32px;
    color: #003366;
    text-align: center;
    margin-bottom: 50px;
    font-weight: 700;
    text-transform: uppercase;
}

.admission-steps {
    position: relative;
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
    margin: 0 auto;
    margin-top: 80px;
    z-index: 0;
}

.admission-steps .line {
    content: '';
    position: absolute;
    top: -45px;
    left: 0;
    right: 0;
    height: 2px;
    background: #0050C9;
    z-index: 0;
    display: flex;
    align-items: center;
}

.admission-steps .line::after {
    position: absolute;
    content: '';
    height: 12px;
    width: 12px;
    background: #0050C9;
    border-radius: 50%;
    left: 0;
}

.admission-steps .line::before {
    position: absolute;
    content: '\f054';
    color: #0050C9;
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    border-radius: 50%;
    right: -3px;
    font-size: 16px;
}


/* Mỗi step là một cột */
.admission-step {
    position: relative;
    flex: 1 1 auto;
    min-width: 200px;
    background-color: #FFF6CE;
    border: 1px solid #0050C9;
    padding: 20px 20px 20px 30px;
    z-index: 1;
    transition: all 0.3s ease;
    margin-top: 10px;
    min-height: 420px;
    color: #000;
}

.admission-step:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.15);
    background: #0050C9;
    color: #fff;
}

.admission-step:hover h3,
.admission-step:hover p,
.admission-step:hover ul li {
    color: #fff !important;
}

.step-number {
    position: absolute;
    margin-top: -40%;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 80px;
    line-height: 50px;
    font-size: 40px;
    font-family: 'Brygada 1918';
    font-weight: bold;
    text-align: center;
    color: #0050C9;
    background: #FFF6CE;
    border: 1px solid #0050C9;
    border-radius: 50%;
    transition: all 0.3s ease;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
}

.admission-step:hover .step-number {
    background: #0050C9;
    color: #fff;
}

.admission-step h3 {
    margin-top: 0;
    margin-bottom: 20px;
    font-size: 20px;
    color: #0050C9;
    font-weight: bold;
    text-align: center;
    font-family: 'Brygada 1918';

}

.admission-step p {
    font-size: 16px;
    color: #0050C9;
    line-height: 1.3;
    margin: 0;
    padding: 0;
    text-align: center;
    font-family: 'Brygada 1918';
}

.admission-step ul {
    margin-bottom: 0;
    padding-left: 0;
}

.admission-step ul li {
    font-size: 16px;
    font-family: 'Brygada 1918';
    color: #0050C9;
    margin-bottom: 5px;
    line-height: 1.3;
}

/* Responsive: trên mobile để cột xếp chồng */
@media (max-width: 768px) {
    .admission-steps {
        flex-wrap: wrap;
        padding-top: 50px;
    }

    .admission-steps::before {
        left: 50%;
        width: 2px;
        height: 0;
        background: transparent;
    }
    .admission-step:hover .step-number
    {
        background: #FFF6CE;
        color: #0050C9;
    }
}
