@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&display=swap');


/* =========================================================
   GLOBAL
   ========================================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    width: 100%;
    min-height: 100%;
      scroll-behavior: smooth;
}

body {
    font-family: "Manrope", sans-serif;
    background: #ffffff;
    color: #111111;
}

a {
    text-decoration: none;
}

#industries,
#services {
    scroll-margin-top: 30px;
}
/* =========================================================
   HERO SECTION
   ========================================================= */

.hero-section {
    position: relative;
    width: 100%;
    min-height: 650px;
    overflow: visible;
}


/* =========================================================
   NAVBAR
   ========================================================= */

.navbar {
    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 105px;

    display: flex;
    align-items: center;

    padding: 0 40px;

    background: transparent;

    border-bottom: 1px solid rgba(255, 255, 255, 0.20);

    z-index: 1000;
}


/* =========================================================
   LOGO
   ========================================================= */

.logo-container {
    width: 160px;
    height: 95px;

    display: flex;
    align-items: center;

    flex-shrink: 0;
}

.logo-container a {
    display: flex;
    align-items: center;

    width: 100%;
    height: 100%;
}

.logo-image {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: contain;
}


/* =========================================================
   NAV RIGHT
   ========================================================= */

.nav-right {
    display: flex;
    align-items: center;

    margin-left: auto;

    gap: 55px;

    flex-shrink: 0;
}


/* =========================================================
   NAVIGATION LINKS
   ========================================================= */

.nav-links {
    display: flex;
    align-items: center;

    gap: 32px;
}

.nav-links>a,
.products>a {
    display: flex;
    align-items: center;

    color: #ffffff;

    text-decoration: none;

    font-size: 16px;
    font-weight: 500;

    white-space: nowrap;

    transition:
        color 0.2s ease,
        opacity 0.2s ease;
}

.nav-links>a:hover,
.products>a:hover {
    color: #ffffff;
    opacity: 0.75;
}


/* =========================================================
   PRODUCTS
   ========================================================= */

.products {
    position: relative;
}

.products>a {
    gap: 7px;
}


/* =========================================================
   DROPDOWN ARROW
   ========================================================= */

.dropdown-arrow {
    width: 14px;
    height: 14px;

    display: flex;
    align-items: center;
    justify-content: center;

    flex-shrink: 0;
}

.imgss {
    width: 12px;
    height: 12px;

    display: block;

    object-fit: contain;

    filter: brightness(0) invert(1);

    transition: transform 0.25s ease;
}

.products:hover .imgss {
    transform: rotate(180deg);
}


/* =========================================================
   PRODUCTS DROPDOWN
   ========================================================= */

.dropdown {
    position: absolute;

    top: calc(100% + 12px);
    left: 50%;

    transform: translateX(-50%);

    width: 190px;

    padding: 10px 0;

    background: #ffffff;

    border: 1px solid #eeeeee;

    border-radius: 8px;

    box-shadow:
        0 10px 30px rgba(0, 0, 0, 0.12);

    opacity: 0;
    visibility: hidden;
    pointer-events: none;

    transition:
        opacity 0.2s ease,
        visibility 0.2s ease;

    z-index: 1100;
}


/* =========================================================
   DROPDOWN BRIDGE
   ========================================================= */

.products::after {
    content: "";

    position: absolute;

    top: 100%;
    left: 0;

    width: 100%;
    height: 12px;
}


/* =========================================================
   SHOW PRODUCTS DROPDOWN
   ========================================================= */

.products:hover .dropdown {
    opacity: 1;

    visibility: visible;

    pointer-events: auto;
}


/* =========================================================
   CATEGORY
   ========================================================= */

.category {
    position: relative;
}

.category>a {
    width: 100%;

    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 12px 18px;

    color: #222222;

    text-decoration: none;

    font-size: 15px;
    font-weight: 600;

    transition:
        background 0.2s ease,
        color 0.2s ease;
}

.category>a:hover {
    background: #f5f5f5;
}


/* =========================================================
   SUBCATEGORY ARROW
   ========================================================= */

.subcategory-arrow {
    font-size: 20px;

    line-height: 1;

    font-weight: 400;

    transition:
        transform 0.2s ease;
}

.category:hover .subcategory-arrow {
    transform: translateX(3px);
}


