/* ========================================
   RESPONSIVE DESIGN & STANDARDIZATION
   Added: December 12, 2025
   Purpose: Standardize typography, remove inline styles, fix responsive issues
   ======================================== */

/* ========================================
   1. TYPOGRAPHY STANDARDIZATION
   ======================================== */

/* Base Typography - Override existing styles */
h1,
.h1 {
    font-size: 45px !important;
    font-weight: 700 !important;
    line-height: 1.2em !important;
    color: var(--primary-color) !important;
    margin-bottom: 20px !important;
    letter-spacing: -0.02em !important;
}

h2,
.h2 {
    font-size: 36px !important;
    font-weight: 600 !important;
    line-height: 1.3em !important;
    color: var(--primary-color) !important;
    margin-bottom: 18px !important;
    letter-spacing: -0.01em !important;
}

h3,
.h3 {
    font-size: 22px !important;
    font-weight: 600 !important;
    line-height: 1.4em !important;
    color: var(--primary-color) !important;
    margin-bottom: 14px !important;
}

h4,
.h4 {
    font-size: 20px !important;
    font-weight: 600 !important;
    line-height: 1.4em !important;
    color: var(--primary-color) !important;
    margin-bottom: 12px !important;
}

h5,
.h5 {
    font-size: 18px !important;
    font-weight: 600 !important;
    line-height: 1.5em !important;
    color: var(--primary-color) !important;
    margin-bottom: 10px !important;
}

h6,
.h6 {
    font-size: 16px !important;
    font-weight: 600 !important;
    line-height: 1.5em !important;
    color: var(--primary-color) !important;
    margin-bottom: 8px !important;
}

/* Paragraphs - Standardized */
p,
.text-body {
    font-size: 16px !important;
    line-height: 1.7em !important;
    color: var(--text-color) !important;
    margin-bottom: 1.2em !important;
    font-weight: 400 !important;
}

/* ========================================
   DARK BACKGROUND SECTIONS - WHITE TEXT
   ======================================== */

/* CTA Section with Primary Color Background (Dark Navy) */
.cta-section.bg-section h1,
.cta-section.bg-section h2,
.cta-section.bg-section h3,
.cta-section.bg-section h4,
.cta-section.bg-section h5,
.cta-section.bg-section h6 {
    color: white !important;
}

.cta-section.bg-section p {
    color: rgba(255, 255, 255, 0.9) !important;
}

.cta-section.bg-section .section-title h1,
.cta-section.bg-section .section-title h2,
.cta-section.bg-section .section-title h3 {
    color: white !important;
}

.cta-section.bg-section .section-title p {
    color: rgba(255, 255, 255, 0.85) !important;
}

/* CTA Section with Accent Color Background (Dark) */
.cta-section.bg-section-two h1,
.cta-section.bg-section-two h2,
.cta-section.bg-section-two h3,
.cta-section.bg-section-two h4,
.cta-section.bg-section-two h5,
.cta-section.bg-section-two h6 {
    color: white !important;
}

.cta-section.bg-section-two p {
    color: rgba(255, 255, 255, 0.9) !important;
}

.cta-section.bg-section-two .section-title h1,
.cta-section.bg-section-two .section-title h2,
.cta-section.bg-section-two .section-title h3 {
    color: white !important;
}

.cta-section.bg-section-two .section-title p {
    color: rgba(255, 255, 255, 0.85) !important;
}

/* Dark background section titles */
.bg-section-two .section-title h3,
.cta-section.bg-section-two .section-title h3,
.cta-section.bg-section .section-title h3 {
    color: rgba(255, 255, 255, 0.95) !important;
}

/* Any dark background section */
.bg-dark h1,
.bg-dark h2,
.bg-dark h3,
.bg-dark h4,
.bg-dark h5,
.bg-dark h6,
.bg-dark p {
    color: white !important;
}

