
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html,
        body {
            width: 100%;
            min-height: 100%;
        }
        /* Lato Thin - 100 */
        @font-face {
            font-family: "Lato";
            src: url("../fonts/lato/Lato-Thin.ttf") format("truetype");
            font-weight: 100;
            font-style: normal;
            font-display: swap;
        }

        /* Lato Light - 300 */
        @font-face {
            font-family: "Lato";
            src: url("../fonts/lato/Lato-Light.ttf") format("truetype");
            font-weight: 300;
            font-style: normal;
            font-display: swap;
        }

        /* Lato Regular - 400 */
        @font-face {
            font-family: "Lato";
            src: url("../fonts/lato/Lato-Regular.ttf") format("truetype");
            font-weight: 400;
            font-style: normal;
            font-display: swap;
        }

        /* Lato Bold - 700 */
        @font-face {
            font-family: "Lato";
            src: url("../fonts/lato/Lato-Bold.ttf") format("truetype");
            font-weight: 700;
            font-style: normal;
            font-display: swap;
        }

        /* Lato Black - 900 */
        @font-face {
            font-family: "Lato";
            src: url("../fonts/lato/Lato-Black.ttf") format("truetype");
            font-weight: 900;
            font-style: normal;
            font-display: swap;
        }

        body {
            /*font-family: 'Inter', sans-serif;*/
            font-family: "Lato", sans-serif;
            background: #002049;
            color: #fff;
            overflow-x: hidden;
        }

        a {
            text-decoration: none;
        }



        /* ==========================================
           MAIN
        ========================================== */

        .construction-page {
            width: 100%;
            overflow: hidden;
            height: 100%;
            background:
                url("../../image-ganmarine/banner-ship.png") center center / cover no-repeat;
        }


        /* ==========================================
           DARK OVERLAY
        ========================================== */

        .construction-page::before {
            content: "";
            position: absolute;
            inset: 0;

            background:
                linear-gradient(
                    90deg,
                    #021a31 0%,
                    rgba(2, 28, 49, .96) 27%,
                    rgba(3, 34, 58, .55) 55%,
                    rgba(3, 28, 50, .25) 100%
                );

            z-index: 1;
        }


        /* ==========================================
           HEADER
        ========================================== */

        .main-header {
            position: relative;
            z-index: 20;
            padding: 0px 0;
        }

        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
        }


        /* LOGO */

        .gan-logo {
            width: 220px;
            height: auto;
            display: block;
        }


        /* NAVIGATION */

        .main-navigation {
            display: flex;
            align-items: center;
            gap: 30px;
        }

        .main-navigation a {
            position: relative;
            color: #ffffff;
            font-size: 16px;
            font-weight: 500;
            transition: .3s ease;
        }

        .main-navigation a:hover {
            color: #fff;
        }

        .main-navigation a.active {
            color: #fff;
        }

        .main-navigation a.active::after {
            content: "";
            position: absolute;
            left: 0;
            right: 0;
            bottom: -10px;
            height: 3px;
            background: #ff6b1b;
        }


        /* QUOTE BUTTON */

        .header-quote {
            display: inline-flex;
            align-items: center;
            gap: 9px;
            padding: 10px 15px;
            background: #ff6b1b;
            color: #fff;
            border-radius: 6px;
            font-size: 15px;
            font-weight: 700;
            transition: .3s ease;
        }
        .header-quote:hover {
            background: #ff7b32;
            color: #fff;
            transform: translateY(-2px);
        }


        /* LANGUAGE */

        .language-box {
            display: flex;
            align-items: center;
            gap: 7px;

            padding: 12px 15px;

            background: rgba(0, 24, 44, .72);

            border-radius: 5px;

            font-size: 12px;
            font-weight: 600;
        }


        /* ==========================================
           CONTENT
        ========================================== */

        .construction-content {
            position: relative;
            z-index: 10;
            align-items: center;

            padding: 70px 0 180px;
        }

        .content-area {
            max-width: 720px;
        }


        /* SMALL ORANGE TITLE */

        .section-label {
            display: flex;
            align-items: center;
            gap: 13px;

            margin-bottom: 22px;

            color: #ff6b1b;

            font-size: 15px;
            font-weight: 800;

            letter-spacing: 1.5px;
            text-transform: uppercase;
        }

        .section-label::before {
            content: "";
            width: 38px;
            height: 4px;

            background: #ff6b1b;

            display: block;
        }


        /* HEADING */

        .construction-title {
    margin: 0;
    font-size: 70px;
    font-weight: 900;
}

        .construction-title .white-text {
            display: block;
            color: #fff;
        }

        .construction-title .orange-text {
            display: block;
            color: #ff6b1b;
        }


        /* DESCRIPTION */

        .construction-description {
            max-width: 620px;
            text-align: justify;
            margin-top: 25px;
            color: rgb(255 255 255);
            font-size: 17px;
            line-height: 1.65;
        }


        /* ==========================================
           BUTTONS
        ========================================== */

        .content-buttons {
            display: flex;
            align-items: center;
            gap: 30px;

            margin-top: 70px;
        }

        .orange-button,
        .outline-button {
            display: inline-flex;
            align-items: center;
            justify-content: center;

            gap: 10px;

            min-width: 175px;

            padding: 15px 23px;

            border-radius: 5px;

            font-size: 13px;
            font-weight: 700;

            transition: .3s ease;
        }


        .orange-button {
            background: #ff6b1b;
            border: 1px solid #ff6b1b;
            color: #fff;
        }

        .orange-button:hover {
            background: #ff7b32;
            border-color: #ff7b32;
            color: #fff;

            transform: translateY(-3px);
        }


        .outline-button {
            color: #fff;

            background: rgba(255, 255, 255, .04);

            border: 1px solid rgba(255, 255, 255, .45);
        }

        .outline-button:hover {
            color: #fff;

            border-color: #ff6b1b;

            background: rgba(255, 107, 27, .12);

            transform: translateY(-3px);
        }


        /* ==========================================
           STATUS
        ========================================== */

        .construction-status {
            display: flex;
            align-items: center;
            gap: 13px;

            margin-top: 35px;
        }

        .status-circle {
            position: relative;

            width: 40px;
            height: 40px;

            flex-shrink: 0;

            display: flex;
            align-items: center;
            justify-content: center;

            border-radius: 50%;

            color: #ff6b1b;

            background: rgba(255, 107, 27, .10);

            border: 1px solid rgba(255, 107, 27, .35);

            animation: statusPulse 2s infinite;
        }

        .status-text {
            color: rgba(255, 255, 255, .65);

            font-size: 12px;

            line-height: 1.5;
        }

        .status-text span {
            color: #fff;
            font-weight: 700;
        }

        @keyframes statusPulse {

            0% {
                box-shadow: 0 0 0 0 rgba(255, 107, 27, .45);
            }

            70% {
                box-shadow: 0 0 0 12px rgba(255, 107, 27, 0);
            }

            100% {
                box-shadow: 0 0 0 0 rgba(255, 107, 27, 0);
            }

        }


        /* ==========================================
           DECORATIVE WAVES
        ========================================== */

        .wave-decoration {
            position: absolute;

            left: -5%;
            bottom: -30px;

            width: 110%;

            height: 260px;

            z-index: 4;

            pointer-events: none;
        }

        .wave {
            position: absolute;

            width: 120%;
            height: 160px;

            left: -10%;

            border-radius: 50% 50% 0 0;

            transform: rotate(-3deg);
        }


        .wave-1 {
            bottom: -90px;

            background: #063d63;

            animation: waveOne 8s ease-in-out infinite;
        }


        .wave-2 {
            bottom: -120px;

            background: #075080;

            animation: waveTwo 10s ease-in-out infinite;
        }


        .wave-3 {
            bottom: -155px;

            background: #021f39;

            animation: waveThree 12s ease-in-out infinite;
        }


        @keyframes waveOne {

            0%,
            100% {
                transform: translateX(-2%) rotate(-3deg);
            }

            50% {
                transform: translateX(3%) rotate(-3deg);
            }

        }


        @keyframes waveTwo {

            0%,
            100% {
                transform: translateX(3%) rotate(-4deg);
            }

            50% {
                transform: translateX(-3%) rotate(-4deg);
            }

        }


        @keyframes waveThree {

            0%,
            100% {
                transform: translateX(-3%) rotate(-2deg);
            }

            50% {
                transform: translateX(3%) rotate(-2deg);
            }

        }


        /* ==========================================
           SHIP IMAGE LAYER
        ========================================== */

        .ship-image {
            position: absolute;

            z-index: 3;

            right: 0;
            bottom: 70px;

            width: 62%;

            pointer-events: none;

            animation: shipMove 5s ease-in-out infinite;
        }

        .ship-image img {
            width: 100%;
            height: auto;

            display: block;
        }


        @keyframes shipMove {

            0%,
            100% {
                transform: translateY(0);
            }

            50% {
                transform: translateY(-7px);
            }

        }


        /* ==========================================
           GLOW
        ========================================== */

        .blue-glow {
            position: absolute;

            right: 10%;
            top: 20%;

            width: 450px;
            height: 450px;

            border-radius: 50%;

            background: radial-gradient(
                circle,
                rgba(20, 116, 172, .25),
                transparent 70%
            );

            z-index: 2;

            pointer-events: none;
        }


        /* ==========================================
           FLOATING PARTICLES
        ========================================== */

        .particle {
            position: absolute;

            width: 4px;
            height: 4px;

            border-radius: 50%;

            background: rgba(255, 255, 255, .55);

            z-index: 5;

            animation: floatingParticle 5s ease-in-out infinite;
        }

        .particle-1 {
            right: 42%;
            top: 28%;
        }

        .particle-2 {
            right: 25%;
            top: 23%;

            animation-delay: 1s;
        }

        .particle-3 {
            right: 14%;
            top: 40%;

            animation-delay: 2s;
        }

        .particle-4 {
            right: 50%;
            top: 15%;

            animation-delay: 1.5s;
        }

        @keyframes floatingParticle {

            0%,
            100% {
                opacity: .25;
                transform: translateY(0);
            }

            50% {
                opacity: 1;
                transform: translateY(-18px);
            }

        }


        /* ==========================================
           BOTTOM BAR
        ========================================== */

        .bottom-bar {
            position: relative;

            z-index: 15;

            left: 0;
            bottom: 25px;

            width: 100%;
        }

        .bottom-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .copyright {
            color: rgb(255 255 255);
            font-size: 14px;
        }


        .social-icons {
            display: flex;
            gap: 8px;
        }

        .social-icons a {
            width: 31px;
            height: 31px;

            display: flex;
            align-items: center;
            justify-content: center;

            border-radius: 50%;

            color: rgba(255, 255, 255, .65);

            border: 1px solid rgba(255, 255, 255, .2);

            font-size: 11px;

            transition: .3s ease;
        }

        .social-icons a:hover {
            background: #ff6b1b;
            border-color: #ff6b1b;
            color: #fff;
        }


        /* ==========================================
           1500 PX+
        ========================================== */

        @media (min-width: 1500px) {

            .main-header {
                padding-top: 5px;
            }

            .gan-logo {
                width: 200px;
            }

            .main-navigation {
                gap: 35px;
            }

            .construction-content {
                padding-bottom: 60px;
            }

            .ship-image {
                width: 63%;
                bottom: 65px;
            }

        }


        /* ==========================================
           1300 - 1499 PX
        ========================================== */

        @media (min-width: 1300px) and (max-width: 1499px) {

            .ship-image {
                width: 61%;
                bottom: 60px;
            }

            .main-navigation {
                gap: 25px;
            }

        }


        /* ==========================================
           992 - 1299 PX
        ========================================== */

        @media (min-width: 992px) and (max-width: 1299px) {

            .main-navigation {
                gap: 18px;
            }

            .main-navigation a {
                font-size: 14px;
            }

            .gan-logo {
                width: 190px;
            }

            .header-quote {
                padding: 11px 15px;
            }

            .ship-image {
                width: 62%;
                bottom: 75px;
            }

            .construction-title {
                font-size: 62px;
            }

        }


        /* ==========================================
           TABLET
        ========================================== */

        @media (max-width: 991px) {

            .main-navigation,
            .language-box {
                display: none;
            }

            .gan-logo {
                width: 190px;
            }

            .construction-content {
                min-height: auto;

                padding-top: 65px;
                padding-bottom: 390px;

                align-items: flex-start;
            }

            .content-area {
                max-width: 700px;
            }

            .construction-title {
                font-size: 60px;
            }

            .ship-image {
                width: 90%;
                right: -10%;
                bottom: 70px;
            }

            .wave-decoration {
                height: 230px;
            }

        }


        /* ==========================================
           768 PX
        ========================================== */

        @media (max-width: 767px) {

            .main-header {
                padding: 16px 0;
            }

            .gan-logo {
                width: 170px;
            }

            .header-quote {
                padding: 10px 13px;
                font-size: 14px;
            }

            .construction-content {
                padding:
                    45px 20px 25px;
            }

            .section-label {
                font-size: 11px;
                letter-spacing: 1px;

                gap: 9px;

                margin-bottom: 17px;
            }

            .section-label::before {
                width: 28px;
                height: 3px;
            }

            .construction-title {
                font-size: 47px;

                line-height: 1;

                letter-spacing: -2px;
            }

            .construction-description {
                margin-top: 20px;

                font-size: 14px;
                text-align: justify;
                line-height: 1.65;

                max-width: 560px;
            }

            .content-buttons {
                margin-top: 20px;

                gap: 9px;
            }

            .orange-button,
            .outline-button {
                min-width: 145px;

                padding: 13px 15px;

                font-size: 14px;
            }

            .construction-status {
                margin-top: 25px;
            }

            .status-circle {
                width: 35px;
                height: 35px;

                font-size: 11px;
            }

            .status-text {
                font-size: 10px;
            }

            .ship-image {
                width: 105%;

                right: -22%;

                bottom: 60px;
            }

            .blue-glow {
                width: 300px;
                height: 300px;

                right: 0;
            }

        }


        /* ==========================================
           430 PX
        ========================================== */

        @media (max-width: 430px) {

            .main-header {
                padding: 13px 0;
            }

            .gan-logo {
                width: 145px;
            }

            .header-quote {
                padding: 9px 10px;

                font-size: 14px;

                gap: 5px;
            }

            .construction-content {
                padding:
                    38px 18px 10px;
            }

            .section-label {
                font-size: 12px;
            }

            .section-label::before {
                width: 24px;
                height: 2px;
            }

            .construction-title {
                font-size: 39px;

                letter-spacing: -1.5px;
            }

            .construction-description {
                font-size: 14px;
                text-align: justify;
                line-height: 1.6;
            }

            .content-buttons {
                flex-wrap: wrap;
            }

            .orange-button,
            .outline-button {
                min-width: 128px;

                padding: 11px 12px;

                font-size: 14px;
            }

            .construction-status {
                margin-top: 23px;
            }

            .ship-image {
                width: 120%;

                right: -34%;

                bottom: 45px;
            }

            .wave-decoration {
                height: 190px;
            }

            .bottom-bar {
                bottom: 12px;
            }

            .copyright {
                display: none;
            }

            .bottom-inner {
                justify-content: center;
            }

        }


        /* ==========================================
           355 PX
        ========================================== */

        @media (max-width: 355px) {

            .gan-logo {
                width: 130px;
            }

            .header-quote {
                padding: 8px 8px;
                font-size: 13px;
            }

            .construction-content {
                padding: 32px 15px 10px;
            }

            .construction-title {
                font-size: 34px;

                letter-spacing: -1px;
            }

            .construction-description {
                font-size: 14px;
                text-align: justify;
            }

            .orange-button,
            .outline-button {
                min-width: 115px;

                padding: 10px 9px;

                font-size: 14px;
            }

            .ship-image {
                width: 130%;

                right: -43%;

                bottom: 38px;
            }

        }

        /* ==========================================
   COUNTER + KEY ROUTES
========================================== */