/* =========================================================
   SUBCATEGORY DROPDOWN
   ========================================================= */

.sub-dropdown {
    position: absolute;

    top: 0;
    left: calc(100% + 5px);

    width: 190px;

    padding: 10px 0;

    background: #ffffff;

    border: 1px solid #eeeeee;

    border-radius: 8px;

    box-shadow:
        0 10px 30px rgba(0, 0, 0, 0.12);

    opacity: 0;
    visibility: hidden;
    pointer-events: none;

    transition:
        opacity 0.2s ease,
        visibility 0.2s ease;

    z-index: 1200;
}


/* =========================================================
   SUBCATEGORY BRIDGE
   ========================================================= */

.category::after {
    content: "";

    position: absolute;

    top: 0;
    left: 100%;

    width: 5px;
    height: 100%;
}


/* =========================================================
   SHOW SUBCATEGORY
   ========================================================= */

.category:hover .sub-dropdown {
    opacity: 1;

    visibility: visible;

    pointer-events: auto;
}


/* =========================================================
   SUBCATEGORY LINKS
   ========================================================= */

.sub-dropdown a {
    display: block;

    width: 100%;

    padding: 12px 18px;

    color: #222222;

    text-decoration: none;

    font-size: 15px;
    font-weight: 600;

    transition:
        background 0.2s ease,
        color 0.2s ease;
}

.sub-dropdown a:hover {
    background: #f5f5f5;

    color: #111111;
}


/* =========================================================
   EMAIL BUTTON
   ========================================================= */

.email-btn {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    min-width: 120px;

    padding: 13px 30px;

    background: #003157;

    color: #ffffff;

    border-radius: 30px;

    text-decoration: none;

    font-size: 15px;
    font-weight: 600;

    white-space: nowrap;

    transition:
        background 0.2s ease,
        transform 0.2s ease;
}

.email-btn:hover {
    background: #d9273b;

    color: #ffffff;

    transform: translateY(-1px);
}


/* =========================================================
   HERO BANNER
   ========================================================= */

.hero-banner {
    position: relative;

    width: 100%;
    min-height: 650px;

    display: flex;
    align-items: center;
    justify-content: center;

    background-image: url("../images/4.jpg");

    background-size: cover;
    background-position: center;

    overflow: hidden;
}


/* =========================================================
   HERO OVERLAY
   ========================================================= */

.hero-overlay {
    position: absolute;

    inset: 0;

    background: rgba(0, 39, 68, 0.62);

    z-index: 1;
}


/* =========================================================
   HERO CONTENT
   ========================================================= */

.hero-content {
    position: relative;

    z-index: 2;

    width: 100%;
    max-width: 1200px;

    padding: 130px 40px 60px;

    color: #ffffff;
}

.hero-content h1 {
    max-width: 700px;

    font-size: 56px;

    line-height: 1.1;

    font-weight: 800;

    margin-bottom: 20px;
}

.hero-content p {
    max-width: 600px;

    font-size: 20px;

    line-height: 1.6;

    font-weight: 500;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 1200px) {

    .navbar {
        padding: 0 25px;
    }

    .nav-right {
        gap: 30px;
    }

    .nav-links {
        gap: 22px;
    }

    .nav-links>a,
    .products>a {
        font-size: 14px;
    }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 900px) {

    .hero-section {
        min-height: 550px;
    }

    .navbar {
        height: 85px;

        padding: 0 20px;
    }

    .logo-container {
        width: 130px;
        height: 75px;
    }

    .nav-right {
        display: none;
    }

    .hero-banner {
        min-height: 550px;
    }

    .hero-content {
        padding: 120px 25px 50px;
    }

    .hero-content h1 {
        font-size: 42px;
    }

    .hero-content p {
        font-size: 17px;
    }

}


/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 600px) {

    .navbar {
        height: 75px;

        padding: 0 15px;
    }

    .logo-container {
        width: 115px;
        height: 65px;
    }

    .hero-banner {
        min-height: 500px;
    }

    .hero-content {
        padding: 110px 20px 40px;
    }

    .hero-content h1 {
        font-size: 34px;
    }

    .hero-content p {
        font-size: 16px;
    }

}




/* =========================================================
   TACTICAL SOLUTIONS SECTION
   ========================================================= */

