@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%;
}

body {
    font-family: "Manrope", sans-serif;
    background: #ffffff;
    color: #111111;
}

a {
    text-decoration: none;
}


/* =========================================================
   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/5.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;
    }

}























/* =========================================================
   CONTACT SECTION
========================================================= */

.contact-section {
    position: relative;

    width: 100%;

    padding: 100px 40px;

    background: #f8f9fb;

    overflow: hidden;
}


/* =========================================================
   BACKGROUND DECORATION
========================================================= */

.contact-section::before {
    content: "";

    position: absolute;

    width: 520px;
    height: 520px;

    top: -330px;
    right: -180px;

    border: 1px solid rgba(240, 136, 37, 0.12);

    border-radius: 50%;

    pointer-events: none;
}


.contact-section::after {
    content: "";

    position: absolute;

    width: 300px;
    height: 300px;

    bottom: -190px;
    left: -170px;

    background: rgba(240, 136, 37, 0.035);

    border-radius: 50%;

    pointer-events: none;
}


/* =========================================================
   CONTAINER
========================================================= */

.contact-container {
    position: relative;

    z-index: 2;

    width: 100%;
    max-width: 1250px;

    margin: 0 auto;

    display: grid;

    grid-template-columns: 1fr 0.9fr;

    gap: 90px;

    align-items: start;
}


/* =========================================================
   LEFT SIDE
========================================================= */

.contact-info {
    padding-top: 10px;
}


/* =========================================================
   SECTION LABEL
========================================================= */

.contact-label {
    display: inline-block;

    margin-bottom: 15px;

    color: #e63946;

    font-size: 13px;
    font-weight: 800;

    text-transform: uppercase;

    letter-spacing: 2px;
}


/* =========================================================
   MAIN HEADING
========================================================= */

.contact-info h2 {
    position: relative;

    margin: 0;

    padding-bottom: 20px;

    color: #243b5d;

    font-size: 48px;
    font-weight: 800;

    line-height: 1.15;
}


.contact-info h2 span {
    color: #e63946;
}


.contact-info h2::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: 0;

    width: 55px;
    height: 3px;

    background: #e63946;
}


/* =========================================================
   INTRO
========================================================= */

.contact-intro {
    max-width: 550px;

    margin: 25px 0 40px;

    color: #687586;

    font-size: 15px;
    font-weight: 500;

    line-height: 1.8;
}


/* =========================================================
   UNITS
========================================================= */

.contact-units {
    display: flex;

    flex-direction: column;

    gap: 25px;
}


/* =========================================================
   SINGLE UNIT
========================================================= */

.contact-unit {
    display: flex;

    align-items: flex-start;

    gap: 18px;
}


/* =========================================================
   UNIT ICON
========================================================= */

.unit-icon {
    flex-shrink: 0;

    width: 40px;
    height: 40px;

    display: flex;

    align-items: center;
    justify-content: center;

    background: rgba(240, 136, 37, 0.09);

    border: 1px solid rgba(240, 136, 37, 0.18);

    border-radius: 50%;
}


.unit-icon svg {
    width: 18px;
    height: 18px;

    fill: none;

    stroke: #e63946;

    stroke-width: 1.7;

    stroke-linecap: round;
}


/* =========================================================
   UNIT CONTENT
========================================================= */

.unit-content {
    flex: 1;
}


.unit-content h4 {
    margin: 0 0 5px;

    color: #243b5d;

    font-size: 15px;
    font-weight: 800;
}


.unit-content p {
    max-width: 540px;

    margin: 0;

    color: #687586;

    font-size: 13px;
    font-weight: 500;

    line-height: 1.7;
}


/* =========================================================
   CONTACT DETAILS
========================================================= */

.contact-details {
    display: flex;

    flex-wrap: wrap;

    gap: 15px 28px;

    margin-top: 38px;

    padding-top: 28px;

    border-top: 1px solid #e1e5ea;
}


