
:root {

    --primary-blue: #13AFF0;

    --primary-blue-dark: #078AC5;

    --red: #E52B32;

    --dark: #071B33;

    --text: #122238;

    --text-light: #647487;

    --white: #FFFFFF;

    --light-background: #F5F9FC;

    --border: #DDE6ED;

    --container-width: 1200px;

}


/* =========================================================
   RESET
========================================================= */

* {

    margin: 0;

    padding: 0;

    box-sizing: border-box;

}


html {

    scroll-behavior: smooth;

}


body {

    font-family: "Inter", Arial, sans-serif;

    color: var(--text);

    background: var(--white);

    line-height: 1.6;

}


a {

    text-decoration: none;

    color: inherit;

}


img {

    max-width: 100%;

    display: block;

}


button {

    font-family: inherit;

}


/* =========================================================
   CONTAINER
========================================================= */

.container {

    width: min(
        var(--container-width),
        calc(100% - 48px)
    );

    margin-left: auto;

    margin-right: auto;

}


/* =========================================================
   HEADER
========================================================= */

.site-header {

    position: sticky;

    top: 0;

    left: 0;

    right: 0;

    z-index: 1000;

    background: rgba(
        255,
        255,
        255,
        0.97
    );

    border-bottom: 1px solid
        rgba(7, 27, 51, 0.08);

}


/* =========================================================
   HEADER CONTAINER
========================================================= */

.header-container {

    height: 78px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;

}


/* =========================================================
   LOGO
========================================================= */

.logo {

     display: block;

    width: 150px;
    height: auto;

    max-height: 48px;

    object-fit: contain;

}


.logo img {

    width: 190px;

    height: auto;

}

@media (max-width: 900px) {

    .logo {
        width: 135px;
        max-height: 44px;
    }

}

@media (max-width: 600px) {

    .logo {
        width: 125px;
        max-height: 40px;
    }

}

/* =========================================================
   MAIN NAVIGATION
========================================================= */

.main-navigation {

    display: flex;

    align-items: center;

    gap: 26px;

    margin-left: auto;

}


.main-navigation a {

    position: relative;

    padding: 32px 0;

    font-size: 12px;

    font-weight: 700;

    text-transform: uppercase;

    color: var(--dark);

    transition: color 0.2s ease;

}


.main-navigation a:hover {

    color: var(--primary-blue);

}


.main-navigation a.active {

    color: var(--primary-blue);

}


.main-navigation a.active::after {

    content: "";

    position: absolute;

    left: 0;

    right: 0;

    bottom: 0;

    height: 3px;

    background: var(--primary-blue);

}


/* =========================================================
   HEADER RIGHT
========================================================= */

.header-right {

    display: flex;

    align-items: center;

    gap: 20px;

}


.header-phone {

    font-size: 12px;

    font-weight: 700;

    white-space: nowrap;

}


.phone-icon {

    color: var(--primary-blue);

    margin-right: 5px;

}


/* =========================================================
   HEADER BUTTON
========================================================= */

.header-button {

    display: inline-flex;

    align-items: center;

    gap: 16px;

    padding: 14px 18px;

    background: var(--red);

    color: var(--white);

    font-size: 11px;

    font-weight: 800;

    text-transform: uppercase;

    border-radius: 4px;

    transition:
        background 0.2s ease,
        transform 0.2s ease;

}


.header-button:hover {

    background: #C9232A;

    transform: translateY(-1px);

}


/* =========================================================
   MOBILE MENU BUTTON
========================================================= */

.mobile-menu-button {

    display: none;

    border: none;

    background: transparent;

    color: var(--dark);

    font-size: 28px;

    cursor: pointer;

}


/* =========================================================
   MOBILE NAVIGATION
========================================================= */

.mobile-navigation {

    display: none;

}


/* =========================================================
   HERO
========================================================= */

.hero {

    position: relative;

    min-height: 720px;

    padding-top: 86px;

    display: flex;

    align-items: center;

    background-image: url(../images/compactcfs.jpg);           

    background-size: cover;

    background-position: center;

}


/* =========================================================
   HERO OVERLAY
========================================================= */

.hero-overlay {

    position: absolute;

    inset: 0;

    background:

        linear-gradient(
            90deg,
            rgba(255,255,255,0.98) 0%,
            rgba(255,255,255,0.94) 38%,
            rgba(255,255,255,0.55) 58%,
            rgba(255,255,255,0.05) 82%
        );

}


/* =========================================================
   HERO CONTAINER
========================================================= */

.hero-container {

    position: relative;

    z-index: 2;

}


/* =========================================================
   HERO CONTENT
========================================================= */

.hero-content {

    max-width: 720px;

    padding: 80px 0;

}


/* =========================================================
   HERO EYEBROW
========================================================= */

.hero-eyebrow {

    display: inline-block;

    margin-bottom: 16px;

    color: var(--primary-blue);

    font-size: 12px;

    font-weight: 800;

    letter-spacing: 2px;

}


/* =========================================================
   HERO HEADING
========================================================= */

.hero h1 {

    font-size: clamp(
        44px,
        5.2vw,
        72px
    );

    line-height: 1.02;

    letter-spacing: -2.8px;

    font-weight: 800;

    color: var(--dark);

}


.hero h1 span {

    color: var(--primary-blue);

}


/* =========================================================
   HERO DESCRIPTION
========================================================= */

.hero-description {

    max-width: 590px;

    margin-top: 25px;

    color: #435466;

    font-size: 17px;

}


/* =========================================================
   HERO SERVICE TAGS
========================================================= */

.hero-services {

    display: flex;

    align-items: center;

    flex-wrap: wrap;

    gap: 13px;

    margin-top: 28px;

    font-size: 11px;

    font-weight: 800;

    text-transform: uppercase;

}


.hero-services i {

    display: block;

    width: 2px;

    height: 15px;

    background: var(--red);

}


/* =========================================================
   HERO BUTTONS
========================================================= */

.hero-buttons {

    display: flex;

    gap: 12px;

    margin-top: 32px;

}


/* =========================================================
   GENERAL BUTTON
========================================================= */

.button {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 25px;

    padding: 15px 21px;

    border-radius: 4px;

    font-size: 11px;

    font-weight: 800;

    text-transform: uppercase;

    transition:
        background 0.2s ease,
        color 0.2s ease,
        transform 0.2s ease;

}


.button:hover {

    transform: translateY(-2px);

}


/* =========================================================
   PRIMARY BUTTON
========================================================= */

.button-primary {

    background: var(--primary-blue);

    color: var(--white);

}


.button-primary:hover {

    background: var(--primary-blue-dark);

}


/* =========================================================
   OUTLINE BUTTON
========================================================= */

.button-outline {

    background: var(--white);

    border: 1px solid var(--primary-blue);

    color: var(--primary-blue);

}


.button-outline:hover {

    background: var(--primary-blue);

    color: var(--white);

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1100px) {

    .main-navigation {

        gap: 15px;

    }

    .header-right {

        gap: 10px;

    }

    .header-phone {

        display: none;

    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 800px) {

    .container {

        width: calc(100% - 30px);

    }


    .header-container {

        height: 76px;

    }


    .logo img {

        width: 160px;

    }


    .main-navigation,
    .header-right {

        display: none;

    }


    .mobile-menu-button {

        display: block;

    }


    .mobile-navigation {

        background: var(--white);

        padding: 10px 20px 20px;

        border-top: 1px solid var(--border);

    }


    .mobile-navigation.open {

        display: flex;

        flex-direction: column;

    }


    .mobile-navigation a {

        padding: 13px 0;

        border-bottom: 1px solid var(--border);

        font-size: 13px;

        font-weight: 700;

        text-transform: uppercase;

    }


    .mobile-navigation a:hover {

        color: var(--primary-blue);

    }


    .hero {

        min-height: 680px;

        padding-top: 76px;

        background-position: 65% center;

    }


    .hero-overlay {

        background:

            linear-gradient(
                90deg,
                rgba(255,255,255,.97),
                rgba(255,255,255,.82)
            );

    }


    .hero-content {

        padding: 60px 0;

    }


    .hero h1 {

        font-size: 44px;

        letter-spacing: -1.8px;

    }


    .hero-description {

        font-size: 15px;

    }


}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .hero h1 {

        font-size: 37px;

    }


    .hero-services {

        display: none;

    }


    .hero-buttons {

        flex-direction: column;

        align-items: stretch;

    }


    .button {

        width: 100%;

    }

}
/* =========================================================
   COMPANY STATISTICS
========================================================= */

.company-stats {

    background: var(--primary-blue);

    color: var(--white);

    position: relative;

    z-index: 5;

}


/* =========================================================
   STATS CONTAINER
========================================================= */

.stats-container {

    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

}


/* =========================================================
   STAT ITEM
========================================================= */

