@import url('navbar-responsive.css');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    overflow-x: hidden;
}



.hero {
    position: relative;
    width: 100%;
    height: 100vh;

    overflow: hidden;

    display: flex;
    align-items: center;
    justify-content: center;
}



.hero-video {
    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;

    z-index: 1;
}



.hero-overlay {
    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 100%;

    background: rgba(0, 0, 0, 0.55);

    z-index: 2;
}



.hero-content {
    position: relative;

    z-index: 3;

    text-align: center;

    color: white;
}

.hero-content h1 {
    font-size: 65px;
    font-weight: 700;

    margin-bottom: 15px;
}

.hero-content p {
    font-size: 25px;
}

.hero-content p span {
    font-weight: 700;
    text-decoration: underline;
}



.hero-logo {
    position: absolute;

    right: 40px;
    bottom: 25px;

    width: 130px;
    height: auto;

    z-index: 4;
}



@media (max-width: 768px) {

    .hero-content h1 {
        font-size: 42px;
    }

    .hero-content p {
        font-size: 18px;
    }

    .hero-logo {
        width: 90px;

        right: 20px;
        bottom: 20px;
    }
}
/* ===============================
   HEADER BELOW VIDEO
================================ */

.site-header {
    width: 100%;
    background: #e7ebed;
    position: relative;
    z-index: 100;
}

.navbar-container {
    width: 88%;
    max-width: 1500px;
    min-height: 330px;
    margin: auto;

    display: flex;
    align-items: flex-start;
}



.header-logo {
    width: 195px;
    margin-top: 35px;
    flex-shrink: 0;
}

.header-logo img {
    width: 100%;
    display: block;
}


/* NAVIGATION */

.main-nav {
    display: flex;
    align-items: center;

    gap: 21px;

    margin-left: 70px;
    margin-top: 125px;

    white-space: nowrap;
}

.main-nav > a {
    color: #111;
    text-decoration: none;

    font-size: 21px;
    font-weight: 700;
}

.main-nav > a:hover,
.main-nav > a.active {
    color: #b32020;
}


/* SERVICES */

.services-dropdown {
    position: relative;
}

.services-dropdown button {
    border: none;
    background: transparent;

    font-size: 21px;
    font-weight: 700;

    cursor: pointer;
}

.services-menu {
    position: absolute;
    z-index: 9999;

    top: 35px;
    left: 0;

    width: 240px;

    background: white;

    box-shadow: 0 10px 30px rgba(0,0,0,.18);

    border-radius: 8px;

    overflow: hidden;

    opacity: 0;
    visibility: hidden;

    transform: translateY(-8px);

    transition: .2s;
}

.services-menu.show {
    opacity: 1;
    visibility: visible;

    transform: translateY(0);
}

.services-menu a {
    display: block;

    padding: 15px 18px;

    color: #111;
    text-decoration: none;

    font-size: 16px;
}

.services-menu a:hover {
    background: #b32020;
    color: white;
}
#servicesButton {
    display: flex;
    align-items: center;
    gap: 8px;
}

#servicesButton i {
    font-size: 12px;
}

/* =========================================
   CUSTOM PATCHES BANNER
========================================= */

.patches-banner {
    width: 100%;
    min-height: 480px;

    position: relative;

    display: flex;
    align-items: center;

    padding: 60px 80px;
    box-sizing: border-box;
}

.patches-banner::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 20, 0.35);
}

.patches-banner-content {
    position: relative;
    z-index: 2;

    max-width: 900px;
    color: #ffffff;
}

.patches-banner-content h1 {
    margin: 0 0 20px;
    font-size: 52px;
    font-weight: 800;
    color: #ffffff;
}

.patches-banner-content p {
    margin: 0 0 25px;
    font-size: 18px;
    line-height: 1.7;
    color: #ffffff;
}

.patches-banner-content .breadcrumb {
    justify-content: flex-start;
    font-size: 18px;
}

/* FEATURES STRIP */