/* =========================================================
   CONTACT DETAIL
========================================================= */

.contact-detail {
    display: inline-flex;

    align-items: center;

    gap: 10px;

    color: #243b5d;

    font-size: 13px;
    font-weight: 700;

    text-decoration: none;

    transition: color 0.3s ease;
}


.contact-detail:hover {
    color: #e63946;
}


/* =========================================================
   DETAIL ICON
========================================================= */

.detail-icon {
    width: 32px;
    height: 32px;

    display: flex;

    align-items: center;
    justify-content: center;

    background: #ffffff;

    border: 1px solid #e3e7eb;

    border-radius: 50%;
}


.detail-icon svg {
    width: 15px;
    height: 15px;

    fill: none;

    stroke: #e63946;

    stroke-width: 1.7;

    stroke-linecap: round;

    stroke-linejoin: round;
}


/* =========================================================
   FORM WRAPPER
========================================================= */

.contact-form-wrapper {
    position: relative;

    padding: 42px;

    background: #ffffff;

    border: 1px solid #e4e7eb;

    box-shadow:
        0 20px 60px rgba(36, 59, 93, 0.08);
}


/* =========================================================
   FORM TOP ACCENT
========================================================= */

.contact-form-wrapper::before {
    content: "";

    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 4px;

    background: #e63946;
}


/* =========================================================
   FORM HEADER
========================================================= */

.form-header {
    margin-bottom: 30px;
}


.form-header > span {
    display: block;

    margin-bottom: 10px;

    color: #e63946;

    font-size: 11px;
    font-weight: 800;

    text-transform: uppercase;

    letter-spacing: 1.8px;
}


.form-header h3 {
    margin: 0 0 12px;

    color: #243b5d;

    font-size: 31px;
    font-weight: 800;

    line-height: 1.2;
}


.form-header h3 strong {
    color: #e63946;

    font-weight: 800;
}


.form-header p {
    margin: 0;

    color: #7a8593;

    font-size: 13px;

    line-height: 1.7;
}


/* =========================================================
   FORM
========================================================= */

.contact-form {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 22px 18px;
}


/* =========================================================
   FORM GROUP
========================================================= */

.form-group {
    display: flex;

    flex-direction: column;
}


.form-group:nth-child(3),
.form-group:nth-child(4) {
    grid-column: 1 / -1;
}


/* =========================================================
   LABEL
========================================================= */

.form-group label {
    margin-bottom: 8px;

    color: #243b5d;

    font-size: 12px;
    font-weight: 800;

    letter-spacing: 0.2px;
}


/* =========================================================
   INPUT / SELECT / TEXTAREA
========================================================= */

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;

    box-sizing: border-box;

    border: 1px solid #dfe3e8;

    border-radius: 2px;

    outline: none;

    background: #ffffff;

    color: #243b5d;

    font-family: inherit;

    font-size: 13px;
    font-weight: 500;

    transition:
        border-color 0.3s ease,
        box-shadow 0.3s ease,
        background 0.3s ease;
}


.form-group input,
.form-group select {
    height: 52px;

    padding: 0 16px;
}


.form-group textarea {
    min-height: 125px;

    padding: 15px 16px;

    resize: vertical;

    line-height: 1.6;
}


/* =========================================================
   PLACEHOLDER
========================================================= */

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #a3acb7;

    font-weight: 400;
}


/* =========================================================
   SELECT
========================================================= */