/* Footer (if dark) */
footer.bg-dark h1,
footer.bg-dark h2,
footer.bg-dark h3,
footer.bg-dark h4,
footer.bg-dark h5,
footer.bg-dark h6,
footer.bg-dark p {
    color: white !important;
}

/* Footer with bg-section (dark background) */
footer.bg-section h1,
footer.bg-section h2,
footer.bg-section h3,
footer.bg-section h4,
footer.bg-section h5,
footer.bg-section h6 {
    color: white !important;
}

footer.bg-section p {
    color: rgba(255, 255, 255, 0.85) !important;
}

footer.bg-section a {
    color: rgba(255, 255, 255, 0.9) !important;
}

footer.bg-section a:hover {
    color: white !important;
}

/* Main Footer specific */
.main-footer.bg-section h1,
.main-footer.bg-section h2,
.main-footer.bg-section h3,
.main-footer.bg-section h4,
.main-footer.bg-section h5,
.main-footer.bg-section h6 {
    color: white !important;
}

.main-footer.bg-section p {
    color: rgba(255, 255, 255, 0.85) !important;
}

.main-footer.bg-section a {
    color: rgba(255, 255, 255, 0.9) !important;
}

.main-footer.bg-section a:hover {
    color: white !important;
}

/* Footer Links */
.main-footer.bg-section .footer-links h3 {
    color: white !important;
}

.main-footer.bg-section .footer-links a {
    color: rgba(255, 255, 255, 0.85) !important;
}

.main-footer.bg-section .footer-links a:hover {
    color: white !important;
}

/* Footer Contact */
.main-footer.bg-section .footer-contact-content p,
.main-footer.bg-section .footer-contact-content a {
    color: rgba(255, 255, 255, 0.85) !important;
}

/* Footer Copyright */
.main-footer.bg-section .footer-copyright-text p,
.main-footer.bg-section .footer-copyright p {
    color: rgba(255, 255, 255, 0.7) !important;
}

.main-footer.bg-section .footer-terms-condition a {
    color: rgba(255, 255, 255, 0.85) !important;
}

.main-footer.bg-section .footer-terms-condition a:hover {
    color: white !important;
}

/* About Footer */
.main-footer.bg-section .about-footer-content p {
    color: rgba(255, 255, 255, 0.85) !important;
}

/* Section Title Specific Overrides */
.section-title h1 {
    font-size: 45px !important;
    text-transform: uppercase !important;
    letter-spacing: 2px !important;
}

.section-title h2 {
    font-size: 46px !important;
    text-transform: uppercase !important;
    letter-spacing: -0.02em !important;
}

.section-title h3 {
    font-size: 16px !important;
    color: var(--accent-color) !important;
    text-transform: capitalize !important;
    font-weight: 500 !important;
}

/* Dark background section titles */
.bg-section-two .section-title h3,
.cta-section.bg-section-two .section-title h3 {
    color: rgba(255, 255, 255, 0.95) !important;
}

.section-title p {
    font-size: 16px !important;
    margin-top: 20px !important;
    color: var(--text-color) !important;
}

/* Tablet Responsive (768px - 1024px) */
@media only screen and (max-width: 1024px) {

    h1,
    .h1 {
        font-size: 36px !important;
        margin-bottom: 16px !important;
    }

    h2,
    .h2 {
        font-size: 30px !important;
        margin-bottom: 14px !important;
    }

    h3,
    .h3 {
        font-size: 20px !important;
        margin-bottom: 12px !important;
    }

    h4,
    .h4 {
        font-size: 18px !important;
        margin-bottom: 10px !important;
    }

    h5,
    .h5 {
        font-size: 16px !important;
        margin-bottom: 8px !important;
    }

    h6,
    .h6 {
        font-size: 14px !important;
    }

    p,
    .text-body {
        font-size: 15px !important;
        line-height: 1.6em !important;
        margin-bottom: 1em !important;
    }

    .section-title h1 {
        font-size: 36px !important;
    }

    .section-title h2 {
        font-size: 36px !important;
    }

    .section-title h3 {
        font-size: 15px !important;
    }

    .section-title p {
        font-size: 15px !important;
    }
}