.stats-routes-section {
    position: relative;
    width: 100%;
    background: #031f39;
    overflow: hidden;
    margin-top: 135px;
    margin-bottom: 20px;
}


/* ==========================================
   COUNTER AREA
========================================== */

.shipping-stats {
    min-height: 125px;

    display: flex;
    align-items: center;

    padding: 10px 0;

    position: relative;
}


/* Individual Counter */

.shipping-stat {
    flex: 1;

    display: flex;
    align-items: center;

    min-height: 65px;

    padding: 0 30px;

    position: relative;
}


/* Vertical separator */

.shipping-stat:not(:last-child)::after {
    content: "";

    position: absolute;

    right: 0;
    top: 8px;

    width: 1px;
    height: 52px;

    background: rgba(28, 121, 174, .65);
}


/* Icon */

.stat-icon {
    width: 45px;
    height: 45px;

    flex-shrink: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #ff6b1b;

    font-size: 29px;

    margin-right: 15px;
}


/* Content */

.stat-content {
    min-width: 0;
}

.stat-content h3 {
    margin: 0;

    color: #ffffff;

    font-size: 23px;

    line-height: 1.1;

    font-weight: 800;

    white-space: nowrap;
}

.stat-content h3 .counter {
    font-size: 25px;
}

.stat-number-text {
    font-size: 17px;
    font-weight: 700;
}

.stat-content p {
    margin: 6px 0 0;

    color: #ffffff;

    font-size: 11px;

    line-height: 1.2;

    white-space: nowrap;
}


/* ==========================================
   KEY ROUTES
========================================== */

.key-routes-wrapper {
    position: relative;

    width: 100%;

    border-top: 1px solid rgba(40, 124, 174, .35);
    border-bottom: 1px solid rgba(40, 124, 174, .35);

    background: #062a48;
}


.key-routes {
    min-height: 58px;

    display: flex;
    align-items: stretch;
}


/* ==========================================
   ROUTE TITLE
========================================== */

.routes-title {
    position: relative;

    min-width: 220px;

    display: flex;
    align-items: center;

    padding: 0 28px;

    background: #ff6b1b;

    color: #ffffff;

    font-size: 13px;

    font-weight: 800;

    letter-spacing: .3px;
}


/* Right angled shape */

.routes-title::after {
    content: "";

    position: absolute;

    top: 0;
    right: -27px;

    width: 40px;
    height: 100%;

    background: #ff6b1b;

    clip-path: polygon(
        0 0,
        68% 0,
        100% 50%,
        68% 100%,
        0 100%
    );

    z-index: 2;
}


/* Ship icon */

.routes-ship-icon {
    width: 52px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-right: 10px;

    font-size: 24px;

    color: #062a48;
}


/* ==========================================
   ROUTES LIST
========================================== */

.routes-list {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-left: 45px;
    min-width: 0;
}


.route-item {
    display: flex;
    align-items: center;
    justify-content: center;

    gap: 7px;

    padding: 0 16px;

    color: rgba(255, 255, 255, .88);

    font-size: 12px;

    font-weight: 500;

    white-space: nowrap;

    transition: .3s ease;
}

.route-item:hover {
    color: #ff6b1b;
}


/* Route arrows */

.route-item i {
    color: #8bb6ce;

    font-size: 10px;
}


/* Divider */

.route-divider {
    width: 1px;
    height: 24px;

    flex-shrink: 0;

    background: rgba(116, 171, 201, .35);
}


/* View all */

.view-routes {
    margin-left: auto;

    display: flex;
    align-items: center;

    gap: 7px;

    padding-left: 15px;

    color: #ff6b1b;

    font-size: 15px;

    font-weight: 700;

    white-space: nowrap;

    transition: .3s ease;
}

.view-routes:hover {
    color: #ff8b51;
}

.view-routes i {
    font-size: 10px;
}


/* ==========================================
   1500PX+
========================================== */

@media (min-width: 1500px) {

    .shipping-stats {
        min-height: 100%;
    }

    .shipping-stat {
        padding: 0 38px;
    }

    .stat-icon {
        width: 50px;
        font-size: 31px;
    }

    .stat-content h3 {
        font-size: 25px;
    }

    .stat-content h3 .counter {
        font-size: 27px;
    }

    .stat-content p {
        font-size: 15px;
    }

    .routes-title {
        min-width: 245px;
        padding-left: 35px;
    }

    .routes-list {
        padding-left: 50px;
    }

    .route-item {
        padding: 0 23px;
        font-size: 15px;
    }

}


/* ==========================================
   1300PX - 1499PX
========================================== */

@media (min-width: 1300px) and (max-width: 1499px) {

    .shipping-stat {
        padding: 0 25px;
    }

    .stat-icon {
        margin-right: 11px;
    }

    .stat-content h3 {
        font-size: 21px;
    }

    .stat-content h3 .counter {
        font-size: 23px;
    }

    .routes-title {
        min-width: 205px;
    }

    .routes-list {
        padding-left: 35px;
    }

    .route-item {
        padding: 0 10px;
        font-size: 11px;
    }

}


/* ==========================================
   992PX - 1299PX
========================================== */

@media (min-width: 992px) and (max-width: 1299px) {

    .shipping-stat {
        padding: 0 15px;
    }

    .stat-icon {
        width: 38px;
        margin-right: 8px;
        font-size: 23px;
    }

    .stat-content h3,
    .stat-content h3 .counter {
        font-size: 19px;
    }

    .stat-number-text {
        font-size: 14px;
    }

    .stat-content p {
        font-size: 14px;
    }

    .routes-title {
        min-width: 170px;
        padding: 0 18px;
    }

    .routes-title span {
        font-size: 14px;
    }

    .routes-ship-icon {
        width: 35px;
        margin-right: 4px;
        font-size: 19px;
    }

    .routes-list {
        padding-left: 25px;
    }

    .route-item {
        gap: 4px;
        padding: 0 7px;
        font-size: 13px;
    }

    .route-divider {
        height: 19px;
    }

    .view-routes {
        padding-left: 8px;
        font-size: 13px;
    }

}


/* ==========================================
   TABLET
========================================== */

@media (max-width: 991px) {

    .shipping-stats {
        min-height: auto;

        display: grid;

        grid-template-columns: repeat(2, 1fr);

        padding: 18px 0;
    }

    .shipping-stat {
        min-height: 70px;

        padding: 12px 25px;
    }

    .shipping-stat:nth-child(2)::after {
        display: none;
    }

    .shipping-stat:nth-child(3) {
        border-top: 1px solid rgba(28, 121, 174, .3);
    }

    .shipping-stat:nth-child(4) {
        border-top: 1px solid rgba(28, 121, 174, .3);
    }

    .key-routes {
        min-height: auto;

        display: block;
    }

    .routes-title {
        min-width: 100%;

        min-height: 50px;

        justify-content: center;

        padding: 0;
    }

    .routes-title::after {
        display: none;
    }

    .routes-ship-icon {
        width: auto;
        margin-right: 10px;
    }

    .routes-list {
        min-height: 55px;

        padding: 0 15px;

        overflow-x: auto;

        scrollbar-width: none;
    }

    .routes-list::-webkit-scrollbar {
        display: none;
    }

    .route-item {
        padding: 8px 15px;
    }

    .view-routes {
        margin-left: 0;
        padding: 0 15px;
    }

}


/* ==========================================
   768PX
========================================== */

@media (max-width: 767px) {

    .shipping-stats {
        grid-template-columns: repeat(2, 1fr);

        padding: 15px 0;
    }

    .shipping-stat {
        padding: 12px 12px;
    }

    .stat-icon {
        width: 38px;

        margin-right: 9px;

        font-size: 22px;
    }

    .stat-content h3,
    .stat-content h3 .counter {
        font-size: 18px;
    }

    .stat-number-text {
        font-size: 13px;
    }

    .stat-content p {
        margin-top: 4px;
        font-size: 14px;
    }

    .routes-list {
        justify-content: flex-start;
    }

    .route-item {
        font-size: 14px;
    }

}


/* ==========================================
   430PX
========================================== */

