/* ============================================
   MIRE ECHO - Brand Stylesheet
   Environment: MIRE ECHO
   Branch: CU-86c6784b6_Build-for-Mire-Echo
   ============================================ */

/* ============================================
   CSS RESET & BASE STYLES
   ============================================ */

   * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Outfit', sans-serif;
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
    background-color: #001d0f;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: opacity 0.3s ease;
}

a:hover {
    opacity: 0.8;
}

ul {
    list-style: none;
}


/* ============================================
   BRAND COLORS
   ============================================ */

:root {
    --green-light: #43a375;
    --green-mid: #07371f;
    --green-dark: #001d0f;
    --white: #ffffff;
}

/* ============================================
   TYPOGRAPHY
   ============================================ */

h1, h2, h3, h4, h5, h6 {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    line-height: 1.2;
}

.section-subtitle,
.quote-text {
    font-family: 'Lora', serif;
}

/* ============================================
   LAYOUT UTILITIES
   ============================================ */

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.text-green-light {
    color: var(--green-light);
}

.text-green-cyan {
    color: #5fc9a8;
}

/* ============================================
   HEADER
   ============================================ */

.site-header {
    background-color: var(--green-dark);
    padding: 20px 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    /*box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);*/
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-img {
    height: 32px;
    width: auto;
}

.main-nav ul {
    display: flex;
    gap: 40px;
    align-items: center;
}

.nav-link {
    font-size: 0.95rem;
    font-weight: 400;
    letter-spacing: 0.5px;
    text-transform: capitalize;
    transition: color 0.3s ease;
    position: relative;
    display: inline-block;
    padding-bottom: 5px;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--green-light);
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link:hover,
.nav-link.active {
    color: var(--green-light);
    opacity: 1;
}

.header-border {
    margin-top: 20px;
    text-align: center;
}

.header-border-img {
    width: 100%;
    max-width: 600px;
    height: auto;
    margin: 0 auto;
    opacity: 0.6;
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero-section {
    background-color: var(--green-dark);
    margin-top: 17%;
    position: relative;
    text-align: center;
    padding: 5% 0;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
}

.hero-logo-large {
    position: absolute;
    top: 0%;
    left: 44%;
    transform: translate(-50%, -60%);
    width: 100%;
    max-width: 90%;
    height: auto;
    opacity: 0.2;
    z-index: 1;
}

.hero-logo-bg {
    width: 100%;
    height: auto;
    opacity: 0.15;
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    transform: translateY(-40px);
}

.hero-title {
    font-size: 1.6rem;
    font-weight: 700;
    /* margin-bottom: 30px; */
    line-height: 1.3;
    letter-spacing: -0.5px;
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 40px;
    line-height: 1.5;
}

.hero-tagline {
    font-size: 1.1rem;
    font-weight: 300;
    margin-bottom: 50px;
    opacity: 0.9;
}

/* CTA Button */
.cta-button {
    display: inline-block;
    position: relative;
    padding: 0;
    background: transparent;
    border: none;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-2px);
    opacity: 1;
}

.button-text {
    display: inline-block;
    background-color: var(--green-light);
    color: var(--white);
    padding: 16px 50px;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    position: relative;
    clip-path: polygon(
        20px 0%,
        calc(100% - 20px) 0%,
        100% 50%,
        calc(100% - 20px) 100%,
        20px 100%,
        0% 50%
    );
}

/* Wave Divider */
.wave-divider {
    position: absolute;
    left: 0;
    right: 0;
    height: 150px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center bottom;
    z-index: 10;
}

.wave-divider-top {
    bottom: -55px;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 120" preserveAspectRatio="none"><path d="M0,0 C144,60 288,20 432,40 C576,60 720,20 864,30 C1008,40 1152,80 1296,60 C1368,50 1404,45 1440,40 L1440,120 L0,120 Z" fill="%2343a375"/></svg>');
}

.wave-divider-bottom {
    bottom: -2px;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 120" preserveAspectRatio="none"><path d="M0,40 C240,100 360,20 540,60 C720,100 840,30 1020,70 C1200,110 1320,40 1440,80 L1440,120 L0,120 Z" fill="%23001d0f"/></svg>');
}

/* ============================================
   ABOUT SECTION
   ============================================ */

.about-section {
    background-color: var(--green-light);
    padding: 120px 0 140px;
    position: relative;
    text-align: center;
    color: var(--white);
}

.section-header {
    margin-bottom: 50px;
}

.border-top {
    margin-bottom: 30px;
    text-align: center;
    border-top: none !important;
}

.border-decoration-top {
    width: 500px;
    max-width: 90%;
    margin: 0 auto;
    opacity: 0.5;
}

.border-decoration {
    width: 350px;
    max-width: 90%;
    margin: 0 auto 25px;
    opacity: 0.7;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    letter-spacing: 4px;
    margin-bottom: 15px;
}

.title-with-border {
    display: inline-block;
    /* padding-bottom: 20px; */
    padding-left: 2px;
    padding-right: 2px;
    /* margin-bottom: 25px; */
    border-bottom: 2px solid #001d0f;
}

.title-with-border2 {
    display: inline-block;
    /* padding-bottom: 20px; */
    padding-left: 50px;
    padding-right: 50px;
    /* margin-bottom: 25px; */
    border-bottom: 2px solid #43a375;
}

.section-subtitle {
    font-family: 'Lora', serif;
    font-size: 1.15rem;
    font-weight: 500;
    font-style: normal;
    opacity: 0.95;
    letter-spacing: 1px;
}

.about-intro {
    max-width: 750px;
    margin: 0 auto 20px;
    font-size: 1.1rem;
    line-height: 1.9;
}

.about-intro p {
    /* margin-bottom: 10px; */
}

.quote-graphic {
    margin: 70px auto 80px;
    max-width: 850px;
}

.quote-img {
    width: 100%;
    height: auto;
    margin: 0 auto;
}

.content-focus {
    max-width: 750px;
    margin: 70px auto 80px;
}

.focus-intro {
    font-size: 1.1rem;
    line-height: 1.8;
}

.focus-intro strong {
    font-weight: 700;
}

/* Focus Areas */
.focus-areas {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 70px;
    margin-top: 0;
    max-width: 1150px;
    margin-left: auto;
    margin-right: auto;
}

.focus-item {
    text-align: center;
}

.focus-item:nth-child(1) {
    margin-top: 40px;
}

.focus-item:nth-child(3) {
    margin-top: 40px;
}

.text-ripple-small {
    margin-bottom: 12px;
    text-align: center;
}

.text-ripple-small-img {
    width: 100%;
    max-width: 120px;
    height: auto;
    margin: 0 auto;
    opacity: 0.4;
}

.focus-icon {
    width: 120px;
    height: 120px;
    margin: 0 auto 25px;
    align-items: center;
    justify-content: center;
    display: none;
}

.focus-icon img {
    width: 100%;
    height: auto;
    opacity: 0.7;
    filter: brightness(1.1);
}

.focus-title {
    font-family: 'Lora', serif;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 18px;
    line-height: 1.3;
}

.focus-description {
    font-size: 0.95rem;
    line-height: 1.7;
    opacity: 0.95;
}

/* ============================================
   CONTACT SECTION
   ============================================ */

.contact-section {
    background-color: var(--green-dark);
    padding: 120px 0 100px;
    position: relative;
    text-align: center;
}

.contact-intro {
    max-width: 750px;
    margin: 0 auto 20px;
    font-size: 1.1rem;
    line-height: 1.9;
}

.contact-intro p {
    /* margin-bottom: 10px; */
}

/* Contact Form */
.contact-form-wrapper {
    max-width: 600px;
    margin: 0 auto;
    position: relative;
}

.contact-form-wrapper::before {
    content: '';
    position: absolute;
    left: -80px;
    top: 50%;
    transform: translateY(-50%);
    width: 150px;
    height: 100%;
    background: url('assets/footer-bg-left.png') no-repeat center;
    background-size: contain;
    pointer-events: none;
}

.contact-form-wrapper::after {
    content: '';
    position: absolute;
    right: -80px;
    top: 50%;
    transform: translateY(-50%);
    width: 150px;
    height: 100%;
    background: url('assets/footer-bg-right.png') no-repeat center;
    background-size: contain;
    pointer-events: none;
}

.contact-form {
    background-color: rgba(67, 163, 117, 0.35);
    padding: 50px 40px;
    border-radius: 8px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.form-group {
    margin-bottom: 30px;
    text-align: left;
}

.form-group label {
    display: block;
    margin-bottom: 10px;
    font-size: 0.95rem;
    font-weight: 400;
    color: var(--green-light);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 16px 20px;
    background-color: rgba(7, 55, 31, 0.9);
    border: 2px solid rgba(67, 163, 117, 0.2);
    border-radius: 6px;
    color: var(--white);
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--green-light);
    background-color: rgba(7, 55, 31, 1);
    box-shadow: 0 0 0 3px rgba(67, 163, 117, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.5);
    font-style: italic;
}

.submit-button {
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    margin-top: 20px;
    transition: transform 0.3s ease;
}

.submit-button:hover {
    transform: translateY(-2px);
}

.submit-button .button-text {
    display: inline-block;
    background-color: var(--white);
    color: var(--green-dark);
    padding: 16px 50px;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    position: relative;
    clip-path: polygon(
        20px 0%,
        calc(100% - 20px) 0%,
        100% 50%,
        calc(100% - 20px) 100%,
        20px 100%,
        0% 50%
    );
}

.submit-button:hover .button-text {
    background-color: var(--green-light);
    color: var(--white);
}
.mir-section.privacy {
    padding: 10% 0;
}

.mir.terms {
    padding: 10% 0;
}

/* ============================================
   FOOTER
   ============================================ */

.site-footer {
    background-color: var(--green-dark);
    padding: 60px 0 35px;
    border-top: 1px solid rgba(67, 163, 117, 0.15);
    position: relative;
}

.footer-bg-left {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 250px;
    height: auto;
    z-index: 0;
}

.footer-bg-left-img {
    width: 100%;
    height: auto;
    opacity: 0.3;
}

.footer-bg-right {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 250px;
    height: auto;
    z-index: 0;
}

.footer-bg-right-img {
    width: 100%;
    height: auto;
    opacity: 0.3;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
}

.footer-left {
    text-align: left;
}

.footer-logo {
    height: 28px;
    width: auto;
    margin-bottom: 15px;
}

.footer-email {
    font-size: 0.9rem;
    opacity: 0.8;
}

.footer-email a:hover {
    color: var(--green-light);
    opacity: 1;
}

.footer-nav ul {
    display: flex;
    gap: 30px;
    align-items: center;
    justify-content: flex-end;
}

@media (max-width: 767px) {
    .footer-nav ul {
        justify-content: center !important;
    }
}

.footer-nav li {
    white-space: nowrap;
}

.footer-nav a {
    font-size: 0.9rem;
    opacity: 0.8;
    transition: all 0.3s ease;
    font-weight: 400;
}

.footer-nav a:hover {
    color: var(--green-light);
    opacity: 1;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(67, 163, 117, 0.1);
}

.footer-address {
    font-size: 0.85rem;
    opacity: 0.7;
    line-height: 1.6;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

/* Tablet (768px - 1024px) */
@media (max-width: 1024px) {
    .container {
        padding: 0 30px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.3rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .focus-areas {
        gap: 40px;
    }

    .contact-form-wrapper::before,
    .contact-form-wrapper::after {
        width: 100px;
        left: -60px;
        right: -60px;
    }

    /* Footer - Tablet */
    .footer-bg-left,
    .footer-bg-right {
        width: 200px;
    }

    .footer-content {
        gap: 20px;
        align-items: center;
    }

    .footer-nav ul {
        gap: 20px;
        flex-wrap: wrap;
        justify-content: flex-end;
    }

    .footer-nav a {
        font-size: 0.88rem;
    }
}

/* Mobile (up to 767px) */
@media (max-width: 767px) {
    .container {
        padding: 0 20px;
    }

    /* Header */
    .site-header {
        padding: 15px 0;
    }

    .header-content {
        flex-direction: column;
        gap: 20px;
    }

    .logo-img {
        height: 28px;
    }

    .main-nav ul {
        gap: 25px;
    }

    .nav-link {
        font-size: 0.85rem;
    }

    /* Hero */
    .hero-section {
        padding: 100px 0 80px;
    }

    .hero-logo-large {
        max-width: 400px;
    }

    .hero-title {
        font-size: 1.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-tagline {
        font-size: 1rem;
    }

    .button-text {
        padding: 14px 35px;
        font-size: 0.8rem;
        letter-spacing: 1px;
    }

    /* About */
    .about-section {
        padding: 60px 0 80px;
    }

    .section-title {
        font-size: 1.6rem;
        letter-spacing: 2px;
    }

    .section-subtitle {
        font-size: 1rem;
    }

    .border-decoration {
        width: 200px;
    }

    .about-intro,
    .contact-intro,
    .content-focus {
        font-size: 1rem;
    }

    .focus-areas {
        grid-template-columns: 1fr;
        gap: 50px;
        margin-top: 50px;
    }

    .focus-item:nth-child(1),
    .focus-item:nth-child(3) {
        margin-top: 0;
    }

    .focus-icon {
        width: 100px;
        height: 100px;
    }

    .focus-title {
        font-size: 1.3rem;
    }

    .focus-description {
        font-size: 0.9rem;
    }

    /* Contact */
    .contact-section {
        padding: 60px 0 50px;
    }

    .contact-form-wrapper::before,
    .contact-form-wrapper::after {
        display: none;
    }

    .contact-form {
        padding: 40px 25px;
    }

    .form-group input,
    .form-group textarea {
        padding: 12px 15px;
        font-size: 0.9rem;
    }

    .form-group textarea {
        min-height: 120px;
    }

    /* Footer */
    .site-footer {
        padding: 40px 0 25px;
        text-align: center;
    }

    .footer-bg-left,
    .footer-bg-right {
        width: 120px;
        opacity: 0.5;
    }

    .footer-content {
        flex-direction: column;
        gap: 35px;
        text-align: center;
        align-items: center;
        justify-content: center;
        margin-bottom: 25px;
    }

    .footer-left {
        text-align: center;
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .footer-logo {
        height: 32px;
        margin: 0 auto 15px;
        display: block;
    }

    .footer-email {
        font-size: 0.95rem;
        text-align: center;
        width: 100%;
    }

    .footer-nav {
        width: 100% !important;
        text-align: center !important;
        display: block !important;
    }

    .footer-nav ul {
        display: flex !important;
        flex-direction: column !important;
        gap: 18px !important;
        align-items: center !important;
        justify-content: center !important;
        width: 100% !important;
        padding: 0 !important;
        margin: 0 auto !important;
        list-style: none !important;
    }

    .footer-nav li {
        width: 100% !important;
        text-align: center !important;
        list-style: none !important;
        display: block !important;
    }

    .footer-nav a {
        font-size: 0.95rem !important;
        display: block !important;
        padding: 0 !important;
        background-color: transparent !important;
        border-radius: 0 !important;
        transition: all 0.3s ease !important;
        text-align: center !important;
        width: 100% !important;
        margin: 0 auto !important;
    }

    .footer-nav a:hover {
        background-color: transparent !important;
    }

    .footer-bottom {
        padding-top: 18px;
        text-align: center;
    }

    .footer-address {
        font-size: 0.82rem;
        max-width: 320px;
        margin: 0 auto;
        line-height: 1.7;
        text-align: center;
    }

    .text-ripple-small-img {
        max-width: 100px;
    }

    .border-decoration-top {
        width: 350px;
    }

    .header-border {
        margin-top: 15px;
    }

    .header-border-img {
        max-width: 400px;
    }
}

/* Small Mobile (up to 480px) */
@media (max-width: 480px) {
    .hero-title {
        font-size: 1.3rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-logo-large {
        max-width: 300px;
    }

    .section-title {
        font-size: 1.4rem;
    }

    .main-nav ul {
        gap: 15px;
    }

    .nav-link {
        font-size: 0.75rem;
    }

    /* Footer - Small Mobile */
    .site-footer {
        padding: 35px 0 20px;
        text-align: center;
    }

    .footer-bg-left,
    .footer-bg-right {
        width: 80px;
        opacity: 0.4;
    }

    .footer-content {
        gap: 30px;
        margin-bottom: 20px;
        text-align: center;
        align-items: center;
        justify-content: center;
    }

    .footer-left {
        align-items: center;
        justify-content: center;
    }

    .footer-logo {
        height: 28px;
        margin: 0 auto 15px;
    }

    .footer-email {
        font-size: 0.88rem;
        text-align: center;
    }

    .footer-nav {
        width: 100% !important;
        text-align: center !important;
        display: block !important;
    }

    .footer-nav ul {
        display: flex !important;
        flex-direction: column !important;
        gap: 15px !important;
        align-items: center !important;
        justify-content: center !important;
        width: 100% !important;
        padding: 0 !important;
        margin: 0 auto !important;
        list-style: none !important;
    }

    .footer-nav li {
        width: 100% !important;
        text-align: center !important;
        list-style: none !important;
        display: block !important;
    }

    .footer-nav a {
        font-size: 0.88rem !important;
        display: block !important;
        padding: 0 !important;
        text-align: center !important;
        width: 100% !important;
        margin: 0 auto !important;
    }

    .footer-bottom {
        padding-top: 15px;
        text-align: center;
    }

    .footer-address {
        font-size: 0.75rem;
        max-width: 280px;
        line-height: 1.6;
        text-align: center;
        margin: 0 auto;
    }

    .text-ripple-small-img {
        max-width: 80px;
    }

    .border-decoration-top {
        width: 200px;
    }

    .header-border-img {
        max-width: 300px;
    }
}

/* Medium Tablet (768px - 900px) */
@media (min-width: 768px) and (max-width: 900px) {
    .footer-content {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 40px;
        align-items: center;
    }

    .footer-left {
        text-align: center;
        flex: 1 1 100%;
    }

    .footer-nav {
        flex: 1 1 100%;
        text-align: center !important;
        width: 100%;
    }

    .footer-nav ul {
        display: flex !important;
        flex-direction: row !important;
        justify-content: center !important;
        align-items: center !important;
        gap: 25px;
        flex-wrap: wrap;
        width: 100%;
    }

    .footer-nav li {
        white-space: nowrap;
        text-align: center;
    }

    .footer-nav a {
        font-size: 0.9rem;
        text-align: center;
    }
}

/* Additional Mobile Fix for Footer Navigation Centering */
@media screen and (max-width: 767px) {
    .site-footer .footer-content .footer-nav {
        display: block !important;
        width: 100% !important;
        text-align: center !important;
    }

    .site-footer .footer-content .footer-nav ul {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        list-style: none !important;
        margin: 0 !important;
        padding: 0 !important;
        width: 100% !important;
    }

    .site-footer .footer-content .footer-nav ul li {
        display: block !important;
        width: 100% !important;
        text-align: center !important;
        margin: 0 !important;
        padding: 0 !important;
    }

    .site-footer .footer-content .footer-nav ul li a {
        display: block !important;
        text-align: center !important;
        width: 100% !important;
    }
}

@media screen and (max-width: 480px) {
    .site-footer .footer-content .footer-nav {
        display: block !important;
        width: 100% !important;
        text-align: center !important;
    }

    .site-footer .footer-content .footer-nav ul {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        list-style: none !important;
        margin: 0 !important;
        padding: 0 !important;
        width: 100% !important;
    }

    .site-footer .footer-content .footer-nav ul li {
        display: block !important;
        width: 100% !important;
        text-align: center !important;
        margin: 0 !important;
        padding: 0 !important;
    }

    .site-footer .footer-content .footer-nav ul li a {
        display: block !important;
        text-align: center !important;
        width: 100% !important;
    }
}
/* FINAL NUCLEAR OPTION - FORCE FOOTER CENTER ON MOBILE */
@media only screen and (max-width: 767px) {
    body footer.site-footer .container .footer-content nav.footer-nav {
        width: 100% !important;
        text-align: center !important;
        display: block !important;
        margin: 0 auto !important;
    }

    body footer.site-footer .container .footer-content nav.footer-nav ul {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        text-align: center !important;
        list-style: none !important;
        padding: 0 !important;
        margin: 0 auto !important;
        width: 100% !important;
    }

    body footer.site-footer .container .footer-content nav.footer-nav ul li {
        width: 100% !important;
        text-align: center !important;
        display: block !important;
        list-style: none !important;
        margin: 0 auto !important;
        padding: 0 !important;
    }

    body footer.site-footer .container .footer-content nav.footer-nav ul li a {
        width: 100% !important;
        text-align: center !important;
        display: block !important;
        margin: 0 auto !important;
        padding: 0 !important;
    }
}