.patches-features {
    width: 100%;
    background: #f2f2f2;
    padding: 25px 40px;
    box-sizing: border-box;
}

.patches-features-row {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;

    gap: 20px;

    max-width: 1500px;
    margin: 0 auto;
}

.patches-feature {
    display: flex;
    align-items: center;
    gap: 12px;

    font-size: 18px;
    font-weight: 600;
    color: #111;
}

.patches-feature i {
    color: #e06b1f;
    font-size: 20px;
}

@media (max-width: 900px) {

    .patches-banner {
        padding: 45px 25px;
        min-height: 400px;
    }

    .patches-banner-content h1 {
        font-size: 34px;
    }

    .patches-banner-content p {
        font-size: 16px;
    }

    .patches-features-row {
        justify-content: center;
    }
}

/* =========================================
   CHOOSE A PRODUCT SECTION
========================================= */

.products-section {
    width: 100%;
    max-width: 1800px;
    margin: 0 auto;
    padding: 55px 25px;
    box-sizing: border-box;
    background: #ffffff;
    font-family: Arial, Helvetica, sans-serif;
}

.products-header {
    width: 100%;
    text-align: center;
    margin-bottom: 65px;
}

.products-header h1 {
    margin: 0 0 28px 0;
    font-size: 48px;
    font-weight: 700;
    color: #000000;
}

.products-header p {
    max-width: 1500px;
    margin: 0 auto;
    color: #777777;
    font-size: 20px;
    line-height: 1.6;
}


/* ROW WRAPPER - title/button LEFT, 3 small + 1 big image */

.product-row {
    width: 100%;

    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1.4fr;
    grid-template-rows: auto 1fr;

    gap: 20px;

    padding: 35px 0 50px;
    margin-bottom: 35px;

    border-bottom: 6px solid #d4d4d4;

    box-sizing: border-box;
}

.product-row-header {
    grid-column: 1 / 4;
    grid-row: 1;

    display: flex;
    align-items: flex-end;
    justify-content: space-between;

    gap: 20px;
}

.product-title h2 {
    margin: 0 0 10px;
    font-size: 32px;
    font-weight: 700;
    color: #000000;
}

.product-title p {
    margin: 0;
    font-size: 17px;
    color: #666666;
}

/* IMAGES */

.product-img {
    width: 100%;
    height: 100%;

    border-radius: 12px;
    overflow: hidden;
    background: #ffffff;
    border: 1px solid #ebebeb;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.04);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
    box-sizing: border-box;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-img:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.07);
}

.product-img img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    display: block;
    object-fit: contain !important;
    margin: auto;
    border-radius: 6px;
    transition: transform 0.3s ease;
}

.product-img:hover img {
    transform: scale(1.03);
}

.p-img-1 { grid-column: 1; grid-row: 2; height: 300px; }
.p-img-2 { grid-column: 2; grid-row: 2; height: 300px; }
.p-img-3 { grid-column: 3; grid-row: 2; height: 300px; }

.p-img-4 {
    grid-column: 4;
    grid-row: 1 / 3;
    height: 100%;
    min-height: 380px;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 900px) {

    .product-row {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto auto auto;
    }

    .product-row-header {
        grid-column: 1 / 3;
        grid-row: 1;

        flex-direction: column;
        align-items: flex-start;
    }

    .p-img-1 { grid-column: 1; grid-row: 2; height: 220px; }
    .p-img-2 { grid-column: 2; grid-row: 2; height: 220px; }
    .p-img-3 { grid-column: 1; grid-row: 3; height: 220px; }
    .p-img-4 { grid-column: 2; grid-row: 3; height: 220px; }
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 550px) {

    .products-header h1 {
        font-size: 30px;
    }

    .products-header p {
        font-size: 16px;
    }

    .product-row {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto auto auto auto;
    }

    .product-row-header {
        grid-column: 1;
        grid-row: 1;
    }

    .p-img-1 { grid-column: 1; grid-row: 2; height: 260px; }
    .p-img-2 { grid-column: 1; grid-row: 3; height: 260px; }
    .p-img-3 { grid-column: 1; grid-row: 4; height: 260px; }
    .p-img-4 { grid-column: 1; grid-row: 5; height: 260px; }
}
/* =========================================
   GALLERY BUTTON
========================================= */