@media (max-width: 430px) {

    .shipping-stats {
        padding: 10px 0;
    }

    .shipping-stat {
        min-height: 65px;

        padding: 10px 5px;
    }

    .shipping-stat:not(:last-child)::after {
        height: 42px;
        top: 11px;
    }

    .stat-icon {
        width: 31px;

        margin-right: 6px;

        font-size: 19px;
    }

    .stat-content h3,
    .stat-content h3 .counter {
        font-size: 15px;
    }

    .stat-number-text {
        font-size: 13px;
    }

    .stat-content p {
        font-size: 11px;
    }

    .routes-title {
        min-height: 45px;
    }

    .routes-title span {
        font-size: 14px;
    }

    .routes-ship-icon {
        font-size: 19px;
    }

    .routes-list {
        min-height: 50px;

        padding: 0 5px;
    }

    .route-item {
        padding: 8px 11px;

        font-size: 14px;
    }

    .route-divider {
        height: 17px;
    }

    .view-routes {
        padding: 0 12px;

        font-size: 9px;
    }

}


/* ==========================================
   355PX
========================================== */

@media (max-width: 355px) {

    .stat-icon {
        width: 27px;

        margin-right: 4px;

        font-size: 17px;
    }

    .stat-content h3,
    .stat-content h3 .counter {
        font-size: 13px;
    }

    .stat-number-text {
        font-size: 13px;
    }

    .stat-content p {
        font-size: 12px;
    }

    .route-item {
    padding: 8px 9px;
    font-size: 13px;
}

}

@media (max-width: 991px) {
    .content-buttons {
        justify-content: center;
    }
    .stats-routes-section {
        position: relative;
        width: 100%;
        background: #031f39;
        overflow: hidden;
        margin-top: 30px;   
    }
    .routes-list {
        flex: 1;
        display: block;
        align-items: center;
        justify-content: center;
        padding-left: 0px;
        min-width: 0;
    }
}

@media (max-width: 768px) {
    .bottom-inner {
        justify-content: center;
    }
}

/*HEADER*/

@media (min-width: 1500px) {
    .main-header {
        padding-top: 5px;
    }
}
.main-header {
    position: relative;
    z-index: 20;
    padding: 0px 0;
}
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
@media (min-width: 1500px) {
    .gan-logo {
        width: 200px;
    }
}
.gan-logo {
    width: 220px;
    height: auto;
    display: block;
}
@media (min-width: 1500px) {
    .main-navigation {
        gap: 35px;
    }
}
.main-navigation {
    display: flex;
    align-items: center;
    gap: 30px;
}
.main-navigation a.active {
    color: #fff;
}
.main-navigation a {
    position: relative;
    color: #ffffff;
    font-size: 16px;
    font-weight: 500;
    transition: .3s ease;
}
.main-navigation a.active::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -10px;
    height: 3px;
    background: #ff6b1b;
}
.header-quote {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 10px 15px;
    background: #ff6b1b;
    color: #fff;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 700;
    transition: .3s ease;
}
.stats-routes-section {
    position: relative;
    width: 100%;
    background: #002049;
    overflow: hidden;
    margin-top: -90px !important;
    margin-bottom: 20px;
}
@media (min-width: 1500px) {
    .shipping-stats {
        min-height: 100%;
    }
}
.shipping-stats {
    min-height: 125px;
    display: flex;
    align-items: center;
    padding: 10px 0;
    position: relative;
}
@media (min-width: 1500px) {
    .shipping-stat {
        padding: 0 38px;
    }
}
.shipping-stat {
    flex: 1;
    display: flex;
    align-items: center;
    min-height: 65px;
    padding: 0 30px;
    position: relative;
}
@media (min-width: 1500px) {
    .stat-icon {
        width: 50px;
        font-size: 31px;
    }
}
.stat-icon {
    width: 45px;
    height: 45px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ff6b1b;
    font-size: 29px;
    margin-right: 15px;
}
.stat-content {
    min-width: 0;
}
@media (min-width: 1500px) {
    .stat-content h3 {
        font-size: 25px;
    }
}
.stat-content h3 {
    margin: 0;
    color: #ffffff;
    font-size: 23px;
    line-height: 1.1;
    font-weight: 800;
    white-space: nowrap;
}
@media (min-width: 1500px) {
    .stat-content h3 .counter {
        font-size: 27px;
    }
}
.stat-content h3 .counter {
    font-size: 25px;
}
.stat-number-text {
    font-size: 18px;
    font-weight: 700;
}
@media (min-width: 1500px) {
    .stat-content p {
        font-size: 15px;
    }
}
.stat-content p {
    margin: 6px 0 0;
    color: #ffffff;
    font-size: 16px;
    line-height: 1.2;
    white-space: nowrap;
}
.shipping-stat:not(:last-child)::after {
    content: "";
    position: absolute;
    right: 0;
    top: 8px;
    width: 1px;
    height: 52px;
    background: rgba(28, 121, 174, .65);
}
.key-routes-wrapper {
    position: relative;
    width: 100%;
    border-top: 1px solid rgba(40, 124, 174, .35);
    border-bottom: 1px solid rgba(40, 124, 174, .35);
    background: #062a48;
}
.key-routes {
    min-height: 58px;
    display: flex;
    align-items: stretch;
}
@media (min-width: 1500px) {
    .routes-title {
        min-width: 245px;
        padding-left: 35px;
    }
}
.routes-title {
    position: relative;
    min-width: 220px;
    display: flex;
    align-items: center;
    padding: 0 28px;
    background: #ff6b1b;
    color: #ffffff;
    font-size: 18px;
    font-weight: 800;
    letter-spacing: .3px;
}
.routes-ship-icon {
    width: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    font-size: 24px;
    color: #062a48;
}
.routes-title::after {
    content: "";
    position: absolute;
    top: 0;
    right: -27px;
    width: 40px;
    height: 100%;
    background: #ff6b1b;
    clip-path: polygon(
        0 0,
        68% 0,
        100% 50%,
        68% 100%,
        0 100%
    );
    z-index: 2;
}
@media (min-width: 1500px) {
    .routes-list {
        padding-left: 50px;
    }
}
.routes-list {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-left: 45px;
    min-width: 0;
}
@media (min-width: 1500px) {
    .route-item {
        padding: 0 23px;
        font-size: 15px;
    }
}
.route-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    padding: 0 26px;
    color: #ffffff;
    font-size: 16px;
    font-weight: 500;
    white-space: nowrap;
    transition: .3s ease;
}
.route-item i {
    color: #ffffff;
    font-size: 14px;
}
.route-divider {
    width: 2px;
    height: 30px;
    flex-shrink: 0;
    background: #ffffff61;
}
.view-routes {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 7px;
    padding-left: 15px;
    color: #ff6b1b;
    font-size: 15px;
    font-weight: 700;
    white-space: nowrap;
    transition: .3s ease;
}
.view-routes i {
    font-size: 16px;
    padding-left: 3px;
}
/* =========================================
   SERVICES SECTION
========================================= */

.services-section {
    position: relative;
    padding: 55px 0 65px;
    overflow: hidden;

    background:
        radial-gradient(
            circle at 82% 30%,
            rgba(0, 91, 153, 0.30),
            transparent 35%
        ),
        linear-gradient(
            135deg,
            #021c32 0%,
            #063455 50%,
            #021d34 100%
        );
}


/* Decorative Background */
.services-section::before {
    content: "";
    position: absolute;
    width: 600px;
    height: 250px;
    top: 25px;
    right: -100px;

    border-top: 2px solid rgba(0, 126, 211, 0.35);
    border-radius: 50%;

    transform: rotate(8deg);
    pointer-events: none;
}

.services-section::after {
    content: "";
    position: absolute;
    width: 520px;
    height: 180px;
    top: 65px;
    right: -60px;

    border-top: 1px solid rgba(0, 126, 211, 0.25);
    border-radius: 50%;

    transform: rotate(8deg);
    pointer-events: none;
}


/* =========================================
   SECTION HEADING
========================================= */

.services-heading {
    position: relative;
    z-index: 2;
    margin-bottom: 18px;
}

.services-label {
    display: block;

    margin-bottom: 5px;

    color: #ff7518;

    font-size: 15px;
    font-weight: 700;
    line-height: 1.2;

    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.services-heading h2 {
    margin: 0 0 5px;

    color: #ffffff;

    font-size: clamp(28px, 3vw, 40px);
    font-weight: 700;
    line-height: 1.15;
}

.services-heading p {
    margin: 0;
    color: #ffffff;
    font-size: 17px;
    line-height: 1.5;
}


/* =========================================
   SERVICE CARD
========================================= */

.service-card {
    position: relative;
    z-index: 2;
    height: 100%;
    min-height: 160px;
    padding: 25px 20px 25px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
    border: 1px solid rgba(55, 151, 215, 0.35);
    border-radius: 10px;
    background: url("../../image-ganmarine/home/service-bg1.png");
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.06),
        0 8px 25px rgba(0, 0, 0, 0.18);
    transition:
        transform 0.35s ease,
        border-color 0.35s ease,
        box-shadow 0.35s ease;
}


/* Hover */

.service-card:hover {
    transform: translateY(-6px);

    border-color: rgba(255, 117, 24, 0.65);

    box-shadow:
        0 15px 35px rgba(0, 0, 0, 0.25),
        0 0 25px rgba(0, 115, 185, 0.12);
}

.service-card:hover::before {
    transform: scale(1.4);
}


/* =========================================
   CARD TOP
========================================= */

.service-card-top {
    position: relative;
    z-index: 1;

    display: flex;
    align-items: flex-start;

    gap: 15px;
}


/* =========================================
   ICON
========================================= */

.service-icon {
    flex: 0 0 52px;

    width: 52px;
    height: 52px;
    align-items: center;
    justify-content: center;

    color: #ff7518;

    font-size: 34px;

    transition: transform 0.35s ease;
}

.service-card:hover .service-icon {
    transform: translateY(-3px) scale(1.05);
}


/* =========================================
   CONTENT
========================================= */

.service-content {
    min-width: 0;
}

.service-content h3 {
    margin: 4px 0 14px;

    color: #ffffff;

    font-size: 18px;
    font-weight: 700;
    line-height: 1.25;
}

.service-content p {
    margin: 0;

    color: #ffffff;

    font-size: 16px;
    line-height: 1.5;
}


/* =========================================
   LEARN MORE
========================================= */

.service-link {
    position: relative;
    z-index: 2;

    display: inline-flex;
    align-items: center;
    gap: 10px;

    width: fit-content;

    margin-top: 14px;

    color: #ff7518;

    font-size: 16px;
    font-weight: 700;

    text-decoration: none;

    transition: gap 0.3s ease, color 0.3s ease;
}

.service-link i {
    font-size: 13px;

    transition: transform 0.3s ease;
}

.service-link:hover {
    color: #ff984f;
    gap: 13px;
}

.service-link:hover i {
    transform: translateX(3px);
}


/* =========================================
   LARGE LAPTOP
========================================= */

@media (max-width: 1199px) {

    .services-section {
        padding: 50px 0 55px;
    }

    .service-card {
        padding: 17px;
    }

    .service-card-top {
        gap: 10px;
    }

    .service-icon {
        flex-basis: 45px;

        width: 45px;
        height: 45px;

        font-size: 29px;
    }

    .service-content h3 {
        font-size: 16px;
    }

    .service-content p {
        font-size: 12px;
    }

}


/* =========================================
   TABLET
========================================= */

