@font-face {
    font-family: "roboto";
    src: url(../css/fonts/roboto-regular.ttf);
    font-weight: 400;
}

@font-face {
    font-family: "roboto";
    src: url(../css/fonts/Roboto-Medium.ttf);
    font-weight: 500;
}

@font-face {
    font-family: "roboto";
    src: url(../css/fonts/roboto-bold.ttf);
    font-weight: 700;
}

@font-face {
    font-family: "nunito";
    src: url(../css/fonts/Nunito-Regular.ttf);
    font-weight: 400;
}

@font-face {
    font-family: "nunito";
    src: url(../css/fonts/Nunito-Medium.ttf);
    font-weight: 500;
}

@font-face {
    font-family: "nunito";
    src: url(../css/fonts/Nunito-Bold.ttf);
    font-weight: 700;
}

:root {
    --font-main: "roboto";
    --text-title: #101010;
    --text-describe: #646764;
    --color-button: #962428;
    --color-hover: #ff551d;
}

body.no-scroll {
    overflow: hidden;
}

.container {
    max-width: 94%;
    margin: auto;
}


.total-banner .box-arrow {
    display: none;
}

.header.header-main.header-fixed {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.8);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    z-index: 999;
    transition: all 0.4s ease;
    animation: fadeInHeader 0.4s ease;
}

body {
    margin: 0;
    padding: 0;
    font-style: normal;
    font-size: 16px;
    font-family: var(--font-main);
    font-weight: 400;
    color: var(--text-title);
}

a {
    text-decoration: none;
}

body footer.footer-subscribe.footer-block {
    padding: 0;
}

body footer.footer-subscribe.footer-block .container {
    display: none;
}

body footer.footer-subscribe.footer-block .bg-footer {
    display: none;
}

body.page-home footer.footer-subscribe.footer-block {
    padding: 60px 0 0 0;
}

body.page-home footer.footer-subscribe.footer-block .container {
    display: block;
}

body.page-home footer.footer-subscribe.footer-block .bg-footer {
    display: block;
}