/* Mobile Responsive (320px - 767px) */
@media only screen and (max-width: 767px) {

    h1,
    .h1 {
        font-size: 26px !important;
        margin-bottom: 12px !important;
        letter-spacing: -0.01em !important;
    }

    h2,
    .h2 {
        font-size: 22px !important;
        margin-bottom: 10px !important;
    }

    h3,
    .h3 {
        font-size: 18px !important;
        margin-bottom: 8px !important;
    }

    h4,
    .h4 {
        font-size: 16px !important;
        margin-bottom: 8px !important;
    }

    h5,
    .h5 {
        font-size: 14px !important;
        margin-bottom: 6px !important;
    }

    h6,
    .h6 {
        font-size: 13px !important;
        margin-bottom: 6px !important;
    }

    p,
    .text-body {
        font-size: 14px !important;
        line-height: 1.6em !important;
        margin-bottom: 0.9em !important;
    }

    .section-title h1 {
        font-size: 26px !important;
    }

    .section-title h2 {
        font-size: 26px !important;
    }

    .section-title h3 {
        font-size: 14px !important;
    }

    .section-title p {
        font-size: 14px !important;
        margin-top: 12px !important;
    }
}

/* ========================================
   2. EXCELLENCE CARDS (Home Page)
   ======================================== */

.excellence-modern-card {
    border-radius: 24px;
    padding: 50px 30px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    cursor: pointer;
}

.excellence-modern-card:hover {
    transform: translateY(-12px) scale(1.02);
}

/* Gradient Card */
.excellence-card-gradient {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    color: white !important;
    box-shadow: 0 12px 40px rgba(103, 58, 183, 0.25);
}

.excellence-card-gradient:hover {
    box-shadow: 0 20px 60px rgba(103, 58, 183, 0.35);
}

/* White Card */
.excellence-card-white {
    background: white;
    border: 2px solid var(--secondary-color);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.excellence-card-white:hover {
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    border-color: var(--accent-color);
}

/* Accent Gradient Card */
.excellence-card-accent {
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--primary-color) 100%);
    color: white !important;
    box-shadow: 0 12px 40px rgba(11, 16, 48, 0.25);
}

.excellence-card-accent:hover {
    box-shadow: 0 20px 60px rgba(11, 16, 48, 0.35);
}

/* Card Decorative Circles */
.excellence-card-circle-1 {
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    opacity: 0.6;
}

.excellence-card-circle-2 {
    position: absolute;
    bottom: -30px;
    left: -30px;
    width: 150px;
    height: 150px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    opacity: 0.5;
}

/* Card Icon Box */
.excellence-card-icon {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    position: relative;
    z-index: 2;
}