@media (max-width: 991px) {

    .services-section {
        padding: 45px 0 50px;
    }

    .services-heading {
        margin-bottom: 25px;
    }

    .services-heading h2 {
        font-size: 32px;
    }

    .service-card {
        min-height: 210px;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 767px) {

    .services-section {
        padding: 40px 0 45px;
    }

    .services-heading {
        text-align: center;
        margin-bottom: 25px;
    }

    .services-heading p {
        margin: 0 auto;
        font-size: 13px;
    }

    .services-heading h2 {
        font-size: 29px;
    }

    .services-label {
        font-size: 13px;
    }

    .service-card {
        min-height: 0;
        padding: 20px;
    }

}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 575px) {

    .services-section {
        padding: 35px 0 40px;
    }

    .services-heading h2 {
        font-size: 26px;
    }

    .services-heading p {
        font-size: 12px;
        line-height: 1.6;
    }

    .service-card {
        padding: 18px;
    }

    .service-icon {
        flex-basis: 45px;

        width: 45px;
        height: 45px;

        font-size: 28px;
    }

    .service-content h3 {
        font-size: 17px;
    }

    .service-content p {
        font-size: 12px;
        line-height: 1.55;
    }

    .service-link {
        font-size: 13px;
    }

}
/* =========================================
   GLOBAL NETWORK SECTION
========================================= */

.global-network-section {
    position: relative;
    overflow: hidden;
    background: linear-gradient(
            90deg,
            rgba(1, 27, 48, 0.38),
            rgba(2, 42, 72, 0.84),
            rgba(1, 27, 48, 0.58)
        ),
        url("../../image-ganmarine/home/strip-bg.png");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: bottom;
    color: #ffffff;
}

/* Background Map */

.global-network-section::before {
    content: "";

    position: absolute;
    inset: 0;

    background-image:
        url("../images/world-map.png");

    background-repeat: no-repeat;
    background-position: center center;
    background-size: 62% auto;

    opacity: 0.45;

    pointer-events: none;
}


/* Subtle grid */

.global-network-section::after {
    content: "";

    position: absolute;
    inset: 0;

    background-image:
        linear-gradient(
            rgba(28, 132, 192, 0.06) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(28, 132, 192, 0.06) 1px,
            transparent 1px
        );

    background-size: 50px 50px;

    pointer-events: none;
}


/* =========================================
   CONTENT
========================================= */

.global-network-row {
    position: relative;
    z-index: 2;

    min-height: 250px;
}


/* =========================================
   LEFT CONTENT
========================================= */

.global-network-content {
    position: relative;
    z-index: 5;
}

.global-network-label {
    display: block;

    margin-bottom: 3px;

    color: #ff7318;

    font-size: 14px;
    font-weight: 700;

    letter-spacing: 1px;
}

.global-network-content h2 {
    margin: 0 0 10px;
    color: #ffffff;
    font-size: clamp(28px, 3vw, 36px);
    font-weight: 800;
    line-height: 1.05;
}

.global-network-content h2 span {
    display: block;

    color: #ff7318;
}

.global-network-content p {
    margin: 0 0 16px;
    color: #fff;
    font-size: 17px;
    line-height: 1.5;
}


/* =========================================
   BUTTON
========================================= */

.global-network-btn {
    display: inline-flex;

    align-items: center;
    gap: 12px;

    padding: 12px 25px;

    border-radius: 4px;

    background: #ff7318;

    color: #ffffff;

    font-size: 15px;
    font-weight: 700;

    text-decoration: none;

    transition:
        transform 0.3s ease,
        background 0.3s ease,
        box-shadow 0.3s ease;
}

.global-network-btn i {
    transition: transform 0.3s ease;
}

.global-network-btn:hover {
    background: #ff8b3d;

    color: #ffffff;

    transform: translateY(-2px);

    box-shadow: 0 8px 20px rgba(255, 115, 24, 0.25);
}

.global-network-btn:hover i {
    transform: translateX(4px);
}


/* =========================================
   MAP
========================================= */

.global-map-area {
    position: relative;

    height: 260px;

    width: 100%;
}


/* Map glow */

.map-glow {
    position: absolute;

    width: 130px;
    height: 130px;

    left: 54%;
    top: 48%;

    transform: translate(-50%, -50%);

    border-radius: 50%;

    background: rgba(255, 104, 20, 0.15);

    filter: blur(20px);

    animation: mapGlow 2.5s ease-in-out infinite;
}

@keyframes mapGlow {

    0%,
    100% {
        transform: translate(-50%, -50%) scale(0.8);
        opacity: 0.5;
    }

    50% {
        transform: translate(-50%, -50%) scale(1.25);
        opacity: 1;
    }
}


/* =========================================
   ROUTE POINTS
========================================= */

.route-point {
    position: absolute;

    display: flex;
    align-items: center;
    gap: 7px;

    z-index: 4;

    color: #ffffff;

    font-size: 12px;
    font-weight: 600;

    white-space: nowrap;
}

.route-point span {
    display: block;

    width: 10px;
    height: 10px;

    border: 2px solid #ffffff;

    border-radius: 50%;

    background: #ff7318;

    box-shadow:
        0 0 0 4px rgba(255, 115, 24, 0.15),
        0 0 12px rgba(255, 115, 24, 0.8);

    animation: routePulse 2s infinite;
}

@keyframes routePulse {

    0% {
        box-shadow:
            0 0 0 2px rgba(255, 115, 24, 0.15),
            0 0 8px rgba(255, 115, 24, 0.5);
    }

    50% {
        box-shadow:
            0 0 0 6px rgba(255, 115, 24, 0.12),
            0 0 18px rgba(255, 115, 24, 0.9);
    }

    100% {
        box-shadow:
            0 0 0 2px rgba(255, 115, 24, 0.15),
            0 0 8px rgba(255, 115, 24, 0.5);
    }
}


/* Positions */

.point-north-america {
    left: 5%;
    top: 23%;
}

.point-europe {
    left: 42%;
    top: 8%;
}

.point-asia {
    right: 9%;
    top: 25%;
}

.point-africa {
    left: 48%;
    bottom: 20%;
}

.point-south-america {
    left: 20%;
    bottom: 15%;
}

.point-oceania {
    right: 0;
    bottom: 7%;
}


/* =========================================
   UAE POINT
========================================= */

.uae-point {
    position: absolute;

    left: 58%;
    top: 49%;

    z-index: 10;

    display: flex;
    align-items: center;
    gap: 10px;

    transform: translate(-50%, -50%);
}

.uae-ring {
    position: relative;

    width: 38px;
    height: 38px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 3px solid #ff7318;

    border-radius: 50%;

    box-shadow:
        0 0 0 5px rgba(255, 115, 24, 0.15),
        0 0 25px rgba(255, 115, 24, 0.8);

    animation: uaePulse 2s infinite;
}

.uae-dot {
    width: 12px;
    height: 12px;

    border-radius: 50%;

    background: #ffffff;

    box-shadow: 0 0 12px #ffffff;
}

@keyframes uaePulse {

    0% {
        box-shadow:
            0 0 0 3px rgba(255, 115, 24, 0.12),
            0 0 15px rgba(255, 115, 24, 0.5);
    }

    50% {
        box-shadow:
            0 0 0 9px rgba(255, 115, 24, 0.08),
            0 0 35px rgba(255, 115, 24, 1);
    }

    100% {
        box-shadow:
            0 0 0 3px rgba(255, 115, 24, 0.12),
            0 0 15px rgba(255, 115, 24, 0.5);
    }
}

.uae-label {
    display: flex;
    flex-direction: column;

    color: #ffffff;

    line-height: 1.1;
}

.uae-label strong {
    font-size: 16px;
}

.uae-label span {
    font-size: 12px;
}


/* =========================================
   RIGHT FEATURE BOX
========================================= */

.network-features {
    position: relative;
    z-index: 5;

    padding: 18px 20px;

    border: 1px solid rgba(45, 137, 196, 0.35);

    border-radius: 10px;

    background:
        linear-gradient(
            145deg,
            rgba(7, 62, 97, 0.88),
            rgba(3, 42, 68, 0.88)
        );

    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.05),
        0 10px 30px rgba(0, 0, 0, 0.2);
}

.network-features h3 {
    margin: 0 0 20px;

    color: #ffffff;

    font-size: 17px;
    font-weight: 700;

    line-height: 1.5;
}

.network-features h3 span {
    display: block;
}


/* Feature List */

.network-features ul {
    list-style: none;

    padding: 0;
    margin: 0;
}

.network-features li {
    display: flex;
    align-items: center;

    gap: 9px;

    margin-bottom: 9px;

    color: #ffffff;

    font-size: 15px;
    line-height: 1.3;
}

.network-features li:last-child {
    margin-bottom: 0;
}


/* Check Icon */

.feature-check {
    flex: 0 0 23px;

    width: 23px;
    height: 23px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #ff7318;

    color: #ffffff;

    font-size: 10px;
}


/* =========================================
   LARGE LAPTOP
========================================= */

@media (max-width: 1199px) {

    .global-network-section::before {
        background-size: 65% auto;
    }

    .global-network-content h2 {
        font-size: 31px;
    }

    .global-network-content p {
        font-size: 12px;
    }

    .global-map-area {
        height: 250px;
    }

    .network-features {
        padding: 16px;
    }

}


/* =========================================
   TABLET
========================================= */

@media (max-width: 991px) {

    .global-network-section {
        padding: 40px 0;
    }

    .global-network-section::before {
        background-size: 80% auto;
        background-position: center 45%;
    }

    .global-network-content {
        margin-bottom: 20px;
    }

    .global-map-area {
        height: 280px;
    }

    .network-features {
        margin-top: 25px;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 767px) {

    .global-network-section {
        padding: 40px 0;
    }

    .global-network-section::before {
        background-size: 150% auto;
        background-position: center center;

        opacity: 0.25;
    }

    .global-network-content {
        text-align: center;
        margin-bottom: 10px;
    }

    .global-network-content p {
        margin-left: auto;
        margin-right: auto;
    }

    .global-network-btn {
        padding: 11px 20px;
        font-size: 13px;
    }

    .global-map-area {
        height: 250px;

        margin-top: 10px;
    }

    .route-point {
        font-size: 9px;
    }

    .route-point span {
        width: 7px;
        height: 7px;
    }

    .point-north-america {
        left: 0;
    }

    .point-europe {
        left: 38%;
    }

    .point-asia {
        right: 0;
    }

    .point-south-america {
        left: 8%;
    }

    .point-africa {
        left: 43%;
    }

    .point-oceania {
        right: 0;
    }

    .uae-point {
        left: 55%;
    }

    .uae-ring {
        width: 30px;
        height: 30px;
    }

    .uae-dot {
        width: 9px;
        height: 9px;
    }

    .uae-label strong {
        font-size: 13px;
    }

    .uae-label span {
        font-size: 9px;
    }

    .network-features {
        margin-top: 10px;
    }

}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 575px) {

    .global-network-content h2 {
        font-size: 28px;
    }

    .global-network-content p {
        font-size: 12px;
    }

    .global-map-area {
        height: 220px;
    }

    .route-point {
        font-size: 8px;
    }

    .network-features {
        padding: 18px;
    }

    .network-features h3 {
        font-size: 16px;
    }

    .network-features li {
        font-size: 11px;
    }

}
/* =========================================
   HOW IT WORKS
========================================= */

.how-it-works-section {
    position: relative;

    padding: 40px 0;

    overflow: hidden;

    background: #f8f9fa;
}


/* =========================================
   INTRO
========================================= */

.how-intro {
    position: relative;

    padding-right: 25px;

    border-right: 1px solid #d9dee3;
}

.how-label {
    display: block;
    margin-bottom: 5px;
    color: #ff7117;
    font-size: 20px;
    font-weight: 800;
    letter-spacing: 0.5px;
}

.how-intro h2 {
    margin: 0 0 12px;
    color: #114385;
    font-size: clamp(28px, 3vw, 36px);
    font-weight: 800;
    line-height: 1.02;
}

.how-intro h2 span {
    display: block;
}

.how-intro p {
    font-weight: 600;
    margin: 0;
    color: #114385;
    font-size: 17px;
    line-height: 1.5;
}


/* =========================================
   PROCESS WRAPPER
========================================= */

.process-wrapper {
    display: flex;
    align-items: flex-start;

    width: 100%;
}


/* =========================================
   PROCESS STEP
========================================= */

.process-step {
    flex: 1;

    min-width: 0;
}

.process-top {
    display: flex;
    align-items: center;

    gap: 14px;

    margin-bottom: 10px;
}


/* =========================================
   ICON
========================================= */