.gallery-btn a {
    display: inline-block;

    padding: 14px 30px;

    background: #1256cc;
    color: #ffffff;

    font-size: 16px;
    font-weight: 700;

    text-decoration: none;
    border-radius: 8px;

    white-space: nowrap;
}

.gallery-btn a:hover {
    background: #0d3f9c;
}

/* =========================================
   PRODUCT ROW - REVERSE (big image LEFT)
========================================= */

.product-row.reverse {
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
}

.product-row.reverse .product-row-header {
    grid-column: 2 / 5;
    grid-row: 1;
}

.product-row.reverse .p-img-1 {
    grid-column: 1;
    grid-row: 1 / 3;
    height: 100%;
    min-height: 380px;
}

.product-row.reverse .p-img-2 {
    grid-column: 2;
    grid-row: 2;
    height: 300px;
}

.product-row.reverse .p-img-3 {
    grid-column: 3;
    grid-row: 2;
    height: 300px;
}

.product-row.reverse .p-img-4 {
    grid-column: 4;
    grid-row: 2;
    height: 300px;
}

@media (max-width: 900px) {

    .product-row.reverse {
        grid-template-columns: 1fr 1fr;
    }

    .product-row.reverse .product-row-header {
        grid-column: 1 / 3;
        grid-row: 1;
    }

    .product-row.reverse .p-img-1 {
        grid-column: 1 / 3;
        grid-row: 2;
        height: 220px;
    }

    .product-row.reverse .p-img-2 {
        grid-column: 1;
        grid-row: 3;
        height: 220px;
    }

    .product-row.reverse .p-img-3 {
        grid-column: 2;
        grid-row: 3;
        height: 220px;
    }

    .product-row.reverse .p-img-4 {
        grid-column: 1 / 3;
        grid-row: 4;
        height: 220px;
    }
}

@media (max-width: 550px) {

    .product-row.reverse {
        grid-template-columns: 1fr;
    }

    .product-row.reverse .product-row-header,
    .product-row.reverse .p-img-1,
    .product-row.reverse .p-img-2,
    .product-row.reverse .p-img-3,
    .product-row.reverse .p-img-4 {
        grid-column: 1;
        height: 260px;
    }

    .product-row.reverse .product-row-header { grid-row: 1; height: auto; }
    .product-row.reverse .p-img-1 { grid-row: 2; }
    .product-row.reverse .p-img-2 { grid-row: 3; }
    .product-row.reverse .p-img-3 { grid-row: 4; }
    .product-row.reverse .p-img-4 { grid-row: 5; }
}
/* =========================================
   CHOOSE A PRODUCT SECTION
========================================= */

.products-section {
    width: 100%;
    max-width: 1800px;
    margin: 0 auto;
    padding: 55px 25px;
    box-sizing: border-box;
    background: #ffffff;
    font-family: Arial, Helvetica, sans-serif;
}

.products-header {
    width: 100%;
    text-align: center;
    margin-bottom: 65px;
}

.products-header h1 {
    margin: 0 0 28px 0;
    font-size: 48px;
    font-weight: 700;
    color: #000000;
}

.products-header p {
    max-width: 1500px;
    margin: 0 auto;
    color: #777777;
    font-size: 20px;
    line-height: 1.6;
}


/* ROW WRAPPER - title/button LEFT, 3 small + 1 big image */

.product-row {
    width: 100%;

    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1.4fr;
    grid-template-rows: auto 1fr;

    gap: 20px;

    padding: 35px 0 50px;
    margin-bottom: 35px;

    border-bottom: 6px solid #d4d4d4;

    box-sizing: border-box;
}