.stat-item {

    padding: 28px 30px;

    border-right:
        1px solid
        rgba(255, 255, 255, 0.35);

}


.stat-item:last-child {

    border-right: none;

}


/* =========================================================
   STAT NUMBER
========================================================= */

.stat-number {

    font-size: 34px;

    font-weight: 800;

    line-height: 1;

    letter-spacing: -1px;

}


/* =========================================================
   STAT TITLE
========================================================= */

.stat-title {

    margin-top: 9px;

    font-size: 11px;

    font-weight: 800;

    text-transform: uppercase;

    letter-spacing: .4px;

}


/* =========================================================
   STAT DESCRIPTION
========================================================= */

.stat-description {

    margin-top: 2px;

    font-size: 11px;

    color:
        rgba(255, 255, 255, 0.9);

}


/* =========================================================
   LOCATION BAR
========================================================= */

.location-bar {

    background: var(--white);

    border-bottom:
        1px solid
        var(--border);

}


/* =========================================================
   LOCATION CONTAINER
========================================================= */

.location-container {

    min-height: 62px;

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 12px;

}


/* =========================================================
   LOCATION ICON
========================================================= */

.location-icon {

    width: 28px;

    height: 28px;

    display: grid;

    place-items: center;

    border-radius: 50%;

    background:
        rgba(19, 175, 240, .12);

    color: var(--red);

    font-size: 10px;

}


/* =========================================================
   LOCATION TEXT
========================================================= */

.location-container p {

    margin: 0;

    font-size: 13px;

    font-weight: 500;

    color: var(--text);

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 800px) {

    .stats-container {

        grid-template-columns:
            repeat(2, 1fr);

    }


    .stat-item {

        padding: 22px 20px;

    }


    .stat-item:nth-child(2) {

        border-right: none;

    }


    .stat-item:nth-child(1),
    .stat-item:nth-child(2) {

        border-bottom:
            1px solid
            rgba(255, 255, 255, 0.35);

    }


    .location-container {

        text-align: center;

        padding: 15px;

    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 480px) {

    .stat-number {

        font-size: 27px;

    }


    .stat-title {

        font-size: 10px;

    }


    .stat-description {

        font-size: 10px;

    }


    .location-container {

        align-items: flex-start;

    }


    .location-container p {

        font-size: 12px;

        line-height: 1.5;

    }

}
/* =========================================================
   SERVICES SECTION
========================================================= */

.services-section {

    padding: 90px 0;

    background: var(--white);

}


/* =========================================================
   SECTION HEADER
========================================================= */

.section-header {

    display: flex;

    align-items: flex-end;

    justify-content: space-between;

    gap: 40px;

    margin-bottom: 38px;

}


.section-eyebrow {

    margin: 0 0 8px;

    color: var(--primary-blue);

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 1.7px;

    text-transform: uppercase;

}


.section-header h2 {

    margin: 0;

    color: var(--dark);

    font-size: 38px;

    line-height: 1.1;

    letter-spacing: -1.5px;

}


.section-introduction {

    max-width: 440px;

}


.section-introduction p {

    margin: 0;

    color: var(--text-light);

    font-size: 14px;

}


/* =========================================================
   SERVICES GRID
========================================================= */

.services-grid {

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 20px;

}


/* =========================================================
   SERVICE CARD
========================================================= */

.service-card {

    overflow: hidden;

    background: var(--white);

    border: 1px solid var(--border);

    border-radius: 5px;

    transition:
        transform .25s ease,
        box-shadow .25s ease;

}


.service-card:hover {

    transform: translateY(-6px);

    box-shadow:
        0 18px 45px
        rgba(7, 27, 51, .10);

}


/* =========================================================
   SERVICE IMAGE
========================================================= */

.service-image {

    height: 205px;

    background-position: center;

    background-size: cover;

    background-repeat: no-repeat;

}




.service-image-container {

    background-image: url(../images/Compact-Freight.jpg)

}


.service-image-reefer {

    background-image: url(../images/Reefer.jpg)

}


.service-image-vehicles {

    background-image:url(../images/vehicles.jpg)

}


.service-image-warehouse {

    background-image:url(../images/Warehouse1.jpg)
    

}


.service-image-project {

    background-image:url(../images/OOG.jpg)
    

}


.service-image-storage {

    background-image: url(../images/Containers.jpg)

}


/* =========================================================
   SERVICE CONTENT
========================================================= */

.service-content {

    padding: 21px;

}


.service-number {

    display: block;

    color: var(--primary-blue);

    font-size: 13px;

    font-weight: 800;

}


.service-content h3 {

    margin: 6px 0 11px;

    color: var(--dark);

    font-size: 18px;

    line-height: 1.15;

    text-transform: uppercase;

    letter-spacing: -.3px;

}


.service-content p {

    min-height: 66px;

    margin: 0 0 18px;

    color: var(--text-light);

    font-size: 13px;

    line-height: 1.55;

}


/* =========================================================
   SERVICE
========================================================= */

.service-link {

    display: inline-flex;

    align-items: center;

    gap: 15px;

    color: var(--primary-blue);

    font-size: 11px;

    font-weight: 800;

    text-transform: uppercase;

}


.service-link span {

    transition:
        transform .2s ease;

}


.service-link:hover span {

    transform: translateX(5px);

}


/* =========================================================
   RED ACCENT
========================================================= */

.services-section .section-eyebrow::after {

    content: "";

    display: block;

    width: 34px;

    height: 3px;

    margin-top: 8px;

    background: var(--red);

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 950px) {

    .services-grid {

        grid-template-columns:
            repeat(2, 1fr);

    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 700px) {

    .services-section {

        padding: 65px 0;

    }


    .section-header {

        display: block;

        margin-bottom: 30px;

    }


    .section-header h2 {

        font-size: 32px;

    }


    .section-introduction {

        margin-top: 15px;

    }


    .services-grid {

        grid-template-columns: 1fr;

    }


    .service-image {

        height: 220px;

    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .service-image {

        height: 200px;

    }


    .service-content {

        padding: 18px;

    }


    .section-header h2 {

        font-size: 29px;

    }

}
/* =========================================================
   WHY CHOOSE COMPACT
========================================================= */

.why-compact {

    padding: 90px 0;

    background: var(--light-background);

}


/* =========================================================
   MAIN GRID
========================================================= */

.why-grid {

    display: grid;

    grid-template-columns:
        1.3fr
        1fr
        1fr;

    border-top:
        1px solid
        var(--border);

    border-left:
        1px solid
        var(--border);

}


/* =========================================================
   INTRODUCTION
========================================================= */

.why-introduction {

    grid-row:
        span 2;

    padding: 45px 40px;

    background:
        var(--dark);

    color: var(--white);

}


.why-introduction .section-eyebrow {

    color: var(--primary-blue);

}


.why-introduction h2 {

    margin: 0;

    font-size: 42px;

    line-height: 1.08;

    letter-spacing: -1.7px;

}


.why-introduction h2 span {

    color: var(--primary-blue);

}


.why-description {

    max-width: 410px;

    margin-top: 25px;

    color:
        rgba(255,255,255,.72);

    font-size: 14px;

    line-height: 1.7;

}


/* =========================================================
   BENEFIT ITEM
========================================================= */

.why-item {

    min-height: 185px;

    padding: 30px;

    display: flex;

    align-items: flex-start;

    gap: 20px;

    background: var(--white);

    border-right:
        1px solid
        var(--border);

    border-bottom:
        1px solid
        var(--border);

    transition:
        background .2s ease;

}


.why-item:hover {

    background:
        #F9FDFF;

}


/* =========================================================
   ICON
========================================================= */

.why-icon {

    width: 48px;

    height: 48px;

    min-width: 48px;

    display: grid;

    place-items: center;

    border-radius: 50%;

    background:
        rgba(19,175,240,.10);

    color: var(--primary-blue);

    font-size: 20px;

    font-weight: 700;

}


/* =========================================================
   BENEFIT TITLE
========================================================= */

.why-item h3 {

    margin: 2px 0 8px;

    color: var(--dark);

    font-size: 14px;

    font-weight: 800;

    text-transform: uppercase;

}


/* =========================================================
   BENEFIT DESCRIPTION
========================================================= */

.why-item p {

    margin: 0;

    color: var(--text-light);

    font-size: 12px;

    line-height: 1.6;

}


/* =========================================================
   RED ACCENT
========================================================= */

.why-introduction::after {

    content: "";

    display: block;

    width: 45px;

    height: 3px;

    margin-top: 30px;

    background: var(--red);

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 950px) {

    .why-grid {

        grid-template-columns:
            1fr 1fr;

    }


    .why-introduction {

        grid-row:
            auto;

        grid-column:
            1 / -1;

    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {

    .why-compact {

        padding: 65px 0;

    }


    .why-grid {

        grid-template-columns:
            1fr;

    }


    .why-introduction {

        padding: 35px 25px;

    }


    .why-introduction h2 {

        font-size: 34px;

    }


    .why-item {

        min-height: auto;

        padding: 25px 20px;

    }

}
/* =========================================
   OUR FACILITIES
========================================= */

.facilities-section {
    padding: 100px 0;
    background: var(--white);
}


/* HEADER */

.facilities-header {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 80px;
    align-items: end;
    margin-bottom: 50px;
}


.facilities-header h2 {
    margin: 0;
    color: var(--dark);
    font-size: 44px;
    line-height: 1.08;
    letter-spacing: -1.8px;
}


.facilities-header h2 span {
    color: var(--primary-blue);
}


.facilities-introduction {
    padding-bottom: 5px;
}


.facilities-introduction p {
    max-width: 440px;
    margin: 0 0 20px;
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.75;
}


/* TEXT LINK */

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    color: var(--dark);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .5px;

    transition: color .2s ease;
}


.text-link span {
    color: var(--primary-blue);
    font-size: 18px;
    transition: transform .2s ease;
}


.text-link:hover {
    color: var(--primary-blue);
}


.text-link:hover span {
    transform: translateX(5px);
}


/* FACILITY GRID */

.facilities-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}


/* FACILITY CARD */

.facility-card {
    position: relative;
    overflow: hidden;

    background: var(--white);

    border: 1px solid var(--border);

    transition:
        transform .3s ease,
        box-shadow .3s ease;
}


.facility-card:hover {
    transform: translateY(-5px);

    box-shadow:
        0 18px 40px rgba(7, 27, 51, .10);
}


/* LARGE FEATURED CARD */

.facility-large {
    grid-column: span 2;
    grid-row: span 2;

    min-height: 520px;
}


/* IMAGES */

.facility-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
}


.facility-large .facility-image {
    height: 100%;
}


.facility-image img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform .6s ease;
}


.facility-card:hover .facility-image img {
    transform: scale(1.05);
}


/* FEATURED OVERLAY */

.facility-large::after {
    content: "";

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            to top,
            rgba(7, 27, 51, .95),
            rgba(7, 27, 51, .05) 65%
        );

    pointer-events: none;
}