.box-banner .bg-slider {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

.icon-cart .glyph-icon {
    display: none;
}

.header.header-main {
    position: absolute;
    top: 0;
    z-index: 10;
    width: 100%;
    overflow: hidden;
    padding: 20px 0;
    background: transparent;
}

.header.header-main.active {
    overflow: unset;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

.header-logo img {
    height: 70px;
}

.header-icons {
    display: flex;
    align-items: center;
    gap: 20px;
}

.header-icon.icon-user,
.header-icon.icon-toggle {
    font-size: 24px;
    color: #911E1E;
    cursor: pointer;
}

/* Mobile menu */
.nav.nav-mobile {
    position: absolute;
    transition: all 0.4s;
    top: 0;
    right: 0;
    width: 100%;
    height: 100vh;
    transform: translateX(110%);
    background: #171F32;
    padding: 15px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.nav.nav-mobile.show {
    transform: translateX(0);
}

.nav.nav-mobile .close-menu {
    background-color: var(--color-button);
    border-radius: 50%;
    margin: 20px 0 20px 45px;
    padding: 4px 5px;
    border: none;
    outline: none;
}

.nav-list.nav-list-mobile {
    list-style: none;
    overflow-y: auto;
    height: 100vh;
    scrollbar-width: none;
}

button.icon-show {
    width: 25px;
    height: 22px;
    background-color: var(--color-button);
    border: none;
    outline: none;
    float: right;
    display: flex;
    align-items: center;
    justify-content: center;
}

button.icon-show-sub {
    width: 25px;
    height: 22px;
    background-color: var(--color-button);
    border: none;
    outline: none;
    float: right;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s;
}

.nav-list.nav-list-mobile .nav-item {
    padding: 20px 0;
    border-bottom: 1px solid #040933;
}

.nav-list.nav-list-mobile .nav-item .sub-menu {
    display: none;
    padding: 0;
}

.nav-list.nav-list-mobile .nav-item .sub-menu li {
    list-style: none;
    padding: 15px 0 15px 20px;
    border-bottom: 1px solid #040933;
}

.nav-list.nav-list-mobile .nav-item .sub-menu li:last-child {
    border: none;
}

.nav-list.nav-list-mobile .nav-item a {
    text-decoration: none;
    color: #555;
    font-size: 16px;
    font-family: 'Tahoma', sans-serif;
    font-weight: 700;
}

.nav-list.nav-list-mobile .nav-item .sub-menu li.nav-item-sub .children-sub-menu {
    display: none;
}

.nav.nav-desktop {
    display: none;
}

.nav-list.nav-list-desktop {
    list-style: none;
    display: flex;
    gap: 30px;
}

.nav-list.nav-list-desktop .nav-item a {
    text-decoration: none;
    color: #000;
    font-weight: bold;
}

.section.section-hero {
    position: relative;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.section.section-hero .hero-overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.2);
}

.section.section-hero .hero-content {
    position: relative;
    z-index: 1;
    color: white;
}

.section.section-hero .hero-title {
    font-size: 32px;
    font-weight: 700;
    font-family: 'nunito';
    line-height: 1.2;
    max-width: 95%;
    margin: auto;
    word-break: normal;
    overflow-wrap: break-word;
    white-space: normal;
    line-height: 1.2;
    margin-bottom: 20px;
}

.section.section-hero .decor-img {
    margin: auto;
    padding: 50px 0;
}

.hero-content .btn.btn-primary {
    opacity: 0;
    transform: translateY(50px);
    transition: transform 0.6s ease, opacity 0.6s ease;
    background: #C31F26;
    color: white;
    font-family: 'nunito';
    padding: 12px 24px;
    border: none;
    font-weight: 700;
    border-radius: 4px;
    cursor: pointer;
    display: inline-block;
}

.hero-content .btn.btn-primary.show {
    opacity: 1;
    transform: translateY(0);
}

.word {
    display: inline-block;
    white-space: nowrap;
}

.char {
    display: inline-block;
    opacity: 0;
    animation: fadeUpDown 0.6s ease forwards;
    margin-right: 3px;
    white-space: pre;
}

.char.space {
    width: 12px;
    margin-right: 0;
}

@keyframes fadeUpDown {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.up {
    transform: translateY(30px);
}

.down {
    transform: translateY(-30px);
}

.ielts-container {
    padding: 60px 0;
    background: #fff;
    text-align: center;
}

.ielts-container h2 {
    font-size: 28px;
    margin-bottom: 8px;
    color: var(--text-title);
    font-weight: 700;
}

.ielts-container .decor-img {
    height: auto;
    max-width: 100%;
    border: none;
    border-radius: 0;
    box-shadow: none;
    margin: 20px 0;
}

.ielts-container p {
    color: var(--text-describe);
    line-height: 1.6;
    margin-bottom: 25px;
}

.ielts-container .icon-img {
    width: 80px;
    margin: 30px 0;
}

.ielts-container .subtitle {
    font-weight: 500;
    font-size: 19px;
    color: var(--text-title);
    margin-bottom: 10px;
}

.ielts-container ul {
    list-style: none;
    padding-left: 0;
    font-size: 14px;
    color: var(--text-color);
    line-height: 1.6;
    text-align: left;
    padding: 0 10px;
}

.ielts-container ul li {
    margin-bottom: 10px;
}

.ielts-container.ielts-team {
    margin-bottom: 0;
}

.ielts-team {
    background-color: #F9F8F8;
}

.ielts-team h2 {
    text-align: left;
}

.ielts-team .decor-img {
    margin-right: auto;
    display: block;
}

.ielts-team .team-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ielts-team p {
    text-align: left;
}

.quote-box {
    margin: auto;
    background-color: #F9F8F8;
    padding: 20px 20px 20px 16px;
}

blockquote:before {
    content: "\f129" !important;
    font-size: 35px;
    color: var(--color-button);
    padding-bottom: 0px;
    display: inline-block;
    font-family: 'Flaticon';
    font-weight: 400;
    text-align: center;
    top: 0px;
    background: transparent !important;
    transform: rotate(180deg);
}

blockquote p {
    font-size: 18px;
}

blockquote {
    margin: 0;
}

.quote-box .line {
    height: 40px;
    width: 3px;
    background-color: var(--color-button);
    position: absolute;
    left: 0;
    top: 0;
}

.quote-box .item-quote {
    position: relative;
    background: #fff;
    border-left: 4px solid var(--primary-color);
    border-radius: 8px;
    padding: 20px 30px 20px 30px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.quote-icon {
    font-size: 28px;
    color: var(--quote-color);
    margin-bottom: 10px;
    text-align: left;
}

.quote-icon i {
    color: var(--color-button);
}

.quote-box p {
    font-style: italic;
    color: var(--text-describe);
    line-height: 1.6;
    margin: 0;
    font-weight: 400;
}

.review-stars-rated {
    display: flex;
    align-items: center;
    gap: 5px;
}

.testimonial-section {
    margin: 20px auto;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
}

.testimonial-section img.hero {
    width: 80%;
    display: block;
    margin: auto;
    height: auto;
    object-fit: cover;
    margin-top: 40px;
    transition: all 0.4s;
}

.testimonial-content {
    padding: 20px;
}

.testimonial-title {
    text-align: center;
    color: var(--color-hover);
    font-weight: 500;
    font-size: 16px;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.testimonial-subtitle {
    text-align: center;
    color: var(--text-title);
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 16px;
}

.quote-box-name {
    background: #fff;
    padding: 18px 16px;
    border-radius: 8px;
    font-style: italic;
    font-size: 15px;
    color: var(--text-color);
    line-height: 1.6;
    position: relative;
    z-index: 2;
    margin-top: 50px;
    margin-bottom: 50px;
}

.quote-box-name::before {
    content: '';
    height: 94%;
    width: 94%;
    position: absolute;
    left: 3%;
    top: 3%;
    background: #dbf2f7;
    z-index: -1;
    transform: rotate(10deg);
    border-radius: 10px;
}

.quote-box-name .item-quote {
    background-color: #fff;
    width: 100%;
}

.quote-box-name .name {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-title);
    font-style: normal;
    position: absolute;
    bottom: -40px;
}

.quote-box-name .item-quote .content {
    padding: 25px;
    width: 100%;
    max-width: 100%;
    overflow-wrap: break-word;
    word-break: break-word;
    box-sizing: border-box;
    color: var(--text-describe);
    font-size: 16px;
    font-weight: 400;
}

.slider-quote .header-right {
    text-align: center;
}

.header-right button {
    border: none;
    outline: none;
    background-color: var(--color-hover);
    padding: 8px 10px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.4s;
}


.box-wrapper.job-section {
    display: flex;
    justify-content: center;
    padding: 40px 0;
}

.box-wrapper.job-section .img-job {
    display: none;
}

.box-wrapper.job-section .job-benefit-box {
    background-color: #0e1b2c;
    color: #ffffff;
    width: 100%;
    padding: 25px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    box-sizing: border-box;
    font-weight: 400;
}

.job-benefit-box h3 {
    font-size: 20px;
    margin-top: 0;
    margin-bottom: 20px;
    line-height: 1.4;
    color: #ffffff;
}

.job-benefit-box h2 {
    font-size: 26px;
    margin-top: 0;
    margin-bottom: 20px;
    line-height: 1.4;
    color: #ffffff;
}

.job-benefit-box ul {
    padding-left: 20px;
    margin-bottom: 20px;
}

.job-benefit-box ul li {
    margin-bottom: 12px;
    line-height: 1.6;
}

.job-benefit-box p {
    line-height: 1.7;
    margin-bottom: 25px;
    word-break: break-word;
}

.job-benefit-box p a {
    color: #ff9800;
    text-decoration: none;
}

.job-benefit-box p a:hover {
    text-decoration: underline;
}

.job-benefit-box .btn-apply-now {
    display: inline-block;
    background-color: #ff5f2e;
    color: #fff;
    padding: 12px 24px;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.job-benefit-box .btn-apply-now:hover {
    background-color: #e4511e;
}

.ielts-container .box-courses.has-multiple {
    display: grid;
}

.ielts-container .box-courses {
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
}

.course-box.course-container {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 8px;
    overflow: hidden;
    padding: 16px;
    text-align: center;
    font-family: sans-serif;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.course-box.thumbnail {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 4px;
    margin-bottom: 12px;
}

.course-box.category {
    display: inline-block;
    background-color: #8b2c2c;
    color: white;
    font-size: 12px;
    padding: 4px 10px;
    border-radius: 4px;
    margin-bottom: 10px;
}

.course-box.title {
    font-size: 20px;
    font-weight: 500;
    margin: 10px 0 6px;
    color: #333;
}

.course-box.fee-download {
    display: block;
    font-size: 16px;
    color: #555;
    margin-bottom: 12px;
    text-decoration: none;
    margin-top: 20px;
}

.course-box.meta-info {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    color: #444;
    margin-top: 20px;
}

.course-box.meta-info a {
    padding: 5px 13px;
    background: #fff;
    border: 1px solid #f2f2f2;
    display: inline-block;
    border-radius: 3px;
    color: #101010;
    margin-left: auto;
    transition: all 0.5s;
}

.course-box.meta-info a img {
    width: 22px;
    height: auto;
}

.course-box.students {
    display: inline-block;
}

.course-box.stars {
    color: #ffb400;
}

.benefit-section.benefit-box {
    display: flex;
    flex-direction: column;
    gap: 50px;
    margin-top: 50px;
}

.benefit-box.item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.benefit-box.icon {
    width: 80px;
    height: auto;
    flex-shrink: 0;
    object-fit: cover;
}

.benefit-box.content {
    flex: 1;
}

.benefit-box.title {
    font-size: 20px;
    font-weight: 400;
    margin: 0;
    color: #171F32;
    text-align: left;
}

.benefit-box.desc {
    font-size: 16px;
    color: #666;
    margin: 6px 0 0;
    line-height: 2;
}

.consult-block.consult-box {
    background-color: #fff;
    padding: 24px 0;
    border-radius: 10px;
    padding: 20px 3%;
    text-align: center;
    margin-top: 30px;
}

.consult-box.content {
    padding-bottom: 60px;
}

.consult-box.title {
    font-size: 28px;
    font-weight: 700;
    text-align: left;
    color: #002244;
    margin-bottom: 8px;
}

.consult-box.subtitle {
    color: #972428;
    margin-bottom: 10px;
    font-weight: 700;
    text-align: left;
    line-height: 2;
}

.consult-box .decor-img {
    margin-right: auto;
    display: block;
}

.consult-box.line {
    height: 12px;
    margin: 0 auto;
}

.consult-box.image img {
    width: 100%;
    object-fit: cover;
}

.book-section.book-box {
    padding: 16px;
    background: #fff;
}

.book-section.book-box .decor-img {
    margin: 30px 0;
}

.book-box.heading {
    font-size: 28px;
    color: #002244;
    margin-bottom: 8px;
    font-weight: 700;
}

.book-box.zigzag {
    height: 10px;
    margin-bottom: 12px;
}

.book-box.subheading {
    margin-bottom: 6px;
    color: #222;
    font-weight: 400;
    position: relative;
    padding-bottom: 30px;
}

.book-box.subheading::before {
    content: '';
    position: absolute;
    top: 26px;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--color-button);
    font-weight: 700;
    border: none;
    margin-bottom: 12px;
}

.book-box.item {
    text-align: center;
    padding: 15px;
}

.book-box.image {
    width: 100%;
    margin: auto;
    height: 100%;
    max-height: 350px;
    margin-bottom: 10px;
}

.book-box.title {
    text-align: left;
    margin: 15px 0;
}

.book-box.title a {
    font-size: 20px;
    margin: 8px 0;
    color: var(--text-title);
    text-align: left;
    font-weight: 700;
    transition: all 0.4s;
}

.book-box.footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.book-box.price {
    color: #FF5421;
    font-weight: 400;
    font-size: 16px;
}

.book-box .slider-book .slick-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 0;
    margin-top: 100px;
    margin-bottom: 75px;
}

.book-box .slider-book .slick-dots li {
    list-style: none;
}

.book-box .slider-book .slick-dots li.slick-active button::before {
    background-color: #ff5421;
    height: 10px;
    margin-bottom: 5px;
}

.book-box .slider-book .slick-dots li button {
    position: relative;
    width: 30px;
    height: 5px;
    color: transparent;
    background-color: transparent;
    border: none;
}

.book-box .slider-book .slick-dots li button::before {
    list-style: none;
    content: '';
    position: absolute;
    width: 30px;
    height: 8px;
    background-color: #f78a69;
    border-radius: 8px;
    top: 0;
    left: 0;
    box-shadow: 0px 1px 10px #f19a9a;
    transition: all 0.3s;
}



.footer-subscribe.footer-block {
    background-color: #0b132b;
    color: #fff;
    text-align: center;
    padding: 60px 0 0 0;
    margin: 0 auto;
}

.footer-block.image img {
    width: 80%;
    margin: auto;
}

.footer-block.title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #ffffff;
    text-align: left;
}

.footer-block.zigzag {
    height: 12px;
    margin-bottom: 16px;
}

.footer-block .decor-img {
    display: block;
    margin-right: auto;
    margin: 25px 0;
}

.footer-block.form {
    display: flex;
    border: 1px solid #999;
    border-radius: 6px;
    overflow: hidden;
    max-width: 100%;
}

.footer-block.input {
    flex: 1;
    padding: 10px;
    border: none;
    outline: none;
    font-size: 16px;
}

.footer-block.input::placeholder {
    font-size: 13px;
}

.footer-block.submit {
    color: #fff;
    background-color: #0b132b;
    padding: 10px 16px;
    font-weight: 700;
    border: none;
    cursor: pointer;
    transition: background 0.3s;
}

.footer-block.submit:hover {
    background-color: #ccc;
}

.footer-block.logo img {
    margin-top: 30px;
    width: 100%;
    height: auto;
    object-fit: cover;
}

.footer-block.contact {
    margin-top: 24px;
    color: #fff;
    text-align: left;
}

.footer-block.contact-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #ffffff;
}

.footer-block.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 12px;
    flex-direction: column;
}

.footer-block.contact-item img {
    width: 62px;
    height: auto;
    flex-shrink: 0;
}

.footer-block.contact-item span {
    line-height: 1.4;
}

.footer-block .box-address {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-top: 40px;
}

.footer-block.copyright {
    text-align: left;
    padding: 35px 10px 35px 10px;
    color: #ccc;
    border-top: 1px solid #333;
    margin-top: 20px;
    background-color: #151515;
}

/* About us 2 ------------------------------------------------------------------------------ */
.wrap-banner.teach-banner {
    position: relative;
    min-height: 365px;
    height: auto;
    width: 100%;
    background-color: #171f32;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.wrap-banner.teach-banner .teach-banner__overlay {
    position: absolute;
    inset: 0;
    /* background-color: rgba(46, 85, 211, 0.5); */
}

.wrap-banner.teach-banner .teach-banner__content {
    position: relative;
    z-index: 1;
    color: white;
}

.wrap-banner.teach-banner .teach-banner__title {
    font-size: 35px;
    font-family: 'nunito';
    font-weight: 700;
    margin-bottom: 10px;
}

.wrap-banner.teach-banner .teach-banner__highlight {
    font-weight: bold;
}

.wrap-banner.teach-banner .teach-banner__breadcrumb {
    letter-spacing: 1px;
    display: block;
    width: 85%;
    margin: auto;
    line-height: 1.5;
}

.ielts-welcome {
    overflow: hidden;
}

.ielts-welcome__container {
    margin: 0 auto;
}

.about .ielts-welcome__container {
    display: flex;
    flex-direction: column;

}

.ielts-welcome__title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
    text-align: left;
}