.process-icon {
    flex: 0 0 66px;

    width: 66px;
    height: 66px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #06345b;

    color: #ff7117;

    font-size: 27px;

    box-shadow:
        0 6px 18px rgba(4, 42, 76, 0.15);

    transition:
        transform 0.35s ease,
        background 0.35s ease,
        box-shadow 0.35s ease;
}

.process-step:hover .process-icon {
    transform: translateY(-5px);

    background: #ff7117;

    color: #ffffff;

    box-shadow:
        0 10px 25px rgba(255, 113, 23, 0.25);
}


/* =========================================
   NUMBER
========================================= */

.process-number {
    color: #114385;

    font-size: 25px;
    font-weight: 500;

    line-height: 1;
}


/* =========================================
   CONTENT
========================================= */

.process-content h3 {
    margin: 0 0 6px;

    color: #114385;

    font-size: 17px;
    font-weight: 800;

    line-height: 1.25;
}

.process-content p {
    max-width: 190px;
    font-weight: 600;
    margin: 0;
    color: #114385;
    font-size: 15px;
    line-height: 1.5;
}


/* =========================================
   ARROW
========================================= */

.process-arrow {
    flex: 0 0 45px;

    display: flex;
    align-items: center;
    justify-content: center;

    padding-top: 23px;

    color: #114385;

    font-size: 20px;
}

.process-arrow i {
    transition: transform 0.3s ease;
}

.process-step:hover + .process-arrow i {
    transform: translateX(5px);
}


/* =========================================
   LARGE LAPTOP
========================================= */

@media (max-width: 1199px) {

    .how-intro {
        padding-right: 18px;
    }

    .process-top {
        gap: 9px;
    }

    .process-icon {
        flex-basis: 55px;

        width: 55px;
        height: 55px;

        font-size: 23px;
    }

    .process-number {
        font-size: 21px;
    }

    .process-content h3 {
        font-size: 15px;
    }

    .process-content p {
        font-size: 11px;
    }

    .process-arrow {
        flex-basis: 30px;
    }

}


/* =========================================
   TABLET
========================================= */

@media (max-width: 991px) {

    .how-it-works-section {
        padding: 45px 0;
    }

    .how-intro {
        text-align: center;

        padding-right: 0;
        padding-bottom: 25px;

        border-right: 0;
        border-bottom: 1px solid #d9dee3;

        margin-bottom: 30px;
    }

    .how-intro p {
        margin-left: auto;
        margin-right: auto;
    }

    .process-wrapper {
        justify-content: center;
    }

    .process-step {
        text-align: center;
    }

    .process-top {
        justify-content: center;
    }

    .process-content p {
        margin-left: auto;
        margin-right: auto;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 767px) {

    .how-it-works-section {
        padding: 40px 0;
    }

    .how-intro h2 {
        font-size: 30px;
    }

    .process-wrapper {
        display: block;

        max-width: 450px;

        margin: 0 auto;
    }

    .process-step {
        position: relative;

        display: flex;
        align-items: flex-start;

        text-align: left;

        padding-bottom: 30px;
    }

    .process-top {
        flex: 0 0 125px;

        justify-content: flex-start;

        margin-bottom: 0;
    }

    .process-icon {
        flex-basis: 55px;

        width: 55px;
        height: 55px;

        font-size: 22px;
    }

    .process-number {
        font-size: 20px;
    }

    .process-content {
        padding-top: 3px;
    }

    .process-content h3 {
        font-size: 16px;
    }

    .process-content p {
        max-width: none;

        font-size: 12px;
    }

    .process-arrow {
        display: none;
    }

}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 575px) {

    .how-intro h2 {
        font-size: 27px;
    }

    .how-intro p {
        font-size: 12px;
    }

    .process-step {
        padding-bottom: 25px;
    }

    .process-top {
        flex-basis: 105px;
        gap: 8px;
    }

    .process-icon {
        flex-basis: 48px;

        width: 48px;
        height: 48px;

        font-size: 19px;
    }

    .process-number {
        font-size: 17px;
    }

    .process-content h3 {
        font-size: 15px;
    }

    .process-content p {
        font-size: 11px;
    }

}
/* =========================================
   TRUSTED & CERTIFIED SECTION
========================================= */

.trusted-certified-section {
    position: relative;

    padding: 22px 0;

    background: #ffffff;

    border-top: 1px solid #edf0f2;
    border-bottom: 1px solid #edf0f2;

    overflow: hidden;
}


/* Main Wrapper */

.trusted-certified-wrapper {
    display: flex;
    align-items: center;

    width: 100%;
}


/* =========================================
   CERTIFICATION
========================================= */

.certification-box {
    flex: 0 0 270px;
}
.certification-title {
    display: block;
    margin-bottom: 6px;
    color: #ff7117;
    font-size: 20px;
    font-weight: 800;
    letter-spacing: 0.4px;
}
.certification-content {
    display: flex;
    align-items: center;
    gap: 10px;
}
.iso-logo {
    flex: 0 0 62px;

    width: 62px;
    height: 62px;
}

.iso-logo img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: contain;
}


/* ISO Text */

.iso-content {
    display: flex;
    flex-direction: column;

    line-height: 1.1;
}

.iso-content h3 {
    margin: 0 0 3px;
    color: #114385;
    font-size: 18px;
    font-weight: 800;
}

.iso-content strong {
    margin-bottom: 4px;
    color: #114385;
    font-size: 18px;
}
.iso-content span {
    color: #114385;
    font-size: 14px;
    font-weight: 600;
}


/* =========================================
   DIVIDER
========================================= */

.trusted-divider {
    flex: 0 0 1px;

    width: 1px;
    height: 72px;

    margin: 0 25px;

    background: #dfe4e8;
}


/* =========================================
   PARTNER LOGOS
========================================= */

.partner-logos {
    flex: 1;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 25px;
}

.partner-logo {
    flex: 1;

    display: flex;
    align-items: center;
    justify-content: center;

    min-width: 90px;

    height: 55px;
}

.partner-logo img {
    display: block;
    max-width: 141px;
    max-height: 48px;
    width: auto;
    height: auto;
    object-fit: contain;
    transition:
        transform 0.3s ease,
        opacity 0.3s ease;
}
.partner-logo:hover img {
    transform: scale(1.05);
}


/* =========================================
   LARGE LAPTOP
========================================= */

@media (max-width: 1199px) {

    .certification-box {
        flex-basis: 250px;
    }

    .trusted-divider {
        margin: 0 18px;
    }

    .partner-logos {
        gap: 15px;
    }

    .partner-logo img {
        max-width: 110px;
        max-height: 44px;
    }

}


/* =========================================
   TABLET
========================================= */

@media (max-width: 991px) {

    .trusted-certified-section {
        padding: 25px 0;
    }

    .trusted-certified-wrapper {
        flex-wrap: wrap;
        justify-content: center;
    }

    .certification-box {
        flex: 0 0 auto;

        width: 100%;

        display: flex;
        flex-direction: column;
        align-items: center;

        text-align: center;

        margin-bottom: 20px;
    }

    .certification-content {
        justify-content: center;
    }

    .trusted-divider {
        display: none;
    }

    .partner-logos {
        flex: 0 0 100%;

        justify-content: center;

        flex-wrap: wrap;

        gap: 18px 30px;
    }

    .partner-logo {
        flex: 0 0 120px;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 767px) {

    .trusted-certified-section {
        padding: 25px 0;
    }

    .certification-title {
        font-size: 13px;
    }

    .iso-logo {
        flex-basis: 58px;

        width: 58px;
        height: 58px;
    }

    .partner-logos {
        gap: 15px 20px;
    }

    .partner-logo {
        flex: 0 0 105px;

        height: 50px;
    }

    .partner-logo img {
        max-width: 100px;
        max-height: 40px;
    }

}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 575px) {

    .trusted-certified-section {
        padding: 22px 0;
    }

    .certification-content {
        gap: 8px;
    }

    .iso-logo {
        flex-basis: 52px;

        width: 52px;
        height: 52px;
    }

    .iso-content h3 {
        font-size: 12px;
    }

    .iso-content strong {
        font-size: 12px;
    }

    .iso-content span {
        font-size: 9px;
    }

    .partner-logos {
        display: grid;

        grid-template-columns: repeat(2, 1fr);

        gap: 12px 15px;

        width: 100%;
    }

    .partner-logo {
        width: 100%;

        height: 48px;
    }

    .partner-logo img {
        max-width: 105px;
        max-height: 38px;
    }

}
/* =========================================
   TESTIMONIAL SECTION
========================================= */

.testimonial-section {
    position: relative;

    padding: 40px 0;

    background: #f8f9fa;

    overflow: hidden;
}


/* =========================================
   LEFT CONTENT
========================================= */

.testimonial-label {
    display: block;
    margin-bottom: 7px;
    color: #ff7117;
    font-size: 20px;
    font-weight: 800;
    letter-spacing: 0.4px;
}

.testimonial-intro h2 {
    margin: 0;
    color: #114385;
    font-size: clamp(28px, 3vw, 36px);
    font-weight: 800;
    line-height: 1.08;
}


/* =========================================
   NAVIGATION
========================================= */

.testimonial-navigation {
    display: flex;

    align-items: center;

    gap: 10px;

    margin-top: 25px;
}

.testimonial-navigation button {
    width: 42px;
    height: 42px;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 0;

    border: 1px solid #cbd6e0;

    border-radius: 50%;

    background: transparent;

    color: #114385;

    font-size: 15px;

    cursor: pointer;

    transition:
        background 0.3s ease,
        color 0.3s ease,
        border-color 0.3s ease,
        transform 0.3s ease;
}

.testimonial-navigation button:hover {
    background: #082b58;

    border-color: #114385;

    color: #ffffff;

    transform: translateY(-2px);
}


/* =========================================
   TESTIMONIAL CARD
========================================= */

.testimonial-card {
    position: relative;

    height: 100%;

    min-height: 170px;

    padding: 14px 20px;

    border: 1px solid #edf0f3;

    border-radius: 9px;

    background: #ffffff;

    box-shadow:
        0 5px 20px rgba(0, 32, 64, 0.06);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-4px);

    box-shadow:
        0 12px 28px rgba(0, 32, 64, 0.10);
}


/* =========================================
   STARS
========================================= */

.testimonial-stars {
    display: flex;

    gap: 3px;

    margin-bottom: 6px;

    color: #ff7117;

    font-size: 14px;
}


/* =========================================
   TESTIMONIAL TEXT
========================================= */

.testimonial-text {
    margin: 0 0 12px;
    color: #114385;
    font-weight: 600;
    font-size: 16px;
    line-height: 1.45;
}


/* =========================================
   AUTHOR
========================================= */

.testimonial-author {
    display: flex;

    align-items: center;

    gap: 10px;
}


/* Author Image */

.author-image {
    flex: 0 0 48px;

    width: 48px;
    height: 48px;

    overflow: hidden;

    border-radius: 50%;

    background: #edf2f6;
}

.author-image img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;
}


/* Author Info */

.author-info {
    display: flex;

    flex-direction: column;

    line-height: 1.15;
}

.author-info h3 {
    margin: 0 0 3px;
    color: #114385;
    font-size: 18px;
    font-weight: 800;
}

.author-info span {
    color: #114385;
    font-size: 15px;
    font-weight: 600;
}

.author-info small {
    margin-top: 2px;
    color: #114385;
    font-weight: 600;
    font-size: 15px;
}


/* =========================================
   LAPTOP
========================================= */

@media (max-width: 1199px) {

    .testimonial-intro {
        padding-right: 20px;
    }

    .testimonial-intro h2 {
        font-size: 31px;
    }

    .testimonial-card {
        padding: 13px 16px;
    }

}


/* =========================================
   TABLET
========================================= */