.facility-overlay {
    position: absolute;

    z-index: 2;

    left: 0;
    right: 0;
    bottom: 0;

    display: flex;
    justify-content: space-between;
    align-items: flex-end;

    gap: 30px;

    padding: 35px;
}


.facility-overlay h3 {
    margin: 7px 0 10px;

    color: var(--white);

    font-size: 24px;
    line-height: 1.2;
}


.facility-overlay p {
    max-width: 450px;

    margin: 0;

    color: rgba(255,255,255,.72);

    font-size: 13px;
    line-height: 1.6;
}


/* STANDARD FACILITY CONTENT */

.facility-content {
    padding: 25px;
}


.facility-number {
    display: block;

    margin-bottom: 10px;

    color: var(--primary-blue);

    font-size: 11px;
    font-weight: 900;
    letter-spacing: 1px;
}


.facility-content h3 {
    margin: 0 0 10px;

    color: var(--dark);

    font-size: 16px;
    font-weight: 800;
}


.facility-content p {
    margin: 0 0 20px;

    color: var(--text-light);

    font-size: 12px;
    line-height: 1.65;
}


/* FACILITY LINKS */

.facility-link {
    display: inline-block;

    color: var(--dark);

    font-size: 11px;
    font-weight: 800;

    text-transform: uppercase;
    letter-spacing: .4px;

    transition: color .2s ease;
}


.facility-link:hover {
    color: var(--primary-blue);
}


/* FEATURED ARROW */

.facility-arrow {
    display: grid;

    width: 50px;
    height: 50px;

    min-width: 50px;

    place-items: center;

    border: 1px solid rgba(255,255,255,.35);

    color: var(--white);

    font-size: 20px;

    transition:
        background .2s ease,
        color .2s ease;
}


.facility-arrow:hover {
    background: var(--primary-blue);

    border-color: var(--primary-blue);

    color: var(--white);
}
/* =========================================
   FACILITIES RESPONSIVE
========================================= */

@media (max-width: 950px) {

    .facilities-header {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .facilities-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .facility-large {
        grid-column: span 2;
        grid-row: span 1;
        min-height: 450px;
    }

    .facility-large .facility-image {
        height: 450px;
    }

}


@media (max-width: 600px) {

    .facilities-section {
        padding: 65px 0;
    }

    .facilities-header {
        margin-bottom: 35px;
    }

    .facilities-header h2 {
        font-size: 34px;
        letter-spacing: -1px;
    }

    .facilities-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .facility-large {
        grid-column: span 1;
        min-height: 400px;
    }

    .facility-large .facility-image {
        height: 400px;
    }

    .facility-overlay {
        padding: 25px;
    }

    .facility-overlay h3 {
        font-size: 20px;
    }

    .facility-overlay p {
        font-size: 12px;
    }

    .facility-arrow {
        width: 44px;
        height: 44px;
        min-width: 44px;
    }

}
/* =========================================
   CARGO OPERATIONS
========================================= */

.operations-section {
    padding: 100px 0;
    background: var(--dark);
    color: var(--white);
}


/* HEADER */

.operations-header {
    display: grid;
    grid-template-columns: 1.2fr .8fr;
    gap: 80px;
    align-items: end;
    margin-bottom: 70px;
}


.operations-header .section-eyebrow {
    color: var(--primary-blue);
}


.operations-header h2 {
    margin: 0;

    color: var(--white);

    font-size: 44px;
    line-height: 1.08;
    letter-spacing: -1.8px;
}


.operations-header h2 span {
    color: var(--primary-blue);
}


.operations-intro {
    padding-bottom: 5px;
}


.operations-intro p {
    max-width: 440px;

    margin: 0;

    color: rgba(255,255,255,.68);

    font-size: 14px;
    line-height: 1.75;
}


/* OPERATIONS FLOW */

.operations-flow {
    display: grid;

    grid-template-columns:
        repeat(5, 1fr);

    border-top: 1px solid rgba(255,255,255,.15);
    border-left: 1px solid rgba(255,255,255,.15);
}


/* STEP */

.operation-step {
    position: relative;

    min-height: 330px;

    padding: 30px;

    border-right: 1px solid rgba(255,255,255,.15);
    border-bottom: 1px solid rgba(255,255,255,.15);

    transition:
        background .25s ease;
}


.operation-step:hover {
    background: rgba(255,255,255,.035);
}


/* TOP */

.operation-top {
    display: flex;

    align-items: center;

    gap: 15px;

    margin-bottom: 45px;
}


.operation-number {
    color: var(--primary-blue);

    font-size: 12px;

    font-weight: 900;

    letter-spacing: 1px;
}


.operation-line {
    width: 100%;
    height: 1px;

    background: rgba(255,255,255,.12);
}


/* ICON */

.operation-icon {
    display: grid;

    width: 52px;
    height: 52px;

    margin-bottom: 25px;

    place-items: center;

    border: 1px solid rgba(19,175,240,.35);

    color: var(--primary-blue);

    font-size: 23px;

    transition:
        background .25s ease,
        color .25s ease;
}


.operation-step:hover .operation-icon {
    background: var(--primary-blue);

    color: var(--white);
}


/* TITLE */

.operation-step h3 {
    margin: 0 0 12px;

    color: var(--white);

    font-size: 15px;

    font-weight: 800;

    text-transform: uppercase;

    letter-spacing: .3px;
}


/* DESCRIPTION */

.operation-step p {
    max-width: 250px;

    margin: 0;

    color: rgba(255,255,255,.58);

    font-size: 12px;

    line-height: 1.7;
}
/* =========================================
   OPERATIONS RESPONSIVE
========================================= */

@media (max-width: 950px) {

    .operations-header {
        grid-template-columns: 1fr;

        gap: 25px;

        margin-bottom: 50px;
    }


    .operations-flow {
        grid-template-columns: repeat(2, 1fr);
    }

}


@media (max-width: 600px) {

    .operations-section {
        padding: 65px 0;
    }


    .operations-header h2 {
        font-size: 34px;

        letter-spacing: -1px;
    }


    .operations-flow {
        grid-template-columns: 1fr;
    }


    .operation-step {
        min-height: auto;

        padding: 25px 20px;
    }


    .operation-top {
        margin-bottom: 30px;
    }


    .operation-step p {
        max-width: none;
    }

}
/* =========================================
   FOOTER
========================================= */

.site-footer {
    background: #06172b;
    color: var(--white);
}


/* =========================================
   FOOTER MAIN
========================================= */

.footer-main {
    padding: 75px 0 65px;
}


.footer-grid {
    display: grid;

    grid-template-columns:
        1.5fr
        .8fr
        .9fr
        1.2fr;

    gap: 55px;
}


/* =========================================
   FOOTER BRAND
========================================= */

.footer-brand {
    max-width: 330px;
}


.footer-logo {
    display: block;

    width: 185px;
    height: auto;

    margin-bottom: 25px;
}


.footer-brand p {
    margin: 0 0 25px;

    color: rgba(255,255,255,.58);

    font-size: 13px;
    line-height: 1.75;
}


/* =========================================
   FOOTER BUTTON
========================================= */

.footer-button {
    display: inline-flex;

    align-items: center;

    gap: 12px;

    padding: 13px 18px;

    background: var(--primary-blue);

    color: var(--white);

    font-size: 11px;
    font-weight: 800;

    text-transform: uppercase;

    letter-spacing: .5px;

    transition:
        background .2s ease,
        transform .2s ease;
}


.footer-button span {
    font-size: 17px;

    transition:
        transform .2s ease;
}


.footer-button:hover {
    background: #0a9bd8;

    color: var(--white);

    transform: translateY(-2px);
}


.footer-button:hover span {
    transform: translateX(4px);
}


/* =========================================
   FOOTER COLUMNS
========================================= */

.footer-column h3 {
    position: relative;

    margin: 3px 0 25px;

    color: var(--white);

    font-size: 12px;

    font-weight: 800;

    text-transform: uppercase;

    letter-spacing: 1px;
}


.footer-column h3::after {
    content: "";

    display: block;

    width: 28px;
    height: 2px;

    margin-top: 10px;

    background: var(--red);
}


.footer-column ul {
    margin: 0;
    padding: 0;

    list-style: none;
}


.footer-column li {
    margin-bottom: 12px;
}


.footer-column li a {
    color: rgba(255,255,255,.58);

    font-size: 12px;

    transition:
        color .2s ease,
        padding-left .2s ease;
}


.footer-column li a:hover {
    color: var(--primary-blue);

    padding-left: 4px;
}


/* =========================================
   FOOTER CONTACT
========================================= */

.contact-item {
    display: flex;

    align-items: flex-start;

    gap: 14px;

    margin-bottom: 22px;
}


.contact-icon {
    display: grid;

    width: 32px;
    height: 32px;

    min-width: 32px;

    place-items: center;

    border: 1px solid rgba(19,175,240,.35);

    color: var(--primary-blue);

    font-size: 12px;

    font-weight: 800;
}


.contact-item small {
    display: block;

    margin-bottom: 5px;

    color: rgba(255,255,255,.35);

    font-size: 9px;

    font-weight: 800;

    text-transform: uppercase;

    letter-spacing: 1px;
}


.contact-item a {
    display: block;

    margin-bottom: 3px;

    color: rgba(255,255,255,.70);

    font-size: 12px;

    transition: color .2s ease;
}


.contact-item a:hover {
    color: var(--primary-blue);
}


.contact-item p {
    margin: 0;

    color: rgba(255,255,255,.70);

    font-size: 12px;

    line-height: 1.65;
}


/* =========================================
   FOOTER BOTTOM
========================================= */

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.10);
}