.product-row-header {
    grid-column: 1 / 4;
    grid-row: 1;

    display: flex;
    align-items: flex-end;
    justify-content: space-between;

    gap: 20px;
}

.product-title h2 {
    margin: 0 0 10px;
    font-size: 32px;
    font-weight: 700;
    color: #000000;
}

.product-title p {
    margin: 0;
    font-size: 17px;
    color: #666666;
}

/* GALLERY BUTTON */

.gallery-btn a {
    display: inline-block;

    padding: 14px 30px;

    background: #1256cc;
    color: #ffffff;

    font-size: 16px;
    font-weight: 700;

    text-decoration: none;
    border-radius: 8px;

    white-space: nowrap;
}

.gallery-btn a:hover {
    background: #0d3f9c;
}

/* IMAGES */

.product-img {
    width: 100%;
    height: 100%;

    border-radius: 12px;
    overflow: hidden;
    background: #ffffff;
    border: 1px solid #ebebeb;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.04);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
    box-sizing: border-box;
}

.product-img img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    display: block;
    object-fit: contain !important;
    margin: auto;
    border-radius: 6px;
}

.p-img-1 { grid-column: 1; grid-row: 2; height: 300px; }
.p-img-2 { grid-column: 2; grid-row: 2; height: 300px; }
.p-img-3 { grid-column: 3; grid-row: 2; height: 300px; }

.p-img-4 {
    grid-column: 4;
    grid-row: 1 / 3;
}


/* =========================================
   PRODUCT ROW - REVERSE (big image LEFT)
========================================= */

.product-row.reverse {
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
}

.product-row.reverse .product-row-header {
    grid-column: 2 / 5;
    grid-row: 1;
}

.product-row.reverse .p-img-1 {
    grid-column: 1;
    grid-row: 1 / 3;
}

.product-row.reverse .p-img-2 {
    grid-column: 2;
    grid-row: 2;
    height: 300px;
}

.product-row.reverse .p-img-3 {
    grid-column: 3;
    grid-row: 2;
    height: 300px;
}

.product-row.reverse .p-img-4 {
    grid-column: 4;
    grid-row: 2;
    height: 300px;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 900px) {

    .product-row {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto auto auto;
    }

    .product-row-header {
        grid-column: 1 / 3;
        grid-row: 1;

        flex-direction: column;
        align-items: flex-start;
    }

    .p-img-1 { grid-column: 1; grid-row: 2; height: 220px; }
    .p-img-2 { grid-column: 2; grid-row: 2; height: 220px; }
    .p-img-3 { grid-column: 1; grid-row: 3; height: 220px; }
    .p-img-4 { grid-column: 2; grid-row: 3; height: 220px; }

    .product-row.reverse {
        grid-template-columns: 1fr 1fr;
    }

    .product-row.reverse .product-row-header {
        grid-column: 1 / 3;
        grid-row: 1;
    }

    .product-row.reverse .p-img-1 {
        grid-column: 1 / 3;
        grid-row: 2;
        height: 220px;
    }

    .product-row.reverse .p-img-2 {
        grid-column: 1;
        grid-row: 3;
        height: 220px;
    }

    .product-row.reverse .p-img-3 {
        grid-column: 2;
        grid-row: 3;
        height: 220px;
    }

    .product-row.reverse .p-img-4 {
        grid-column: 1 / 3;
        grid-row: 4;
        height: 220px;
    }
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 550px) {

    .products-header h1 {
        font-size: 30px;
    }

    .products-header p {
        font-size: 16px;
    }

    .product-row,
    .product-row.reverse {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto auto auto auto;
    }

    .product-row-header,
    .product-row.reverse .product-row-header {
        grid-column: 1;
        grid-row: 1;
        height: auto;
    }

    .p-img-1, .product-row.reverse .p-img-1 { grid-column: 1; grid-row: 2; height: 260px; }
    .p-img-2, .product-row.reverse .p-img-2 { grid-column: 1; grid-row: 3; height: 260px; }
    .p-img-3, .product-row.reverse .p-img-3 { grid-column: 1; grid-row: 4; height: 260px; }
    .p-img-4, .product-row.reverse .p-img-4 { grid-column: 1; grid-row: 5; height: 260px; }
}
/* =========================================
   CREATE MARVELOUS DESIGNS SECTION
========================================= */