.tactical-section {
    width: 100%;

    padding: 110px 40px;

    background: #ffffff;
}


/* =========================================================
   CONTAINER
   ========================================================= */

.tactical-container {
    width: 100%;
    max-width: 1250px;

    margin: 0 auto;

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 100px;

    align-items: center;
}


/* =========================================================
   LEFT SIDE
   ========================================================= */

.tactical-left {
    max-width: 600px;
}


/* Small Heading */

.tactical-label {
    display: inline-block;

    margin-bottom: 18px;

    color: #ed3347;

    font-size: 16px;

    font-weight: 700;

    letter-spacing: 0.5px;

    text-transform: uppercase;
}


/* Main Heading */

.tactical-left h2 {
    margin: 0 0 25px;

    color: #003157;

    font-size: 48px;

    line-height: 1.15;

    font-weight: 800;
}


/* Intro Text */

.tactical-intro {
    margin: 0;

    color: #555555;

    font-size: 18px;

    line-height: 1.8;

    font-weight: 500;
}


/* =========================================================
   RIGHT SIDE
   ========================================================= */

.tactical-right {
    position: relative;

    padding-left: 35px;

    border-left: 4px solid #ed3347;
}


.tactical-right p {
    margin: 0 0 25px;

    color: #555555;

    font-size: 17px;

    line-height: 1.9;

    font-weight: 500;
}


.tactical-right p:last-child {
    margin-bottom: 0;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 900px) {

    .tactical-section {
        padding: 80px 25px;
    }

    .tactical-container {
        grid-template-columns: 1fr;

        gap: 50px;
    }

    .tactical-left {
        max-width: 100%;
    }

    .tactical-left h2 {
        font-size: 40px;
    }

    .tactical-right {
        padding-left: 25px;
    }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 600px) {

    .tactical-section {
        padding: 65px 20px;
    }

    .tactical-container {
        gap: 40px;
    }

    .tactical-label {
        font-size: 14px;

        margin-bottom: 14px;
    }

    .tactical-left h2 {
        font-size: 32px;

        line-height: 1.2;

        margin-bottom: 20px;
    }

    .tactical-intro {
        font-size: 16px;

        line-height: 1.7;
    }

    .tactical-right {
        padding-left: 20px;

        border-left-width: 3px;
    }

    .tactical-right p {
        font-size: 16px;

        line-height: 1.75;
    }

}










/* =========================================================
   SOME COOL FACTS SECTION
========================================================= */

.facts-section {
    position: relative;

    width: 100%;

    padding: 90px 40px;

    background: #f8f9fb;

    overflow: hidden;
}

.somess {
    text-align: center;
    font-size: 12px;
    padding: bottom 10px;
}

/* =========================================================
   BACKGROUND DECORATION
========================================================= */

.facts-section::before {
    content: "";

    position: absolute;

    width: 450px;
    height: 450px;

    top: -300px;
    right: -150px;

    border: 1px solid rgba(240, 136, 37, 0.15);

    border-radius: 50%;

    pointer-events: none;
}


.facts-section::after {
    content: "";

    position: absolute;

    width: 300px;
    height: 300px;

    bottom: -200px;
    left: -150px;

    background: rgba(240, 136, 37, 0.04);

    border-radius: 50%;

    pointer-events: none;
}


/* =========================================================
   CONTAINER
========================================================= */

.facts-container {
    position: relative;

    z-index: 2;

    width: 100%;
    max-width: 1250px;

    margin: 0 auto;
}


/* =========================================================
   HEADING
========================================================= */

.facts-heading {
    display: flex;

    flex-direction: column;

    align-items: center;
    justify-content: center;

    gap: 8px;

    margin-bottom: 65px;

    text-align: center;
}


/* =========================================================
   SOME COOL FACTS
========================================================= */

.facts-heading>span {
    display: block;

    color: #e63946;
    
    font-size: 13px;
    font-weight: 800;

    line-height: 1;

    text-transform: uppercase;

    letter-spacing: 2px;

    white-space: nowrap;
}


/* =========================================================
   MAIN HEADING
========================================================= */

.facts-heading h2 {
    position: relative;

    margin: 0;

    padding-bottom: 18px;

    color: #243b5d;

    font-size: 42px;
    font-weight: 800;

    line-height: 1.2;

    white-space: nowrap;
}