.excellence-card-icon-gradient {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.excellence-card-icon-white {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    box-shadow: 0 8px 20px rgba(103, 58, 183, 0.2);
}

.excellence-card-icon i {
    font-size: 36px;
    color: white !important;
}

/* Card Number */
.excellence-card-number {
    font-size: 56px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 15px;
    letter-spacing: -2px;
    position: relative;
    z-index: 2;
}

.excellence-card-number-white {
    color: white !important;
}

.excellence-card-number-primary {
    color: var(--primary-color) !important;
}

.excellence-card-number .plus-sign {
    font-size: 42px;
}

/* Card Title */
.excellence-card-title {
    font-size: 18px !important;
    font-weight: 600 !important;
    margin: 0 !important;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    z-index: 2;
    line-height: 1.3em !important;
}

.excellence-card-title-white {
    color: white !important;
    opacity: 1;
}

.excellence-card-title-primary {
    color: var(--text-color) !important;
}

/* Responsive Excellence Cards */
@media (max-width: 1024px) and (min-width: 768px) {
    .excellence-modern-card {
        padding: 45px 30px;
        margin-bottom: 20px;
    }

    .excellence-card-number {
        font-size: 50px;
    }

    .excellence-card-number .plus-sign {
        font-size: 38px;
    }

    .excellence-card-title {
        font-size: 16px !important;
    }

    /* Service Cards Tablet */
    .service-card {
        padding: 28px 24px;
        margin-bottom: 20px;
    }

    .service-card .card-title {
        font-size: 21px !important;
    }

    .service-card .card-description {
        font-size: 15px !important;
    }

    /* Section Spacing Tablet */
    section {
        padding: 60px 0 !important;
    }

    .our-excellence-modern,
    .services-section,
    .our-testimonial,
    .our-facility {
        padding: 60px 0 !important;
    }
}

@media (max-width: 767px) {
    .excellence-modern-card {
        padding: 35px 25px;
        margin-bottom: 25px;
    }

    .excellence-card-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 20px;
    }

    .excellence-card-icon i {
        font-size: 32px;
    }

    .excellence-card-number {
        font-size: 44px;
        margin-bottom: 12px;
    }

    .excellence-card-number .plus-sign {
        font-size: 34px;
    }

    .excellence-card-title {
        font-size: 14px !important;
        line-height: 1.4em !important;
    }

    .excellence-card-circle-1,
    .excellence-card-circle-2 {
        display: none;
    }

    /* Service Cards Mobile Fix */
    .service-card {
        padding: 25px 20px;
        margin-bottom: 25px;
    }

    .service-card .card-image {
        object-fit: cover;
        border-radius: 12px;
        margin-bottom: 15px;
    }

    .service-card .card-title {
        font-size: 19px !important;
        margin-bottom: 10px !important;
    }

    .service-card .card-description {
        font-size: 14px !important;
        line-height: 1.6em !important;
        margin-bottom: 15px !important;
    }

    /* Testimonial Cards Mobile */
    .testimonial-item {
        padding: 25px 20px !important;
        margin: 0 10px !important;
    }

    .testimonial-content p {
        font-size: 14px !important;
        line-height: 1.6em !important;
    }

    /* Section Spacing Mobile */
    section {
        padding: 50px 0 !important;
    }

    .our-excellence-modern {
        padding: 50px 0 !important;
    }

    .services-section {
        padding: 50px 0 !important;
    }

    .our-testimonial {
        padding: 50px 0 !important;
    }

    .our-facility {
        padding: 50px 0 !important;
    }

    /* Container Mobile */
    .container {
        padding-left: 20px !important;
        padding-right: 20px !important;
    }



    /* Row Spacing Mobile */
    .row.g-4 {
        row-gap: 25px !important;
    }

    /* ========================================
       Services Page Mobile Fixes
       ======================================== */
    /* Tab Buttons Mobile */
    .tab-buttons {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
        justify-content: center;
        margin-bottom: 30px !important;
    }

    .tab-btn {
        padding: 10px 20px !important;
        font-size: 14px !important;
        flex-grow: 1;
    }

    /* Services Image Mobile Spacing */
    .our-approach-img {
        margin-bottom: 25px !important;
    }

    .our-approach-img img {
        width: 100% !important;
        height: auto !important;
        aspect-ratio: auto !important;
        /* Reset forced aspect ratio */
        object-fit: cover !important;
        border-radius: 15px !important;
    }

    /* Services Content Mobile Spacing */
    .our-approach-content {
        padding: 0 10px !important;
    }

    .our-approach-content .section-title {
        margin-top: 8px !important;
    }

    .our-approach-content .badges .badge-item {
        margin-bottom: 0px;
    }

    .our-approach-content .vision-mission-content ul li {
        margin-bottom: 10px !important;
        font-size: 15px !important;
    }

    /* Hero Section Mobile */
    .hero {
        padding: 40px 0 !important;
    }

    .hero-content {
        margin-bottom: 30px;
    }

    /* CTA Section Mobile */
    .cta-section {
        padding: 40px 0 !important;
    }

    .cta-box-content {
        padding: 30px 20px !important;
    }
}