.footer-bottom-inner {
    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 30px;

    min-height: 65px;
}


.footer-bottom p {
    margin: 0;

    color: rgba(255,255,255,.35);

    font-size: 10px;
}


.footer-legal {
    display: flex;

    gap: 25px;
}


.footer-legal a {
    color: rgba(255,255,255,.35);

    font-size: 10px;

    transition: color .2s ease;
}


.footer-legal a:hover {
    color: var(--primary-blue);
}

/* =========================================
   FINAL CTA
========================================= */

.final-cta {
    padding: 75px 0;

    background: var(--primary-blue);
}


.final-cta-inner {
    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 50px;
}


.final-cta .section-eyebrow {
    color: var(--white);
}


.final-cta h2 {
    margin: 0;

    color: var(--white);

    font-size: 42px;

    line-height: 1.1;

    letter-spacing: -1.5px;
}


.final-cta h2 span {
    color: var(--dark);
}


.final-cta-description {
    max-width: 500px;

    margin: 20px 0 0;

    color: rgba(255,255,255,.80);

    font-size: 13px;

    line-height: 1.7;
}


.final-cta-actions {
    display: flex;

    align-items: center;

    gap: 12px;

    flex-shrink: 0;
}


.final-cta .btn {
    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 10px;

    min-height: 48px;

    padding: 0 20px;

    font-size: 11px;

    font-weight: 800;

    text-transform: uppercase;

    letter-spacing: .4px;
}


.final-cta .btn-primary {
    background: var(--dark);

    color: var(--white);
}


.final-cta .btn-primary:hover {
    background: #000f20;
}


.final-cta .btn-outline {
    border: 1px solid rgba(255,255,255,.55);

    color: var(--white);
}


.final-cta .btn-outline:hover {
    background: var(--white);

    color: var(--dark);
}
/* =========================================
   INNER PAGE HERO
========================================= */

.inner-page-hero {
    padding: 110px 0 100px;

    background: var(--dark);

    color: var(--white);
}


.inner-page-hero .section-eyebrow {
    color: var(--primary-blue);
}


.inner-page-hero h1 {
    max-width: 850px;

    margin: 0;

    color: var(--white);

    font-size: 58px;

    line-height: 1.05;

    letter-spacing: -2.5px;
}


.inner-page-hero h1 span {
    color: var(--primary-blue);
}


.inner-page-description {
    max-width: 650px;

    margin: 25px 0 0;

    color: rgba(255,255,255,.65);

    font-size: 15px;

    line-height: 1.75;
}


/* =========================================
   SERVICES INTRO
========================================= */

.services-page-intro {
    padding: 90px 0;

    background: var(--white);
}


.services-page-intro-grid {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 100px;

    align-items: start;
}


.services-page-intro h2 {
    margin: 0;

    color: var(--dark);

    font-size: 44px;

    line-height: 1.08;

    letter-spacing: -1.8px;
}


.services-page-intro h2 span {
    color: var(--primary-blue);
}


.services-page-intro-grid > div:last-child {
    padding-top: 8px;
}


.services-page-intro-grid p {
    max-width: 600px;

    margin: 0 0 20px;

    color: var(--text-light);

    font-size: 14px;

    line-height: 1.8;
}


/* =========================================
   SERVICES PAGE
========================================= */

.services-page-section {
    padding: 0 0 100px;

    background: var(--white);
}


.services-page-grid {
    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 25px;
}


/* =========================================
   SERVICE DETAIL CARD
========================================= */

.service-detail-card {
    overflow: hidden;

    border: 1px solid var(--border);

    background: var(--white);

    transition:
        transform .3s ease,
        box-shadow .3s ease;
}


.service-detail-card:hover {
    transform: translateY(-5px);

    box-shadow:
        0 18px 45px rgba(7,27,51,.10);
}


/* IMAGE */

.service-detail-image {
    position: relative;

    height: 280px;

    overflow: hidden;
}


.service-detail-image img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform .6s ease;
}


.service-detail-card:hover
.service-detail-image img {
    transform: scale(1.04);
}


.service-detail-image span {
    position: absolute;

    top: 20px;
    left: 20px;

    display: grid;

    width: 42px;
    height: 42px;

    place-items: center;

    background: var(--primary-blue);

    color: var(--white);

    font-size: 11px;

    font-weight: 900;
}


/* CONTENT */

.service-detail-content {
    padding: 30px;
}


.service-detail-label {
    margin: 0 0 8px;

    color: var(--primary-blue);

    font-size: 9px;

    font-weight: 900;

    letter-spacing: 1.2px;
}


.service-detail-content h3 {
    margin: 0 0 15px;

    color: var(--dark);

    font-size: 22px;

    letter-spacing: -.4px;
}


.service-detail-content > p:not(.service-detail-label) {
    margin: 0 0 20px;

    color: var(--text-light);

    font-size: 13px;

    line-height: 1.7;
}


/* SERVICE LIST */

.service-detail-content ul {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 8px 20px;

    margin: 0;
    padding: 20px 0 0;

    border-top: 1px solid var(--border);

    list-style: none;
}


.service-detail-content li {
    position: relative;

    padding-left: 16px;

    color: var(--dark);

    font-size: 11px;

    line-height: 1.5;
}


.service-detail-content li::before {
    content: "";

    position: absolute;

    top: 6px;
    left: 0;

    width: 6px;
    height: 6px;

    background: var(--primary-blue);

    border-radius: 50%;
}
/* =========================================
   SERVICES PAGE RESPONSIVE
========================================= */

@media (max-width: 950px) {

    .inner-page-hero {
        padding: 90px 0 80px;
    }


    .inner-page-hero h1 {
        font-size: 48px;
    }


    .services-page-intro-grid {
        gap: 50px;
    }


    .services-page-grid {
        grid-template-columns: 1fr 1fr;
    }

}


