/* =====================================================
   MUSIC TALENT - MAIN STYLESHEET
   ===================================================== */

/* CSS Variables */
:root {
    --primary-color: #ef4444;
    --secondary-color: #5c2d91;
    --dark-color: #1a1a2e;
    --light-color: #f8f9fa;
    --white: #ffffff;
    --gray-100: #f7f7f7;
    --gray-200: #e9ecef;
    --gray-300: #dee2e6;
    --gray-600: #6c757d;
    --shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.15);
    --transition: all 0.3s ease;
    --border-radius: 8px;
    --font-primary: 'Roboto', sans-serif;
}

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--font-primary);
    font-size: 16px;
    line-height: 1.6;
    color: #333;
    background-color: var(--white);
    overflow-x: hidden;
    width: 100%;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul,
ol {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* =====================================================
   HEADER
   ===================================================== */
.header {
    position: sticky;
    top: 0;
    z-index: 1000;
}

/* Header Top - Logo + Hotline (màu phụ) */
.header-top {
    background: var(--secondary-color);
    padding: 12px 0;
}

.header-top-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Logo trong Header Top */
.logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo img {
    height: 55px;
    width: auto;
}

.logo-text .site-name-small {
    display: block;
    font-size: 12px;
    font-weight: 500;
    color: #1f2937;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 2px;
}

.logo-text .site-name-big {
    font-size: 20px;
    font-weight: 700;
    color: #1f2937;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
    text-align: center;
}

/* Hotline Box */
.hotline-box {
    display: flex;
    align-items: center;
    gap: 15px;
}

.hotline-box a {
    color: #1f2937;
    padding: 8px 20px;
    border-radius: 5px;
    font-weight: 500;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
    border: 2px solid transparent;
}

.hotline-box a.branches-btn {
    background: #3b82f6;
    border-color: #3b82f6;
    color: #fff;
}

.hotline-box a.branches-btn:hover {
    background: #2563eb;
    border-color: #2563eb;
}

.hotline-box a.hotline-number {
    background: #ef4444;
    border-color: #ef4444;
    color: #fff;
}

.hotline-box a.hotline-number:hover {
    background: #dc2626;
    transform: translateY(-2px);
}

/* Header Main - Ẩn vì menu đã nằm trong main-nav */
.header-main {
    display: none;
}

.header-main-inner {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Navigation - Desktop */
.main-nav {
    width: 100%;
    background: #daecfa;
    /* Màu nền Menu*/
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    padding: 8px 0;
}

.main-nav ul {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.main-nav>ul>li {
    position: relative;
}

.main-nav>ul>li>a {
    display: inline-block;
    padding: 15px 20px;
    font-size: 13px;
    font-weight: 600;
    color: #444;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: 2px solid transparent;
    border-radius: 25px;
    white-space: nowrap;
}

.main-nav>ul>li>a:hover {
    color: #1f2937;
}

/* Menu active - viền bo tròn theo màu chính */
.main-nav>ul>li>a.active {
    border-color: #1f2937;
    color: #1f2937;
    background: transparent;
}

/* Dropdown Arrow */
.main-nav .has-dropdown>a::after {
    content: " ▾";
    font-size: 10px;
    margin-left: 4px;
    opacity: 0.6;
}

/* Dropdown Menu */
.main-nav .dropdown {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    transform: translateY(10px);
    min-width: 260px;
    background: #ffffff;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    border-radius: 16px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 100;
    padding: 12px;
    display: block;
    border: 1px solid #e5e7eb;
}

.main-nav .has-dropdown:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.main-nav .dropdown li {
    margin: 0;
    list-style: none;
}

.main-nav .dropdown li a {
    display: block;
    padding: 14px 20px;
    font-size: 15px;
    font-weight: 600;
    color: #4b5563;
    transition: all 0.25s ease;
    border-radius: 10px;
    text-transform: none;
    letter-spacing: 0;
    text-align: left;
}

/* Hover cho TẤT CẢ các item - nền đỏ */
.main-nav .dropdown li a:hover {
    background: #ef4444;
    color: #ffffff;
    transform: translateX(4px);
    font-weight: 600;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
    color: var(--secondary-color);
    padding: 15px;
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 998;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mobile-menu-overlay.active {
    display: block;
    opacity: 1;
}

/* =====================================================
   SLIDER / BANNER - Chỉ có ảnh
   ===================================================== */
.hero-slider {
    position: relative;
    overflow: hidden;
}

.slider-container {
    position: relative;
}

.slide {
    display: none;
}

.slide.active {
    display: block;
}

.slide img {
    width: 100%;
    height: auto;
    max-height: 550px;
    object-fit: cover;
}

.slide a {
    display: block;
}

/* Slider Controls */
.slider-controls {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.slider-dot.active {
    background: var(--primary-color);
    transform: scale(1.2);
}

.slider-arrows {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    transform: translateY(-50%);
}

.slider-arrow {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-arrow:hover {
    background: var(--primary-color);
    color: var(--white);
}

/* =====================================================
   MOBILE CTA BUTTONS - Chỉ hiển thị trên mobile
   ===================================================== */
.mobile-cta-buttons {
    display: none;
}

@media (max-width: 768px) {
    .mobile-cta-buttons {
        display: flex;
        justify-content: center;
        gap: 12px;
        padding: 15px;
        background: #f8f9fa;
    }

    .mobile-cta-buttons a {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        padding: 12px 20px;
        border-radius: 8px;
        font-size: 13px;
        font-weight: 600;
        text-align: center;
        flex: 1;
        max-width: 170px;
    }

    .mobile-cta-buttons .btn-register {
        background: #3b82f6;
        color: #fff;
        border: 2px solid #3b82f6;
    }

    .mobile-cta-buttons .btn-register:hover {
        background: #2563eb;
    }

    .mobile-cta-buttons .btn-hotline {
        background: #ef4444;
        color: #fff;
        border: 2px solid #ef4444;
    }

    .mobile-cta-buttons .btn-hotline:hover {
        background: #dc2626;
    }
}

/* =====================================================
   INTRO SECTION - Giới thiệu trang chủ
   ===================================================== */
.intro-section {
    padding: 30px 0;
    background: #fff;
}

.intro-title {
    text-align: center;
    font-size: 32px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 40px;
    text-transform: uppercase;
}

.intro-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: #ef4444;
    margin: 15px auto 0;
    border-radius: 2px;
}

.intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

/* Media (Ảnh/Video) */
.intro-media {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.intro-media img {
    width: 100%;
    height: auto;
    display: block;
}

.intro-video {
    position: relative;
    padding-bottom: 56.25%;
    /* 16:9 */
    height: 0;
}

.intro-video iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 12px;
}

/* Nội dung */
.intro-content {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
}

.intro-content h3 {
    font-size: 22px;
    color: #1f2937;
    margin-bottom: 15px;
}

.intro-content p {
    margin-bottom: 15px;
}

.intro-content ul {
    padding-left: 20px;
    margin-bottom: 15px;
}

.intro-content li {
    margin-bottom: 8px;
}

/* Responsive - Mobile */
@media (max-width: 768px) {
    .intro-section {
        padding: 20px 0;
    }

    .intro-title {
        font-size: 24px;
        margin-bottom: 30px;
    }

    .intro-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .intro-content {
        font-size: 15px;
    }
}

/* =====================================================
   CTA REGISTER SECTION - Đăng ký học thử
   ===================================================== */
.cta-register-section {
    padding: 35px 0;
    background: #f8f9fa;
    text-align: center;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}

.cta-register-content h2 {
    color: #1f2937;
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 8px;
}

.cta-register-content p {
    color: #6b7280;
    font-size: 15px;
    margin-bottom: 20px;
}

.cta-register-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 30px;
    background: #ef4444;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.cta-register-btn:hover {
    background: #dc2626;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(239, 68, 68, 0.3);
}

.cta-register-btn i {
    font-size: 14px;
}

/* Responsive */
@media (max-width: 768px) {
    .cta-register-section {
        padding: 25px 15px;
    }

    .cta-register-content h2 {
        font-size: 18px;
    }

    .cta-register-content p {
        font-size: 14px;
        margin-bottom: 15px;
    }

    .cta-register-btn {
        padding: 10px 25px;
        font-size: 13px;
    }
}

/* =====================================================
   FLOATING SOCIAL BUTTONS
   ===================================================== */
.floating-social {
    position: fixed;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 999;
}

.floating-social a {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 24px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.floating-social a:hover {
    transform: scale(1.1);
}

.floating-social .facebook {
    background: #1877f2;
}

.floating-social .youtube {
    background: #ff0000;
}

.floating-social .zalo {
    background: #0068ff;
}

.floating-social .phone {
    background: #25d366;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* =====================================================
   FOOTER
   ===================================================== */
.footer {
    background: linear-gradient(135deg, var(--dark-color) 0%, #16213e 100%);
    color: var(--white);
    padding: 60px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #ef4444;
    position: relative;
    padding-bottom: 10px;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
}

.footer-col p,
.footer-col li {
    font-size: 14px;
    line-height: 1.8;
    color: #ccc;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a:hover {
    color: #ef4444;
    padding-left: 5px;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.footer-contact li i {
    color: #ef4444;
    margin-top: 4px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    text-align: center;
    font-size: 14px;
    color: #999;
}

/* =====================================================
   PAGE BANNER
   ===================================================== */
.page-banner {
    background: var(--primary-color);
    padding: 10px 0 !important;
    text-align: center;
}

.page-banner h1 {
    font-size: 28px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.page-banner .breadcrumb {
    color: #666;
    font-size: 14px;
}

.page-banner .breadcrumb a {
    color: #1f2937;
    font-weight: 500;
}

.page-banner .breadcrumb a:hover {
    text-decoration: underline;
}

.page-banner .breadcrumb span {
    margin: 0 8px;
}

/* =====================================================
   CONTACT PAGE
   ===================================================== */
.contact-section {
    padding: 60px 0;
    background: var(--gray-100);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.contact-info,
.contact-form-wrapper {
    background: var(--white);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.contact-info h2,
.contact-form-wrapper h2 {
    font-size: 24px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 15px;
}

.contact-intro {
    color: #666;
    margin-bottom: 30px;
    line-height: 1.7;
}

.contact-items {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 20px;
    flex-shrink: 0;
}

.contact-text h4 {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin-bottom: 5px;
}

.contact-text p,
.contact-text a {
    color: #666;
    font-size: 14px;
}

.contact-text a:hover {
    color: #1f2937;
}

.contact-social {
    margin-top: 35px;
    padding-top: 25px;
    border-top: 1px solid var(--gray-200);
}

.contact-social h4 {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 18px;
    transition: var(--transition);
}

.social-link:hover {
    transform: translateY(-3px);
}

.social-link.facebook {
    background: #1877f2;
}

.social-link.youtube {
    background: #ff0000;
}

.social-link.zalo {
    background: #0068ff;
    width: auto;
    padding: 0 15px;
    border-radius: 25px;
    gap: 8px;
}

/* Contact Form */
.contact-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.contact-form .form-group {
    margin-bottom: 20px;
}

.contact-form label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: #333;
    margin-bottom: 8px;
}

.contact-form label span {
    color: #e74c3c;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--gray-200);
    border-radius: 8px;
    font-size: 14px;
    font-family: inherit;
    transition: var(--transition);
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(245, 130, 32, 0.1);
}

.contact-form textarea {
    resize: vertical;
    min-height: 120px;
}

.btn-submit {
    background: var(--primary-color);
    color: var(--white);
    border: none;
    padding: 14px 30px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
}

.btn-submit:hover {
    background: #dc2626;
    transform: translateY(-2px);
}

/* =====================================================
   RESPONSIVE
   ===================================================== */
@media (max-width: 1024px) {
    .main-nav>ul>li>a {
        padding: 14px 16px;
        font-size: 12px;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {

    /* Header Responsive */
    .header-top {
        padding: 10px 0;
    }

    .header-top-inner {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        gap: 10px;
    }

    .logo {
        justify-content: flex-start;
        gap: 10px;
        flex: 1;
        position: relative;
    }

    .logo img {
        height: 45px;
    }

    .logo-text {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        text-align: center;
        width: max-content;
        /* Căn giữa theo toàn màn hình */
        margin-left: calc(50vw - 50% - 22px);
    }

    .logo-text .site-name-small {
        font-size: 10px;
        letter-spacing: 0.3px;
    }

    .logo-text .site-name-big {
        font-size: 14px;
        line-height: 1.3;
        letter-spacing: 0.5px;
    }

    /* Ẩn hotline box trong header trên mobile */
    .hotline-box {
        display: none;
    }

    /* Header top trên mobile */
    .header-top-inner {
        padding-bottom: 5px;
    }

    /* Hide header-main on mobile - menu is in sidebar */
    .header-main {
        display: none;
    }

    /* Mobile menu toggle in header */
    .mobile-menu-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 44px;
        height: 44px;
        background: rgba(0, 0, 0, 0.1);
        border: none;
        border-radius: 8px;
        color: #1f2937;
        font-size: 24px;
        cursor: pointer;
        transition: all 0.3s;
        flex-shrink: 0;
    }

    .mobile-menu-toggle:active {
        background: rgba(0, 0, 0, 0.15);
        transform: scale(0.95);
    }

    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 85%;
        max-width: 320px;
        height: 100vh;
        background: var(--white);
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.2);
        transition: right 0.3s ease;
        z-index: 999;
        padding: 0;
        overflow-y: auto;
    }

    .main-nav.active {
        right: 0;
    }

    /* Close button */
    .main-nav::before {
        content: '\f00d';
        font-family: 'Font Awesome 6 Free';
        font-weight: 900;
        position: absolute;
        top: 15px;
        right: 15px;
        width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 24px;
        color: #999;
        cursor: pointer;
        z-index: 10;
    }

    .main-nav ul {
        flex-direction: column;
        align-items: stretch;
        padding: 60px 0 0 0;
    }

    .main-nav>ul>li>a {
        border-radius: 0;
        border: none;
        border-bottom: 1px solid var(--gray-200);
        padding: 16px 20px;
        font-size: 14px;
        text-transform: uppercase;
        color: #666;
        font-weight: 600;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .main-nav>ul>li>a:hover {
        background: #f5f5f5;
        color: #1f2937;
    }

    /* Dropdown arrow on mobile */
    .main-nav .has-dropdown>a::after {
        content: '\f054';
        font-family: 'Font Awesome 6 Free';
        font-weight: 900;
        font-size: 12px;
        margin-left: auto;
    }

    .main-nav .dropdown {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none !important;
        box-shadow: none;
        padding: 0;
        margin: 0;
        background: #f0f0f0;
        display: none;
        border-top: 1px solid #ddd;
        width: 100%;
        transition: none !important;
    }

    .main-nav .dropdown li {
        border-bottom: 1px solid #e5e5e5;
        padding: 0;
        margin: 0;
    }

    .main-nav .dropdown li:last-child {
        border-bottom: none;
    }

    .main-nav .dropdown li a {
        padding: 14px 20px 14px 40px !important;
        font-size: 14px !important;
        color: #222 !important;
        font-weight: 500 !important;
        display: block !important;
        background: #f0f0f0 !important;
        text-decoration: none !important;
        width: 100%;
        box-sizing: border-box;
    }

    .main-nav .dropdown li a:hover {
        background: #e5e5e5 !important;
        color: #1f2937 !important;
    }

    .main-nav .has-dropdown.open .dropdown {
        display: block !important;
    }

    .main-nav .has-dropdown.open>a {
        background: #f5f5f5;
    }

    .main-nav .has-dropdown.open>a::after {
        transform: rotate(90deg);
    }

    /* Slider Responsive */
    .hero-slider {
        margin-bottom: 0;
    }

    .slide img {
        height: auto;
        max-height: 250px;
    }

    .slider-arrows {
        padding: 0 10px;
    }

    .slider-arrow {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }

    .slider-controls {
        bottom: 10px;
    }

    .slider-dot {
        width: 8px;
        height: 8px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer {
        padding: 40px 0 20px;
    }

    .floating-social {
        right: 10px;
        gap: 8px;
    }

    .floating-social a {
        width: 45px;
        height: 45px;
        font-size: 20px;
    }

    /* Contact Page Responsive */
    .contact-section {
        padding: 40px 0;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .contact-info,
    .contact-form-wrapper {
        padding: 25px;
    }

    .contact-form .form-row {
        grid-template-columns: 1fr;
    }

    .page-banner {
        padding: 20px 0 !important;
    }

    .page-banner h1 {
        font-size: 20px;
    }

    .page-banner .breadcrumb {
        font-size: 13px;
    }
}