/* ========================================
   3. PAGE HEADER BACKGROUNDS
   ======================================== */

.page-header-bg {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.page-header-bg-default,
.page-header.bg-section.cover {
    background-image: url('../images/picture-4.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Page Header Text Colors - Fix visibility on dark background */
.page-header h1,
.page-header h2,
.page-header h3,
.page-header h4,
.page-header h5,
.page-header h6 {
    color: white !important;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    /* improved readability */
}

.page-header p {
    color: rgba(255, 255, 255, 0.95) !important;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    font-weight: 500 !important;
}

/* Breadcrumbs in Page Header */
.page-header .breadcrumb .breadcrumb-item,
.page-header .breadcrumb .breadcrumb-item a {
    color: rgba(255, 255, 255, 0.9) !important;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.page-header .breadcrumb .breadcrumb-item.active {
    color: white !important;
    font-weight: 600 !important;
}

/* Fix excessive spacing on Services Page (Mobile) */
@media (max-width: 767px) {
    .services-section {
        padding-bottom: 50px !important;
    }

    .cta-section {
        padding-top: 10px !important;
    }

    .cta-section.bg-section-two {
        margin-top: 0 !important;
        margin-bottom: 50px;
        padding: 0 !important;
    }
}



.page-header .breadcrumb .breadcrumb-item+.breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.7) !important;
}

/* ========================================
   Trainer & Speaker Cards - Fix Text Visibility
   ======================================== */
.trainer-speaker-section .trainer-speaker-item h3,
.trainer-speaker-section .trainer-speaker-item h4,
.trainer-speaker-section .trainer-speaker-item p {
    color: white !important;
    font-weight: 500 !important;
}

.trainer-speaker-section .trainer-speaker-item .icon-box {
    background: rgba(255, 255, 255, 0.15) !important;
    border: 1px solid rgba(255, 255, 255, 0.3) !important;
}

.trainer-speaker-section .trainer-speaker-item .icon-box i {
    color: white !important;
}

/* ========================================
   Timeline Cards - Fix Text Visibility
   ======================================== */
.timeline-section .timeline-content h3,
.timeline-section .timeline-content h4,
.timeline-section .timeline-content p {
    color: white !important;
}

.timeline-section .timeline-content i {
    color: white !important;
}

.timeline-section .timeline-content h4 i {
    color: rgba(255, 255, 255, 0.9) !important;
}

/* ========================================
   4. SERVICE CARDS
   ======================================== */

.service-card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.service-card-header {
    margin-bottom: 20px;
}

.service-card-title {
    font-size: 24px !important;
    font-weight: 600 !important;
    color: var(--primary-color) !important;
    margin-bottom: 10px !important;
}

.service-card-body p {
    font-size: 16px !important;
    line-height: 1.6 !important;
    color: var(--text-color) !important;
}

/* Service Cards - Homepage Style */
.services-section .service-card .card-image {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center !important;
    z-index: 0 !important;
}

/* Ensure all text is white in service cards */
.services-section .service-card .card-title,
.services-section .service-card h3 {
    color: white !important;
    font-weight: 600 !important;
}

.services-section .service-card .card-description,
.services-section .service-card p {
    color: white !important;
    opacity: 0.95 !important;
}

.services-section .service-card .read-more-btn,
.services-section .service-card a {
    color: white !important;
}

.services-section .service-card .card-icon {
    color: white !important;
}

.services-section .service-card .card-icon i {
    color: white !important;
}

@media (max-width: 767px) {
    .service-card {
        padding: 20px;
        margin-bottom: 20px;
    }

    .service-card-title {
        font-size: 18px !important;
    }

    .service-card-body p {
        font-size: 14px !important;
    }

    /* Spacing Utilities */
    .mb-mobile-20 {
        margin-bottom: 0;
    }

    .mb-mobile-20 {
        margin-bottom: 20px;
    }


    /* Text Alignment */
    .text-center-mobile {
        text-align: inherit;
    }

    .text-center-mobile {
        text-align: center;
    }


    /* Hide on Mobile */
    .hide-mobile {
        display: block;
    }

    .hide-mobile {
        display: none;
    }


    /* Show only on Mobile */
    .show-mobile {
        display: none;
    }

    .show-mobile {
        display: block;
    }


    /* ========================================
   6. BUTTON RESPONSIVE FIXES
   ======================================== */


    .btn-default,
    .btn-default-two {
        font-size: 14px !important;
        padding: 14px 24px !important;
    }


    /* ========================================
   7. CONTAINER RESPONSIVE FIXES
   ======================================== */

    .container {
        padding-left: 15px !important;
        padding-right: 15px !important;
    }

    .timeline-section {
        padding-bottom: 1px !important;
        margin-bottom: 50px !important;
    }

    .timeline-section .section-title {
        margin: 0px !important
    }

    .timeline-section .timeline-container {
        margin-top: 25px !important;
    }

    .trainer-speaker-section .trainer-speaker-item {
        padding: 15px;
        margin-bottom: 0px;
    }

    .trainer-speaker-section .trainer-speaker-item .icon-box {
        width: 40px;
        height: 40px;
    }

    .trainer-speaker-section .trainer-speaker-item .icon-box i {
        font-size: 15px;
    }

    .trainer-speaker-section .check-item {
        padding: 15px;
        margin-bottom: 0px;
    }

    .trainer-speaker-section .check-item h4 {
        margin: 0px !important;
    }

    .about-us-content .section-title {
        margin-top: 0px !important;
    }

    .trainer-speaker-section .section-title {
        margin-top: 0px !important
    }

    .about-us .row {
        flex-direction: column-reverse;
    }

    .about-us .col-lg-7 {
        margin-bottom: 0px !important;
    }

    .about-us .about-us-content {
        margin-top: 25px;
        margin-bottom: 0px;
    }

    .about-us .about-us-content .section-title {
        margin-bottom: 0px !important;
    }

    .services-home-section .service-card {
        height: 290px;
        margin: 0px !important;
    }

    .services-home-section .section-row {
        margin-bottom: 10px !important;
    }

    .services-home-section .section-title {
        margin-bottom: 0px !important;
    }

}

/* ========================================
   8. SECTION SPACING RESPONSIVE
   ======================================== */

.section-padding {
    padding: 80px 0;
}

@media (max-width: 1024px) {
    .section-padding {
        padding: 60px 0;
    }
}

@media (max-width: 767px) {
    .section-padding {
        padding: 40px 0;
    }
}

/* Section Row Responsive */
@media only screen and (max-width: 968px) {
    .section-row {
        margin-bottom: 50px !important;
    }
}

@media only screen and (max-width: 767px) {
    .section-row {
        margin-bottom: 30px !important;
    }
}

/* Section Title Responsive */
@media only screen and (max-width: 968px) {
    .section-title {
        margin-bottom: 25px !important;
    }
}

@media only screen and (max-width: 767px) {
    .section-title {
        margin-bottom: 20px !important;
    }
}

/* ========================================
   9. IMAGE RESPONSIVE
   ======================================== */

img {
    max-width: 100%;
    height: auto;
}

.img-responsive {
    width: 100%;
    height: auto;
    display: block;
}

/* ========================================
   10. GRID RESPONSIVE FIXES
   ======================================== */

@media (max-width: 767px) {
    .row>[class*='col-'] {
        margin-bottom: 20px;
    }

    .row>[class*='col-']:last-child {
        margin-bottom: 0;
    }
}

/* ========================================
   END OF RESPONSIVE & STANDARDIZATION
   ======================================== */