.design-system-section {
    width: 100%;
    max-width: 1800px;
    margin: 0 auto;
    padding: 55px 25px;
    box-sizing: border-box;
    background: #ffffff;
    font-family: Arial, Helvetica, sans-serif;
}

.design-system-header {
    width: 100%;
    text-align: center;
    margin-bottom: 65px;
}

.design-system-header h1 {
    margin: 0 0 28px 0;
    font-size: 40px;
    font-weight: 700;
    color: #000000;
}

.design-system-header p {
    max-width: 1500px;
    margin: 0 auto;
    color: #777777;
    font-size: 20px;
    line-height: 1.6;
}


/* ================= TEMPLATES ROW ================= */

.design-row {
    width: 100%;

    display: grid;
    grid-template-columns: 1fr 1.3fr;

    gap: 55px;

    align-items: end;

    padding: 35px 0 50px;

    box-sizing: border-box;
}

.design-content h2 {
    margin: 0 0 20px;
    font-size: 30px;
    font-weight: 700;
    color: #000000;
}

.design-content p {
    margin: 0;
    font-size: 17px;
    line-height: 1.7;
    color: #666666;
}

.design-image {
    width: 100%;
    height: 460px;

    border-radius: 12px;
    overflow: hidden;
}

.design-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 900px) {

    .design-row {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .design-image {
        height: 320px;
        order: -1;
    }
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 550px) {

    .design-system-header h1 {
        font-size: 28px;
    }

    .design-system-header p {
        font-size: 16px;
    }

    .design-content h2 {
        font-size: 24px;
    }

    .design-image {
        height: 240px;
    }
}
/* =========================================
   DESIGN ROW - REVERSE (image LEFT, text RIGHT)
========================================= */

.design-row.reverse {
    grid-template-columns: 1.3fr 1fr;
}

.design-row.reverse .design-image {
    order: -1;
}

@media (max-width: 900px) {

    .design-row.reverse {
        grid-template-columns: 1fr;
    }

    .design-row.reverse .design-image {
        order: -1;
    }
}
/* =========================================
   SHOWCASE SECTION
========================================= */

.showcase-section {
    width: 100%;
    max-width: 1800px;
    margin: 0 auto;
    padding: 55px 25px;
    box-sizing: border-box;
    background: #ffffff;
    font-family: Arial, Helvetica, sans-serif;
}

.showcase-header {
    width: 100%;
    text-align: center;
    margin-bottom: 35px;
}

.showcase-header h1 {
    margin: 0 0 12px 0;
    font-size: 36px;
    font-weight: 700;
    color: #000000;
}

.showcase-header p {
    margin: 0;
    color: #777777;
    font-size: 18px;
}


/* GRID */

.showcase-grid {
    width: 100%;

    display: grid;
    grid-template-columns: 1.4fr 1.4fr 1fr;
    grid-template-rows: 1fr 1fr;

    gap: 15px;
}

.showcase-img {
    width: 100%;
    height: 100%;

    overflow: hidden;
}

.showcase-img img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.showcase-img.big {
    grid-row: 1 / 3;
    height: 640px;
}

.showcase-img.small {
    height: 310px;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 900px) {

    .showcase-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto auto auto;
    }

    .showcase-img.big {
        grid-column: span 2;
        grid-row: auto;
        height: 400px;
    }

    .showcase-img.small {
        height: 280px;
    }
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 550px) {

    .showcase-header h1 {
        font-size: 26px;
    }

    .showcase-header p {
        font-size: 16px;
    }

    .showcase-grid {
        grid-template-columns: 1fr;
    }

    .showcase-img.big {
        grid-column: 1;
        height: 300px;
    }

    .showcase-img.small {
        height: 260px;
    }
}