.facts-heading h2 strong {
    color: #e63946;

    font-weight: 800;
}


/* =========================================================
   ORANGE UNDERLINE
========================================================= */

.facts-heading h2::after {
    content: "";

    position: absolute;

    left: 50%;
    bottom: 0;

    width: 55px;
    height: 3px;

    background: #e63946;

    transform: translateX(-50%);
}



/* =========================================================
   FACTS GRID
========================================================= */

.facts-grid {
    display: grid;

    grid-template-columns: repeat(5, 1fr);

    width: 100%;

    border-top: 1px solid #e2e6eb;
    border-bottom: 1px solid #e2e6eb;
}


/* =========================================================
   FACT ITEM
========================================================= */

.fact-item {
    position: relative;

    min-height: 180px;

    padding: 30px 20px;

    display: flex;

    flex-direction: column;

    align-items: center;
    justify-content: center;

    text-align: center;

    background: transparent;

    transition:
        background 0.35s ease,
        transform 0.35s ease;
}


/* =========================================================
   DIVIDER
========================================================= */

.fact-item:not(:last-child)::after {
    content: "";

    position: absolute;

    top: 30px;
    right: 0;

    width: 1px;
    height: calc(100% - 60px);

    background: #e2e6eb;
}


/* =========================================================
   HOVER
========================================================= */

.fact-item:hover {
    background: #ffffff;

    transform: translateY(-5px);
}


/* =========================================================
   ORANGE BOTTOM LINE
========================================================= */

.fact-item::before {
    content: "";

    position: absolute;

    left: 50%;
    bottom: 0;

    width: 0;
    height: 3px;

    background: #e63946;

    transform: translateX(-50%);

    transition: width 0.35s ease;
}


.fact-item:hover::before {
    width: 45px;
}


/* =========================================================
   NUMBER
========================================================= */

.fact-number {
    display: flex;

    align-items: baseline;

    margin-bottom: 14px;

    color: #243b5d;

    font-size: 46px;
    font-weight: 800;

    line-height: 1;

    letter-spacing: -1px;
}


/* =========================================================
   COUNTER
========================================================= */

.fact-number .counter {
    display: inline-block;

    min-width: 1ch;

    color: #243b5d;

    font-variant-numeric: tabular-nums;
}


/* =========================================================
   PLUS
========================================================= */

.fact-number>span:last-child {
    margin-left: 3px;

    color: #e63946;

    font-size: 30px;
    font-weight: 800;
}


/* =========================================================
   DESCRIPTION
========================================================= */

.fact-item p {
    max-width: 175px;

    margin: 0;

    color: #687586;

    font-size: 13px;
    font-weight: 600;

    line-height: 1.55;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1050px) {

    .facts-section {
        padding: 80px 30px;
    }

    .facts-heading h2 {
        font-size: 36px;
    }

    .facts-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .fact-item:nth-child(3)::after {
        display: none;
    }

    .fact-item:nth-child(n + 4) {
        border-top: 1px solid #e2e6eb;
    }

}


/* =========================================================
   SMALL TABLET
========================================================= */