@media (max-width: 991px) {

    .testimonial-section {
        padding: 45px 0;
    }

    .testimonial-intro {
        padding-right: 0;

        margin-bottom: 30px;

        text-align: center;
    }

    .testimonial-intro h2 {
        max-width: 500px;

        margin-left: auto;
        margin-right: auto;
    }

    .testimonial-navigation {
        justify-content: center;

        margin-top: 18px;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 767px) {

    .testimonial-section {
        padding: 35px 0;
    }

    .testimonial-intro h2 {
        font-size: 28px;
    }

    .testimonial-label {
        font-size: 13px;
    }

    .testimonial-navigation {
        margin-bottom: 20px;
    }

    .testimonial-navigation button {
        width: 38px;
        height: 38px;
    }

    .testimonial-card {
        min-height: auto;

        padding: 17px;
    }

    .testimonial-text {
        font-size: 12px;
    }

}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 575px) {

    .testimonial-intro h2 {
        font-size: 26px;
    }

    .testimonial-card {
        padding: 16px;
    }

    .testimonial-stars {
        font-size: 12px;
    }

    .author-image {
        flex-basis: 45px;

        width: 45px;
        height: 45px;
    }

    .author-info h3 {
        font-size: 13px;
    }

    .author-info span {
        font-size: 10px;
    }

    .author-info small {
        font-size: 9px;
    }

}
/* =========================================
   BUSINESS CTA SECTION
========================================= */

.business-cta-section {
    position: relative;
    min-height: 135px;
    overflow: hidden;
    background: linear-gradient(90deg, rgb(5 45 79), rgb(4 43 76));
    color: #ffffff;
}


/* Decorative wave */

.business-cta-section::after {
    content: "";

    position: absolute;

    width: 430px;
    height: 150px;

    right: 110px;
    top: -10px;

    border-radius: 50%;

    border-top: 30px solid rgba(15, 91, 139, 0.35);
    border-bottom: 20px solid rgba(15, 91, 139, 0.25);

    transform: rotate(-8deg);

    pointer-events: none;
}


/* =========================================
   ROW
========================================= */

.business-cta-row {
    position: relative;

    z-index: 2;

    min-height: 135px;
}


/* =========================================
   SHIP
========================================= */

.business-cta-ship {
    position: relative;

    height: 135px;

    margin-left: -35px;

    overflow: hidden;
}

.business-cta-ship img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;

    object-position: center;
}


/* =========================================
   CONTENT
========================================= */

.business-cta-content {
    position: relative;

    z-index: 3;
}

.business-cta-content h2 {
    margin: 0 0 5px;

    color: #ffffff;

    font-size: clamp(25px, 2.5vw, 36px);
    font-weight: 800;

    line-height: 1.15;
}

.business-cta-content p {
    margin: 0;

    color: #ffffff;

    font-size: 16px;

    line-height: 1.4;
}


/* =========================================
   QUOTE BUTTON
========================================= */

.business-cta-button-wrap {
    position: relative;

    z-index: 5;
}

.business-cta-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    width: fit-content;
    min-height: 54px;
    padding: 12px 30px;
    border-radius: 5px;
    background: #ff7117;
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 700;
    box-shadow: 0 7px 18px rgba(255, 113, 23, 0.25);
    transition: background 0.3s ease,
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.business-cta-button:hover {
    background: #ff8636;

    color: #ffffff;

    transform: translateY(-3px);

    box-shadow:
        0 10px 25px rgba(255, 113, 23, 0.35);
}

.business-cta-button i:last-child {
    transition: transform 0.3s ease;
}

.business-cta-button:hover i:last-child {
    transform: translateX(4px);
}


/* =========================================
   RIGHT MESSAGE
========================================= */

.business-cta-message {
    position: relative;

    z-index: 3;

    display: flex;
    flex-direction: column;

    padding-left: 15px;
}

.business-cta-message span {
    color: #4d99c8;

    font-size: 15px;
    font-weight: 700;

    line-height: 1.35;

    letter-spacing: 0.3px;
}


/* =========================================
   LARGE LAPTOP
========================================= */

@media (max-width: 1199px) {

    .business-cta-section {
        min-height: 125px;
    }

    .business-cta-row {
        min-height: 125px;
    }

    .business-cta-ship {
        height: 125px;

        margin-left: -20px;
    }

    .business-cta-content h2 {
        font-size: 27px;
    }

    .business-cta-content p {
        font-size: 12px;
    }

    .business-cta-button {
        font-size: 12px;

        min-height: 48px;

        padding: 10px;
    }

    .business-cta-message {
        padding-left: 5px;
    }

    .business-cta-message span {
        font-size: 10px;
    }

}


/* =========================================
   TABLET
========================================= */

@media (max-width: 991px) {

    .business-cta-section {
        padding: 25px 0;
    }

    .business-cta-row {
        min-height: auto;
    }

    .business-cta-ship {
        height: 100px;

        margin-left: 0;
    }

    .business-cta-content h2 {
        font-size: 23px;
    }

    .business-cta-content p {
        font-size: 11px;
    }

    .business-cta-button {
        min-height: 45px;

        gap: 6px;

        font-size: 11px;
    }

    .business-cta-message span {
        font-size: 9px;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 767px) {

    .business-cta-section {
        padding: 35px 0;
    }

    .business-cta-section::after {
        width: 350px;

        right: -120px;
        top: 20px;
    }

    .business-cta-row {
        text-align: center;
    }

    .business-cta-ship {
        height: 130px;

        margin-bottom: 20px;

        border-radius: 6px;
    }

    .business-cta-content h2 {
        font-size: 27px;
    }

    .business-cta-content p {
        max-width: 450px;

        margin-left: auto;
        margin-right: auto;

        font-size: 12px;
    }

    .business-cta-button-wrap {
        max-width: 210px;

        margin: 20px auto;
    }

    .business-cta-button {
        min-height: 48px;

        font-size: 13px;
    }

    .business-cta-message {
        align-items: center;

        padding-left: 0;
    }

    .business-cta-message span {
        font-size: 10px;
    }

}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 575px) {

    .business-cta-section {
        padding: 30px 0;
    }

    .business-cta-ship {
        height: 115px;
    }

    .business-cta-content h2 {
        font-size: 24px;
    }

    .business-cta-content p {
        font-size: 11px;
    }

    .business-cta-button-wrap {
        max-width: 190px;
    }

    .business-cta-message {
        margin-top: 5px;
    }

}

/* =========================================
   GAN MARINE FOOTER
========================================= */

.gan-footer {
    position: relative;

    color: #ffffff;

    background: #032b4d;

    overflow: hidden;
}


/* =========================================
   MAIN FOOTER
========================================= */

.gan-footer-main {
    position: relative;

    min-height: 200px;

    padding: 25px 0 28px;

    background:
        linear-gradient(
            110deg,
            #052d4f 0%,
            #032a4a 55%,
            #022642 100%
        );

    border-top: 1px solid rgba(79, 157, 211, 0.45);
    border-bottom: 1px solid rgba(79, 157, 211, 0.35);

    overflow: hidden;
}


/* =========================================
   FOOTER ROW
========================================= */

.gan-footer-row {
    position: relative;

    z-index: 5;
}


/* =========================================
   BRAND
========================================= */

.gan-footer-brand {
    padding-right: 30px;
}

.gan-footer-brand img {
    display: block;

    width: auto;
    max-width: 225px;
    max-height: 95px;

    object-fit: contain;
}

.gan-footer-tagline {
    margin: 10px 0 0;

    color: #ffffff;

    font-size: 15px;
    font-weight: 600;

    line-height: 1.4;
}


/* =========================================
   FOOTER WIDGET
========================================= */

.gan-footer-widget {
    position: relative;

    z-index: 5;
}

.gan-footer-widget h3 {
    margin: 0 0 10px;

    color: #ffffff;

    font-size: 17px;
    font-weight: 700;

    line-height: 1.2;
}


/* =========================================
   QUICK LINKS
========================================= */

.gan-footer-links {
    margin: 0;
    padding: 0;

    list-style: none;
}

.gan-footer-links li {
    margin-bottom: 3px;
}

.gan-footer-links a {
    display: inline-block;

    color: rgba(255, 255, 255, 0.82);

    font-size: 13px;
    line-height: 1.25;

    text-decoration: none;

    transition:
        color 0.3s ease,
        transform 0.3s ease;
}

.gan-footer-links a:hover {
    color: #ff7117;

    transform: translateX(3px);
}


/* =========================================
   CONTACT
========================================= */

.gan-footer-contact {
    margin: 0;
    padding: 0;

    list-style: none;
}

.gan-footer-contact li {

    align-items: flex-start;

    gap: 12px;

    margin-bottom: 11px;

    color: rgba(255, 255, 255, 0.84);

    font-size: 12px;

    line-height: 1.35;
}

.gan-contact-icon {
    flex: 0 0 20px;

    width: 20px;

    color: #ff7117;

    font-size: 16px;

    text-align: center;
}

.gan-footer-contact a {
    color: rgba(255, 255, 255, 0.84);

    text-decoration: none;

    transition: color 0.3s ease;
}

.gan-footer-contact a:hover {
    color: #ff7117;
}


/* =========================================
   SOCIAL
========================================= */

.gan-social-widget {
    padding-left: 5px;
}

.gan-social-links {
    display: flex;

    align-items: center;

    gap: 9px;
}

.gan-social-links a {
    width: 32px;
    height: 32px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 5px;

    /*background: #075485;*/

    color: #ffffff;

    font-size: 16px;

    text-decoration: none;

 /*   box-shadow:
        inset 0 0 0 1px rgba(255, 255, 255, 0.08);*/

    transition:
        background 0.3s ease,
        transform 0.3s ease;
}

.gan-social-links a:hover {
    background: #ff7117;

    transform: translateY(-3px);
}


/* =========================================
   DECORATIVE WAVES
========================================= */

.gan-footer-wave {
    position: absolute;

    right: -40px;
    bottom: -15px;

    width: 610px;
    height: 150px;

    pointer-events: none;

    z-index: 1;
}


/* First wave */

.gan-wave-one {
    position: absolute;

    width: 650px;
    height: 75px;

    right: -80px;
    bottom: 10px;

    border-top: 20px solid rgba(18, 106, 163, 0.60);

    border-radius: 50%;

    transform: rotate(-8deg);
}


/* Second wave */

.gan-wave-two {
    position: absolute;

    width: 610px;
    height: 70px;

    right: -70px;
    bottom: -5px;

    border-top: 13px solid rgba(12, 80, 128, 0.65);

    border-radius: 50%;

    transform: rotate(-9deg);
}


/* =========================================
   RIGHT MESSAGE
========================================= */

.gan-footer-message {
    position: absolute;

    right: 65px;
    bottom: 20px;

    z-index: 4;

    display: flex;
    flex-direction: column;

    text-align: center;
}

.gan-footer-message span {
    color: #4d99c8;

    font-size: 15px;
    font-weight: 700;

    line-height: 1.45;

    letter-spacing: 0.2px;
}


/* =========================================
   BOTTOM COPYRIGHT
========================================= */

.gan-footer-bottom {
    position: relative;

    z-index: 10;

    padding: 25px 0;

    background: #03294a;

    border-top: 1px solid rgba(79, 157, 211, 0.35);
}

.gan-footer-bottom-inner {
    display: flex;

    align-items: center;
    justify-content: center;

    gap: 12px;

    flex-wrap: wrap;
}

.gan-footer-bottom p {
    margin: 0;
    color: #fff;
    font-size: 15px;
}

.gan-footer-legal {
    display: flex;

    align-items: center;

    gap: 10px;
}

.gan-footer-legal a {
    color: rgba(255, 255, 255, 0.78);

    font-size: 15px;

    text-decoration: none;

    transition: color 0.3s ease;
}

.gan-footer-legal a:hover {
    color: #ff7117;
}

.gan-footer-legal span {
    color: rgba(255, 255, 255, 0.55);
    font-size: 25px;
}
.spl-footspan {
    color: rgba(255, 255, 255, 0.55);
    font-size: 25px;
}
.spl-allrights {
    color: #ffffffc7
}


/* =========================================
   LARGE LAPTOP
========================================= */

@media (max-width: 1199px) {

    .gan-footer-brand img {
        max-width: 200px;
    }

    .gan-footer-message {
        right: 35px;
    }

    .gan-footer-wave {
        right: -100px;
    }

}