.ielts-welcome__paragraph {
    padding: 30px;
    background: rgb(248, 248, 248);
    text-align: left;
    border-radius: 5px;
    position: relative;
    margin-top: 35px;
}

.ielts-welcome__paragraph .line {
    position: absolute;
    height: 40px;
    width: 4px;
    background-color: var(--color-button);
    left: 0;
    top: 0;
    transition: all 0.6s ease;
}

.ielts-welcome__paragraph p {
    margin: 0;
    font-size: 18px;
    color: var(--text-describe);
    font-weight: 400;
    line-height: 1.6;
}

.ielts-welcome__excerpt {
    font-style: normal;
    margin: 20px 0;
    font-size: 15px;
    color: var(--text-describe);
    line-height: 1.6;
}

.ielts-welcome__image {
    text-align: center;
    position: relative;
    margin-top: 35px;
}

.ielts-welcome__image .img-deg {
    position: absolute;
    right: -35px;
    top: -40px;
    z-index: -1;
    width: 110px;
    animation: spin 2s linear infinite;
}

.ielts-welcome__image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 6px;
    max-width: 700px;
}

.teach-experience {
    background-color: #f9f8f8;
}

.teach-experience .img-experience {
    display: none;
}

.teach-experience__container {
    margin: 0 auto;
    padding: 24px 10px;
}