@media (max-width: 800px) {

    .facts-heading {
        flex-wrap: wrap;
    }

    .facts-heading h2 {
        font-size: 34px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 650px) {

    .facts-section {
        padding: 65px 20px;
    }

    .facts-heading {
        flex-direction: column;

        gap: 8px;

        margin-bottom: 45px;
    }

    .facts-heading>span {
        font-size: 11px;

        letter-spacing: 1.7px;
    }

    .facts-heading h2 {
        font-size: 30px;

        line-height: 1.25;

        white-space: normal;
    }

    .facts-heading h2::after {
        width: 48px;
    }

    .facts-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .fact-item {
        min-height: 165px;

        padding: 25px 12px;
    }

    .fact-item:nth-child(2n)::after {
        display: none;
    }

    .fact-item:nth-child(n + 3) {
        border-top: 1px solid #e2e6eb;
    }

    .fact-number {
        font-size: 38px;
    }

    .fact-number>span:last-child {
        font-size: 25px;
    }

    .fact-item p {
        max-width: 145px;

        font-size: 12px;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 430px) {

    .facts-section {
        padding: 55px 18px;
    }

    .facts-heading h2 {
        font-size: 26px;
    }

    .facts-heading>span {
        font-size: 10px;
    }

    .facts-grid {
        grid-template-columns: 1fr;
    }

    .fact-item {
        min-height: 140px;
    }

    .fact-item:not(:first-child) {
        border-top: 1px solid #e2e6eb;
    }

    .fact-item::after {
        display: none !important;
    }

    .fact-number {
        font-size: 36px;
    }

    .fact-number>span:last-child {
        font-size: 23px;
    }

    .fact-item p {
        max-width: 220px;
    }

}


/* =====================FOOOOOOOOOOTTTER=========================== */
/* =====================FOOOOOOOOOOTTTER=========================== */
/* =====================FOOOOOOOOOOTTTER=========================== */
/* =====================FOOOOOOOOOOTTTER=========================== */



/* =========================================================
   FOOTER
========================================================= */

.site-footer {
    position: relative;
    background: #111c2b;
    color: #ffffff;
    overflow: hidden;
}


/* =========================================================
   SUBTLE BACKGROUND DETAIL
========================================================= */

.site-footer::before {
    content: "";
    position: absolute;

    width: 500px;
    height: 500px;

    top: -250px;
    right: -180px;

    border: 1px solid rgba(240, 136, 37, 0.10);
    border-radius: 50%;

    pointer-events: none;
}

.site-footer::after {
    content: "";
    position: absolute;

    width: 300px;
    height: 300px;

    bottom: -180px;
    left: -150px;

    background: rgba(240, 136, 37, 0.035);
    border-radius: 50%;

    pointer-events: none;
}


/* =========================================================
   MAIN FOOTER
========================================================= */

.footer-main {
    position: relative;
    z-index: 1;

    padding: 85px 40px 70px;
}


.footer-container {
    max-width: 1400px;
    margin: 0 auto;

    display: grid;

    grid-template-columns:
        1.45fr
        0.8fr
        1.5fr
        0.8fr;

    gap: 65px;
}


/* =========================================================
   COMPANY
========================================================= */

.footer-company {
    padding-right: 25px;
}


.footer-logo {
    display: inline-flex;
    align-items: center;

    margin-bottom: 28px;
}


.footer-logo img {
    width: 145px;
    height: auto;

    display: block;
}


.footer-description {
    max-width: 390px;

    margin: 0 0 25px;

    color: #aeb8c5;

    font-size: 15px;
    line-height: 1.9;
    font-weight: 400;
}


.footer-about-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;

    color: #ffffff;

    font-size: 14px;
    font-weight: 700;

    text-decoration: none;

    transition: color 0.3s ease;
}


.footer-about-link span {
    color: #e63946;

    font-size: 19px;

    transition: transform 0.3s ease;
}


.footer-about-link:hover {
    color: #e63946;
}


.footer-about-link:hover span {
    transform: translateX(5px);
}


/* =========================================================
   FOOTER HEADINGS
========================================================= */

.footer-menu h3,
.footer-locations h3,
.footer-contact h3 {
    position: relative;

    margin: 7px 0 28px;

    padding-bottom: 15px;

    color: #ffffff;

    font-size: 17px;
    font-weight: 800;

    letter-spacing: 0.2px;
}


.footer-menu h3::after,
.footer-locations h3::after,
.footer-contact h3::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: 0;

    width: 38px;
    height: 2px;

    background: #e63946;
}


/* =========================================================
   SITE MENU
========================================================= */

.footer-menu ul {
    list-style: none;

    margin: 0;
    padding: 0;
}


.footer-menu li {
    margin-bottom: 13px;
}


.footer-menu a {
    position: relative;

    color: #aeb8c5;

    font-size: 14px;
    font-weight: 500;

    text-decoration: none;

    transition:
        color 0.3s ease,
        padding-left 0.3s ease;
}


.footer-menu a::before {
    content: "";

    position: absolute;

    left: -15px;
    top: 50%;

    width: 5px;
    height: 5px;

    background: #e63946;
    border-radius: 50%;

    opacity: 0;

    transform: translateY(-50%);

    transition: opacity 0.3s ease;
}


.footer-menu a:hover {
    color: #ffffff;
    padding-left: 5px;
}


.footer-menu a:hover::before {
    opacity: 1;
}


/* =========================================================
   LOCATIONS
========================================================= */