.form-group select {
    cursor: pointer;

    appearance: none;

    padding-right: 45px;

    background-image:
        linear-gradient(45deg, transparent 50%, #e63946 50%),
        linear-gradient(135deg, #e63946 50%, transparent 50%);

    background-position:
        calc(100% - 20px) 22px,
        calc(100% - 14px) 22px;

    background-size:
        6px 6px,
        6px 6px;

    background-repeat: no-repeat;
}


.form-group select:invalid {
    color: #a3acb7;
}


.form-group select option {
    color: #243b5d;

    background: #ffffff;
}


/* =========================================================
   FOCUS
========================================================= */

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #e63946;

    box-shadow:
        0 0 0 3px rgba(240, 136, 37, 0.09);
}


/* =========================================================
   SUBMIT BUTTON
========================================================= */

.contact-submit {
    grid-column: 1 / -1;

    width: 100%;

    height: 55px;

    display: flex;

    align-items: center;
    justify-content: space-between;

    padding: 0 20px;

    border: 1px solid #e63946;

    border-radius: 2px;

    background: #e63946;

    color: #ffffff;

    font-family: inherit;

    font-size: 13px;
    font-weight: 800;

    cursor: pointer;

    transition:
        background 0.3s ease,
        color 0.3s ease,
        border-color 0.3s ease;
}


.contact-submit:hover {
    background: #243b5d;

    border-color: #243b5d;
}


.submit-arrow {
    font-size: 19px;

    transition: transform 0.3s ease;
}


.contact-submit:hover .submit-arrow {
    transform: translate(4px, -4px);
}


/* =========================================================
   LARGE TABLET
========================================================= */

@media (max-width: 1050px) {

    .contact-section {
        padding: 85px 30px;
    }

    .contact-container {
        grid-template-columns: 1fr;

        gap: 60px;

        max-width: 850px;
    }

    .contact-info h2 {
        font-size: 44px;
    }

    .contact-intro {
        max-width: 700px;
    }

    .contact-form-wrapper {
        padding: 40px;
    }

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 700px) {

    .contact-section {
        padding: 70px 22px;
    }

    .contact-info h2 {
        font-size: 38px;
    }

    .contact-units {
        gap: 22px;
    }

    .contact-form-wrapper {
        padding: 32px 25px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {

    .contact-section {
        padding: 60px 18px;
    }

    .contact-info {
        padding-top: 0;
    }

    .contact-label {
        font-size: 11px;

        letter-spacing: 1.7px;
    }

    .contact-info h2 {
        font-size: 32px;
    }

    .contact-intro {
        margin: 20px 0 32px;

        font-size: 14px;
    }

    .contact-unit {
        gap: 13px;
    }

    .unit-icon {
        width: 36px;
        height: 36px;
    }

    .unit-icon svg {
        width: 16px;
        height: 16px;
    }

    .unit-content p {
        font-size: 12px;

        line-height: 1.65;
    }

    .contact-details {
        flex-direction: column;

        align-items: flex-start;

        gap: 13px;

        margin-top: 30px;

        padding-top: 23px;
    }

    .contact-form-wrapper {
        padding: 30px 20px;
    }

    .form-header h3 {
        font-size: 27px;
    }

    .contact-form {
        grid-template-columns: 1fr;

        gap: 19px;
    }

    .form-group:nth-child(3),
    .form-group:nth-child(4) {
        grid-column: auto;
    }

    .contact-submit {
        grid-column: auto;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 400px) {

    .contact-section {
        padding: 55px 15px;
    }

    .contact-info h2 {
        font-size: 29px;
    }

    .contact-form-wrapper {
        padding: 27px 17px;
    }

    .form-header h3 {
        font-size: 25px;
    }

    .form-group input,
    .form-group select {
        height: 50px;
    }

    .form-group textarea {
        min-height: 115px;
    }

}





























/* =====================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: #f08825;

    font-size: 19px;

    transition: transform 0.3s ease;
}


.footer-about-link:hover {
    color: #f08825;
}


.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: #f08825;
}


/* =========================================================
   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: #f08825;
    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: #f08825;

    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: #f08825;
}


/* =========================================================
   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: #f08825;

    font-size: 17px;

    transition: transform 0.3s ease;
}


.footer-contact-button:hover {
    background: #f08825;
    border-color: #f08825;

    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: #f08825;
}


/* =========================================================
   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;
    }

}