@media (max-width: 700px) {

    .inner-page-hero {
        padding: 70px 0 65px;
    }


    .inner-page-hero h1 {
        font-size: 38px;

        letter-spacing: -1.3px;
    }


    .inner-page-description {
        font-size: 13px;
    }


    .services-page-intro {
        padding: 65px 0;
    }


    .services-page-intro-grid {
        grid-template-columns: 1fr;

        gap: 30px;
    }


    .services-page-intro h2 {
        font-size: 34px;

        letter-spacing: -1px;
    }


    .services-page-grid {
        grid-template-columns: 1fr;

        gap: 18px;
    }


    .service-detail-image {
        height: 230px;
    }


    .service-detail-content {
        padding: 25px 20px;
    }


    .service-detail-content ul {
        grid-template-columns: 1fr;
    }

}
/* =========================================
   FACILITIES PAGE
========================================= */

.facility-introduction {
    padding: 90px 0;

    background: var(--white);
}


.facility-introduction-grid {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 100px;
}


.facility-introduction h2 {
    margin: 0;

    color: var(--dark);

    font-size: 44px;

    line-height: 1.08;

    letter-spacing: -1.8px;
}


.facility-introduction h2 span {
    color: var(--primary-blue);
}


.facility-introduction-grid > div:last-child {
    padding-top: 8px;
}


.facility-introduction-grid p {
    margin: 0 0 20px;

    color: var(--text-light);

    font-size: 14px;

    line-height: 1.8;
}


/* =========================================
   FACILITY DETAILS
========================================= */

.facility-details-section {
    padding: 0 0 100px;

    background: var(--white);
}


.facility-detail {
    display: grid;

    grid-template-columns: 1fr 1fr;

    min-height: 500px;

    margin-bottom: 25px;

    background: #f7f9fb;
}


.facility-detail.reverse {
    direction: rtl;
}


.facility-detail.reverse
.facility-detail-content {
    direction: ltr;
}


/* IMAGE */

.facility-detail-image {
    min-height: 500px;

    overflow: hidden;
}


.facility-detail-image img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform .6s ease;
}


.facility-detail:hover
.facility-detail-image img {
    transform: scale(1.03);
}


/* CONTENT */

.facility-detail-content {
    display: flex;

    flex-direction: column;

    justify-content: center;

    padding: 60px;
}


.facility-detail-number {
    margin-bottom: 15px;

    color: var(--primary-blue);

    font-size: 12px;

    font-weight: 900;

    letter-spacing: 1px;
}


.facility-detail-content .section-eyebrow {
    margin-bottom: 10px;
}


.facility-detail-content h2 {
    margin: 0 0 20px;

    color: var(--dark);

    font-size: 32px;

    line-height: 1.1;

    letter-spacing: -1px;
}


.facility-detail-content > p:not(.section-eyebrow) {
    max-width: 500px;

    margin: 0 0 30px;

    color: var(--text-light);

    font-size: 13px;

    line-height: 1.75;
}


/* =========================================
   FACILITY FEATURES
========================================= */

.facility-feature-list {
    display: grid;

    grid-template-columns: 1fr 1fr;

    max-width: 500px;

    border-top: 1px solid var(--border);
}


.facility-feature-list div {
    display: flex;

    flex-direction: column;

    gap: 3px;

    padding: 15px 15px 15px 0;

    border-bottom: 1px solid var(--border);
}


.facility-feature-list strong {
    color: var(--dark);

    font-size: 10px;

    font-weight: 900;

    letter-spacing: .5px;
}


.facility-feature-list span {
    color: var(--text-light);

    font-size: 10px;
}


/* =========================================
   FACILITY CAPACITY
========================================= */

.facility-capacity {
    display: flex;

    align-items: center;

    gap: 18px;

    margin-top: 5px;

    padding: 20px 0;

    border-top: 1px solid var(--border);

    border-bottom: 1px solid var(--border);
}


.facility-capacity strong {
    color: var(--primary-blue);

    font-size: 38px;

    line-height: 1;
}


.facility-capacity span {
    color: var(--text-light);

    font-size: 11px;

    line-height: 1.5;
}
/* =========================================
   FACILITIES PAGE RESPONSIVE
========================================= */

@media (max-width: 950px) {

    .facility-introduction-grid {
        gap: 50px;
    }


    .facility-detail {
        grid-template-columns: 1fr;
    }


    .facility-detail.reverse {
        direction: ltr;
    }


    .facility-detail-image {
        min-height: 400px;
    }


    .facility-detail-content {
        padding: 45px;
    }

}


@media (max-width: 600px) {

    .facility-introduction {
        padding: 65px 0;
    }


    .facility-introduction-grid {
        grid-template-columns: 1fr;

        gap: 30px;
    }


    .facility-introduction h2 {
        font-size: 34px;

        letter-spacing: -1px;
    }


    .facility-details-section {
        padding-bottom: 65px;
    }


    .facility-detail {
        margin-bottom: 18px;
    }


    .facility-detail-image {
        min-height: 280px;

        height: 280px;
    }


    .facility-detail-content {
        padding: 35px 25px;
    }


    .facility-detail-content h2 {
        font-size: 27px;
    }


    .facility-feature-list {
        grid-template-columns: 1fr 1fr;
    }


    .facility-capacity strong {
        font-size: 32px;
    }

}
/* =========================================
   CONTACT PAGE
========================================= */

.contact-section {
    padding: 100px 0;
    background: var(--white);
}


.contact-page-grid {
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    gap: 100px;
    align-items: start;
}


/* CONTACT INFORMATION */

.contact-information h2 {
    margin: 0;
    color: var(--dark);
    font-size: 44px;
    line-height: 1.08;
    letter-spacing: -1.8px;
}


.contact-information h2 span {
    color: var(--primary-blue);
}


.contact-intro {
    max-width: 430px;
    margin: 25px 0 40px;
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.8;
}


/* CONTACT DETAILS */

.contact-detail {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 25px;
}


.contact-detail-icon {
    display: grid;
    width: 44px;
    height: 44px;
    min-width: 44px;
    place-items: center;
    border: 1px solid var(--border);
    color: var(--primary-blue);
}


.contact-detail-icon svg {
    width: 19px;
    height: 19px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.6;
    stroke-linecap: round;
    stroke-linejoin: round;
}


.contact-detail small {
    display: block;
    margin-bottom: 6px;
    color: #9aa5b1;
    font-size: 9px;
    font-weight: 900;
    letter-spacing: 1px;
}


.contact-detail a {
    display: block;
    margin-bottom: 3px;
    color: var(--dark);
    font-size: 13px;
    transition: color .2s ease;
}


.contact-detail a:hover {
    color: var(--primary-blue);
}


.contact-detail p {
    margin: 0;
    color: var(--text-light);
    font-size: 13px;
    line-height: 1.6;
}


/* =========================================
   CONTACT FORM
========================================= */

.contact-form-wrapper {
    padding: 45px;
    background: #f7f9fb;
    border: 1px solid var(--border);
}


.contact-form-header {
    margin-bottom: 30px;
}


.contact-form-header h2 {
    margin: 0;
    color: var(--dark);
    font-size: 32px;
    line-height: 1.1;
    letter-spacing: -1px;
}


.contact-form-header h2 span {
    color: var(--primary-blue);
}


.contact-form {
    width: 100%;
}


.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}


.form-group {
    margin-bottom: 20px;
}


.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--dark);
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .5px;
}


.form-group input,
.form-group select,
.form-group textarea {
    display: block;
    width: 100%;
    box-sizing: border-box;
    padding: 13px 14px;
    border: 1px solid #dce2e8;
    outline: none;
    background: var(--white);
    color: var(--dark);
    font-family: inherit;
    font-size: 13px;
    transition:
        border-color .2s ease,
        box-shadow .2s ease;
}


.form-group textarea {
    resize: vertical;
    min-height: 140px;
}


.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(19,175,240,.10);
}


.contact-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    min-height: 48px;
    padding: 0 22px;
    border: 0;
    background: var(--primary-blue);
    color: var(--white);
    font-family: inherit;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .5px;
    cursor: pointer;
    transition:
        background .2s ease,
        transform .2s ease;
}


.contact-submit:hover {
    background: #0a9bd8;
    transform: translateY(-2px);
}


.contact-submit span {
    font-size: 17px;
}


.form-note {
    margin: 15px 0 0;
    color: #8b96a1;
    font-size: 10px;
}


/* =========================================
   LOCATION
========================================= */

.contact-location {
    padding: 75px 0;
    background: var(--dark);
}


.contact-location-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}


.contact-location .section-eyebrow {
    color: var(--primary-blue);
}


.contact-location h2 {
    margin: 0;
    color: var(--white);
    font-size: 38px;
    line-height: 1.1;
    letter-spacing: -1.3px;
}