/* =========================================
   TABLET
========================================= */

@media (max-width: 991px) {

    .gan-footer-main {
        padding: 35px 0;

    }

    .gan-footer-row > div {
        margin-bottom: 28px;
    }

    .gan-footer-row > div:nth-last-child(-n+2) {
        margin-bottom: 0;
    }

    .gan-footer-brand {
        padding-right: 0;
    }

    .gan-footer-brand img {
        max-width: 210px;
    }

    .gan-social-widget {
        padding-left: 0;
    }

    .gan-footer-message {
        display: none;
    }

    .gan-footer-wave {
        opacity: 0.7;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 767px) {

    .gan-footer-main {
        padding: 40px 0 25px;

        text-align: center;
    }

    .gan-footer-row > div {
        margin-bottom: 30px;
    }

    .gan-footer-row > div:last-child {
        margin-bottom: 0;
    }


    /* Brand */

    .gan-footer-brand {
        display: flex;
        flex-direction: column;

        align-items: center;
    }

    .gan-footer-brand img {
        max-width: 210px;
        max-height: 90px;
    }

    .gan-footer-tagline {
        font-size: 14px;
    }


    /* Widgets */

    .gan-footer-widget {
        text-align: center;
    }

    .gan-footer-widget h3 {
        margin-bottom: 12px;

        font-size: 16px;
    }


    /* Links */

    .gan-footer-links a {
        font-size: 13px;
    }


    /* Contact */

    .gan-footer-contact li {
        justify-content: center;

        text-align: left;

        max-width: 300px;

        margin-left: auto;
        margin-right: auto;
    }


    /* Social */

    .gan-social-links {
        justify-content: center;
    }


    /* Waves */

    .gan-footer-wave {
        right: -180px;
        bottom: -10px;

        opacity: 0.45;
    }


    /* Bottom */

    .gan-footer-bottom {
        padding: 17px 0;
    }

    .gan-footer-bottom-inner {
        flex-direction: column;

        gap: 7px;
    }

    .gan-footer-bottom p {
        text-align: center;

        font-size: 10px;
    }

    .gan-footer-legal {
        gap: 7px;

        justify-content: center;

        flex-wrap: wrap;
    }

    .gan-footer-legal a,
    .gan-footer-legal span {
        font-size: 10px;
    }

}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 575px) {

    .gan-footer-main {
        padding: 35px 0 25px;
    }

    .gan-footer-brand img {
        max-width: 190px;
    }

    .gan-footer-tagline {
        font-size: 13px;
    }

    .gan-footer-row > div {
        margin-bottom: 27px;
    }

    .gan-footer-widget h3 {
        font-size: 15px;
    }

    .gan-footer-links a {
        font-size: 12px;
    }

    .gan-footer-contact li {
        font-size: 11px;
    }

    .gan-social-links a {
        width: 31px;
        height: 31px;

        font-size: 15px;
    }

    .gan-footer-bottom-inner {
        gap: 9px;
    }

}
.gan-footer {
    border-top: 1px solid #7987a387;
}
.gan-footer-main {
    border-bottom: 1px solid #7987a387;
}
.spl-rigbor:not(:last-child)::after {
    content: "";
    position: absolute;
    right: 0;
    top: 0px;
    width: 2px;
    height: 100%;
    background: #7987a387;
}
.spl-rigbor {
    position: relative;
}
.spl-footh3 {
    font-size: 20px;
    font-weight: bold;
}
.gan-footer-links a {
    color: #fff;
    font-size: 15px;
    font-weight: 400;
}
.gan-footer-links {
    list-style-type: none;
    padding-left: 0px;
}
.gan-footer-links li::before {
    content: "\f101";
    font-family: "FontAwesome";
    font-size: 13px;
    padding-right: 10px;
}
.gan-footer-contact {
    list-style-type: none;
    padding-left: 0px;
}
.spl-footicon {
    color: #fa6c00;
    font-size: 20px;
    padding-right: 10px;
}
.gan-footer-contact a {
    color: #fff;
    font-size: 15px;
}
.gan-footer-contact span {
    font-size: 15px;
}
.gan-social-links i {
    color: #fff;
    background: #2e7cae;
    padding: 8px;
    border-radius: 3px;
    margin-right: 10px;
    font-size: 18px;
}
.gan-footer-tagline {
    font-size: 20px;
}
.gan-footer-wave {
    position: absolute;

    right: 10px;
    bottom: 10px;

    width: 610px;
    height: 150px;

    pointer-events: none;

    z-index: 1;
}


/* First wave */

.gan-wave-one {
    position: absolute;

    width: 650px;
    height: 75px;

    right: -80px;
    bottom: 10px;

    border-top: 20px solid rgba(18, 106, 163, 0.60);

    border-radius: 50%;

    transform: rotate(-8deg);
}


/* Second wave */

.gan-wave-two {
    position: absolute;

    width: 610px;
    height: 70px;

    right: -70px;
    bottom: -5px;

    border-top: 13px solid rgba(12, 80, 128, 0.65);

    border-radius: 50%;

    transform: rotate(-9deg);
}
.spl-fw900 {
    font-weight: 900;
}
.spl-parawid {
    width: 230px !important;
    max-width: 230px !important;
}
.spl-worldmap {
    position: relative;
    right: 90px;
}
.feature-check i {
    font-size: 17px;
}
.spl-servbg1 {
    background-image: url("../../image-ganmarine/home/service-bg1.png") !important;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}
.spl-servbg2 {
    background-image: url("../../image-ganmarine/home/service-bg2.png") !important;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}
.spl-servbg3 {
    background-image: url("../../image-ganmarine/home/service-bg3.png") !important;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}
.spl-servbg4 {
    background-image: url("../../image-ganmarine/home/service-bg4.png") !important;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    padding: 25px 10px 25px !important;
}
.spl-servtop {
    gap: 10px !important;
}
.section-label {
    display: flex;
    align-items: center;
    gap: 14px;
}
.section-label-text {
    color: #ff7117;
    font-size: 16px;
    font-weight: 900;
    letter-spacing: 0.5px;
    line-height: 1.2;
    text-transform: uppercase;
}
@media (max-width: 767px) {

    .section-label {
        gap: 10px;
    }

    .section-label-line {
        width: 32px;
        height: 3px;
    }

    .section-label-text {
        font-size: 13px;
        letter-spacing: 0.3px;
    }

}
.track-shipment-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 12px;

    min-width: 200px;
    height: 54px;

    padding: 0 22px;

    border: 2px solid rgba(190, 214, 232, 0.75);
    border-radius: 6px;

    background: rgba(4, 39, 67, 0.65);

    color: #ffffff;
    font-size: 16px;
    font-weight: 600;

    text-decoration: none;

    transition: all 0.3s ease;
}

.track-shipment-btn i {
    font-size: 19px;

    color: #ffffff;

    transition: transform 0.3s ease;
}

.track-shipment-btn:hover {
    border-color: #ffffff;

    background: rgba(7, 58, 94, 0.9);

    color: #ffffff;

    transform: translateY(-2px);
}

.track-shipment-btn:hover i {
    transform: scale(1.08);
}

.gan-banner-message span {
    color: #4d99c8;
    font-size: 15px;
    font-weight: 900;
    line-height: 1.45;
    letter-spacing: 0.2px;
}
.gan-banner-message {
    /*background-image: url(../../image-ganmarine/home/home-bg1.png);*/
    position: absolute;
    right: 200px;
    bottom: 110px;
    z-index: 4;
    display: flex;
    flex-direction: column;
    text-align: center;
}
.gan-banner-message::after {
    content: "";
    width: 50px;
    height: 4px;
    background: #ff6b1b;
    display: block;
    margin-top: 3px;
    align-self: flex-end;
}
.spl-gan-banner-message::after {
    content: "";
    width: 50px;
    height: 4px;
    background: #ff6b1b;
    display: block;
    margin-top: 3px;
    align-self: flex-start;
}
.spl-gan-banner-message {
    /*background-image: url(../../image-ganmarine/home/home-bg1.png);*/
    position: absolute;
    right: 200px;
    bottom: 70px !important;
    z-index: 4;
    display: flex;
    flex-direction: column;
    text-align: center;
}
.spl-section-label::after {
    content: "";
    width: 38px;
    height: 4px;
    background: #ff6b1b;
    display: block;
    position: relative;
    left: 20px;
    top: 13px;
}
.col-main {
    color: #ff7117 !important;
}
.col-sec {
    color: #114385 !important;
}
.spl-noborrig {
    border-right: none !important;
}
.process-para {
    font-size: 17px;
    font-weight: 600;
    max-width: 400px;
}
/* ==========================================
   SERVICES SECTION
========================================== */

.gan-services-section {
    position: relative;

    padding: 45px 0 50px;

    background:
        linear-gradient(
            135deg,
            #022541 0%,
            #032d50 55%,
            #02233d 100%
        );

    overflow: hidden;
}


/* Decorative background */

.gan-services-section::before {
    content: "";

    position: absolute;

    top: -100px;
    right: -100px;

    width: 600px;
    height: 300px;

    border: 30px solid rgba(17, 91, 139, 0.25);

    border-radius: 50%;

    transform: rotate(-18deg);

    pointer-events: none;
}

.gan-services-section::after {
    content: "";

    position: absolute;

    right: 100px;
    top: 120px;

    width: 500px;
    height: 180px;

    border-top: 25px solid rgba(15, 82, 130, 0.25);

    border-radius: 50%;

    transform: rotate(-10deg);

    pointer-events: none;
}


/* ==========================================
   HEADING
========================================== */

.gan-services-heading {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 25px;
    padding: 0 15px;
}
.gan-services-title {
    max-width: 670px;
}
.gan-section-label {
    display: flex;

    align-items: center;

    gap: 13px;

    margin-bottom: 7px;
}

.gan-section-label span {
    display: block;

    width: 42px;
    height: 4px;

    flex-shrink: 0;

    background: #ff7117;

    border-radius: 1px;
}

.gan-section-label strong {
    color: #ff7117;

    font-family: "Lato", sans-serif;

    font-size: 20px;
    font-weight: 800;

    line-height: 1;

    letter-spacing: 0.4px;
}


/* Main heading */

.gan-services-title h2 {
    margin: 0 0 5px;
    color: #ffffff;
    font-family: "Lato", sans-serif;
    font-size: 36px;
    font-weight: 900;
    line-height: 1.05;
}

.gan-services-title h2 span {
    color: #ff7117;
}


/* Description */

.gan-services-title p {
    max-width: 560px;

    margin: 8px 0 0;

    color: rgba(255, 255, 255, 0.9);

    font-family: "Lato", sans-serif;

    font-size: 16px;
    font-weight: 400;

    line-height: 1.35;
}


/* ==========================================
   SCRIPT TEXT
========================================== */

.gan-services-script {
    position: relative;

    min-width: 260px;

    padding-top: 20px;

    padding-right: 10px;

    text-align: right;
}

.gan-script-text {
    color: #ffffff;

    font-family: cursive;

    font-size: 31px;
    font-style: italic;
    font-weight: 400;

    line-height: 1.15;

    transform: rotate(-7deg);

    opacity: 0.92;
}

.gan-script-line {
    display: block;

    width: 58px;
    height: 4px;

    margin: 20px 0 0 auto;

    background: #ff7117;
}


/* ==========================================
   SERVICE GRID
========================================== */

.gan-services-grid {
    position: relative;

    z-index: 3;
}


/* ==========================================
   SERVICE CARD
========================================== */

.gan-service-card {
    height: 100%;

    overflow: hidden;

    border: 1px solid rgba(36, 113, 165, 0.7);

    border-radius: 9px;

    background:
        linear-gradient(
            145deg,
            #064b79,
            #03375e
        );

    box-shadow:
        0 5px 15px rgba(0, 0, 0, 0.18);

    transition:
        transform 0.3s ease,
        border-color 0.3s ease,
        box-shadow 0.3s ease;
}