.teach-experience__title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-title);
}

.teach-experience__content .bg-hide {
    display: none;
}

.teach-experience__content p {
    margin-bottom: 14px;
    color: var(--text-describe);
    text-align: left;
    line-height: 1.6;
}

.ielts-section-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin: 50px 0;
}

.ielts-tabs-nav {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
}

.ielts-tab-btn {
    padding: 20px 40px;
    border: none;
    background-color: #1f2937;
    color: white;
    font-size: 20px;
    border-radius: 4px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: background 0.3s;
}

.ielts-tab-btn img {
    width: 46px;
    height: auto;
    object-fit: cover;
}

.ielts-tab-btn.active {
    background-color: #ff5722;
    color: white;
}

.ielts-tabs-container {
    flex: 1;
    min-width: 260px;
    margin-top: 24px;
    padding: 30px;
    box-shadow: 0 0 20px #eee;
    border-radius: 5px;
}

.ielts-tab-pane {
    display: none;
    animation: fadeIn 0.3s ease-in-out;
}

.ielts-tab-pane.active {
    display: flex;
    flex-direction: column;
}

.ielts-tab-pane img {
    width: 100%;
    max-height: 200px;
    object-fit: cover;
    border-radius: 6px;
    margin-bottom: 10px;
}

.ielts-tab-title {
    color: #471a04;
    margin: 8px 0;
    font-weight: 700;
    font-family: 'nunito';
    font-size: 28px;
}