.contact-location h2 span {
    color: var(--primary-blue);
}


.contact-location-inner p:not(.section-eyebrow) {
    max-width: 550px;
    margin: 18px 0 0;
    color: rgba(255,255,255,.58);
    font-size: 13px;
    line-height: 1.7;
}


.location-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
    padding: 15px 20px;
    border: 1px solid rgba(255,255,255,.3);
    color: var(--white);
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .4px;
    transition:
        background .2s ease,
        border-color .2s ease;
}


.location-button:hover {
    background: var(--primary-blue);
    border-color: var(--primary-blue);
    color: var(--white);
}


.location-button span {
    font-size: 16px;
}
/* =========================================
   CONTACT RESPONSIVE
========================================= */

@media (max-width: 950px) {

    .contact-page-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }


    .contact-information {
        max-width: 650px;
    }


    .contact-location-inner {
        align-items: flex-start;
        flex-direction: column;
    }

}


@media (max-width: 600px) {

    .contact-section {
        padding: 65px 0;
    }


    .contact-information h2 {
        font-size: 34px;
        letter-spacing: -1px;
    }


    .contact-form-wrapper {
        padding: 30px 20px;
    }


    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }


    .contact-form-header h2 {
        font-size: 27px;
    }


    .contact-submit {
        width: 100%;
    }


    .contact-location {
        padding: 60px 0;
    }


    .contact-location h2 {
        font-size: 32px;
    }


    .location-button {
        width: 100%;
        justify-content: center;
    }

}
/* =========================================
   ABOUT PAGE
========================================= */


/* =========================================
   INTRODUCTION
========================================= */

.about-introduction {
    padding: 95px 0;

    background: var(--white);
}


.about-introduction-grid {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 100px;
}


.about-introduction h2 {
    margin: 0;

    color: var(--dark);

    font-size: 44px;

    line-height: 1.08;

    letter-spacing: -1.8px;
}


.about-introduction h2 span {
    color: var(--primary-blue);
}


.about-introduction-text {
    padding-top: 8px;
}


.about-introduction-text p {
    margin: 0 0 20px;

    color: var(--text-light);

    font-size: 14px;

    line-height: 1.8;
}


.about-introduction-text .about-lead {
    color: var(--dark);

    font-size: 17px;

    line-height: 1.7;
}


/* =========================================
   ABOUT STATS
========================================= */

.about-stats {
    background: var(--primary-blue);
}


.about-stats-grid {
    display: grid;

    grid-template-columns: repeat(4, 1fr);
}


.about-stat {
    display: flex;

    flex-direction: column;

    gap: 8px;

    padding: 40px 30px;

    border-right: 1px solid rgba(255,255,255,.25);
}


.about-stat:first-child {
    border-left: 1px solid rgba(255,255,255,.25);
}


.about-stat strong {
    color: var(--white);

    font-size: 34px;

    line-height: 1;

    letter-spacing: -1px;
}


.about-stat span {
    color: rgba(255,255,255,.75);

    font-size: 10px;

    font-weight: 800;

    text-transform: uppercase;

    letter-spacing: .6px;
}


/* =========================================
   OUR STORY
========================================= */

.about-story {
    padding: 100px 0;

    background: #f7f9fb;
}


.about-story-grid {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 80px;

    align-items: center;
}


.about-story-image {
    height: 540px;

    overflow: hidden;
}


.about-story-image img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform .6s ease;
}


.about-story-image:hover img {
    transform: scale(1.03);
}


.about-story-content h2 {
    margin: 0 0 25px;

    color: var(--dark);

    font-size: 42px;

    line-height: 1.08;

    letter-spacing: -1.5px;
}


.about-story-content h2 span {
    color: var(--primary-blue);
}


.about-story-content p:not(.section-eyebrow) {
    max-width: 550px;

    margin: 0 0 18px;

    color: var(--text-light);

    font-size: 13px;

    line-height: 1.8;
}


/* =========================================
   LOCATION
========================================= */

.about-location {
    padding: 100px 0;

    background: var(--white);
}


.about-location-grid {
    display: grid;

    grid-template-columns: 1.1fr .9fr;

    gap: 100px;

    align-items: center;
}


.about-location-content h2 {
    margin: 0 0 20px;

    color: var(--dark);

    font-size: 42px;

    line-height: 1.08;

    letter-spacing: -1.5px;
}


.about-location-content h2 span {
    color: var(--primary-blue);
}


.about-location-content p:not(.section-eyebrow) {
    max-width: 560px;

    margin: 0 0 18px;

    color: var(--text-light);

    font-size: 13px;

    line-height: 1.8;
}


.about-location-button {
    display: inline-flex;

    align-items: center;

    gap: 12px;

    margin-top: 12px;

    padding: 14px 20px;

    background: var(--dark);

    color: var(--white);

    font-size: 11px;

    font-weight: 800;

    text-transform: uppercase;

    letter-spacing: .4px;

    transition:
        background .2s ease,
        transform .2s ease;
}


.about-location-button:hover {
    background: var(--primary-blue);

    color: var(--white);

    transform: translateY(-2px);
}


.about-location-button span {
    font-size: 17px;
}


/* LOCATION FACTS */

.about-location-facts {
    border-top: 1px solid var(--border);

    border-left: 1px solid var(--border);
}


.location-fact {
    display: flex;

    flex-direction: column;

    gap: 8px;

    padding: 24px;

    border-right: 1px solid var(--border);

    border-bottom: 1px solid var(--border);
}


.location-fact span {
    color: var(--primary-blue);

    font-size: 9px;

    font-weight: 900;

    letter-spacing: 1px;
}


.location-fact strong {
    color: var(--dark);

    font-size: 14px;
}


/* =========================================
   COMPLIANCE
========================================= */

.about-compliance {
    padding: 100px 0;

    background: var(--dark);

    color: var(--white);
}


.about-compliance-grid {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 100px;
}


.about-compliance .section-eyebrow {
    color: var(--primary-blue);
}


.about-compliance h2 {
    margin: 0;

    color: var(--white);

    font-size: 42px;

    line-height: 1.08;

    letter-spacing: -1.5px;
}


.about-compliance h2 span {
    color: var(--primary-blue);
}


.compliance-content > p {
    margin: 0 0 20px;

    color: rgba(255,255,255,.62);

    font-size: 13px;

    line-height: 1.8;
}


/* COMPLIANCE LIST */

.compliance-list {
    display: grid;

    grid-template-columns: 1fr 1fr;

    margin-top: 35px;

    border-top: 1px solid rgba(255,255,255,.15);

    border-left: 1px solid rgba(255,255,255,.15);
}


.compliance-list div {
    display: flex;

    flex-direction: column;

    gap: 8px;

    padding: 20px;

    border-right: 1px solid rgba(255,255,255,.15);

    border-bottom: 1px solid rgba(255,255,255,.15);
}


.compliance-list span {
    color: var(--primary-blue);

    font-size: 10px;

    font-weight: 900;
}


.compliance-list strong {
    color: rgba(255,255,255,.85);

    font-size: 11px;

    text-transform: uppercase;

    letter-spacing: .3px;
}
/* =========================================
   ABOUT PAGE RESPONSIVE
========================================= */

@media (max-width: 950px) {

    .about-introduction-grid {
        gap: 50px;
    }


    .about-story-grid {
        gap: 50px;
    }


    .about-location-grid {
        gap: 50px;
    }


    .about-compliance-grid {
        gap: 50px;
    }

}


@media (max-width: 700px) {

    .about-introduction {
        padding: 65px 0;
    }


    .about-introduction-grid {
        grid-template-columns: 1fr;

        gap: 30px;
    }


    .about-introduction h2 {
        font-size: 34px;

        letter-spacing: -1px;
    }


    .about-introduction-text .about-lead {
        font-size: 15px;
    }


    .about-stats-grid {
        grid-template-columns: 1fr 1fr;
    }


    .about-stat {
        padding: 28px 20px;
    }


    .about-stat strong {
        font-size: 28px;
    }


    .about-story {
        padding: 65px 0;
    }


    .about-story-grid {
        grid-template-columns: 1fr;

        gap: 40px;
    }


    .about-story-image {
        height: 350px;
    }


    .about-story-content h2 {
        font-size: 34px;
    }


    .about-location {
        padding: 65px 0;
    }


    .about-location-grid {
        grid-template-columns: 1fr;

        gap: 40px;
    }


    .about-location-content h2 {
        font-size: 34px;
    }


    .about-compliance {
        padding: 65px 0;
    }


    .about-compliance-grid {
        grid-template-columns: 1fr;

        gap: 35px;
    }


    .about-compliance h2 {
        font-size: 34px;
    }


    .compliance-list {
        grid-template-columns: 1fr;
    }

}
/* =========================================
   TRACK CARGO PAGE
========================================= */