/* =========================================
   CTA BANNER - VISIT ALPHA DIGITIZERS
========================================= */

.cta-banner {
    width: 100%;
    min-height: 320px;

    position: relative;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 40px 20px;
    box-sizing: border-box;
}

.cta-banner::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
}

.cta-banner-content {
    position: relative;
    z-index: 2;

    max-width: 900px;
    text-align: center;
    color: #ffffff;
}

.cta-banner-content h1 {
    margin: 0 0 15px;
    font-size: 40px;
    font-weight: 700;
    color: #ffffff;
}

.cta-banner-content > p {
    margin: 0 0 20px;
    font-size: 18px;
    color: #ffffff;
}

.cta-banner-text p {
    margin: 0 0 6px;
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
}

@media (max-width: 768px) {

    .cta-banner {
        min-height: 260px;
        padding: 30px 15px;
    }

    .cta-banner-content h1 {
        font-size: 26px;
    }

    .cta-banner-content > p,
    .cta-banner-text p {
        font-size: 15px;
    }
}

/* ================================
   FOOTER
================================ */

.site-footer {
    background: #293258;
    color: #ffffff;
    width: 100%;
    margin-top: 0;
}

.footer-container {
    max-width: 1200px;
    margin: auto;
    padding: 55px 30px 40px;

    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr 1.2fr;
    gap: 55px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-logo {
    width: 180px;
    max-width: 100%;
    height: auto;
    margin-bottom: 25px;
}

.footer-column h3 {
    font-size: 21px;
    margin: 5px 0 25px;
    font-weight: 700;
}

.footer-column h3 i {
    color: #b85b3e;
    margin-right: 10px;
}

.footer-column > a {
    display: block;
    color: #ffffff;
    text-decoration: none;
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 16px;
    transition: 0.2s;
}

.footer-column > a:hover {
    color: #ff4b3e;
    padding-left: 5px;
}

.newsletter p {
    font-size: 17px;
    margin-bottom: 25px;
}

.newsletter form {
    width: 100%;
}

.newsletter input {
    width: 100%;
    height: 50px;
    border: none;
    outline: none;
    border-radius: 30px;
    padding: 0 20px;
    font-size: 16px;
    box-sizing: border-box;
    margin-bottom: 12px;
}

.newsletter button {
    width: 100%;
    height: 50px;
    border: none;
    border-radius: 30px;
    background: #e00000;
    color: #ffffff;
    font-size: 17px;
    font-weight: 700;
    cursor: pointer;
    transition: 0.3s;
}

.newsletter button:hover {
    background: #b50000;
}

/* Social Icons */

.social-icons {
    display: flex;
    gap: 10px;
}

.social-icons a {
    width: 40px;
    height: 40px;
    background: #ffffff;
    color: #111111;
    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    text-decoration: none;
    font-size: 18px;

    transition: 0.3s;
}

.social-icons a:hover {
    background: #e00000;
    color: #ffffff;
    transform: translateY(-3px);
}

/* Bottom */

.footer-bottom {
    background: #000000;
    color: #ffffff;
    text-align: center;
    padding: 18px 15px;
    font-size: 17px;
    font-weight: 500;
}


/* ================================
   MOBILE
================================ */

@media (max-width: 768px) {

    .footer-container {
        grid-template-columns: 1fr;
        gap: 35px;
        padding: 40px 25px;
    }

    .footer-brand {
        align-items: center;
        text-align: center;
    }

    .footer-logo {
        width: 230px;
    }

    .footer-column {
        text-align: left;
    }

    .footer-column h3 {
        font-size: 20px;
    }

    .footer-column > a {
        font-size: 16px;
    }

    .newsletter input,
    .newsletter button {
        width: 100%;
    }

    .footer-bottom {
        font-size: 14px;
    }
}

.main-nav a.active {
    color: #e00000 !important;
}