.gan-service-card:hover {
    transform: translateY(-4px);

    border-color: rgba(255, 113, 23, 0.8);

    box-shadow:
        0 10px 25px rgba(0, 0, 0, 0.25);
}
.gan-service-image {
    position: relative;
    width: 100%;
    height: 150px;
    overflow: hidden;
}

.gan-service-image::after {
    content: "";

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            to bottom,
            rgba(0, 0, 0, 0.02),
            rgba(1, 34, 58, 0.18)
        );
}

.gan-service-image img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform 0.5s ease;
}

.gan-service-card:hover .gan-service-image img {
    transform: scale(1.04);
}


/* ==========================================
   SERVICE CONTENT
========================================== */

.gan-service-content {
    padding: 13px 25px 25px;
}


/* Top area */

.gan-service-top {
    display: flex;

    align-items: center;

    gap: 16px;

    margin-bottom: 15px;
}
.gan-service-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    min-width: 45px;
    height: 45px;
    color: #ff7117;
    font-size: 45px;
}
.gan-service-top h3 {
    margin: 0 0 5px;

    color: #ffffff;

    font-family: "Lato", sans-serif;

    font-size: 20px;
    font-weight: 600;

    line-height: 1.1;
}

.gan-service-top span {
    display: block;

    color: #fff;

    font-family: "Lato", sans-serif;

    font-size: 15px;
    font-weight: 500;

    line-height: 1.2;
}


/* ==========================================
   SERVICE LIST
========================================== */

.gan-service-list {
    margin: 0;
    padding: 0;

    list-style: none;
}

.gan-service-list li {
    display: flex;

    align-items: flex-start;

    gap: 10px;

    margin-bottom: 6px;

    color: #ffffff;

    font-family: "Lato", sans-serif;

    font-size: 16px;
    font-weight: 400;

    line-height: 1.25;
}

.gan-service-list li:last-child {
    margin-bottom: 0;
}


/* Check icon */

.gan-service-list li i {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    min-width: 20px;
    height: 20px;
    margin-top: 0;
    border-radius: 50%;
    background: #ff7117;
    color: #ffffff;
    font-size: 16px;
}


/* ==========================================
   LEARN MORE
========================================== */

.gan-service-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 17px;
    color: #ff7117;
    font-family: "Lato", sans-serif;
    font-size: 16px;
    font-weight: 800;
    line-height: 1;
    text-decoration: none;
    transition: gap 0.3s ease;
}

.gan-service-link i {
    font-size: 17px;
}

.gan-service-link:hover {
    color: #ff8b42;

    gap: 17px;
}


/* ==========================================
   LARGE LAPTOP
========================================== */

@media (max-width: 1199px) {

    .gan-services-title h2 {
        font-size: 32px;
    }

    .gan-services-script {
        min-width: 220px;
    }

    .gan-script-text {
        font-size: 27px;
    }

    .gan-service-content {
        padding-left: 18px;
        padding-right: 18px;
    }

}


/* ==========================================
   TABLET
========================================== */

@media (max-width: 991px) {

    .gan-services-section {
        padding: 40px 0 45px;
    }

    .gan-services-heading {
        display: block;

        margin-bottom: 25px;
    }

    .gan-services-script {
        display: none;
    }

    .gan-services-title {
        max-width: 750px;
    }

    .gan-services-title h2 {
        font-size: 32px;
    }

    .gan-services-title p {
        font-size: 14px;
    }

    .gan-service-image {
        height: 120px;
    }

    .gan-service-content {
        padding: 15px 20px;
    }

}


/* ==========================================
   MOBILE
========================================== */

@media (max-width: 767px) {

    .gan-services-section {
        padding: 35px 0 40px;
    }

    .gan-services-heading {
        padding: 0 10px;

        margin-bottom: 22px;
    }

    .gan-section-label {
        gap: 10px;
    }

    .gan-section-label span {
        width: 35px;
        height: 3px;
    }

    .gan-section-label strong {
        font-size: 14px;
    }

    .gan-services-title h2 {
        font-size: 28px;

        line-height: 1.08;
    }

    .gan-services-title p {
        margin-top: 10px;

        font-size: 14px;

        line-height: 1.45;
    }

    .gan-service-image {
        height: 160px;
    }

    .gan-service-content {
        padding: 16px 20px 17px;
    }

    .gan-service-top {
        gap: 13px;
    }

    .gan-service-icon {
        width: 42px;
        min-width: 42px;
        height: 42px;

        font-size: 27px;
    }

    .gan-service-top h3 {
        font-size: 18px;
    }

    .gan-service-top span {
        font-size: 13px;
    }

    .gan-service-list li {
        font-size: 13px;

        margin-bottom: 7px;
    }

    .gan-service-link {
        margin-top: 14px;

        font-size: 14px;
    }

}


/* ==========================================
   SMALL MOBILE
========================================== */

@media (max-width: 575px) {

    .gan-services-section {
        padding: 30px 0 35px;
    }

    .gan-services-title h2 {
        font-size: 25px;
    }

    .gan-services-title p {
        font-size: 13px;
    }

    .gan-service-image {
        height: 145px;
    }

    .gan-service-content {
        padding: 15px 17px;
    }

    .gan-service-top {
        align-items: flex-start;
    }

    .gan-service-top h3 {
        font-size: 17px;
    }

    .gan-service-top span {
        font-size: 12px;
    }

    .gan-service-list li {
        font-size: 12px;

        gap: 8px;
    }

    .gan-service-list li i {
        width: 18px;
        min-width: 18px;
        height: 18px;

        font-size: 9px;
    }

}
.industries-section {
    overflow: hidden;
    background: linear-gradient(
            90deg,
            rgba(1, 27, 48, 0.84),
            rgba(2, 42, 72, 0.84),
            rgba(1, 27, 48, 0.58)
        ),
        url("../../image-ganmarine/home/strip-bg.png");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: bottom;
}

.industries-section::before {
    content: "";

    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(0, 26, 46, 0.88),
            rgba(0, 45, 76, 0.72),
            rgba(0, 27, 48, 0.88)
        );

    z-index: 0;

    pointer-events: none;
}


/* Top orange border */

.industries-section::after {
    content: "";

    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 2px;

    background: #ff7117;

    z-index: 5;
}


/* ==========================================
   CONTAINER
========================================== */

.industries-section .container {
    position: relative;

    z-index: 2;
}


/* ==========================================
   HEADER
========================================== */

.industries-header {
    display: flex;

    align-items: flex-start;
    justify-content: space-between;

    gap: 30px;

    margin-bottom: 8px;

    padding: 0 10px;
}


/* ==========================================
   LABEL
========================================== */

.industries-label {
    display: flex;

    align-items: center;

    gap: 10px;

    margin-bottom: 10px;

    color: #ff7117;

    font-family: "Lato", sans-serif;

    font-size: 20px;
    font-weight: 800;

    line-height: 1;
}

.industries-label span {
    display: block;

    width: 40px;
    height: 3px;

    background: #ff7117;

    border-radius: 2px;
}


/* ==========================================
   HEADING
========================================== */

.industries-heading h2 {
    margin: 0;

    color: #ffffff;

    font-family: "Lato", sans-serif;

    font-size: 36px;
    font-weight: 900;

    line-height: 1.05;

    letter-spacing: -0.4px;
}

.industries-heading h2 em {
    color: #ff7117;

    font-style: normal;
}


/* ==========================================
   DESCRIPTION
========================================== */

.industries-description {
    max-width: 390px;

    padding-top: 8px;
}

.industries-description p {
    margin: 0;
    color: #fff;
    font-family: "Lato", sans-serif;
    font-size: 17px;
    font-weight: 400;
    line-height: 1.25;
}
.industries-row {
    align-items: stretch;
}


/* ==========================================
   INDUSTRY CARD
========================================== */

.industry-card {
    position: relative;

    min-height: 96px;

    display: flex;

    flex-direction: column;

    align-items: center;
    justify-content: center;

    padding: 10px 8px;

    border: 1px solid rgba(22, 107, 159, 0.55);

    border-radius: 9px;

    background:
        linear-gradient(
            145deg,
            rgba(3, 55, 91, 0.78),
            rgba(2, 39, 67, 0.88)
        );

    box-shadow:
        inset 0 0 15px rgba(18, 104, 157, 0.08),
        0 3px 10px rgba(0, 0, 0, 0.15);

    overflow: hidden;

    transition:
        transform 0.3s ease,
        border-color 0.3s ease,
        background 0.3s ease;
}


/* Inner glow */

.industry-card::before {
    content: "";

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            135deg,
            rgba(18, 111, 167, 0.13),
            transparent 60%
        );

    pointer-events: none;
}


/* Hover */

.industry-card:hover {
    transform: translateY(-4px);

    border-color: rgba(255, 113, 23, 0.8);

    background:
        linear-gradient(
            145deg,
            rgba(5, 70, 111, 0.95),
            rgba(2, 44, 75, 0.95)
        );
}


/* ==========================================
   ICON
========================================== */

.industry-icon {
    position: relative;

    z-index: 2;

    display: flex;

    align-items: center;
    justify-content: center;

    height: 42px;

    margin-bottom: 15px;

    color: #ff7117;

    font-size: 30px;

    line-height: 1;
}


/* ==========================================
   TITLE
========================================== */

.industry-card h3 {
    position: relative;

    z-index: 2;

    margin: 0;

    color: #ffffff;

    font-family: "Lato", sans-serif;

    font-size: 13px;
    font-weight: 700;

    line-height: 1.15;

    text-align: center;
}


/* ==========================================
   XL - 1200px+
========================================== */

@media (min-width: 1200px) {

    .industries-section {
        padding: 17px 0 14px;
    }

    .industries-row {
        display: flex;
    }

    .industries-row > [class*="col-xl"] {
        flex: 1 1 0;
        width: auto;
        max-width: none;
    }

    .industry-card {
        min-height: 140px;
    }

    .industry-icon {
        font-size: 36px;
    }

    .industry-card h3 {
        font-size: 16px;
    }
}


/* ==========================================
   LAPTOP
========================================== */

@media (max-width: 1199px) {

    .industries-heading h2 {
        font-size: 26px;
    }

    .industries-description {
        max-width: 340px;
    }

    .industry-card {
        min-height: 105px;
    }

}


/* ==========================================
   TABLET
========================================== */

@media (max-width: 991px) {

    .industries-section {
        padding: 35px 0 40px;
    }

    .industries-header {
        margin-bottom: 20px;
    }

    .industries-heading h2 {
        font-size: 25px;
    }

    .industries-description {
        max-width: 300px;
    }

    .industries-description p {
        font-size: 13px;
    }

    .industry-card {
        min-height: 110px;
    }

    .industry-icon {
        font-size: 28px;
    }

    .industry-card h3 {
        font-size: 13px;
    }

}


/* ==========================================
   MOBILE
========================================== */

@media (max-width: 767px) {

    .industries-section {
        padding: 30px 0 35px;
    }

    .industries-header {
        display: block;

        padding: 0 5px;

        margin-bottom: 20px;
    }

    .industries-label {
        font-size: 14px;
    }

    .industries-label span {
        width: 34px;
    }

    .industries-heading h2 {
        font-size: 25px;

        line-height: 1.1;
    }

    .industries-description {
        max-width: 100%;

        padding-top: 10px;
    }

    .industries-description p {
        font-size: 13px;

        line-height: 1.4;
    }

    .industry-card {
        min-height: 105px;

        padding: 12px 7px;
    }

    .industry-icon {
        height: 40px;

        margin-bottom: 5px;

        font-size: 27px;
    }

    .industry-card h3 {
        font-size: 12px;
    }

}


/* ==========================================
   SMALL MOBILE
========================================== */

@media (max-width: 575px) {

    .industries-section {
        padding: 28px 0 32px;
    }

    .industries-heading h2 {
        font-size: 23px;
    }

    .industries-label {
        font-size: 20px;
    }

    .industry-card {
        min-height: 100px;

        border-radius: 7px;
    }

    .industry-icon {
        font-size: 25px;
    }

    .industry-card h3 {
        font-size: 11px;
    }

}