.tracking-section {
    padding: 100px 0;
    background: #ffffff;
}

.tracking-grid {
    display: grid;
    grid-template-columns: 1fr 0.9fr;
    gap: 80px;
    align-items: center;
}

.tracking-information {
    max-width: 650px;
}

.tracking-information h2 {
    font-size: 52px;
    line-height: 1.08;
    margin: 15px 0 25px;
    color: var(--dark);
}

.tracking-information h2 span {
    color: var(--primary-blue);
}

.tracking-description {
    font-size: 17px;
    line-height: 1.8;
    color: #687586;
    max-width: 570px;
    margin-bottom: 45px;
}


/* Tracking Features */

.tracking-features {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.tracking-feature {
    display: flex;
    align-items: center;
    gap: 20px;
}

.tracking-feature-icon {
    width: 55px;
    height: 55px;
    flex-shrink: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid #dce5ec;
    background: #f7fafc;

    color: var(--primary-blue);
}

.tracking-feature-icon svg {
    width: 25px;
    height: 25px;
}

.tracking-feature h3 {
    font-size: 16px;
    margin: 0 0 5px;
    color: var(--dark);
}

.tracking-feature p {
    margin: 0;
    font-size: 14px;
    color: #7a8795;
}


/* Tracking Card */

.tracking-card {
    background: #071b33;
    padding: 42px;
    position: relative;
    overflow: hidden;

    box-shadow: 0 20px 50px rgba(7, 27, 51, 0.14);
}

.tracking-card::after {
    content: "";
    position: absolute;

    width: 220px;
    height: 220px;

    border: 1px solid rgba(19, 175, 240, 0.15);
    border-radius: 50%;

    right: -90px;
    bottom: -100px;
}

.tracking-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;

    margin-bottom: 35px;
}

.tracking-card-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--primary-blue);
    margin: 0 0 8px;
}

.tracking-card h3 {
    color: #ffffff;
    font-size: 28px;
    margin: 0;
}

.tracking-card-icon {
    width: 55px;
    height: 55px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(19, 175, 240, 0.35);
    color: var(--primary-blue);
}

.tracking-card-icon svg {
    width: 27px;
    height: 27px;
}


/* Tracking Form */

.tracking-form {
    position: relative;
    z-index: 2;
}

.tracking-form .form-group {
    margin-bottom: 22px;
}

.tracking-form label {
    display: block;

    font-size: 13px;
    font-weight: 600;

    color: #ffffff;

    margin-bottom: 9px;
}

.tracking-form select,
.tracking-form input {
    width: 100%;

    height: 54px;

    padding: 0 16px;

    border: 1px solid rgba(255, 255, 255, 0.16);

    background: rgba(255, 255, 255, 0.06);

    color: #ffffff;

    font-family: inherit;
    font-size: 14px;

    outline: none;
}

.tracking-form select:focus,
.tracking-form input:focus {
    border-color: var(--primary-blue);
}

.tracking-form select option {
    color: #071b33;
    background: #ffffff;
}

.tracking-form input::placeholder {
    color: #9aa8b7;
}


/* Tracking Button */

.tracking-submit {
    width: 100%;
    height: 56px;

    border: none;

    background: var(--primary-blue);
    color: #ffffff;

    font-family: inherit;
    font-size: 14px;
    font-weight: 700;

    cursor: pointer;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;

    transition: 0.25s ease;
}

.tracking-submit span {
    font-size: 19px;
}

.tracking-submit:hover {
    background: #ffffff;
    color: var(--dark);
}


/* Tracking Notice */

.tracking-notice {
    margin-top: 25px;

    padding: 16px;

    display: flex;
    gap: 12px;
    align-items: flex-start;

    background: rgba(255, 255, 255, 0.05);

    border-left: 2px solid var(--red);

    position: relative;
    z-index: 2;
}

.tracking-notice-icon {
    color: var(--primary-blue);
    flex-shrink: 0;
}

.tracking-notice-icon svg {
    width: 20px;
    height: 20px;
}

.tracking-notice p {
    margin: 0;

    font-size: 12px;
    line-height: 1.6;

    color: #aab7c5;
}


/* =========================================
   TRACKING PROCESS
========================================= */

.tracking-process {
    padding: 100px 0;
    background: #f6f9fb;
}

.tracking-process-header {
    display: grid;
    grid-template-columns: 1fr 0.8fr;
    gap: 80px;
    align-items: end;

    margin-bottom: 55px;
}

.tracking-process-header h2 {
    font-size: 48px;
    line-height: 1.1;

    margin: 15px 0 0;

    color: var(--dark);
}

.tracking-process-header h2 span {
    color: var(--primary-blue);
}

.tracking-process-intro {
    max-width: 500px;
}

.tracking-process-intro p {
    font-size: 16px;
    line-height: 1.8;
    color: #687586;
}


/* Process Grid */

.tracking-process-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);

    border-top: 1px solid #dce5ec;
    border-bottom: 1px solid #dce5ec;
}

.tracking-process-step {
    padding: 35px 25px;

    border-right: 1px solid #dce5ec;

    min-height: 220px;
}

.tracking-process-step:last-child {
    border-right: none;
}

.tracking-process-step span {
    display: block;

    font-size: 12px;
    font-weight: 700;

    letter-spacing: 1px;

    color: var(--red);

    margin-bottom: 35px;
}

.tracking-process-step h3 {
    font-size: 18px;
    color: var(--dark);

    margin: 0 0 13px;
}

.tracking-process-step p {
    font-size: 13px;
    line-height: 1.7;

    color: #7a8795;

    margin: 0;
}


/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 1100px) {

    .tracking-grid {
        grid-template-columns: 1fr 1fr;
        gap: 45px;
    }

    .tracking-process-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .tracking-process-step:nth-child(3) {
        border-right: none;
    }

    .tracking-process-step:nth-child(-n+3) {
        border-bottom: 1px solid #dce5ec;
    }

}


@media (max-width: 900px) {

    .tracking-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .tracking-information {
        max-width: 750px;
    }

    .tracking-process-header {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .tracking-process-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .tracking-process-step:nth-child(3) {
        border-right: 1px solid #dce5ec;
    }

    .tracking-process-step:nth-child(2n) {
        border-right: none;
    }

    .tracking-process-step:nth-child(-n+4) {
        border-bottom: 1px solid #dce5ec;
    }

}


@media (max-width: 600px) {

    .tracking-section {
        padding: 70px 0;
    }

    .tracking-information h2 {
        font-size: 38px;
    }

    .tracking-description {
        font-size: 15px;
    }

    .tracking-card {
        padding: 28px 22px;
    }

    .tracking-card h3 {
        font-size: 23px;
    }

    .tracking-process {
        padding: 70px 0;
    }

    .tracking-process-header h2 {
        font-size: 38px;
    }

    .tracking-process-grid {
        grid-template-columns: 1fr;
    }

    .tracking-process-step {
        border-right: none !important;
        border-bottom: 1px solid #dce5ec;
    }

    .tracking-process-step:last-child {
        border-bottom: none;
    }

}
/* =========================================
   PROJECTS PAGE
========================================= */

.projects-introduction {
    padding: 100px 0;
    background: #ffffff;
}

.projects-introduction-grid {
    display: grid;
    grid-template-columns: 1fr 0.9fr;
    gap: 90px;
    align-items: start;
}

.projects-introduction h2 {
    font-size: 50px;
    line-height: 1.08;
    margin: 15px 0 0;
    color: var(--dark);
}

.projects-introduction h2 span {
    color: var(--primary-blue);
}

.projects-introduction-text {
    padding-top: 35px;
}

.projects-introduction-text p {
    font-size: 16px;
    line-height: 1.85;
    color: #687586;
    margin: 0 0 20px;
}


/* =========================================
   PROJECT GALLERY
========================================= */

.projects-gallery-section {
    padding: 100px 0;
    background: #f6f9fb;
}

.projects-gallery-header {
    display: grid;
    grid-template-columns: 1fr 0.75fr;
    gap: 80px;
    align-items: end;

    margin-bottom: 55px;
}

.projects-gallery-header h2 {
    font-size: 48px;
    line-height: 1.1;
    margin: 15px 0 0;
    color: var(--dark);
}

.projects-gallery-header h2 span {
    color: var(--primary-blue);
}

.projects-gallery-header > p {
    font-size: 16px;
    line-height: 1.8;
    color: #687586;
    margin: 0;
}


/* Gallery */

.projects-gallery {
    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 20px;
}


.project-card {
    position: relative;

    height: 390px;

    overflow: hidden;

    background: #071b33;
}


.project-card.project-large {
    height: 520px;

    grid-row: span 2;
}


.project-card.project-wide {
    grid-column: span 2;

    height: 420px;
}


.project-image {
    width: 100%;
    height: 100%;
}


.project-image img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    transition: transform 0.6s ease;
}