.footer-location {
    display: flex;
    align-items: flex-start;

    gap: 15px;

    margin-bottom: 27px;
}


.location-number {
    flex-shrink: 0;

    color: #e63946;

    font-size: 12px;
    font-weight: 800;

    letter-spacing: 1px;

    padding-top: 2px;
}


.footer-location h4 {
    margin: 0 0 7px;

    color: #ffffff;

    font-size: 14px;
    font-weight: 800;
}


.footer-location p {
    max-width: 330px;

    margin: 0;

    color: #9faab8;

    font-size: 13px;
    line-height: 1.75;
}


/* =========================================================
   CONTACT
========================================================= */

.contact-label {
    margin: 0 0 8px;

    color: #7f8c9c;

    font-size: 11px;
    font-weight: 700;

    text-transform: uppercase;
    letter-spacing: 1.5px;
}


.footer-email {
    display: inline-block;

    margin-bottom: 30px;

    color: #ffffff;

    font-size: 14px;
    font-weight: 600;

    text-decoration: none;

    transition: color 0.3s ease;
}


.footer-email:hover {
    color: #e63946;
}


/* =========================================================
   CONTACT BUTTON
========================================================= */

.footer-contact-button {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;

    width: 100%;
    max-width: 190px;

    padding: 14px 17px;

    border: 1px solid rgba(240, 136, 37, 0.55);

    color: #ffffff;

    font-size: 13px;
    font-weight: 700;

    text-decoration: none;

    transition:
        background 0.3s ease,
        border-color 0.3s ease,
        color 0.3s ease;
}


.footer-contact-button span {
    color: #e63946;

    font-size: 17px;

    transition: transform 0.3s ease;
}


.footer-contact-button:hover {
    background: #e63946;
    border-color: #e63946;

    color: #111c2b;
}


.footer-contact-button:hover span {
    color: #111c2b;
    transform: translate(3px, -3px);
}


/* =========================================================
   BOTTOM FOOTER
========================================================= */

.footer-bottom {
    position: relative;
    z-index: 2;

    border-top: 1px solid rgba(255, 255, 255, 0.08);

    padding: 20px 40px;
}


.footer-bottom-container {
    max-width: 1400px;
    margin: 0 auto;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 20px;
}


.footer-bottom p {
    margin: 0;

    color: #7f8b99;

    font-size: 12px;
    line-height: 1.6;
}


.footer-bottom a {
    color: #c5ccd5;

    font-weight: 700;

    text-decoration: none;

    transition: color 0.3s ease;
}


.footer-bottom a:hover {
    color: #e63946;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1100px) {

    .footer-container {
        grid-template-columns: 1.3fr 0.8fr 1.3fr;
        gap: 45px;
    }

    .footer-contact {
        grid-column: 1 / -1;

        margin-top: 15px;
    }

    .footer-contact-button {
        max-width: 190px;
    }

}


/* =========================================================
   TABLET / SMALL LAPTOP
========================================================= */

@media (max-width: 800px) {

    .footer-main {
        padding: 65px 30px 50px;
    }

    .footer-container {
        grid-template-columns: 1fr 1fr;
        gap: 50px 35px;
    }

    .footer-company {
        padding-right: 0;
    }

    .footer-locations {
        grid-column: 1 / -1;
    }

    .footer-contact {
        grid-column: auto;
        margin-top: 0;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {

    .footer-main {
        padding: 55px 22px 40px;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 42px;
    }

    .footer-company,
    .footer-locations,
    .footer-contact {
        grid-column: auto;
    }

    .footer-logo img {
        width: 130px;
    }

    .footer-description {
        max-width: 100%;

        font-size: 14px;
        line-height: 1.8;
    }

    .footer-location {
        margin-bottom: 23px;
    }

    .footer-location p {
        max-width: 100%;
    }

    .footer-bottom {
        padding: 18px 22px;
    }

    .footer-bottom-container {
        flex-direction: column;
        align-items: flex-start;

        gap: 6px;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 400px) {

    .footer-main {
        padding-left: 18px;
        padding-right: 18px;
    }

    .footer-bottom {
        padding-left: 18px;
        padding-right: 18px;
    }

    .footer-description {
        font-size: 13px;
    }

    .footer-location {
        gap: 11px;
    }

}