.ielts-tab-pane p {
    color: var(--text-describe);
    line-height: 1.6;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.box-statr-total {
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Contact liên hệ page -------------------------------------------------------------- */
.box-lienhe-wrapper {
    margin: 20px auto;
    background: #F9F8F8;
    padding: 60px 0px 75px 0px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.item-lienhe-block {
    text-align: center;
    border: 1px solid #eee;
    padding: 50px 10px 50px 10px;
    margin-bottom: 15px;
    border-radius: 10px;
    background-color: #fff;
}

.icon-lienhe-img {
    width: 80px;
    object-fit: cover;
    height: 80px;
}

.title-lienhe-text {
    margin: 15px 0px 5px 0px;
    color: var(--text-title);
    font-size: 22px;
    font-weight: 700;
}

.desc-lienhe-text {
    color: #171F32;
    font-size: 17px;
    font-weight: 600;
    line-height: 1.5em;
}

.form-title-lienhe {
    font-size: 36px;
    font-weight: 700;
    color: #7A7A7A;
    margin: 60px 0 10px;
}

.form-lienhe-box input,
.form-lienhe-box textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 12px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 14px;
}

.form-lienhe-box button {
    width: 100%;
    padding: 10px;
    background-color: #f76c00;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s;
}

.form-lienhe-box button:hover {
    background-color: #d95a00;
}

/* Page full list ------------------------------------------------------------------------ */
.windou-khoahoc-card {
    background: #F9F8F8;
}

.windou-khoahoc-card .box-khoahoc {
    margin: 20px auto;
    border-radius: 4px;
    overflow: hidden;
    border: 1px solid #ddd;

}

.windou-khoahoc-image img {
    width: 100%;
    height: auto;
    display: block;
}

.windou-khoahoc-info {
    padding: 30px 20px;
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);

}

.button-khoahoc {
    margin-top: 50px;
    background-color: #fff;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.windou-info-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #eee;
    font-weight: 400;
    padding: 10px 0;
}

.windou-info-row span {
    display: flex;
    align-items: center;
    gap: 15px;
}

.windou-price-tag {
    text-align: center;
    font-size: 20px;
    padding: 15px 0;
    margin-top: 0px;
    border-radius: 3px;
    margin-bottom: 0px;
    background-color: #972428;
    color: #fff;
}

.windou-buy-button {
    display: block;
    width: 100%;
    margin: 0 auto 15px;
    text-align: center;
    padding: 15px;
    border: 1px solid #ccc;
    background-color: #fff;
    color: var(--text-title);
    border-radius: 3px;
    text-decoration: none;
    font-size: 20px;
    transition: 0.3s ease;
}

.windou-buy-button:hover {
    background-color: #a81d1d;
    color: #fff;
}

section.windou-tabs-section {
    margin: auto;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.windou-tabs-header {
    display: flex;
    flex-direction: column;
    border-bottom: 1px solid #eee;
    background-color: #f1f2f8;
    padding: 0 25px;
}

.windou-tab-button {
    padding: 17px 10px;
    text-align: center;
    font-weight: 700;
    text-transform: capitalize;
    cursor: pointer;
    font-family: 'nunito';
    transition: 0.3s;
    background-color: #f9f9f9;
    border-bottom: 1px solid #eee;
    border-top: 3px solid #f9f9f9;
    border-left: 1px solid #f9f9f9;
}

.windou-tab-button.active {
    background: #fff;
    color: #ffcf2e;
    border-top: 3px solid #ff6600;
}

.windou-tab-pane {
    display: none;
    animation: fadeIn 0.3s ease-in-out;
    padding: 50px 25px;
    box-shadow: 0 0 35px #eee;
}

.windou-tab-pane .course-description img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.windou-tab-pane .course-author img {
    width: 100%;
    max-width: 240px;
    height: auto;
    object-fit: cover;
}

.windou-tab-pane .course-author .author-info p {
    color: var(--text-describe);
}

.windou-tab-pane .course-description a {
    font-weight: 400;
    color: var(--color-button);
}

.windou-tab-pane.active {
    display: block;
}

.windou-tab-pane .info-star {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}


.windou-rating-row {
    display: flex;
    align-items: center;
    margin: 6px 0;
}

.windou-star-label {
    width: 20px;
    text-align: right;
    margin-right: 5px;
    color: #555;
    width: fit-content;
}

.windou-star-icon {
    color: #f5a623;
    margin-right: 8px;
}

.windou-review-breakdown .windou-progress-bar {
    height: 10px;
    display: none;
    background-color: #eee;
    border-radius: 5px;
    margin-right: 10px;
}

.windou-progress-fill {
    height: 100%;
    background-color: #f5a623;
    width: 100%;
    transition: width 0.3s;
}

.windou-review-breakdown .windou-review-count {
    width: 20px;
    display: none;
    text-align: right;
    color: #666;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.windou-review-score {
    text-align: center;
    width: 35%;
}

.windou-review-score .score-number {
    font-size: 90px;
    font-weight: bold;
}

.windou-stars {
    color: #f39c12;
    font-size: 16px;
}

.nummber-star {
    margin-top: 20px;
    color: var(--text-describe);
}

.windou-review-breakdown {
    margin-top: 10px;
    display: flex;
    align-items: flex-end;
    flex-direction: column;
    gap: 15px;
    width: 65%;
}

.windou-review-breakdown div {
    display: flex;
    justify-content: space-between;
    gap: 15px;
    color: var(--text-describe);
}

/* page shop-------------------------------------------------------------------- */
.book-card-windou {
    padding: 60px 0 30px 0;
}

.book-img-container-windou {
    position: relative;
    overflow: hidden;
    cursor: zoom-in;
    width: 100%;
    height: auto;
}

.book-img-windou {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.related-title-windou {
    font-weight: 700;
    font-size: 20px;
    color: #471a04;
    margin-bottom: 30px;
}

.related-item-windou {
    margin-bottom: 20px;
    transition: transform 0.3s ease;
}

.related-item-windou:hover {
    transform: translateY(-5px);
}

.related-img-windou {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    max-height: 330px;
}

.related-name-windou {
    text-align: center;
    margin-top: 8px;
    font-weight: 700;
    color: var(--text-title);
    margin: 25px 0;
    transition: all 0.4s;
}

.related-item-windou .price {
    color: #972428;
    font-weight: 700;
    font-size: 18px;
    margin: auto;
    display: block;
    width: 100%;
    text-align: center;
}

.book-title-windou {
    font-weight: 700;
    font-size: 18px;
    color: #1e73be;
    margin: 25px 0;
    cursor: pointer;
}

.book-desc-windou {
    color: var(--text-describe);
    font-weight: 400;
    line-height: 1.6;

}

.book-category-windou {
    font-size: 15px;
    color: var(--text-title);
    margin-top: 8px;
    font-weight: 700;
    margin: 30px 0;
}

.book-category-windou a {
    color: var(--text-describe);
    font-weight: 400;
}

.related-section-windou {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 30px;
}

.related-shop {
    padding: 0 0 60px 0;
}


@media (max-width: 768px) {
    .ielts-container .box-courses {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }


    .book-img-windou.zoomed {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        object-fit: contain;
        background: #000;
        z-index: 9999;
        cursor: zoom-out;
    }
}

@media screen and (min-width: 576px) {
    .section.section-hero .hero-title {
        margin: 0;
    }

    .windou-tabs-header {
        flex-direction: row;
    }

    .windou-tab-button {
        width: 25%;
        border-left: 1px solid #eee;
    }

    .windou-review-breakdown .windou-progress-bar {
        display: block !important;
    }

    .windou-review-breakdown .windou-review-count {
        display: block;
    }

    .windou-review-breakdown div.windou-progress-bar {
        width: 100%;
    }

    .windou-review-breakdown div.windou-rating-row {
        width: 100%;
    }

}

@media screen and (min-width: 768px) {
    .related-section-windou {
        grid-template-columns: repeat(2, 1fr);
    }

    .book-img-container-windou:hover .book-img-windou {
        transform: scale(1.5);
    }

    .box-lienhe-wrapper .box-lienhe {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }

    .wrap-banner.teach-banner .teach-banner__breadcrumb {
        width: 100%;
    }

    .teach-experience__content {
        position: relative;
    }

    .teach-experience__content .bg-hide {
        display: block;
        position: absolute;
        top: 16%;
        left: 40%;
        z-index: 0;
        max-width: 150px;
        height: auto;
        opacity: 0.6;
    }

    .ielts-tab-pane.active {
        flex-direction: row;
        gap: 30px;
    }

    .header-container {
        padding: 20px;
    }

    .ielts-tab-pane img {
        width: 40%;
        max-height: unset;
    }

    .ielts-tab-pane .tabs-content {
        width: 60%;
    }

    .wrap-banner.teach-banner .teach-banner__title,
    .ielts-welcome__title {
        font-size: 40px;
    }

    .ielts-welcome__image .img-deg {
        width: 170px;
        right: -60px;
        top: -60px;
    }

    .teach-experience__container {
        padding: 70px 10px;
    }

    .ielts-section-tabs {
        margin: 80px 0;
    }

    .ielts-tabs-nav {
        flex-direction: row;
        justify-content: center;
        gap: 20px;
    }

    .ielts-tabs-container {
        padding: 50px;
    }

    .ielts-welcome {
        padding: 80px 0;
    }

    .ielts-welcome__paragraph p {
        font-size: 20px;
    }

    .ielts-welcome__excerpt {
        font-size: 17px;
    }

    .section.section-hero {
        height: 690px;
    }

    .section.section-hero .decor-img {
        margin: 0;
        margin-right: auto;
        padding: 50px 0;
    }

    .book-box.heading {
        font-size: 32px;
    }

    .book-box.subheading {
        font-size: 18px;
    }

    .header.header-main.header-fixed {
        padding: 0;
    }

    .section.section-hero .hero-content {
        margin: auto;
        width: 90%;
        text-align: left;
    }

    .testimonial-section .box-testimonial {
        display: flex;
        align-items: flex-start;
        justify-content: space-between;
        width: 100%;
        gap: 20px;
    }

    .testimonial-section img.hero {
        width: 30%;
    }

    .box-testimonial .testimonial-content {
        width: 55%;
    }

    .testimonial-content .quote-header {
        display: flex;
        align-items: flex-end;
        gap: 15px;
        justify-content: space-between;

    }

    .quote-box-name::before {
        transform: rotate(7deg);
    }

    .testimonial-subtitle {
        margin: 0;
    }

    .box-wrapper.job-section .box-job {
        display: flex;
        align-items: flex-start;

    }

    .box-wrapper.job-section .img-job {
        width: 50%;
        height: 100%;
    }

    .box-wrapper.job-section .job-benefit-box {
        width: 50%;
        height: 100%;
    }

    .section.section-hero .hero-title {
        font-size: 40px;
        max-width: 65%;
        margin-bottom: 40px;
    }

    .btn.btn-primary {
        padding: 20px 40px;
    }

    .ielts-container h2 {
        font-size: 32px;
    }

    .ielts-container.ielts-team.box .container {
        max-width: unset;
    }

    .ielts-container.ielts-team.box .benefit-section.benefit-box,
    .ielts-container.ielts-team.box .header-team-box {
        max-width: 94%;
        margin: auto;
    }

    .ielts-container .box-ielts {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
    }

    .box-wrapper.job-section .img-job {
        display: block;
    }

    .box-wrapper.job-section .img-job img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .testimonial-subtitle {
        font-size: 32px;
    }

    .header-right {
        min-width: 80px;
    }

    .consult-box.title {
        font-size: 32px;
    }

    .footer-subscribe.footer-block .header-footer {
        display: flex;
        align-items: flex-start;
        justify-content: space-between;
    }

    .footer-block.image {
        width: 50%;
    }

    .footer-block.image img {
        width: 60%;
    }

    .footer-subscribe.footer-block .col-footer-right {
        width: 35%;
        margin-right: auto;
    }

    .footer-block.contact-item {
        flex-direction: row;
        align-items: center;
    }

    .footer-block.contact-item span {
        font-size: 20px;
    }
}

@media screen and (min-width: 996px) {
    .ielts-container .box-courses {
        grid-template-columns: repeat(3, 1fr);
    }

    .header-logo img {
        height: 100px;
    }

    .book-box.title,
    .book-box.footer {
        padding: 0 15px;
    }

    .course-box.meta-info a:hover {
        background-color: var(--color-button);
    }

    .course-box.meta-info a:hover i {
        color: #fff;
    }

    .testimonial-section img.hero:hover {
        transform: scale(1.05);
    }

    .related-name-windou:hover {
        color: var(--color-hover);
    }

    .ielts-team .team-img {
        transition: transform 0.4s ease;
        cursor: pointer;
    }


    .ielts-team .team-img:hover {
        transform: scale(1.05);
    }

    .related-item-windou {
        position: relative;
    }

    .header-right button {
        padding: 12px 14px;
    }

    .header-right button:hover {
        background-color: #f8693e;
    }

    .icon-cart .glyph-icon {
        display: block;
    }

    .related-item-windou .icon-cart {
        position: absolute;
        right: 30px;
        top: 40%;
        background: #ff5421;
        border: none;
        font-size: 30px;
        padding: 0;
        margin: 0;
        height: 45px;
        width: 45px;
        line-height: 45px;
        color: #fff;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-left: auto;
        bottom: -14px;
        transition: all .4s;
        border-radius: 5px;
        opacity: 0;
    }

    .book-box .slider-book .book-box.item .icon-cart .glyph-icon::before,
    .related-item-windou .icon-cart .glyph-icon::before {
        font-size: 24px;
    }

    .book-box .slider-book .book-box.item .icon-cart::before {
        display: none;
    }

    .total-consult {
        padding-bottom: 200px;
    }

    .related-item-windou:hover .icon-cart {
        top: 60%;
        opacity: 1;
    }

    .book-box.image {
        max-height: unset;
    }

    .book-box .slider-book .book-box.item {
        position: relative;
        background-color: #fff;
        margin: 0 15px;
    }

    .book-box .slider-book .book-box.item:hover .icon-cart {
        top: 50%;
        opacity: 1;
    }

    .book-box .slider-book .book-box.item .icon-cart {
        position: absolute;
        right: 30px;
        top: 40%;
        background: #ff5421;
        border: none;
        font-size: 30px;
        padding: 0;
        margin: 0;
        height: 42px;
        width: 42px;
        line-height: 45px;
        color: #fff;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-left: auto;
        bottom: -14px;
        transition: all .4s;
        border-radius: 5px;
        opacity: 0;
    }

    .book-box.title:hover a {
        color: var(--color-hover);
    }

    .hero-content .btn.btn-primary {
        padding: 16px 30px;
    }

    .box-shop .book-card-windou {
        display: flex;
        align-items: flex-start;
        gap: 40px;
    }

    .box-shop .book-card-windou .book-img-container-windou {
        width: 40%;
    }

    .box-shop .book-card-windou .book-content {
        width: 60%;
    }

    .book-title-windou {
        margin: 0 0 25px 0;
        font-size: 25px;
    }

    .related-title-windou {
        font-size: 25px;
        margin: 60px 0;
    }

    .related-section-windou {
        grid-template-columns: repeat(3, 1fr);
    }

    section.windou-tabs-section {
        margin: 0;
        margin-top: 60px;
    }

    main.box-total-list {
        display: flex;
        align-items: flex-start;
        flex-direction: row-reverse;
        gap: 50px;
        justify-content: space-between;
        padding: 80px 0;
        max-width: 900px;
        margin: auto;
    }

    .windou-tabs-header {
        padding: 0;
    }

    main.box-total-list .windou-tabs-section {
        width: 65%;
    }

    main.box-total-list .windou-khoahoc-card {
        width: 35%;
    }

    .total-banner {
        position: relative;
    }

    .header.header-main {
        padding: 0;
        overflow: unset;
    }

    .header-container {
        padding: 0 20px;
    }

    .total-banner .box-arrow {
        display: flex;
        position: absolute;
        z-index: 100;
        top: 48%;
        left: 5%;
        width: 90%;
        margin: auto;
        height: fit-content;
        align-items: center;
        justify-content: space-between;
    }

    .total-banner .box-arrow button {
        width: 70px;
        height: 70px;
        background-color: rgb(83 81 81 / 20%);
        border: none;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
        border-radius: 50%;
        cursor: pointer;
    }

    button.icon-show,
    button.icon-show-sub {
        display: none;
    }

    .nav.nav-mobile {
        box-shadow: none;
    }

    .section.section-hero .decor-img {
        padding: 10px 0 40px 0;
    }

    .section.section-hero .hero-title {
        margin-bottom: 10px;
    }

    .header-icon.icon-toggle,
    .nav.nav-mobile .close-menu {
        display: none !important;
    }

    .nav.nav-mobile {
        transform: translateX(0);
        position: unset;
        background-color: transparent;
        padding: 15px 25px;
        height: fit-content;
    }

    .nav-list.nav-list-mobile {
        overflow-y: unset;
        height: auto;
    }

    .nav-list.nav-list-mobile .nav-item {
        border: none;
        position: relative;
    }

    .nav-list.nav-list-mobile .nav-item .sub-menu {
        display: block;
        transform: scaleY(0);
        transform-origin: top;
        opacity: 0;
        transition: transform 0.4s ease, opacity 0.4s ease;
        position: absolute;
        top: 50px;
        left: 0;
        z-index: 1000;
        background-color: #fff;
        border-bottom: 5px solid #962428;
        width: 240px;
        padding: 20px;
    }

    .nav-list.nav-list-mobile .nav-item .sub-menu li.nav-item-sub {
        border: none;
        text-align: left;
        position: relative;
    }

    .nav-list.nav-list-mobile .nav-item .sub-menu li.nav-item-sub:hover .children-sub-menu {
        transform: scaleY(1);
        opacity: 1;
    }

    .nav-list.nav-list-mobile .nav-item .sub-menu li.nav-item-sub .children-sub-menu {
        position: absolute;
        display: block;
        top: 0;
        left: -130%;
        background-color: #fff;
        border-bottom: 5px solid #962428;
        transform: scaleY(0);
        transform-origin: top;
        opacity: 0;
        transition: transform 0.4s ease, opacity 0.4s ease;
        width: 240px;
        padding: 20px;
    }

    .nav-list.nav-list-mobile .nav-item .sub-menu li.nav-item-sub::before {
        position: absolute;
        content: '';
        width: 50px;
        height: 100%;
        top: 0;
        left: -50px;
    }

    .nav-list.nav-list-mobile .nav-item .sub-menu li a {
        color: #222;
        font-weight: 400;
        font-family: 'Tahoma', sans-serif;
        font-size: 15px;
        transition: all 0.4s;
    }

    .nav-list.nav-list-mobile .nav-item .sub-menu li a:hover {
        color: var(--color-button);
    }

    .nav-list.nav-list-mobile .nav-item .sub-menu li.nav-item-sub .children-sub-menu .item-children {
        border: none;
    }

    .nav-list.nav-list-mobile .nav-item:hover .sub-menu {
        transform: scaleY(1);
        opacity: 1;
    }

    .footer-block.input {
        padding: 16px;
    }

    .nav-list.nav-list-mobile {
        display: flex;
        align-items: center;
        row-gap: 0;
        column-gap: 50px;
        text-align: center;
        width: fit-content;
        margin: auto;
        padding: 0;
        flex-wrap: wrap;
    }

    .nav-list.nav-list-mobile .nav-item a {
        color: var(--color-button);
        font-weight: 700;
    }

    .ielts-team .box-about {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 50px;
    }

    .ielts-team .box-about .item-ielts,
    .ielts-team .ielts-right {
        width: 50%;
    }

    .course-box.course-container {
        max-width: 768px;
        margin: auto;
    }

    .total-consult .flex-consult {
        display: flex;
        align-items: flex-start;
    }

    .ielts-container.ielts-team.box .box-text {
        display: flex;
        align-items: center;
    }

    .ielts-team.box .consult-block.consult-box {
        position: relative;
        padding: 70px 3%;
        overflow: hidden;
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
    }

    .ielts-container.ielts-team.box .container {
        max-width: 900px;
    }

    .total-consult .consult-block.consult-box {
        width: 50%;
    }

    .total-consult .book-section.book-box {
        width: 50%;
        position: relative;
    }

    .total-consult .book-section.book-box .options-slider {
        width: 115%;
        min-height: 456px;
        position: absolute;
        left: -15%;
        top: 100%;
    }

    .consult-block.consult-box {
        margin-top: 0;
    }

    .book-box.item {
        padding: 0;
    }

    .container {
        max-width: 900px;
    }

    .bg-footer {
        position: relative;
        background-size: cover;
        background-image: url(../images/slider-23-1.jpg);
        background-position: center;
        background-repeat: no-repeat;
        display: flex;
        align-items: center;
        justify-content: flex-start;
        padding: 5%;
    }

    .bg-footer .footer-layout {
        max-width: 90%;
        margin: auto;
    }

    .bg-footer .container {
        width: 55%;
        background-color: #0b132b;
        padding: 40px;
        margin: unset;
    }

    .footer-block.copyright {
        margin-top: 0;
    }
}

@media screen and (min-width: 1200px) {


    .bg-footer .container {
        width: 45%;
    }


    .box-banner .bg-slider {
        height: auto;
    }

    .teach-experience__content .bg-hide {
        right: -90px;
        left: unset;
    }

    .container {
        max-width: 990px;
    }

    .teach-experience .total-experience {
        display: flex;
        align-items: center;
    }

    .teach-experience .img-experience {
        display: flex;
        width: 50%;
        min-height: 800px;
    }

    .teach-experience .img-experience img {
        width: 100%;
        object-fit: cover;
    }

    .teach-experience__container {
        width: 33%;
        padding: 6px 25px 12px 60px;
        margin: 0;
        margin-right: auto;
    }

    .teach-experience .container {
        max-width: 100%;
    }

    .ielts-container.ielts-team.box .container {
        max-width: 990px;
    }

    .section.section-hero .hero-title {
        font-size: 55px;
    }

    .box-wrapper.job-section .job-benefit-box {
        padding: 30px 10% 30px 10%;
    }

    .ielts-welcome__title {
        max-width: 45%;
    }

    .ielts-welcome .total-para {
        display: flex;
        align-items: center;
        gap: 60px;
    }

    .ielts-welcome .total-para .box-para,
    .ielts-welcome .total-para .ielts-welcome__image {
        width: 50%;
    }
}

@media screen and (min-width: 1366px) {
    .container {
        max-width: 1200px;
    }

    .ielts-container.ielts-team.box .container {
        max-width: 1200px;
    }

    .ielts-team .box-about {
        padding: 0 100px;
    }

    main.box-total-list {
        max-width: 1200px;
    }

    .footer-block.contact-item span {
        font-weight: 700;
    }
}

@media screen and (min-width: 1550px) {
    .bg-footer .footer-layout {
        max-width: 70%;
    }

    .bg-footer .container {
        width: 42%;
    }

    .ielts-container .box-courses {
        grid-template-columns: repeat(4, 1fr);
    }

    .section.section-hero .hero-title {
        max-width: 52%;
    }

    .section.section-hero .hero-content {
        width: 70%;
    }

    .related-section-windou {
        grid-template-columns: repeat(4, 1fr);
    }

    .wrap-banner.teach-banner {
        min-height: 433px;
    }

    .box-wrapper.job-section .job-benefit-box {
        padding: 50px 15% 100px 10%;
    }

    .ielts-container.ielts-team.box .container {
        max-width: 1366px;
    }

    .section.section-hero .hero-content {
        max-width: 1366px;
    }

    .section.section-hero {
        height: 960px;
    }
}

@keyframes fadeInHeader {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}