.project-card:hover .project-image img {
    transform: scale(1.05);
}


/* Dark overlay */

.project-overlay {
    position: absolute;

    inset: 0;

    display: flex;
    align-items: flex-end;

    padding: 35px;

    background:
        linear-gradient(
            to top,
            rgba(7, 27, 51, 0.95) 0%,
            rgba(7, 27, 51, 0.55) 40%,
            rgba(7, 27, 51, 0.05) 75%
        );

    color: #ffffff;
}


.project-overlay > div {
    max-width: 500px;
}


.project-number {
    display: block;

    font-size: 11px;
    font-weight: 700;

    letter-spacing: 2px;

    color: var(--primary-blue);

    margin-bottom: 10px;
}


.project-overlay h3 {
    font-size: 26px;

    margin: 0 0 10px;

    color: #ffffff;
}


.project-overlay p {
    font-size: 13px;

    line-height: 1.7;

    color: #c4d0db;

    margin: 0;

    max-width: 420px;
}


/* =========================================
   PROJECT CAPABILITIES
========================================= */

.project-capabilities {
    padding: 0;

    background: #071b33;

    color: #ffffff;
}


.project-capabilities-grid {
    display: grid;

    grid-template-columns: repeat(4, 1fr);
}


.project-capability {
    min-height: 260px;

    padding: 40px 30px;

    border-right: 1px solid rgba(255, 255, 255, 0.12);
}


.project-capability:last-child {
    border-right: none;
}


.project-capability span {
    display: block;

    font-size: 11px;

    font-weight: 700;

    letter-spacing: 2px;

    color: var(--red);

    margin-bottom: 45px;
}


.project-capability h3 {
    color: #ffffff;

    font-size: 19px;

    margin: 0 0 14px;
}


.project-capability p {
    color: #9eacbb;

    font-size: 13px;

    line-height: 1.7;

    margin: 0;
}


/* =========================================
   PROJECTS HERO
========================================= */

.projects-hero {
    position: relative;
}


/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 1000px) {

    .projects-introduction-grid {
        grid-template-columns: 1fr 1fr;
        gap: 50px;
    }

    .projects-gallery-header {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .project-capabilities-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .project-capability:nth-child(2) {
        border-right: none;
    }

    .project-capability:nth-child(-n+2) {
        border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    }

}


@media (max-width: 800px) {

    .projects-introduction {
        padding: 75px 0;
    }

    .projects-introduction-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .projects-introduction-text {
        padding-top: 0;
    }

    .projects-introduction h2 {
        font-size: 42px;
    }


    .projects-gallery-section {
        padding: 75px 0;
    }

    .projects-gallery-header {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .projects-gallery-header h2 {
        font-size: 42px;
    }


    .projects-gallery {
        grid-template-columns: 1fr;
    }


    .project-card,
    .project-card.project-large,
    .project-card.project-wide {
        grid-column: auto;
        grid-row: auto;

        height: 380px;
    }

}


@media (max-width: 600px) {

    .projects-introduction h2 {
        font-size: 36px;
    }

    .projects-gallery-header h2 {
        font-size: 36px;
    }

    .project-card,
    .project-card.project-large,
    .project-card.project-wide {
        height: 330px;
    }

    .project-overlay {
        padding: 25px;
    }

    .project-overlay h3 {
        font-size: 22px;
    }

    .project-capabilities-grid {
        grid-template-columns: 1fr;
    }

    .project-capability {
        min-height: auto;

        padding: 30px 20px;

        border-right: none !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    }

    .project-capability:last-child {
        border-bottom: none;
    }

}
/* =========================================
   PROJECT VIDEO SECTION
========================================= */

.projects-video-section {
    padding: 100px 0;
    background: #ffffff;
}

.projects-video-header {
    display: grid;
    grid-template-columns: 1fr 0.75fr;
    gap: 80px;
    align-items: end;
    margin-bottom: 50px;
}

.projects-video-header h2 {
    font-size: 48px;
    line-height: 1.1;
    margin: 15px 0 0;
    color: var(--dark);
}

.projects-video-header h2 span {
    color: var(--primary-blue);
}

.projects-video-intro {
    max-width: 500px;
}

.projects-video-intro p {
    font-size: 16px;
    line-height: 1.8;
    color: #687586;
    margin: 0;
}


/* Video */

.projects-video-wrapper {
    position: relative;

    width: 100%;

    aspect-ratio: 16 / 9;

    background: #071b33;

    overflow: hidden;

    box-shadow: 0 25px 60px rgba(7, 27, 51, 0.15);
}

.projects-video-wrapper iframe {
    position: absolute;

    inset: 0;

    width: 100%;
    height: 100%;

    border: none;
}


/* Caption */

.projects-video-caption {
    display: flex;
    align-items: center;
    gap: 15px;

    margin-top: 20px;
}

.video-caption-line {
    width: 35px;
    height: 2px;

    background: var(--red);
}

.projects-video-caption p {
    margin: 0;

    font-size: 12px;
    font-weight: 600;

    letter-spacing: 1px;
    text-transform: uppercase;

    color: #7a8795;
}


/* Responsive */

@media (max-width: 800px) {

    .projects-video-section {
        padding: 75px 0;
    }

    .projects-video-header {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .projects-video-header h2 {
        font-size: 40px;
    }

}


@media (max-width: 600px) {

    .projects-video-header h2 {
        font-size: 34px;
    }

    .projects-video-wrapper {
        aspect-ratio: 16 / 10;
    }

}
/* =========================================
   BACK TO TOP BUTTON
========================================= */

.back-to-top {
    position: fixed;

    right: 30px;
    bottom: 30px;

    width: 50px;
    height: 50px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: none;

    background: var(--primary-blue);
    color: #ffffff;

    cursor: pointer;

    z-index: 999;

    opacity: 0;
    visibility: hidden;

    transform: translateY(15px);

    transition:
        opacity 0.3s ease,
        visibility 0.3s ease,
        transform 0.3s ease,
        background 0.25s ease;
}

.back-to-top svg {
    width: 21px;
    height: 21px;
}

.back-to-top:hover {
    background: var(--dark);

    transform: translateY(-3px);
}


/* Visible state */

.back-to-top.show {
    opacity: 1;
    visibility: visible;

    transform: translateY(0);
}


/* Mobile */

@media (max-width: 600px) {

    .back-to-top {
        right: 18px;
        bottom: 18px;

        width: 45px;
        height: 45px;
    }

}
/* =========================================
   CONTACT FORM POLISH
========================================= */

.contact-form {
    width: 100%;
}

.contact-form .form-group {
    margin-bottom: 22px;
}

.contact-form label {
    display: block;

    margin-bottom: 8px;

    font-size: 13px;
    font-weight: 600;

    color: var(--dark);
}

.contact-form label span {
    color: var(--red);
}


/* Inputs */

.contact-form input,
.contact-form select,
.contact-form textarea {

    width: 100%;

    padding: 15px 16px;

    border: 1px solid #d9e2e9;

    background: #ffffff;

    color: var(--dark);

    font-family: inherit;
    font-size: 14px;

    border-radius: 0;

    outline: none;

    transition:
        border-color 0.25s ease,
        box-shadow 0.25s ease;
}


.contact-form input,
.contact-form select {
    height: 54px;
}


.contact-form textarea {
    min-height: 150px;

    resize: vertical;

    line-height: 1.6;
}


/* Placeholder */

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #9aa6b2;
}


/* Focus */

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {

    border-color: var(--primary-blue);

    box-shadow:
        0 0 0 3px rgba(19, 175, 240, 0.08);
}


/* Select */

.contact-form select {
    cursor: pointer;
}


/* Submit */

.contact-submit {

    width: 100%;

    min-height: 56px;

    border: none;

    background: var(--primary-blue);

    color: #ffffff;

    font-family: inherit;

    font-size: 14px;

    font-weight: 700;

    cursor: pointer;

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 12px;

    transition:
        background 0.25s ease,
        color 0.25s ease,
        transform 0.25s ease;
}


.contact-submit:hover {

    background: var(--dark);

    transform: translateY(-2px);
}


.submit-arrow {
    font-size: 19px;
}


/* Form message */

.contact-form-message {

    display: none;

    margin-top: 18px;

    padding: 14px 16px;

    font-size: 13px;

    line-height: 1.6;
}


.contact-form-message.success {

    display: block;

    background: #edf9f2;

    border-left: 3px solid #2c9b61;

    color: #246b47;
}


.contact-form-message.error {

    display: block;

    background: #fff1f1;

    border-left: 3px solid var(--red);

    color: #9b2d32;
}


/* Mobile */

@media (max-width: 600px) {

    .contact-form input,
    .contact-form select {
        height: 52px;
    }

    .contact-form textarea {
        min-height: 130px;
    }

}