    :root {
        --gd-navy: #102D43;
        --gd-dark: #173B57;
        --gd-steel: #3F708E;
        --gd-soft: #A9C7D8;

        --gd-orange: #F28C38;
        --gd-orange-dark: #dc7725;

        --gd-bg: #F7F9FA;
        --gd-white: #FFFFFF;

        --gd-text: #132934;
        --gd-muted: #607582;

        --gd-line: rgba(23, 59, 87, .13);
        --gd-shadow: 0 28px 70px rgba(16, 45, 67, .20);
    }


    /* =========================================
       GENERAL
    ========================================= */

    .gd-header,
    .gd-header * {
        box-sizing: border-box;
    }

    .gd-header {
        background: var(--gd-white);
        font-family: Arial, Helvetica, sans-serif;
    }


    /* =========================================
       LOGO
    ========================================= */

    .gd-logo-box {
        position: absolute;
        left: 0;
        top: 0;
        width: 260px;
        height: 104px;
        z-index: 20;

        display: flex;
        align-items: center;
        justify-content: center;

        padding: 18px 26px;

        background: var(--gd-orange);
    }

    .gd-logo {
        text-decoration: none;
        color: var(--gd-white);

        display: flex;
        align-items: center;
        gap: 13px;
    }

    .gd-logo-icon {
        width: 50px;
        height: 50px;
        border: 4px solid var(--gd-white);
        border-radius: 50%;

        display: flex;
        align-items: center;
        justify-content: center;

        font-size: 24px;
    }

    .gd-logo-text strong {
        display: block;
        color: var(--gd-white);
        font-size: 27px;
        line-height: 1;
        font-weight: 900;
        text-transform: uppercase;
        letter-spacing: .5px;
    }

    .gd-logo-text small {
        display: block;
        color: rgba(255,255,255,.88);
        font-size: 10px;
        text-transform: uppercase;
        letter-spacing: 1.3px;
        margin-top: 5px;
    }


    /* =========================================
       TOP BAR
    ========================================= */

    .gd-topbar {
        min-height: 41px;
        background: var(--gd-navy);
        color: var(--gd-white);
        padding-left: 260px;
    }

    .gd-topbar-inner {
        min-height: 41px;

        display: flex;
        align-items: center;
        justify-content: space-between;

        gap: 20px;
    }

    .gd-socials {
        display: flex;
        align-items: center;
        gap: 23px;
    }

    .gd-socials a {
        color: var(--gd-soft);
        text-decoration: none;
        font-size: 13px;

        transition: .3s ease;
    }

    .gd-socials a:hover {
        color: var(--gd-orange);
        transform: translateY(-2px);
    }

    .gd-top-info {
        display: flex;
        align-items: center;
        justify-content: flex-end;
        gap: 38px;

        font-size: 12px;
        color: rgba(255,255,255,.90);
    }

    .gd-top-info span {
        display: inline-flex;
        align-items: center;
        gap: 8px;
    }

    .gd-top-info i {
        color: var(--gd-white);
    }


    /* =========================================
       NAVBAR
    ========================================= */

    .gd-navbar {
        min-height: 63px;
        padding-left: 260px;

        background: var(--gd-white);

        border-bottom: 1px solid rgba(16, 45, 67, .06);

        position: relative;
        z-index: 15;
    }

    .gd-navbar .navbar {
        min-height: 63px;
        padding: 0;
    }

    .gd-navbar .navbar-nav {
        gap: 8px;
    }

    .gd-navbar .nav-link {
        position: relative;

        color: #454e54 !important;

        padding: 21px 17px !important;

        font-size: 14px;
        font-weight: 600;

        transition: .3s ease;
    }

    .gd-navbar .nav-link::after {
        content: "";
        position: absolute;

        left: 17px;
        right: 17px;
        bottom: 12px;

        height: 2px;

        background: var(--gd-orange);

        transform: scaleX(0);
        transform-origin: left;

        transition: .3s ease;
    }

    .gd-navbar .nav-link:hover,
    .gd-navbar .nav-link.active {
        color: var(--gd-navy) !important;
    }

    .gd-navbar .nav-link:hover::after,
    .gd-navbar .nav-link.active::after {
        transform: scaleX(1);
    }

    .gd-nav-quote {
        min-width: 210px;
        min-height: 63px;

        display: flex;
        align-items: center;
        justify-content: center;

        text-decoration: none;

        color: var(--gd-orange);
        background: #fff7f0;

        font-size: 14px;
        font-weight: 800;

        transition: .35s ease;
    }

    .gd-nav-quote:hover {
        color: var(--gd-white);
        background: var(--gd-orange);
    }


    /* =========================================
       HERO
    ========================================= */

    .gd-hero {
        position: relative;
        min-height: 670px;

        background:
            radial-gradient(circle at 15% 40%,
            rgba(169,199,216,.14),
            transparent 34%),
            var(--gd-white);

        overflow: hidden;
    }


    /* subtle background texture */

    .gd-hero::before {
        content: "";
        position: absolute;
        inset: 0;

        opacity: .25;

        background-image:
            linear-gradient(
                rgba(16,45,67,.035) 1px,
                transparent 1px
            ),
            linear-gradient(
                90deg,
                rgba(16,45,67,.035) 1px,
                transparent 1px
            );

        background-size: 38px 38px;

        pointer-events: none;
    }


    .gd-hero .container {
        position: relative;
        z-index: 5;
    }


    /* =========================================
       IMAGE
    ========================================= */

    .gd-hero-image {
        position: absolute;

        right: 0;
        top: 0;

        width: 57.5%;
        height: 670px;

        overflow: hidden;

        z-index: 1;
    }

    .gd-hero-image img {
        width: 100%;
        height: 100%;

        object-fit: cover;
        object-position: center;

        transform: scale(1.02);

        animation: gdHeroImage 9s ease-in-out infinite alternate;
    }


    /* image white overlap */

    .gd-hero-image::before {
        content: "";
        position: absolute;
        left: 0;
        top: 0;
        bottom: 0;

        width: 95px;

        background: linear-gradient(
            90deg,
            var(--gd-white) 0%,
            rgba(255,255,255,.78) 30%,
            transparent 100%
        );

        z-index: 2;
    }

    .gd-hero-image::after {
        content: "";
        position: absolute;
        inset: 0;

        background:
            linear-gradient(
                90deg,
                rgba(16,45,67,.06),
                transparent 45%
            );

        z-index: 1;
    }


    /* =========================================
       HERO CONTENT
    ========================================= */

    .gd-hero-content {
        min-height: 670px;

        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;

        position: relative;

        z-index: 8;

        padding-top: 18px;
    }

    .gd-eyebrow {
        color: var(--gd-orange);

        font-size: 14px;
        font-weight: 800;

        text-transform: uppercase;

        letter-spacing: .7px;

        margin-bottom: 18px;

        display: inline-flex;
        align-items: center;
        gap: 10px;
    }

    .gd-eyebrow::before {
        content: "";
        width: 32px;
        height: 3px;

        background: var(--gd-orange);
    }


    .gd-hero-title {
        max-width: 690px;

        margin: 0 0 25px;

        color: var(--gd-navy);

        font-size: clamp(48px, 5vw, 76px);
        line-height: .99;

        font-weight: 900;

        letter-spacing: -2.6px;

        text-transform: uppercase;
    }

    .gd-hero-title .gd-highlight {
        color: var(--gd-orange);
    }


    /* white patch behind overlapping text */

    .gd-title-overlay {
        position: relative;
        display: inline;

     
    }


    /* =========================================
       SERVICE MINI LIST
    ========================================= */

    .gd-mini-services {
        display: flex;
        align-items: center;
        flex-wrap: wrap;

        gap: 17px;

        margin-bottom: 34px;
    }

    .gd-mini-services span {
        display: inline-flex;
        align-items: center;
        gap: 12px;

        color: var(--gd-dark);

        font-size: 16px;
        font-weight: 800;
    }

    .gd-mini-services span:not(:last-child)::after {
        content: "";

        width: 11px;
        height: 11px;

        margin-left: 2px;

        border-radius: 50%;

        background: var(--gd-orange);
    }


    /* =========================================
       BUTTON
    ========================================= */

    .gd-hero-btn {
        min-width: 190px;
        min-height: 60px;

        padding: 0 28px;

        display: inline-flex;
        justify-content: center;
        align-items: center;
        gap: 12px;

        color: var(--gd-white);
        background: var(--gd-orange);

        text-decoration: none;

        font-size: 30px;
        font-weight: 800;

        text-transform: uppercase;

        position: relative;

        overflow: hidden;

        transition: .35s ease;
    }

    .gd-hero-btn::before {
        content: "";

        position: absolute;

        left: -130%;
        top: 0;

        width: 100%;
        height: 100%;

        background: linear-gradient(
            110deg,
            transparent,
            rgba(255,255,255,.30),
            transparent
        );

        transition: .65s ease;
    }

    .gd-hero-btn:hover {
        color: var(--gd-white);
        background: var(--gd-navy);

        transform: translateY(-4px);

        box-shadow: var(--gd-shadow);
    }

    .gd-hero-btn:hover::before {
        left: 130%;
    }


    /* =========================================
       SMALL DECORATION
    ========================================= */

    .gd-door-lines {
        position: absolute;

        left: 42px;
        bottom: 40px;

        width: 110px;
        height: 110px;

        opacity: .07;

        z-index: 1;
    }

    .gd-door-lines span {
        position: absolute;
        display: block;

        border: 3px solid var(--gd-navy);
    }

    .gd-door-lines span:nth-child(1) {
        inset: 0;
    }

    .gd-door-lines span:nth-child(2) {
        left: 15px;
        right: 15px;
        top: 21px;
        height: 20px;
    }

    .gd-door-lines span:nth-child(3) {
        left: 15px;
        right: 15px;
        top: 49px;
        height: 20px;
    }

    .gd-door-lines span:nth-child(4) {
        left: 15px;
        right: 15px;
        top: 77px;
        height: 20px;
    }


    /* =========================================
       ANIMATION
    ========================================= */

    @keyframes gdHeroImage {
        0% {
            transform: scale(1.02);
        }

        100% {
            transform: scale(1.08);
        }
    }


    /* =========================================
       TABLET
    ========================================= */

    @media (max-width: 1199.98px) {

        .gd-logo-box {
            width: 220px;
        }

        .gd-topbar,
        .gd-navbar {
            padding-left: 220px;
        }

        .gd-top-info {
            gap: 18px;
        }

        .gd-navbar .nav-link {
            padding-left: 10px !important;
            padding-right: 10px !important;

            font-size: 13px;
        }

        .gd-nav-quote {
            min-width: 170px;
        }

        .gd-hero-image {
            width: 55%;
        }

        .gd-hero-title {
            max-width: 610px;
        }
    }


    /* =========================================
       MOBILE / TABLET
    ========================================= */

    @media (max-width: 991.98px) {

        .gd-logo-box {
            position: relative;

            width: 100%;
            height: 88px;

            justify-content: flex-start;

            padding-left: 25px;
        }

        .gd-topbar {
            padding-left: 0;
        }

        .gd-top-info span:first-child {
            display: none;
        }

        .gd-navbar {
            padding-left: 0;

            min-height: auto;

            box-shadow: 0 8px 24px rgba(16,45,67,.08);
        }

        .gd-navbar .navbar {
            padding: 12px 0;
        }

        .gd-navbar .navbar-toggler {
            border: 0;
            box-shadow: none !important;
        }

        .gd-navbar .navbar-nav {
            gap: 0;

            padding: 15px 0;
        }

        .gd-navbar .nav-link {
            padding: 12px 5px !important;
        }

        .gd-nav-quote {
            min-height: 52px;
            width: 100%;
        }


        .gd-hero {
            min-height: auto;

            padding-bottom: 0;
        }

        .gd-hero-content {
            min-height: auto;

            padding: 80px 0 55px;
        }

        .gd-hero-title {
            max-width: 720px;
        }

        .gd-title-overlay {
            background: none;
        }

        .gd-hero-image {
            position: relative;

            width: 100%;
            height: 510px;

            right: auto;
            top: auto;
        }

        .gd-hero-image::before {
            display: none;
        }

    }


    /* =========================================
       PHONE
    ========================================= */

    @media (max-width: 767.98px) {

        .gd-topbar {
            display: none;
        }

        .gd-logo-box {
            height: 78px;
        }

        .gd-logo-icon {
            width: 44px;
            height: 44px;
        }

        .gd-logo-text strong {
            font-size: 23px;
        }

        .gd-hero-content {
            padding-top: 60px;
            padding-bottom: 45px;
        }

        .gd-eyebrow {
            font-size: 12px;
        }

        .gd-hero-title {
            font-size: clamp(43px, 13vw, 62px);

            letter-spacing: -2px;

            margin-bottom: 22px;
        }

        .gd-mini-services {
            gap: 10px 13px;

            margin-bottom: 28px;
        }

        .gd-mini-services span {
            font-size: 14px;
        }

        .gd-mini-services span:not(:last-child)::after {
            width: 8px;
            height: 8px;
        }

        .gd-hero-image {
            height: 390px;
        }

        .gd-door-lines {
            display: none;
        }

    }


    @media (max-width: 480px) {

        .gd-hero-image {
            height: 310px;
        }

        .gd-hero-btn {
            width: 100%;
        }

    }



    .gd-about {

    position: relative;

    padding: 120px 0;

    background: var(--gd-white);

    overflow: hidden;
}


/* subtle background texture */

.gd-about::before {

    content: "";

    position: absolute;

    width: 500px;
    height: 500px;

    right: -250px;
    top: -250px;

    border-radius: 50%;

    border:
        1px solid rgba(63,112,142,.08);

    box-shadow:

        0 0 0 50px rgba(63,112,142,.018),
        0 0 0 100px rgba(63,112,142,.018),
        0 0 0 150px rgba(63,112,142,.018);

    pointer-events: none;
}


.gd-about .container {

    position: relative;

    z-index: 2;
}


/* ==========================================
   LEFT VISUAL
========================================== */

.gd-about-visual {

    position: relative;

    width: 100%;
    max-width: 535px;

    margin: 0 auto;

    padding: 0 46px 52px 0;
}


/* ==========================================
   IMAGE
========================================== */

.gd-about-image {

    position: relative;

    width: 100%;

    height: 485px;

    overflow: hidden;

    z-index: 3;

    background: var(--gd-bg);
}


.gd-about-image::after {

    content: "";

    position: absolute;

    inset: 0;

    background:

        linear-gradient(
            180deg,
            transparent 60%,
            rgba(16,45,67,.12)
        );

    pointer-events: none;
}


.gd-about-image img {

    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    transition:
        transform .8s cubic-bezier(.2,.7,.2,1);
}


.gd-about-visual:hover
.gd-about-image img {

    transform: scale(1.055);
}


/* ==========================================
   OUTLINE FRAME
========================================== */

.gd-about-frame {

    position: absolute;

    top: 44px;
    left: 40px;

    right: 0;
    bottom: 0;

    border:
        1px solid rgba(242,140,56,.58);

    z-index: 1;
}


/* cut top-left corner */

.gd-about-frame::before {

    content: "";

    position: absolute;

    width: 82px;
    height: 82px;

    left: -1px;
    bottom: -1px;

    background: var(--gd-white);

    clip-path:
        polygon(
            0 0,
            0 100%,
            100% 100%
        );

    border-right:
        1px solid rgba(242,140,56,.58);

    transform:
        skewY(43deg);

    transform-origin:
        bottom right;
}


/* ==========================================
   DOT PATTERN
========================================== */

.gd-about-dots {

    position: absolute;

    z-index: 2;

    right: 2px;
    bottom: 2px;

    width: 78%;
    height: 73%;

    opacity: .52;

    background-image:

        radial-gradient(
            circle,
            rgba(242,140,56,.48) 1.2px,
            transparent 1.5px
        );

    background-size:
        11px 11px;
}


/* ==========================================
   CIRCULAR TEXT
========================================== */

.gd-about-circle {

    position: absolute;

    width: 150px;
    height: 150px;

    right: -14px;
    top: -56px;

    z-index: 5;

    animation:
        gdAboutRotate 18s linear infinite;
}


.gd-about-circle svg {

    width: 100%;
    height: 100%;

    overflow: visible;
}


.gd-about-circle text {

    fill: var(--gd-orange);

    font-size: 13.3px;

    font-weight: 800;

    letter-spacing: 1.7px;
}


/* center circle */

.gd-about-circle-center {

    position: absolute;

    width: 58px;
    height: 58px;

    left: 50%;
    top: 50%;

    transform:
        translate(-50%, -50%);

    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    color: var(--gd-white);

    background: var(--gd-navy);

    font-size: 20px;

    box-shadow:
        0 10px 25px rgba(16,45,67,.16);
}


.gd-about-circle-center i {

    animation:
        gdGearReverse 18s linear infinite;
}


/* ==========================================
   RIGHT CONTENT
========================================== */

.gd-about-content {

    max-width: 590px;

    padding-left: 35px;
}


/* label */

.gd-about-label {

    display: inline-flex;

    align-items: center;

    gap: 10px;

    margin-bottom: 8px;

    color: var(--gd-orange);

    font-size: 12px;

    font-weight: 800;

    letter-spacing: 1.5px;
}


.gd-about-label::before {

    content: "";

    width: 28px;
    height: 3px;

    background:
        var(--gd-orange);
}


/* ==========================================
   HEADING
========================================== */

.gd-about-content h2 {

    margin:

        0 0 13px;

    color:
        var(--gd-navy);

    font-size:
        clamp(45px, 4vw, 62px);

    line-height:
        1;

    font-weight:
        900;

    letter-spacing:
        -2px;
}


.gd-about-content h3 {

    margin:

        0 0 28px;

    color:
        var(--gd-steel);

    font-size:
        22px;

    line-height:
        1.55;

    font-weight:
        800;
}


/* ==========================================
   SERVICES
========================================== */

.gd-about-services {

    margin-bottom:
        26px;
}


.gd-about-service {

    min-height:
        38px;

    display:
        flex;

    align-items:
        center;

    gap:
        12px;

    color:
        var(--gd-muted);

    font-size:
        14px;

    font-weight:
        600;
}


.gd-about-service span {

    flex:
        0 0 21px;

    width:
        21px;

    height:
        21px;

    border-radius:
        50%;

    display:
        inline-flex;

    align-items:
        center;

    justify-content:
        center;

    color:
        var(--gd-white);

    background:
        var(--gd-orange);

    font-size:
        9px;

    transition:
        .35s ease;
}


.gd-about-service:hover span {

    background:
        var(--gd-navy);

    transform:
        rotate(360deg);
}


/* ==========================================
   DESCRIPTION
========================================== */

.gd-about-description {

    max-width:
        565px;

    margin:
        0 0 31px;

    color:
        var(--gd-muted);

    font-size:
        14px;

    line-height:
        1.8;
}


/* ==========================================
   PHONE BOX
========================================== */

.gd-about-phone {

    width:
        fit-content;

    min-width:
        255px;

    min-height:
        66px;

    padding:
        9px 23px 9px 11px;

    display:
        flex;

    align-items:
        center;

    gap:
        15px;

    text-decoration:
        none;

    background:
        rgba(169,199,216,.20);

    border:
        1px solid rgba(63,112,142,.08);

    transition:
        .35s ease;
}


.gd-phone-icon {

    width:
        47px;

    height:
        47px;

    flex:
        0 0 47px;

    border-radius:
        50%;

    display:
        flex;

    align-items:
        center;

    justify-content:
        center;

    color:
        var(--gd-white);

    background:
        var(--gd-orange);

    border:
        4px solid var(--gd-white);

    box-shadow:
        0 5px 18px rgba(242,140,56,.24);
}


.gd-phone-data {

    display:
        flex;

    flex-direction:
        column;
}


.gd-phone-data small {

    margin-bottom:
        2px;

    color:
        var(--gd-muted);

    font-size:
        9px;

    font-weight:
        700;

    letter-spacing:
        .8px;
}


.gd-phone-data strong {

    color:
        var(--gd-orange);

    font-size:
        20px;

    font-weight:
        900;

    transition:
        .3s ease;
}


.gd-about-phone:hover {

    background:
        var(--gd-navy);

    transform:
        translateY(-4px);

    box-shadow:
        var(--gd-shadow);
}


.gd-about-phone:hover
.gd-phone-data small {

    color:
        var(--gd-soft);
}


.gd-about-phone:hover
.gd-phone-data strong {

    color:
        var(--gd-white);
}


/* ==========================================
   ANIMATIONS
========================================== */

@keyframes gdAboutRotate {

    from {
        transform:
            rotate(0deg);
    }

    to {
        transform:
            rotate(360deg);
    }

}


@keyframes gdGearReverse {

    from {
        transform:
            rotate(0deg);
    }

    to {
        transform:
            rotate(-360deg);
    }

}


/* ==========================================
   RESPONSIVE
========================================== */

@media (max-width: 1199.98px) {

    .gd-about {

        padding:
            100px 0;

    }


    .gd-about-content {

        padding-left:
            10px;

    }


    .gd-about-image {

        height:
            445px;

    }

}


@media (max-width: 991.98px) {

    .gd-about {

        padding:
            90px 0;

    }


    .gd-about-visual {

        max-width:
            580px;

        margin-bottom:
            35px;

    }


    .gd-about-image {

        height:
            520px;

    }


    .gd-about-content {

        max-width:
            650px;

        margin:
            0 auto;

        padding-left:
            0;

    }

}


@media (max-width: 767.98px) {

    .gd-about {

        padding:
            70px 0;

    }


    .gd-about-visual {

        padding:
            0 27px 35px 0;

    }


    .gd-about-image {

        height:
            430px;

    }


    .gd-about-frame {

        top:
            28px;

        left:
            27px;

    }


    .gd-about-circle {

        width:
            120px;

        height:
            120px;

        right:
            -4px;

        top:
            -45px;

    }


    .gd-about-circle text {

        font-size:
            13px;

    }


    .gd-about-circle-center {

        width:
            48px;

        height:
            48px;

    }


    .gd-about-content h2 {

        font-size:
            48px;

    }


    .gd-about-content h3 {

        font-size:
            19px;

    }

}


@media (max-width: 575.98px) {

    .gd-about-image {

        height:
            370px;

    }


    .gd-about-content h2 {

        font-size:
            43px;

    }


    .gd-about-content h3 br {

        display:
            none;

    }


    .gd-about-service {

        min-height:
            35px;

    }


    .gd-about-phone {

        width:
            100%;

    }

}


@media (max-width: 420px) {

    .gd-about-image {

        height:
            320px;

    }


    .gd-about-circle {

        width:
            105px;

        height:
            105px;

        top:
            -38px;

    }


    .gd-about-circle-center {

        width:
            42px;

        height:
            42px;

        font-size:
            15px;

    }

}


/* ==================================================
   MAIN SECTION
================================================== */

.gdb-services {

    position: relative;

    min-height: 900px;

    padding:

        105px 0
        100px;

    background:

        linear-gradient(
            to bottom,
            var(--gd-navy) 0,
            var(--gd-navy) 51%,
            var(--gd-bg) 51%,
            var(--gd-bg) 100%
        );

    overflow: hidden;
}


/* ==================================================
   BACKGROUND IMAGE
================================================== */

.gdb-services-bg {

    position: absolute;

    left: 0;
    right: 0;
    top: 0;

    height: 51%;

 

    background-size: cover;

    background-position: center;

    opacity: 1;
}


/* subtle texture */

.gdb-services::after {

    content: "";

    position: absolute;

    inset: 0;

    pointer-events: none;

    opacity: .17;

    background-image:

        radial-gradient(
            rgba(255,255,255,.16) 1px,
            transparent 1px
        );

    background-size:
        22px 22px;

    mask-image:

        linear-gradient(
            to bottom,
            black,
            transparent 55%
        );
}


/* ==================================================
   HEADING
================================================== */

.gdb-services-heading {

    position: relative;

    z-index: 3;

    margin-bottom: 72px;
}


.gdb-services-eyebrow {

    display:

        inline-flex;

    align-items:
        center;

    justify-content:
        center;

    gap:
        14px;

    margin-bottom:
        13px;

    color:
        var(--gd-orange);

    font-size:
        13px;

    line-height:
        1;

    font-weight:
        900;

    letter-spacing:
        .8px;

    text-transform:
        uppercase;
}


.gdb-services-eyebrow span {

    width:
        72px;

    height:
        1px;

    background:
        var(--gd-orange);
}


.gdb-services-heading h2 {

    margin:
        0;

    color:
        var(--gd-white);

    font-size:
        clamp(38px,4vw,58px);

    line-height:
        1.05;

    font-weight:
        900;

    letter-spacing:
        -1.5px;
}


/* ==================================================
   LAYOUT
================================================== */

.gdb-services-layout {

    position: relative;

    z-index: 4;
}


/* ==================================================
   LEFT MENU
================================================== */

.gdb-service-menu {

    position: relative;

    z-index: 6;

    padding:

        30px
        0
        31px
        28px;

    background:
        var(--gd-white);

    box-shadow:
        0 16px 45px rgba(16,45,67,.07);
}


/* ==================================================
   MENU ITEM
================================================== */

.gdb-menu-item {

    position: relative;

    width:
        calc(100% + 16px);

    min-height:
        58px;

    padding:
        10px 23px;

    display:
        flex;

    align-items:
        center;

    gap:
        17px;

    text-decoration:
        none;

    color:
        #66747d;

    font-size:
        14px;

    font-weight:
        600;

    background:
        transparent;

    transition:
        .35s ease;
}


.gdb-menu-icon {

    flex:
        0 0 25px;

    width:
        25px;

    color:
        var(--gd-dark);

    text-align:
        center;

    font-size:
        15px;

    transition:
        .35s ease;
}


/* active */

.gdb-menu-item.active {

    color:
        var(--gd-white);

    background:
        var(--gd-orange);
}


/* arrow shape same reference */

.gdb-menu-item.active::after {

    content: "";

    position: absolute;

    top: 0;
    right: -24px;

    width: 25px;
    height: 100%;

    background:
        var(--gd-orange);

    clip-path:

        polygon(
            0 0,
            100% 50%,
            0 100%
        );
}


.gdb-menu-item.active
.gdb-menu-icon {

    color:
        var(--gd-white);
}


/* hover */

.gdb-menu-item:not(.active):hover {

    color:
        var(--gd-orange);

    padding-left:
        30px;
}


.gdb-menu-item:not(.active):hover
.gdb-menu-icon {

    color:
        var(--gd-orange);

    transform:
        rotate(-8deg)
        scale(1.08);
}


/* ==================================================
   FEATURE CARD
================================================== */

.gdb-service-feature {

    position: relative;

    background:
        var(--gd-white);

    margin-left:
        26px;

    box-shadow:
        0 18px 50px rgba(16,45,67,.08);
}


/* ==================================================
   IMAGE
================================================== */

.gdb-feature-image {

    position: relative;

    width:
        100%;

    height:
        385px;

    overflow:
        hidden;

    background:
        #dfe8ed;
}


.gdb-feature-image::after {

    content: "";

    position:
        absolute;

    inset:
        0;

    background:

        linear-gradient(
            180deg,
            transparent 60%,
            rgba(16,45,67,.10)
        );

    pointer-events:
        none;
}


.gdb-feature-image img {

    width:
        100%;

    height:
        100%;

    display:
        block;

    object-fit:
        cover;

    transition:

        transform
        .8s
        cubic-bezier(.2,.7,.2,1);
}


.gdb-service-feature:hover
.gdb-feature-image img {

    transform:
        scale(1.045);
}


/* ==================================================
   ARROW BUTTON
================================================== */

.gdb-feature-arrow {

    position:
        absolute;

    right:
        27px;

    top:
        358px;

    z-index:
        5;

    width:
        94px;

    height:
        58px;

    display:
        flex;

    align-items:
        center;

    justify-content:
        center;

    color:
        var(--gd-white);

    background:
        var(--gd-orange);

    text-decoration:
        none;

    font-size:
        28px;

    transition:
        .35s ease;

    overflow:
        hidden;
}


.gdb-feature-arrow::before {

    content: "";

    position:
        absolute;

    width:
        120%;

    height:
        100%;

    left:
        -130%;

    top:
        0;

    background:

        linear-gradient(
            110deg,
            transparent,
            rgba(255,255,255,.27),
            transparent
        );

    transition:
        .6s ease;
}


.gdb-feature-arrow:hover {

    color:
        var(--gd-white);

    background:
        var(--gd-navy);

    transform:
        translateX(5px);
}


.gdb-feature-arrow:hover::before {

    left:
        120%;
}


/* ==================================================
   FEATURE TEXT
================================================== */

.gdb-feature-content {

    padding:

        31px
        33px
        34px;
}


.gdb-feature-content h3 {

    max-width:
        650px;

    margin:
        0
        120px
        18px
        0;

    color:
        var(--gd-navy);

    font-size:
        clamp(23px,2vw,31px);

    line-height:
        1.2;

    font-weight:
        900;

    letter-spacing:
        -.6px;
}


.gdb-feature-content p {

    margin:
        0
        0
        13px;

    color:
        var(--gd-muted);

    font-size:
        14px;

    line-height:
        1.75;
}


.gdb-feature-content p:last-child {

    margin-bottom:
        0;
}


/* ==================================================
   DECORATIVE BACKGROUND CIRCLE
================================================== */

.gdb-services::before {

    content: "";

    position:
        absolute;

    width:
        520px;

    height:
        520px;

    left:
        -260px;

    bottom:
        -290px;

    border:
        1px solid
        rgba(63,112,142,.10);

    border-radius:
        50%;

    box-shadow:

        0 0 0 60px
        rgba(63,112,142,.018),

        0 0 0 120px
        rgba(63,112,142,.018);

    pointer-events:
        none;
}


/* ==================================================
   RESPONSIVE
================================================== */

@media (max-width: 1199.98px) {

    .gdb-services {

        min-height:
            870px;
    }


    .gdb-feature-image {

        height:
            350px;
    }


    .gdb-feature-arrow {

        top:
            323px;
    }


    .gdb-menu-item {

        font-size:
            13px;
    }

}


/* ==================================================
   TABLET
================================================== */

@media (max-width: 991.98px) {

    .gdb-services {

        min-height:
            auto;

        padding:
            85px 0;

        background:
            var(--gd-bg);
    }


    .gdb-services-bg {

        height:
            430px;
    }


    .gdb-services-heading {

        margin-bottom:
            55px;
    }


    .gdb-service-menu {

        max-width:
            680px;

        margin:
            0 auto;

        padding:
            22px;
    }


    .gdb-menu-item {

        width:
            100%;
    }


    .gdb-menu-item.active::after {

        display:
            none;
    }


    .gdb-service-feature {

        max-width:
            680px;

        margin:
            28px auto 0;
    }


    .gdb-feature-image {

        height:
            410px;
    }


    .gdb-feature-arrow {

        top:
            380px;
    }

}


/* ==================================================
   MOBILE
================================================== */

@media (max-width: 767.98px) {

    .gdb-services {

        padding:
            70px 0;
    }


    .gdb-services-bg {

        height:
            350px;
    }


    .gdb-services-heading {

        margin-bottom:
            43px;
    }


    .gdb-services-heading h2 {

        font-size:
            39px;
    }


    .gdb-services-eyebrow span {

        width:
            38px;
    }


    .gdb-feature-image {

        height:
            320px;
    }


    .gdb-feature-arrow {

        width:
            72px;

        height:
            54px;

        top:
            293px;

        right:
            20px;
    }


    .gdb-feature-content {

        padding:
            29px 24px;
    }


    .gdb-feature-content h3 {

        margin-right:
            70px;

        font-size:
            24px;
    }

}


/* ==================================================
   SMALL PHONE
================================================== */

@media (max-width: 575.98px) {

    .gdb-services {

        padding:
            60px 0;
    }


    .gdb-service-menu {

        padding:
            17px 10px;
    }


    .gdb-menu-item {

        min-height:
            52px;

        padding:
            9px 15px;

        gap:
            12px;
    }


    .gdb-feature-image {

        height:
            260px;
    }


    .gdb-feature-arrow {

        top:
            235px;

        width:
            65px;

        height:
            50px;
    }


    .gdb-feature-content {

        padding:
            28px 20px;
    }


    .gdb-feature-content h3 {

        margin:
            0 50px 16px 0;

        font-size:
            22px;
    }


    .gdb-feature-content p {

        font-size:
            13px;

        line-height:
            1.7;
    }

}


/* ==========================================
   SECTION
========================================== */

.gdb-why-strip {

    position: relative;

    padding:
        130px 0;

    background:
        var(--gd-white);

    overflow:
        hidden;
}


/* very subtle texture */

.gdb-why-strip::before {

    content: "";

    position: absolute;

    inset: 0;

    opacity: .25;

    pointer-events: none;

    background-image:

        radial-gradient(
            rgba(63,112,142,.11) 1px,
            transparent 1px
        );

    background-size:
        28px 28px;

    mask-image:

        linear-gradient(
            90deg,
            transparent,
            black 25%,
            black 75%,
            transparent
        );
}



/* ==========================================
   MAIN WRAPPER
========================================== */

.gdb-why-wrap {

    position: relative;

    z-index: 2;

    max-width:
        1180px;

    margin:
        0 auto;

    background:
        var(--gd-white);

    box-shadow:
        0 13px 50px rgba(16,45,67,.07);
}



/* ==========================================
   NORMAL CARDS
========================================== */

.gdb-why-card {

    position: relative;

    min-height:
        310px;

    padding:
        48px 42px;

    display:
        flex;

    flex-direction:
        column;

    align-items:
        center;

    justify-content:
        center;

    text-align:
        center;

    background:
        var(--gd-white);

    transition:
        .4s cubic-bezier(.2,.7,.2,1);
}



/* ==========================================
   ICON
========================================== */

.gdb-why-icon {

    width:
        68px;

    height:
        68px;

    margin-bottom:
        24px;

    display:
        flex;

    align-items:
        center;

    justify-content:
        center;

    color:
        var(--gd-white);

    background:
        var(--gd-orange);

    font-size:
        26px;

    position:
        relative;

    transition:
        .4s ease;
}


/* small decorative corner */

.gdb-why-icon::after {

    content: "";

    position:
        absolute;

    width:
        11px;

    height:
        11px;

    right:
        -5px;

    bottom:
        -5px;

    border-right:
        2px solid var(--gd-orange);

    border-bottom:
        2px solid var(--gd-orange);

    opacity:
        .45;
}



/* ==========================================
   TITLE
========================================== */

.gdb-why-card h3 {

    margin:
        0 0 17px;

    color:
        var(--gd-navy);

    font-size:
        21px;

    line-height:
        1.25;

    font-weight:
        900;
}



/* ==========================================
   TEXT
========================================== */

.gdb-why-card p {

    max-width:
        330px;

    margin:
        0;

    color:
        var(--gd-muted);

    font-size:
        14px;

    line-height:
        1.75;
}



/* ==========================================
   CENTER FEATURED CARD
========================================== */

.gdb-why-featured {

    min-height:
        390px;

    margin-top:
        -40px;

    margin-bottom:
        -40px;

    padding:
        54px 43px;

    z-index:
        5;

    color:
        var(--gd-white);

    background:
        var(--gd-navy);

    box-shadow:
        0 25px 60px rgba(16,45,67,.22);
}



/* subtle lines in center */

.gdb-why-featured::before {

    content: "";

    position:
        absolute;

    inset:
        0;

    pointer-events:
        none;

    opacity:
        .13;

    background-image:

        linear-gradient(
            90deg,
            transparent 49%,
            rgba(255,255,255,.14) 50%,
            transparent 51%
        ),

        linear-gradient(
            transparent 49%,
            rgba(255,255,255,.10) 50%,
            transparent 51%
        );

    background-size:
        65px 65px;
}



.gdb-why-featured > * {

    position:
        relative;

    z-index:
        2;
}



.gdb-why-featured h3 {

    color:
        var(--gd-white);
}



.gdb-why-featured p {

    color:
        rgba(255,255,255,.78);
}



/* ==========================================
   CENTER ARROW
========================================== */

.gdb-why-arrow {

    width:
        48px;

    height:
        48px;

    margin-top:
        27px;

    border-radius:
        50%;

    display:
        inline-flex;

    align-items:
        center;

    justify-content:
        center;

    color:
        var(--gd-white);

    background:
        var(--gd-orange);

    text-decoration:
        none;

    font-size:
        16px;

    transition:
        .4s ease;
}



.gdb-why-arrow:hover {

    color:
        var(--gd-navy);

    background:
        var(--gd-white);

    transform:
        translateX(6px);
}



/* ==========================================
   HOVER NORMAL CARD
========================================== */

.gdb-why-card:not(.gdb-why-featured):hover {

    transform:
        translateY(-7px);

    box-shadow:
        0 20px 50px rgba(16,45,67,.10);

    z-index:
        4;
}



.gdb-why-card:not(.gdb-why-featured):hover
.gdb-why-icon {

    background:
        var(--gd-navy);

    transform:
        translateY(-5px)
        rotate(4deg);
}



/* ==========================================
   FEATURE HOVER
========================================== */

.gdb-why-featured:hover {

    transform:
        translateY(-7px);

    box-shadow:
        0 34px 75px rgba(16,45,67,.28);
}



.gdb-why-featured:hover
.gdb-why-icon {

    transform:
        rotate(-5deg)
        scale(1.06);
}



/* ==========================================
   DECORATIVE GARAGE DOOR LINES
========================================== */

.gdb-why-strip::after {

    content: "";

    position:
        absolute;

    width:
        190px;

    height:
        150px;

    right:
        4%;

    bottom:
        25px;

    opacity:
        .035;

    border:
        4px solid var(--gd-navy);

    background:

        repeating-linear-gradient(
            to bottom,
            transparent 0,
            transparent 32px,
            var(--gd-navy) 33px,
            var(--gd-navy) 36px
        );

    pointer-events:
        none;
}



/* ==========================================
   TABLET
========================================== */

@media (max-width: 991.98px) {

    .gdb-why-strip {

        padding:
            90px 0;
    }


    .gdb-why-wrap {

        max-width:
            680px;

        box-shadow:
            none;
    }


    .gdb-why-card {

        min-height:
            280px;

        margin-bottom:
            20px;

        box-shadow:
            0 12px 40px rgba(16,45,67,.07);
    }


    .gdb-why-featured {

        min-height:
            340px;

        margin-top:
            0;

        margin-bottom:
            20px;
    }

}



/* ==========================================
   MOBILE
========================================== */

@media (max-width: 767.98px) {

    .gdb-why-strip {

        padding:
            70px 0;
    }


    .gdb-why-card {

        min-height:
            auto;

        padding:
            45px 28px;
    }


    .gdb-why-featured {

        min-height:
            auto;

        padding:
            50px 28px;
    }


    .gdb-why-icon {

        width:
            62px;

        height:
            62px;

        font-size:
            23px;

        margin-bottom:
            21px;
    }


    .gdb-why-card h3 {

        font-size:
            20px;
    }


    .gdb-why-card p {

        max-width:
            420px;
    }

}



/* ==========================================
   SMALL MOBILE
========================================== */

@media (max-width: 575.98px) {

    .gdb-why-strip {

        padding:
            55px 0;
    }


    .gdb-why-card {

        padding:
            40px 22px;
    }


    .gdb-why-featured {

        padding:
            46px 22px;
    }


    .gdb-why-card p {

        font-size:
            13px;

        line-height:
            1.7;
    }

}




.gdb-safe-section {

    position: relative;

    padding:
        120px 0;

    background:
        linear-gradient(
            90deg,
            var(--gd-white) 0%,
            var(--gd-white) 56%,
            var(--gd-bg) 56%,
            var(--gd-bg) 100%
        );

    overflow:
        hidden;
}


/* subtle texture */

.gdb-safe-section::before {

    content: "";

    position: absolute;

    inset: 0;

    opacity: .26;

    pointer-events: none;

    background-image:

        radial-gradient(
            rgba(63,112,142,.12) 1px,
            transparent 1px
        );

    background-size:
        24px 24px;

    mask-image:
        linear-gradient(
            90deg,
            transparent 0,
            transparent 38%,
            black 72%,
            transparent 100%
        );
}


.gdb-safe-section .container {

    position: relative;

    z-index: 2;
}


/* ==========================================
   LEFT CONTENT
========================================== */

.gdb-safe-content {

    max-width:
        620px;

    padding-right:
        45px;
}


.gdb-safe-label {

    display:
        inline-flex;

    align-items:
        center;

    gap:
        12px;

    margin-bottom:
        16px;

    color:
        var(--gd-orange);

    font-size:
        12px;

    font-weight:
        900;

    letter-spacing:
        1.5px;
}


.gdb-safe-label::before {

    content: "";

    width:
        35px;

    height:
        3px;

    background:
        var(--gd-orange);
}


.gdb-safe-content h2 {

    margin:
        0 0 27px;

    color:
        var(--gd-navy);

    font-size:
        clamp(42px,4.5vw,67px);

    line-height:
        1.02;

    font-weight:
        900;

    letter-spacing:
        -2px;
}


.gdb-safe-content p {

    margin:
        0 0 18px;

    color:
        var(--gd-muted);

    font-size:
        15px;

    line-height:
        1.8;
}


/* ==========================================
   BUTTON
========================================== */

.gdb-safe-btn {

    min-width:
        205px;

    min-height:
        60px;

    margin-top:
        13px;

    padding:
        0 28px;

    display:
        inline-flex;

    align-items:
        center;

    justify-content:
        center;

    gap:
        14px;

    color:
        var(--gd-white);

    background:
        var(--gd-orange);

    text-decoration:
        none;

    font-size:
        14px;

    font-weight:
        900;

    transition:
        .35s ease;
}


.gdb-safe-btn:hover {

    color:
        var(--gd-white);

    background:
        var(--gd-navy);

    transform:
        translateY(-4px);

    box-shadow:
        var(--gd-shadow);
}


/* ==========================================
   RIGHT PANEL
========================================== */

.gdb-safe-panel {

    position:
        relative;

    min-height:
        630px;

    padding:
        50px 48px 44px;

    background:
        var(--gd-navy);

    overflow:
        hidden;

    box-shadow:
        0 30px 70px rgba(16,45,67,.22);
}


/* orange corner */

.gdb-safe-panel::before {

    content: "";

    position:
        absolute;

    width:
        140px;

    height:
        140px;

    right:
        -70px;

    top:
        -70px;

    border-radius:
        50%;

    background:
        var(--gd-orange);
}


/* subtle pattern */

.gdb-safe-panel::after {

    content: "";

    position:
        absolute;

    inset:
        0;

    opacity:
        .08;

    pointer-events:
        none;

    background-image:

        linear-gradient(
            rgba(255,255,255,.10) 1px,
            transparent 1px
        ),

        linear-gradient(
            90deg,
            rgba(255,255,255,.10) 1px,
            transparent 1px
        );

    background-size:
        42px 42px;
}


.gdb-safe-panel > * {

    position:
        relative;

    z-index:
        2;
}


/* ==========================================
   PANEL TOP
========================================== */

.gdb-safe-panel-top {

    display:
        flex;

    align-items:
        center;

    gap:
        12px;

    margin-bottom:
        16px;
}


.gdb-safe-panel-top span {

    width:
        42px;

    height:
        2px;

    background:
        var(--gd-orange);
}


.gdb-safe-panel-top small {

    color:
        var(--gd-orange);

    font-size:
        10px;

    font-weight:
        900;

    letter-spacing:
        1.5px;
}


.gdb-safe-panel h3 {

    max-width:
        520px;

    margin:
        0 0 29px;

    color:
        var(--gd-white);

    font-size:
        clamp(26px,2.5vw,38px);

    line-height:
        1.18;

    font-weight:
        900;
}


/* ==========================================
   LIST
========================================== */

.gdb-safe-list {

    display:
        flex;

    flex-direction:
        column;

    gap:
        14px;

    margin-bottom:
        28px;
}


.gdb-safe-item {

    display:
        flex;

    align-items:
        flex-start;

    gap:
        14px;
}


.gdb-safe-item p {

    margin:
        0;

    color:
        rgba(255,255,255,.82);

    font-size:
        14px;

    line-height:
        1.6;
}


.gdb-safe-check {

    flex:
        0 0 26px;

    width:
        26px;

    height:
        26px;

    margin-top:
        1px;

    border-radius:
        50%;

    display:
        flex;

    align-items:
        center;

    justify-content:
        center;

    color:
        var(--gd-white);

    background:
        var(--gd-orange);

    font-size:
        10px;

    transition:
        .35s ease;
}


.gdb-safe-item:hover
.gdb-safe-check {

    transform:
        rotate(360deg)
        scale(1.08);

    background:
        var(--gd-white);

    color:
        var(--gd-orange);
}


/* ==========================================
   BOTTOM TEXT
========================================== */

.gdb-safe-bottom-text {

    padding-top:
        24px;

    border-top:
        1px solid rgba(255,255,255,.14);
}


.gdb-safe-bottom-text p {

    margin:
        0;

    color:
        rgba(255,255,255,.70);

    font-size:
        13px;

    line-height:
        1.75;
}


/* ==========================================
   DECORATIVE GARAGE DOOR
========================================== */

.gdb-safe-door {

    position:
        absolute;

    width:
        160px;

    height:
        125px;

    right:
        25px;

    bottom:
        20px;

    opacity:
        .055;
}


.gdb-safe-door > span {

    position:
        absolute;

    display:
        block;

    left:
        0;

    width:
        100%;

    height:
        26px;

    border:
        3px solid var(--gd-white);
}


.gdb-safe-door > span:nth-child(1) {

    top:
        0;
}


.gdb-safe-door > span:nth-child(2) {

    top:
        32px;
}


.gdb-safe-door > span:nth-child(3) {

    top:
        64px;
}


.gdb-safe-door > span:nth-child(4) {

    top:
        96px;
}


/* ==========================================
   RESPONSIVE
========================================== */

@media (max-width: 1199.98px) {

    .gdb-safe-content {

        padding-right:
            20px;
    }


    .gdb-safe-panel {

        padding:
            45px 38px;
    }

}


@media (max-width: 991.98px) {

    .gdb-safe-section {

        padding:
            90px 0;

        background:
            var(--gd-white);
    }


    .gdb-safe-content {

        max-width:
            700px;

        margin:
            0 auto;

        padding-right:
            0;
    }


    .gdb-safe-panel {

        max-width:
            700px;

        margin:
            20px auto 0;
    }

}


@media (max-width: 767.98px) {

    .gdb-safe-section {

        padding:
            70px 0;
    }


    .gdb-safe-content h2 {

        font-size:
            45px;
    }


    .gdb-safe-panel {

        min-height:
            auto;

        padding:
            40px 27px;
    }


    .gdb-safe-panel h3 {

        font-size:
            29px;
    }

}


@media (max-width: 575.98px) {

    .gdb-safe-section {

        padding:
            55px 0;
    }


    .gdb-safe-content h2 {

        font-size:
            39px;

        letter-spacing:
            -1.3px;
    }


    .gdb-safe-content p {

        font-size:
            14px;
    }


    .gdb-safe-btn {

        width:
            100%;
    }


    .gdb-safe-panel {

        padding:
            36px 21px;
    }


    .gdb-safe-item {

        gap:
            11px;
    }


    .gdb-safe-item p {

        font-size:
            13px;
    }

}


.gdb-transform {

    position: relative;

    padding: 120px 0 135px;

    background:
        linear-gradient(
            180deg,
            #fff 0%,
            #fff 70%,
            #f6f9fa 100%
        );

    overflow: hidden;
}


/* BACKGROUND TEXTURE */

.gdb-transform::before {

    content: "";

    position: absolute;

    width: 650px;
    height: 650px;

    left: -310px;
    top: 100px;

    border-radius: 50%;

    border:
        1px solid rgba(63,112,142,.07);

    box-shadow:

        0 0 0 65px rgba(63,112,142,.018),
        0 0 0 130px rgba(63,112,142,.018),
        0 0 0 195px rgba(63,112,142,.018);

    pointer-events: none;
}


.gdb-transform .container {

    position: relative;
    z-index: 2;
}


/* =====================================================
   HEADING
===================================================== */

.gdb-transform-kicker {

    display: inline-flex;

    align-items: center;

    gap: 13px;

    margin-bottom: 13px;

    color: var(--gd-orange);

    font-size: 12px;

    font-weight: 900;

    letter-spacing: 1.5px;
}


.gdb-transform-kicker::before {

    content: "";

    width: 42px;
    height: 3px;

    background: var(--gd-orange);
}


.gdb-transform-heading h2 {

    max-width: 690px;

    margin: 0;

    color: var(--gd-navy);

    font-size:
        clamp(45px,5vw,68px);

    line-height: .98;

    font-weight: 900;

    letter-spacing: -2.3px;
}


.gdb-transform-heading h2 span {

    display: block;

    color: var(--gd-steel);
}


.gdb-transform-intro {

    max-width: 480px;

    margin: 0 0 5px auto;

    color: var(--gd-muted);

    font-size: 14px;

    line-height: 1.8;
}


/* =====================================================
   BEFORE / AFTER STAGE
===================================================== */

.gdb-ba-stage {

    position: relative;

    min-height: 660px;

    margin-right: 30px;
}


/* outline behind images */

.gdb-ba-outline {

    position: absolute;

    left: 35px;
    top: 40px;

    width: 77%;
    height: 79%;

    border:
        1px solid rgba(242,140,56,.45);
}


/* =====================================================
   CARDS
===================================================== */

.gdb-ba-card {

    position: absolute;

    overflow: hidden;

    background: var(--gd-white);

    box-shadow:
        0 24px 55px rgba(16,45,67,.15);

    transition:
        .45s cubic-bezier(.2,.7,.2,1);
}


/* BEFORE */

.gdb-ba-before {

    left: 0;
    top: 0;

    width: 58%;
    height: 420px;

    z-index: 2;
}


/* AFTER */

.gdb-ba-after {

    right: 0;
    bottom: 0;

    width: 64%;
    height: 450px;

    z-index: 4;

    border:
        8px solid var(--gd-white);
}


/* images */

.gdb-ba-image {

    position: absolute;

    inset: 0;

    overflow: hidden;
}


.gdb-ba-image::after {

    content: "";

    position: absolute;

    inset: 0;

    background:

        linear-gradient(
            180deg,
            transparent 60%,
            rgba(16,45,67,.32)
        );
}


.gdb-ba-image img {

    width: 100%;
    height: 100%;

    object-fit: cover;

    display: block;

    transition:
        transform .8s cubic-bezier(.2,.7,.2,1);
}


.gdb-ba-card:hover
.gdb-ba-image img {

    transform: scale(1.06);
}


/* =====================================================
   IMAGE LABEL
===================================================== */

.gdb-ba-tag {

    position: absolute;

    left: 20px;
    bottom: 20px;

    z-index: 5;

    display: flex;

    align-items: center;

    gap: 12px;

    min-width: 125px;

    padding: 8px 15px 8px 8px;

    color: var(--gd-white);

    background: var(--gd-navy);
}


.gdb-ba-after
.gdb-ba-tag {

    background: var(--gd-orange);
}


.gdb-ba-tag span {

    width: 34px;
    height: 34px;

    display: flex;

    align-items: center;
    justify-content: center;

    background:
        rgba(255,255,255,.13);

    font-size: 10px;

    font-weight: 900;
}


.gdb-ba-tag strong {

    font-size: 13px;

    letter-spacing: 1px;
}


/* =====================================================
   CENTER ARROW
===================================================== */

.gdb-ba-change {

    position: absolute;

    left: 45%;
    top: 44%;

    transform:
        translate(-50%,-50%);

    z-index: 8;

    width: 72px;
    height: 72px;

    border-radius: 50%;

    display: flex;

    align-items: center;
    justify-content: center;

    color: var(--gd-white);

    background: var(--gd-orange);

    border:
        7px solid var(--gd-white);

    font-size: 20px;

    box-shadow:
        0 12px 30px rgba(16,45,67,.20);

    animation:
        gdbArrowPulse 2.5s ease-in-out infinite;
}


/* =====================================================
   DOT TEXTURE
===================================================== */

.gdb-ba-dots {

    position: absolute;

    left: 8px;
    bottom: 8px;

    width: 190px;
    height: 155px;

    z-index: 1;

    opacity: .45;

    background-image:

        radial-gradient(
            circle,
            rgba(242,140,56,.55) 1.3px,
            transparent 1.6px
        );

    background-size:
        11px 11px;
}


/* =====================================================
   RESULT BADGE
===================================================== */

.gdb-ba-result {

    position: absolute;

    left: 45px;
    bottom: 60px;

    z-index: 7;

    display: flex;

    align-items: center;

    gap: 12px;

    padding: 14px 20px;

    background: var(--gd-white);

    box-shadow:
        0 15px 40px rgba(16,45,67,.12);
}


.gdb-ba-result > i {

    width: 38px;
    height: 38px;

    border-radius: 50%;

    display: flex;

    align-items: center;
    justify-content: center;

    color: var(--gd-white);

    background: var(--gd-orange);
}


.gdb-ba-result div {

    display: flex;

    flex-direction: column;
}


.gdb-ba-result small {

    color: var(--gd-muted);

    font-size: 8px;

    font-weight: 800;

    letter-spacing: 1px;
}


.gdb-ba-result strong {

    color: var(--gd-navy);

    font-size: 15px;

    font-weight: 900;
}


/* =====================================================
   PROCESS SIDE
===================================================== */

.gdb-process {

    position: relative;

    padding:

        44px
        42px
        38px;

    background: var(--gd-navy);

    box-shadow:
        var(--gd-shadow);

    overflow: hidden;
}


/* texture */

.gdb-process::before {

    content: "";

    position: absolute;

    inset: 0;

    opacity: .08;

    pointer-events: none;

    background-image:

        linear-gradient(
            rgba(255,255,255,.11) 1px,
            transparent 1px
        ),

        linear-gradient(
            90deg,
            rgba(255,255,255,.11) 1px,
            transparent 1px
        );

    background-size:
        42px 42px;
}


/* orange corner */

.gdb-process::after {

    content: "";

    position: absolute;

    width: 100px;
    height: 100px;

    right: -50px;
    top: -50px;

    transform: rotate(45deg);

    background: var(--gd-orange);
}


.gdb-process > * {

    position: relative;
    z-index: 3;
}


/* =====================================================
   PROCESS HEADING
===================================================== */

.gdb-process-top {

    margin-bottom: 30px;
}


.gdb-process-top > span {

    display: block;

    margin-bottom: 7px;

    color: var(--gd-orange);

    font-size: 10px;

    font-weight: 900;

    letter-spacing: 1.7px;
}


.gdb-process-top h3 {

    margin: 0;

    color: var(--gd-white);

    font-size: 37px;

    line-height: 1;

    font-weight: 900;
}


/* =====================================================
   PROCESS STEP
===================================================== */

.gdb-process-step {

    position: relative;

    display: grid;

    grid-template-columns:
        45px 1fr;

    column-gap: 20px;

    padding-bottom: 22px;
}


/* NUMBER */

.gdb-step-number {

    position: relative;

    z-index: 3;

    width: 45px;
    height: 45px;

    border-radius: 50%;

    display: flex;

    align-items: center;
    justify-content: center;

    color: var(--gd-orange);

    background: var(--gd-white);

    font-size: 11px;

    font-weight: 900;

    transition: .35s ease;
}


/* connecting line */

.gdb-step-line {

    position: absolute;

    left: 22px;
    top: 45px;

    width: 1px;

    height: calc(100% - 22px);

    background:
        rgba(255,255,255,.17);
}


/* CONTENT */

.gdb-step-content {

    display: grid;

    grid-template-columns:
        45px 1fr;

    gap: 14px;
}


.gdb-step-icon {

    width: 45px;
    height: 45px;

    display: flex;

    align-items: center;
    justify-content: center;

    color: var(--gd-white);

    border:
        1px solid rgba(255,255,255,.15);

    font-size: 14px;

    transition: .35s ease;
}


.gdb-step-content small {

    display: block;

    margin-bottom: 3px;

    color: var(--gd-orange);

    font-size: 8px;

    font-weight: 900;

    letter-spacing: 1px;
}


.gdb-step-content h4 {

    margin:
        0 0 5px;

    color: var(--gd-white);

    font-size: 17px;

    font-weight: 800;
}


.gdb-step-content p {

    margin: 0;

    color:
        rgba(255,255,255,.64);

    font-size: 12px;

    line-height: 1.55;
}


/* STEP HOVER */

.gdb-process-step:hover
.gdb-step-number {

    color: var(--gd-white);

    background: var(--gd-orange);

    transform: scale(1.08);
}


.gdb-process-step:hover
.gdb-step-icon {

    color: var(--gd-navy);

    background: var(--gd-white);

    transform: rotate(-5deg);
}


/* =====================================================
   CTA
===================================================== */

.gdb-process-cta {

    margin-top: 6px;

    padding: 16px 16px 16px 19px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 15px;

    background:
        rgba(255,255,255,.07);

    border:
        1px solid rgba(255,255,255,.10);
}


.gdb-process-cta div {

    display: flex;

    flex-direction: column;
}


.gdb-process-cta small {

    color: var(--gd-soft);

    font-size: 8px;

    font-weight: 800;

    letter-spacing: 1px;
}


.gdb-process-cta strong {

    color: var(--gd-white);

    font-size: 14px;

    font-weight: 800;
}


.gdb-process-cta a {

    flex: 0 0 44px;

    width: 44px;
    height: 44px;

    border-radius: 50%;

    display: flex;

    align-items: center;
    justify-content: center;

    color: var(--gd-white);

    background: var(--gd-orange);

    text-decoration: none;

    transition: .35s ease;
}


.gdb-process-cta a:hover {

    color: var(--gd-navy);

    background: var(--gd-white);

    transform: translateX(4px);
}


/* =====================================================
   ANIMATION
===================================================== */

@keyframes gdbArrowPulse {

    0%,
    100% {

        box-shadow:
            0 12px 30px rgba(16,45,67,.20),
            0 0 0 0 rgba(242,140,56,.20);
    }

    50% {

        box-shadow:
            0 12px 30px rgba(16,45,67,.20),
            0 0 0 13px rgba(242,140,56,0);
    }

}


/* =====================================================
   RESPONSIVE
===================================================== */

@media (max-width: 1199.98px) {

    .gdb-ba-stage {

        min-height: 610px;
    }


    .gdb-ba-before {

        height: 380px;
    }


    .gdb-ba-after {

        height: 410px;
    }


    .gdb-process {

        padding:
            38px 30px;
    }

}


@media (max-width: 991.98px) {

    .gdb-transform {

        padding:
            90px 0;
    }


    .gdb-transform-intro {

        margin:
            25px 0 0;

        max-width:
            650px;
    }


    .gdb-ba-stage {

        max-width:
            700px;

        min-height:
            660px;

        margin:
            0 auto 30px;
    }


    .gdb-process {

        max-width:
            700px;

        margin:
            0 auto;
    }

}


@media (max-width: 767.98px) {

    .gdb-transform {

        padding:
            70px 0;
    }


    .gdb-transform-heading h2 {

        font-size: 45px;
    }


    .gdb-ba-stage {

        min-height: 600px;

        margin-right: 0;
    }


    .gdb-ba-before {

        width: 70%;

        height: 350px;
    }


    .gdb-ba-after {

        width: 73%;

        height: 380px;
    }


    .gdb-ba-change {

        width: 62px;
        height: 62px;
    }

}


@media (max-width: 575.98px) {

    .gdb-transform {

        padding:
            55px 0;
    }


    .gdb-transform-heading h2 {

        font-size: 39px;

        letter-spacing: -1.4px;
    }


    .gdb-ba-stage {

        min-height: 530px;
    }


    .gdb-ba-before {

        width: 78%;
        height: 310px;
    }


    .gdb-ba-after {

        width: 80%;
        height: 330px;
    }


    .gdb-ba-change {

        left: 45%;
        top: 43%;

        width: 55px;
        height: 55px;

        border-width: 5px;
    }


    .gdb-ba-result {

        left: 10px;
        bottom: 35px;

        padding:
            10px 13px;
    }


    .gdb-ba-dots {

        width: 120px;
    }


    .gdb-process {

        padding:
            34px 20px 25px;
    }


    .gdb-process-top h3 {

        font-size: 31px;
    }


    .gdb-process-step {

        grid-template-columns:
            38px 1fr;

        column-gap: 12px;
    }


    .gdb-step-number {

        width: 38px;
        height: 38px;
    }


    .gdb-step-line {

        left: 19px;
        top: 38px;
    }


    .gdb-step-content {

        grid-template-columns:
            38px 1fr;

        gap: 10px;
    }


    .gdb-step-icon {

        width: 38px;
        height: 38px;
    }


    .gdb-step-content h4 {

        font-size: 15px;
    }


    .gdb-step-content p {

        font-size: 11px;
    }

}





.gdb-skilled {

    position: relative;

    padding:
        125px 0;

    background:
        var(--gd-bg);

    overflow:
        hidden;
}



/* texture */

.gdb-skilled::before {

    content: "";

    position: absolute;

    inset: 0;

    pointer-events: none;

    opacity: .35;

    background-image:

        radial-gradient(
            rgba(63,112,142,.13) 1px,
            transparent 1px
        );

    background-size:
        27px 27px;

    mask-image:

        linear-gradient(
            90deg,
            black,
            transparent 45%
        );
}



/* orange vertical line */

.gdb-skilled::after {

    content: "";

    position: absolute;

    width: 3px;

    height: 120px;

    right: 5%;

    top: 0;

    background:
        var(--gd-orange);

    opacity: .35;
}



.gdb-skilled .container {

    position: relative;

    z-index: 3;
}



/* =====================================================
   VISUAL
===================================================== */

.gdb-skilled-visual {

    position: relative;

    max-width: 600px;

    min-height: 610px;

    padding:
        0 50px 55px 0;

    margin:
        0 auto;
}



/* =====================================================
   IMAGE
===================================================== */

.gdb-skilled-image {

    position: relative;

    z-index: 4;

    width: 100%;

    height: 520px;

    overflow: hidden;

    background:
        #dfe7eb;

    box-shadow:
        0 25px 60px rgba(16,45,67,.13);
}



.gdb-skilled-image::after {

    content: "";

    position: absolute;

    inset: 0;

    pointer-events: none;

    background:

        linear-gradient(
            180deg,
            transparent 50%,
            rgba(16,45,67,.26)
        );
}



.gdb-skilled-image img {

    width: 100%;

    height: 100%;

    display: block;

    object-fit: cover;

    object-position: center;

    transition:
        transform .8s cubic-bezier(.2,.7,.2,1);
}



.gdb-skilled-visual:hover
.gdb-skilled-image img {

    transform:
        scale(1.055);
}



/* =====================================================
   OUTLINE FRAME
===================================================== */

.gdb-skilled-frame {

    position: absolute;

    z-index: 1;

    left: 38px;

    right: 0;

    top: 38px;

    bottom: 0;

    border:
        1px solid rgba(242,140,56,.50);
}



/* corner detail */

.gdb-skilled-frame::after {

    content: "";

    position: absolute;

    width: 85px;

    height: 85px;

    right: -1px;

    bottom: -1px;

    border-right:
        4px solid var(--gd-orange);

    border-bottom:
        4px solid var(--gd-orange);
}



/* =====================================================
   DOTS
===================================================== */

.gdb-skilled-dots {

    position: absolute;

    z-index: 2;

    right: 4px;

    bottom: 5px;

    width: 220px;

    height: 180px;

    opacity: .48;

    background-image:

        radial-gradient(
            circle,
            rgba(242,140,56,.65) 1.2px,
            transparent 1.6px
        );

    background-size:
        11px 11px;
}



/* =====================================================
   FLOATING BADGE
===================================================== */

.gdb-skilled-badge {

    position: absolute;

    z-index: 8;

    top: 42px;

    right: 3px;

    width: 230px;

    min-height: 75px;

    padding:
        12px 16px;

    display: flex;

    align-items: center;

    gap: 13px;

    color:
        var(--gd-white);

    background:
        var(--gd-navy);

    box-shadow:
        0 17px 38px rgba(16,45,67,.20);
}



.gdb-skilled-badge-icon {

    flex:
        0 0 46px;

    width: 46px;

    height: 46px;

    display: flex;

    align-items: center;

    justify-content: center;

    color:
        var(--gd-white);

    background:
        var(--gd-orange);

    font-size: 17px;
}



.gdb-skilled-badge div {

    display: flex;

    flex-direction: column;
}



.gdb-skilled-badge small {

    margin-bottom: 3px;

    color:
        var(--gd-soft);

    font-size: 8px;

    font-weight: 900;

    letter-spacing: 1px;
}



.gdb-skilled-badge strong {

    color:
        var(--gd-white);

    font-size: 12px;

    font-weight: 800;
}



/* =====================================================
   COMPONENT BAR
===================================================== */

.gdb-component-bar {

    position: absolute;

    z-index: 7;

    left: 28px;

    bottom: 17px;

    width:
        calc(100% - 65px);

    min-height: 76px;

    padding:
        10px 15px;

    display: grid;

    grid-template-columns:
        repeat(4,1fr);

    background:
        var(--gd-white);

    box-shadow:
        0 15px 45px rgba(16,45,67,.12);
}



.gdb-component {

    min-height: 55px;

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    gap: 5px;

    color:
        var(--gd-muted);

    border-right:
        1px solid var(--gd-line);
}



.gdb-component:last-child {

    border-right: 0;
}



.gdb-component i {

    color:
        var(--gd-orange);

    font-size: 15px;
}



.gdb-component span {

    color:
        var(--gd-dark);

    font-size: 10px;

    font-weight: 800;
}



/* =====================================================
   CONTENT
===================================================== */

.gdb-skilled-content {

    max-width: 620px;

    padding-left: 40px;
}



/* label */

.gdb-skilled-label {

    display: flex;

    align-items: center;

    gap: 12px;

    margin-bottom: 14px;

    color:
        var(--gd-orange);

    font-size: 11px;

    font-weight: 900;

    letter-spacing: 1.5px;
}



.gdb-skilled-label span {

    width: 39px;

    height: 3px;

    background:
        var(--gd-orange);
}



/* =====================================================
   TITLE
===================================================== */

.gdb-skilled-content h2 {

    margin:
        0 0 27px;

    color:
        var(--gd-navy);

    font-size:
        clamp(43px,4.3vw,64px);

    line-height:
        1.02;

    font-weight:
        900;

    letter-spacing:
        -2.1px;
}



/* =====================================================
   PARAGRAPHS
===================================================== */

.gdb-skilled-content > p {

    margin:
        0 0 18px;

    color:
        var(--gd-muted);

    font-size:
        14px;

    line-height:
        1.82;
}



/* =====================================================
   FEATURES
===================================================== */

.gdb-skilled-features {

    margin:
        29px 0 31px;

    display: grid;

    grid-template-columns:
        repeat(3,1fr);

    border-top:
        1px solid var(--gd-line);

    border-bottom:
        1px solid var(--gd-line);
}



.gdb-skilled-features > div {

    min-height: 90px;

    padding:
        15px 12px;

    display: flex;

    flex-direction: column;

    align-items: flex-start;

    justify-content: center;

    gap: 9px;

    border-right:
        1px solid var(--gd-line);
}



.gdb-skilled-features > div:last-child {

    border-right: 0;
}



.gdb-skilled-features span {

    width: 27px;

    height: 27px;

    border-radius: 50%;

    display: flex;

    align-items: center;

    justify-content: center;

    color:
        var(--gd-white);

    background:
        var(--gd-orange);

    font-size: 9px;

    transition: .35s ease;
}



.gdb-skilled-features strong {

    color:
        var(--gd-dark);

    font-size: 12px;

    line-height: 1.3;
}



.gdb-skilled-features > div:hover span {

    background:
        var(--gd-navy);

    transform:
        rotate(360deg);
}



/* =====================================================
   ACTION AREA
===================================================== */

.gdb-skilled-action {

    display: flex;

    align-items: center;

    flex-wrap: wrap;

    gap: 27px;
}



/* BUTTON */

.gdb-skilled-btn {

    min-width: 200px;

    min-height: 59px;

    padding:
        0 26px;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 13px;

    color:
        var(--gd-white);

    background:
        var(--gd-orange);

    text-decoration: none;

    font-size: 13px;

    font-weight: 900;

    transition: .35s ease;
}



.gdb-skilled-btn:hover {

    color:
        var(--gd-white);

    background:
        var(--gd-navy);

    transform:
        translateY(-4px);

    box-shadow:
        var(--gd-shadow);
}



/* SMALL BADGE */

.gdb-skilled-mini {

    display: flex;

    align-items: center;

    gap: 11px;
}



.gdb-skilled-mini > span {

    width: 42px;

    height: 42px;

    border-radius: 50%;

    display: flex;

    align-items: center;

    justify-content: center;

    color:
        var(--gd-orange);

    background:
        rgba(242,140,56,.10);
}



.gdb-skilled-mini > div {

    display: flex;

    flex-direction: column;
}



.gdb-skilled-mini small {

    color:
        var(--gd-muted);

    font-size: 8px;

    font-weight: 800;

    letter-spacing: 1px;
}



.gdb-skilled-mini strong {

    color:
        var(--gd-navy);

    font-size: 13px;

    font-weight: 900;
}



/* =====================================================
   RESPONSIVE
===================================================== */

@media (max-width: 1199.98px) {

    .gdb-skilled-content {

        padding-left: 15px;
    }


    .gdb-skilled-image {

        height: 480px;
    }

}



@media (max-width: 991.98px) {

    .gdb-skilled {

        padding:
            90px 0;
    }


    .gdb-skilled-visual {

        max-width:
            650px;
    }


    .gdb-skilled-image {

        height: 540px;
    }


    .gdb-skilled-content {

        max-width:
            650px;

        margin:
            20px auto 0;

        padding-left: 0;
    }

}



@media (max-width: 767.98px) {

    .gdb-skilled {

        padding:
            70px 0;
    }


    .gdb-skilled-visual {

        min-height:
            550px;

        padding:
            0 28px 45px 0;
    }


    .gdb-skilled-image {

        height:
            460px;
    }


    .gdb-skilled-badge {

        right:
            0;

        width:
            205px;
    }


    .gdb-component-bar {

        left:
            15px;

        width:
            calc(100% - 30px);
    }


    .gdb-skilled-content h2 {

        font-size:
            44px;
    }

}



@media (max-width: 575.98px) {

    .gdb-skilled {

        padding:
            55px 0;
    }


    .gdb-skilled-visual {

        min-height:
            475px;

        padding:
            0 18px 40px 0;
    }


    .gdb-skilled-image {

        height:
            390px;
    }


    .gdb-skilled-frame {

        left:
            20px;

        top:
            25px;
    }


    .gdb-skilled-badge {

        top:
            20px;

        width:
            190px;

        min-height:
            65px;

        padding:
            9px;
    }


    .gdb-skilled-badge-icon {

        flex-basis:
            39px;

        width:
            39px;

        height:
            39px;
    }


    .gdb-component-bar {

        padding:
            7px;
    }


    .gdb-component span {

        font-size:
            8px;
    }


    .gdb-skilled-content h2 {

        font-size:
            38px;

        letter-spacing:
            -1.3px;
    }


    .gdb-skilled-content > p {

        font-size:
            13px;
    }


    .gdb-skilled-features {

        grid-template-columns:
            1fr;
    }


    .gdb-skilled-features > div {

        min-height:
            65px;

        flex-direction:
            row;

        align-items:
            center;

        border-right:
            0;

        border-bottom:
            1px solid var(--gd-line);
    }


    .gdb-skilled-features > div:last-child {

        border-bottom: 0;
    }


    .gdb-skilled-btn {

        width: 100%;
    }

}




.gd-portfolio {

    --gd-navy: #102D43;
    --gd-dark: #173B57;
    --gd-steel: #3F708E;
    --gd-soft: #A9C7D8;
    --gd-orange: #F28C38;
    --gd-bg: #F7F9FA;
    --gd-white: #FFFFFF;
    --gd-muted: #607582;

    position: relative;

    padding: 115px 0 140px;

    background:
        linear-gradient(
            180deg,
            #fff 0%,
            #fff 76%,
            #f5f8f9 76%,
            #f5f8f9 100%
        );

    overflow: hidden;
}


/* subtle huge circle */

.gd-portfolio::before {

    content: "";

    position: absolute;

    width: 650px;
    height: 650px;

    right: -330px;
    top: -250px;

    border-radius: 50%;

    border:
        1px solid rgba(16,45,67,.06);

    box-shadow:
        0 0 0 70px rgba(16,45,67,.015),
        0 0 0 140px rgba(16,45,67,.015);
}


.gd-portfolio .container {

    position: relative;

    z-index: 2;
}


/* =====================================================
   HEADER
===================================================== */

.gd-portfolio-head {

    max-width: 1120px;

    margin:
        0 auto 60px;
}


.gd-portfolio-label {

    display: flex;

    align-items: center;

    gap: 13px;

    margin-bottom: 13px;

    color: var(--gd-orange);

    font-size: 11px;

    font-weight: 900;

    letter-spacing: 1.5px;
}


.gd-portfolio-label span {

    width: 55px;
    height: 2px;

    background:
        var(--gd-orange);
}


.gd-portfolio h2 {

    margin: 0;

    color:
        var(--gd-navy);

    font-size:
        clamp(45px,5vw,70px);

    line-height: .95;

    font-weight: 900;

    letter-spacing: -2.5px;
}


.gd-portfolio h2 strong {

    display: block;

    color:
        var(--gd-orange);

    font-weight: 900;
}


/* RIGHT HEADER */

.gd-portfolio-side {

    max-width: 390px;

    margin-left: auto;

    display: flex;

    align-items: flex-start;

    gap: 19px;

    padding-left: 25px;

    border-left:
        1px solid rgba(16,45,67,.13);
}


.gd-side-number {

    color:
        var(--gd-orange);

    font-size: 38px;

    line-height: 1;

    font-weight: 900;
}


.gd-portfolio-side p {

    margin: 0;

    color:
        var(--gd-muted);

    font-size: 13px;

    line-height: 1.7;
}


/* =====================================================
   GRID
===================================================== */

.gd-portfolio-grid {

    position: relative;

    max-width: 1120px;

    height: 760px;

    margin: 0 auto;
}


/* =====================================================
   COMMON IMAGE
===================================================== */

.gd-shot {

    position: absolute;

    z-index: 3;

    margin: 0;

    overflow: hidden;

    background: #dde6ea;

    box-shadow:
        0 24px 55px rgba(16,45,67,.13);
}


.gd-shot img {

    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    transition:
        transform .8s cubic-bezier(.2,.7,.2,1);
}


.gd-shot::after {

    content: "";

    position: absolute;

    inset: 0;

    pointer-events: none;

    background:
        linear-gradient(
            to top,
            rgba(8,30,45,.70) 0,
            rgba(8,30,45,.08) 40%,
            transparent 65%
        );

    opacity: .75;

    transition: .4s ease;
}


.gd-shot:hover img {

    transform:
        scale(1.06);
}


.gd-shot:hover::after {

    opacity: 1;
}


/* =====================================================
   CAPTION
===================================================== */

.gd-shot figcaption {

    position: absolute;

    z-index: 4;

    left: 23px;
    right: 20px;
    bottom: 20px;

    display: flex;

    flex-direction: column;

    gap: 3px;

    transform:
        translateY(7px);

    transition:
        .4s ease;
}


.gd-shot:hover figcaption {

    transform:
        translateY(0);
}


.gd-shot figcaption span {

    color:
        var(--gd-orange);

    font-size: 8px;

    font-weight: 900;

    letter-spacing: 1.3px;
}


.gd-shot figcaption strong {

    color:
        var(--gd-white);

    font-size: 18px;

    line-height: 1.2;

    font-weight: 900;
}


/* =====================================================
   01 MAIN IMAGE
===================================================== */

.gd-shot-main {

    left: 0;
    top: 0;

    width: 51%;
    height: 475px;
}


/* orange edge */

.gd-shot-main::before {

    content: "";

    position: absolute;

    z-index: 5;

    left: 0;
    top: 0;

    width: 6px;
    height: 100px;

    background:
        var(--gd-orange);
}


/* =====================================================
   02 SPRING
===================================================== */

.gd-shot-spring {

    left: 54%;
    top: 0;

    width: 22%;
    height: 270px;
}


/* =====================================================
   NAVY BLOCK
===================================================== */

.gd-portfolio-stamp {

    position: absolute;

    z-index: 6;

    right: 0;
    top: 45px;

    width: 21%;
    height: 225px;

    padding: 28px 23px;

    display: flex;

    flex-direction: column;

    justify-content: flex-end;

    color:
        var(--gd-white);

    background:
        var(--gd-navy);

    box-shadow:
        0 20px 45px rgba(16,45,67,.20);
}


.gd-portfolio-stamp::before {

    content: "";

    position: absolute;

    width: 75px;
    height: 75px;

    right: -37px;
    top: -37px;

    border-radius: 50%;

    background:
        var(--gd-orange);
}


.gd-stamp-icon {

    width: 47px;
    height: 47px;

    margin-bottom: auto;

    display: flex;

    align-items: center;
    justify-content: center;

    color:
        var(--gd-white);

    background:
        var(--gd-orange);

    font-size: 17px;
}


.gd-portfolio-stamp small {

    color:
        var(--gd-soft);

    font-size: 8px;

    font-weight: 800;

    letter-spacing: 1.5px;
}


.gd-portfolio-stamp strong {

    margin:
        2px 0 4px;

    font-size: 23px;

    font-weight: 900;
}


.gd-portfolio-stamp > span {

    color:
        rgba(255,255,255,.55);

    font-size: 7px;

    letter-spacing: 1px;
}


/* =====================================================
   03 TECHNICIAN
===================================================== */

.gd-shot-tech {

    right: 0;
    top: 300px;

    width: 43%;
    height: 300px;
}


/* =====================================================
   04 OPENER
===================================================== */

.gd-shot-opener {

    left: 8%;
    bottom: 0;

    width: 28%;
    height: 245px;
}


/* =====================================================
   05 PARTS
===================================================== */

.gd-shot-parts {

    left: 39%;
    bottom: -35px;

    width: 28%;
    height: 250px;
}


/* =====================================================
   DOTS
===================================================== */

.gd-port-dots {

    position: absolute;

    z-index: 1;

    opacity: .45;

    background-image:
        radial-gradient(
            circle,
            rgba(242,140,56,.65) 1.3px,
            transparent 1.6px
        );

    background-size:
        11px 11px;
}


.gd-port-dots-one {

    width: 190px;
    height: 160px;

    left: -45px;
    top: -35px;
}


.gd-port-dots-two {

    width: 220px;
    height: 160px;

    right: -35px;
    bottom: 20px;
}


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 991.98px) {

    .gd-portfolio {

        padding:
            90px 0 110px;
    }


    .gd-portfolio-side {

        margin:
            30px 0 0;

        max-width:
            520px;
    }


    .gd-portfolio-grid {

        height: auto;

        display: grid;

        grid-template-columns:
            repeat(2,1fr);

        gap: 18px;
    }


    .gd-shot,
    .gd-portfolio-stamp {

        position: relative;

        inset: auto;

        width: 100%;

        height: 310px;
    }


    .gd-shot-main {

        grid-column:
            1 / -1;

        height: 450px;
    }


    .gd-portfolio-stamp {

        height: 310px;
    }


    .gd-shot-tech {

        grid-column:
            1 / -1;

        height: 380px;
    }


    .gd-shot-parts {

        bottom: auto;
    }


    .gd-port-dots {

        display: none;
    }

}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 575.98px) {

    .gd-portfolio {

        padding:
            65px 0 80px;
    }


    .gd-portfolio-head {

        margin-bottom:
            40px;
    }


    .gd-portfolio h2 {

        font-size: 42px;

        letter-spacing: -1.5px;
    }


    .gd-portfolio-side {

        padding-left: 16px;
    }


    .gd-side-number {

        font-size: 31px;
    }


    .gd-portfolio-grid {

        grid-template-columns:
            1fr;

        gap: 14px;
    }


    .gd-shot,
    .gd-shot-main,
    .gd-shot-tech,
    .gd-portfolio-stamp {

        grid-column: auto;

        width: 100%;

        height: 310px;
    }


    .gd-shot-main {

        height: 360px;
    }


    .gd-portfolio-stamp {

        height: 220px;
    }


    .gd-shot figcaption strong {

        font-size: 17px;
    }

}

.gd-side-icon {

    flex: 0 0 54px;

    width: 54px;
    height: 54px;

    display: flex;
    align-items: center;
    justify-content: center;

    color: var(--gd-white);
    background: var(--gd-orange);

    font-size: 20px;
}

.gd-side-icon i {
    transition: .35s ease;
}

.gd-portfolio-side:hover .gd-side-icon i {
    transform: translateY(-3px);
}


/* =========================================
   TECHNICIAN IMAGE CAPTION - RIGHT SIDE
========================================= */

.gd-shot-tech figcaption {

    left: auto;
    right: 0;
    bottom: auto;
    top: 50%;

    width: 175px;

    padding: 18px 20px;

    transform: translateY(-50%);

    background: rgba(16, 45, 67, .94);

    border-left: 4px solid var(--gd-orange);

    display: flex;
    flex-direction: column;
    align-items: flex-start;

    gap: 5px;

    box-shadow:
        -10px 12px 30px rgba(16, 45, 67, .15);
}


.gd-shot-tech:hover figcaption {

    transform: translateY(-50%);
}


/* 03 / SERVICE */

.gd-shot-tech figcaption span {

    color: var(--gd-orange);

    font-size: 9px;
    font-weight: 900;

    letter-spacing: 1.4px;
}


/* Skilled Repair */

.gd-shot-tech figcaption strong {

    color: #fff;

    font-size: 19px;
    line-height: 1.15;

    font-weight: 900;
}


/* SMALL ORANGE DETAIL */

.gd-shot-tech figcaption::after {

    content: "";

    width: 28px;
    height: 2px;

    margin-top: 6px;

    background: var(--gd-orange);
}


/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 767.98px) {

    .gd-shot-tech figcaption {

        width: 160px;

        padding: 15px 17px;
    }


    .gd-shot-tech figcaption strong {

        font-size: 17px;
    }

}


@media (max-width: 575.98px) {

    .gd-shot-tech figcaption {

        right: 12px;

        width: auto;
        min-width: 145px;

        padding: 13px 15px;

        border-left-width: 3px;
    }

}


/* =========================================
   ORANGE TOOL CIRCLE
========================================= */

.gd-stamp-tool-orbit {

    position: absolute;

    right: -37px;
    top: -37px;

    width: 75px;
    height: 75px;

    z-index: 8;

    border-radius: 50%;

    background: var(--gd-orange);

    display: flex;
    align-items: center;
    justify-content: center;

    box-shadow:
        0 10px 25px rgba(242,140,56,.28);
}


/* inner tool */

.gd-stamp-tool-circle {

    width: 46px;
    height: 46px;

    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #fff;

    background:
        rgba(255,255,255,.13);

    border:
        1px solid rgba(255,255,255,.26);

    font-size: 18px;

    animation:
        gdToolFloat 2.5s ease-in-out infinite;
}


/* tool itself */

.gd-stamp-tool-circle i {

    animation:
        gdToolRotate 4s ease-in-out infinite;
}


/* little pulse ring */

.gd-stamp-tool-orbit::after {

    content: "";

    position: absolute;

    inset: -7px;

    border-radius: 50%;

    border:
        1px solid rgba(242,140,56,.40);

    animation:
        gdToolPulse 2.5s ease-out infinite;
}


/* =========================================
   ANIMATIONS
========================================= */

@keyframes gdToolFloat {

    0%,
    100% {
        transform:
            translateY(0);
    }

    50% {
        transform:
            translateY(-5px);
    }

}


@keyframes gdToolRotate {

    0% {
        transform:
            rotate(-10deg);
    }

    50% {
        transform:
            rotate(18deg);
    }

    100% {
        transform:
            rotate(-10deg);
    }

}


@keyframes gdToolPulse {

    0% {

        transform:
            scale(.9);

        opacity:
            .55;
    }

    100% {

        transform:
            scale(1.35);

        opacity:
            0;
    }

}



.gdb-faq-coupon {

    --gd-navy: #102D43;
    --gd-dark: #173B57;
    --gd-steel: #3F708E;
    --gd-soft: #A9C7D8;

    --gd-orange: #F28C38;
    --gd-orange-dark: #D97625;

    --gd-bg: #F7F9FA;
    --gd-white: #FFFFFF;

    --gd-text: #132934;
    --gd-muted: #607582;

    --gd-line: rgba(23, 59, 87, .12);
}


/* =====================================================
   SECTION
===================================================== */

.gdb-faq-coupon {

    position: relative;

    padding: 120px 0 130px;

    background:
        linear-gradient(
            90deg,
            #fff 0%,
            #fff 66%,
            #f5f8fa 66%,
            #f5f8fa 100%
        );

    overflow: hidden;
}


/* BACKGROUND DOTS */

.gdb-faq-coupon::before {

    content: "";

    position: absolute;

    width: 360px;
    height: 360px;

    right: -100px;
    bottom: -100px;

    opacity: .35;

    background-image:

        radial-gradient(
            circle,
            rgba(242, 140, 56, .40) 1.2px,
            transparent 1.6px
        );

    background-size: 12px 12px;
}


.gdb-faq-coupon .container {

    position: relative;

    z-index: 2;
}


/* =====================================================
   FAQ HEADING
===================================================== */

.gdb-faq-area {

    max-width: 760px;
}


.gdb-faq-label {

    display: flex;

    align-items: center;

    gap: 12px;

    margin-bottom: 13px;

    color: var(--gd-orange);

    font-size: 11px;

    font-weight: 900;

    letter-spacing: 1.6px;
}


.gdb-faq-label span {

    width: 45px;
    height: 2px;

    background: var(--gd-orange);
}


.gdb-faq-area > h2 {

    margin: 0 0 42px;

    color: var(--gd-navy);

    font-size:
        clamp(45px, 5vw, 67px);

    line-height: .95;

    font-weight: 900;

    letter-spacing: -2.3px;
}


.gdb-faq-area > h2 strong {

    color: var(--gd-orange);

    font-weight: 900;
}


/* =====================================================
   ACCORDION
===================================================== */

.gdb-faq-accordion {

    border-top:
        1px solid var(--gd-line);
}


.gdb-faq-accordion .accordion-item {

    position: relative;

    background: transparent;

    border: 0;

    border-bottom:
        1px solid var(--gd-line);
}


/* =====================================================
   BUTTON
===================================================== */

.gdb-faq-accordion .accordion-button {

    position: relative;

    min-height: 92px;

    padding: 22px 65px 22px 0;

    display: grid;

    grid-template-columns:
        46px 1fr;

    align-items: center;

    gap: 16px;

    color: var(--gd-navy);

    background: transparent;

    border: 0;

    box-shadow: none !important;

    font-size: 17px;

    font-weight: 800;

    line-height: 1.45;
}


.gdb-faq-accordion .accordion-button::after {

    display: none;
}


/* FAQ NUMBER */

.gdb-faq-number {

    color:
        rgba(63, 112, 142, .45);

    font-size: 12px;

    font-weight: 900;

    letter-spacing: 1px;

    transition: .35s ease;
}


/* QUESTION */

.gdb-faq-question {

    transition: .35s ease;
}


/* CUSTOM PLUS */

.gdb-faq-plus {

    position: absolute;

    right: 0;

    top: 50%;

    transform:
        translateY(-50%);

    width: 42px;
    height: 42px;

    border-radius: 50%;

    display: flex;

    align-items: center;
    justify-content: center;

    color: var(--gd-navy);

    background:
        rgba(169, 199, 216, .20);

    font-size: 12px;

    transition:
        .4s cubic-bezier(.2, .7, .2, 1);
}


/* OPEN */

.gdb-faq-accordion
.accordion-button:not(.collapsed) {

    color: var(--gd-orange);

    background: transparent;
}


.gdb-faq-accordion
.accordion-button:not(.collapsed)
.gdb-faq-number {

    color: var(--gd-orange);
}


.gdb-faq-accordion
.accordion-button:not(.collapsed)
.gdb-faq-plus {

    color: var(--gd-white);

    background: var(--gd-orange);

    transform:
        translateY(-50%)
        rotate(45deg);
}


/* HOVER */

.gdb-faq-accordion
.accordion-button.collapsed:hover {

    color: var(--gd-orange);
}


.gdb-faq-accordion
.accordion-button.collapsed:hover
.gdb-faq-plus {

    color: var(--gd-white);

    background: var(--gd-navy);
}


/* =====================================================
   ANSWER
===================================================== */

.gdb-faq-accordion .accordion-body {

    max-width: 680px;

    padding:
        0 50px 27px 62px;

    color: var(--gd-muted);

    font-size: 14px;

    line-height: 1.8;
}


/* =====================================================
   COUPON HOLDER
===================================================== */

.gdb-coupon-sticky {

    position: relative;

    max-width: 430px;

    margin-left: auto;

    padding-top: 15px;
}


/* =====================================================
   COUPON
===================================================== */

.gdb-inner-coupon {

    position: relative;

    min-height: 570px;

    padding: 32px 35px 30px;

    display: flex;

    flex-direction: column;

    overflow: hidden;

    color: var(--gd-white);

    background: var(--gd-navy);

    box-shadow:
        0 30px 75px rgba(16, 45, 67, .25);

    isolation: isolate;
}


/* =====================================================
   ACTUAL INNER COUPON IMAGE
===================================================== */

.gdb-coupon-bg {

    position: absolute;

    z-index: -3;

    inset: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;

    object-position: center;
}


/* DARK OVERLAY */

.gdb-coupon-overlay {

    position: absolute;

    z-index: -2;

    inset: 0;

    background:

        linear-gradient(
            180deg,
            rgba(16, 45, 67, .75) 0%,
            rgba(16, 45, 67, .88) 50%,
            rgba(16, 45, 67, .97) 100%
        );
}


/* ORANGE GLOW */

.gdb-inner-coupon::before {

    content: "";

    position: absolute;

    z-index: -1;

    width: 330px;
    height: 330px;

    left: 50%;
    top: 43%;

    transform:
        translate(-50%, -50%);

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(242, 140, 56, .25),
            transparent 67%
        );
}


/* DASHED BORDER */

.gdb-inner-coupon::after {

    content: "";

    position: absolute;

    inset: 13px;

    z-index: 0;

    pointer-events: none;

    border:
        1px dashed rgba(255, 255, 255, .35);
}


/* =====================================================
   TOP COUPON
===================================================== */

.gdb-coupon-top {

    position: relative;

    z-index: 2;

    display: flex;

    align-items: center;

    gap: 10px;
}


.gdb-coupon-scissor {

    color: var(--gd-orange);

    font-size: 15px;
}


.gdb-coupon-dash {

    flex: 1;

    border-top:
        1px dashed rgba(255, 255, 255, .30);
}


.gdb-coupon-tag {

    padding: 7px 11px;

    color: var(--gd-navy);

    background: var(--gd-orange);

    font-size: 8px;

    font-weight: 900;

    letter-spacing: 1px;
}


/* =====================================================
   COUPON CONTENT
===================================================== */

.gdb-coupon-content {

    position: relative;

    z-index: 3;

    flex: 1;

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    text-align: center;

    padding: 30px 0 25px;
}


.gdb-coupon-small {

    margin-bottom: 7px;

    color: var(--gd-soft);

    font-size: 9px;

    font-weight: 900;

    letter-spacing: 2px;
}


/* =====================================================
   PRICE
===================================================== */

.gdb-coupon-price {

    position: relative;

    display: flex;

    align-items: flex-start;

    justify-content: center;

    margin-bottom: 0;

    line-height: 1;
}


.gdb-coupon-price strong {

    color: var(--gd-white);

    font-size:
        clamp(105px, 10vw, 145px);

    line-height: .9;

    font-weight: 900;

    letter-spacing: -9px;

    text-shadow:
        0 12px 30px rgba(0, 0, 0, .15);
}


.gdb-dollar {

    margin:
        13px 4px 0 0;

    color: var(--gd-orange);

    font-size: 36px;

    font-weight: 900;
}


.gdb-off {

    align-self: flex-end;

    margin:
        0 0 16px 7px;

    color: var(--gd-orange);

    font-size: 22px;

    font-weight: 900;

    writing-mode:
        vertical-rl;

    transform:
        rotate(180deg);

    letter-spacing: 2px;
}


/* =====================================================
   COUPON TITLE
===================================================== */

.gdb-coupon-content h3 {

    max-width: 330px;

    margin:
        11px 0 16px;

    color: var(--gd-white);

    font-size: 27px;

    line-height: 1.15;

    font-weight: 900;
}


/* SEPARATOR */

.gdb-coupon-separator {

    width: 75%;

    margin-bottom: 14px;

    display: flex;

    align-items: center;

    gap: 10px;
}


.gdb-coupon-separator span {

    flex: 1;

    height: 1px;

    background:
        rgba(255, 255, 255, .17);
}


.gdb-coupon-separator i {

    color: var(--gd-orange);

    font-size: 12px;

    animation:
        gdbCouponGear 7s linear infinite;
}


.gdb-coupon-content p {

    margin:
        0 0 22px;

    color: var(--gd-soft);

    font-size: 12px;

    font-weight: 800;

    letter-spacing: .5px;
}


/* =====================================================
   CLICK HERE BUTTON
===================================================== */

.gdb-coupon-btn {

    position: relative;

    min-width: 205px;

    min-height: 58px;

    padding: 0 22px;

    display: inline-flex;

    align-items: center;

    justify-content: space-between;

    gap: 22px;

    overflow: hidden;

    color: var(--gd-white);

    background: var(--gd-orange);

    text-decoration: none;

    font-size: 13px;

    font-weight: 900;

    letter-spacing: .8px;

    box-shadow:
        0 14px 30px rgba(242, 140, 56, .25);

    transition:
        .35s ease;

    animation:
        gdbCouponButton 2.4s ease-in-out infinite;
}


.gdb-coupon-btn::before {

    content: "";

    position: absolute;

    left: -120%;
    top: 0;

    width: 70%;
    height: 100%;

    transform:
        skewX(-20deg);

    background:

        linear-gradient(
            90deg,
            transparent,
            rgba(255, 255, 255, .30),
            transparent
        );

    animation:
        gdbCouponShine 3.2s ease-in-out infinite;
}


.gdb-coupon-btn span,
.gdb-coupon-btn i {

    position: relative;

    z-index: 2;
}


.gdb-coupon-btn i {

    transition: .3s ease;
}


.gdb-coupon-btn:hover {

    color: var(--gd-navy);

    background: var(--gd-white);

    transform:
        translateY(-4px);

    animation: none;
}


.gdb-coupon-btn:hover i {

    transform:
        translateX(5px);
}


/* =====================================================
   COUPON BOTTOM
===================================================== */

.gdb-coupon-bottom {

    position: relative;

    z-index: 3;

    padding-top: 18px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 10px;

    border-top:
        1px dashed rgba(255, 255, 255, .25);
}


.gdb-coupon-bottom span {

    display: flex;

    align-items: center;

    gap: 6px;

    color:
        rgba(255, 255, 255, .65);

    font-size: 8px;

    font-weight: 800;

    letter-spacing: .7px;
}


.gdb-coupon-bottom i {

    color: var(--gd-orange);
}


/* =====================================================
   TICKET CUTS
===================================================== */

.gdb-coupon-cut {

    position: absolute;

    z-index: 6;

    top: 50%;

    width: 30px;
    height: 30px;

    border-radius: 50%;

    background: #f5f8fa;
}


.gdb-cut-left {

    left: -15px;
}


.gdb-cut-right {

    right: -15px;
}


/* =====================================================
   NOTE UNDER COUPON
===================================================== */

.gdb-coupon-note {

    max-width:
        calc(100% - 38px);

    margin:
        -1px auto 0;

    padding:
        17px 20px;

    display: flex;

    align-items: center;

    gap: 12px;

    background: var(--gd-white);

    box-shadow:
        0 15px 35px rgba(16, 45, 67, .08);
}


.gdb-coupon-note > span {

    flex: 0 0 39px;

    width: 39px;
    height: 39px;

    border-radius: 50%;

    display: flex;

    align-items: center;

    justify-content: center;

    color: var(--gd-white);

    background: var(--gd-orange);
}


.gdb-coupon-note > div {

    display: flex;

    flex-direction: column;
}


.gdb-coupon-note small {

    color: var(--gd-orange);

    font-size: 7px;

    font-weight: 900;

    letter-spacing: 1px;
}


.gdb-coupon-note strong {

    margin-top: 2px;

    color: var(--gd-navy);

    font-size: 11px;

    line-height: 1.35;
}


/* =====================================================
   ANIMATIONS
===================================================== */

@keyframes gdbCouponGear {

    from {
        transform: rotate(0);
    }

    to {
        transform: rotate(360deg);
    }

}


@keyframes gdbCouponButton {

    0%,
    100% {

        transform:
            translateY(0);

        box-shadow:
            0 14px 30px rgba(242, 140, 56, .22);
    }

    50% {

        transform:
            translateY(-4px);

        box-shadow:
            0 19px 36px rgba(242, 140, 56, .35);
    }

}


@keyframes gdbCouponShine {

    0%,
    55% {

        left: -120%;
    }

    80% {

        left: 150%;
    }

    100% {

        left: 150%;
    }

}


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 991.98px) {

    .gdb-faq-coupon {

        padding:
            90px 0;

        background:
            var(--gd-white);
    }


    .gdb-faq-area {

        max-width: 100%;
    }


    .gdb-coupon-sticky {

        max-width: 520px;

        margin:
            20px auto 0;
    }


    .gdb-inner-coupon {

        min-height: 550px;
    }


    .gdb-coupon-cut {

        background: var(--gd-white);
    }

}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 767.98px) {

    .gdb-faq-coupon {

        padding:
            70px 0;
    }


    .gdb-faq-area > h2 {

        margin-bottom: 30px;

        font-size: 44px;
    }


    .gdb-faq-accordion .accordion-button {

        min-height: 80px;

        grid-template-columns:
            34px 1fr;

        gap: 10px;

        padding:
            18px 55px 18px 0;

        font-size: 15px;
    }


    .gdb-faq-plus {

        width: 37px;
        height: 37px;
    }


    .gdb-faq-accordion .accordion-body {

        padding:
            0 15px 24px 44px;

        font-size: 13px;
    }

}


/* =====================================================
   SMALL MOBILE
===================================================== */

@media (max-width: 575.98px) {

    .gdb-faq-coupon {

        padding:
            55px 0 65px;
    }


    .gdb-faq-area > h2 {

        font-size: 39px;

        letter-spacing: -1.4px;
    }


    .gdb-faq-accordion .accordion-button {

        grid-template-columns: 1fr;

        padding:
            18px 48px 18px 0;
    }


    .gdb-faq-number {

        margin-bottom: -5px;
    }


    .gdb-faq-accordion .accordion-body {

        padding:
            0 8px 23px 0;
    }


    .gdb-inner-coupon {

        min-height: 520px;

        padding:
            27px 24px 25px;
    }


    .gdb-coupon-price strong {

        font-size: 105px;

        letter-spacing: -7px;
    }


    .gdb-dollar {

        font-size: 29px;
    }


    .gdb-off {

        font-size: 18px;
    }


    .gdb-coupon-content h3 {

        font-size: 24px;
    }


    .gdb-coupon-btn {

        width: 100%;

        max-width: 250px;
    }

}


/* REDUCED MOTION */

@media (prefers-reduced-motion: reduce) {

    .gdb-coupon-btn,
    .gdb-coupon-btn::before,
    .gdb-coupon-separator i {

        animation: none;
    }

}




.gdb-location {

    --gd-navy: #102D43;
    --gd-dark: #173B57;
    --gd-steel: #3F708E;
    --gd-soft: #A9C7D8;

    --gd-orange: #F28C38;
    --gd-orange-dark: #db7625;

    --gd-bg: #F7F9FA;
    --gd-white: #FFFFFF;

    --gd-text: #132934;
    --gd-muted: #607582;

    --gd-line: rgba(23, 59, 87, .12);

    --gd-shadow:
        0 28px 70px rgba(16, 45, 67, .16);
}



/* =====================================================
   SECTION
===================================================== */

.gdb-location {

    position: relative;

    padding:
        120px 0;

    background:
        var(--gd-bg);

    overflow: hidden;
}


/* BACKGROUND TEXTURE */

.gdb-location::before {

    content: "";

    position: absolute;

    inset: 0;

    pointer-events: none;

    opacity: .27;

    background-image:

        radial-gradient(
            rgba(63,112,142,.13) 1px,
            transparent 1px
        );

    background-size:
        27px 27px;

    mask-image:

        linear-gradient(
            90deg,
            black,
            transparent 55%
        );
}


/* BIG DECORATIVE CIRCLE */

.gdb-location::after {

    content: "";

    position: absolute;

    width: 560px;
    height: 560px;

    right: -300px;
    bottom: -300px;

    border-radius: 50%;

    border:
        1px solid rgba(63,112,142,.07);

    box-shadow:

        0 0 0 65px rgba(63,112,142,.016),
        0 0 0 130px rgba(63,112,142,.016);
}


.gdb-location .container {

    position: relative;

    z-index: 2;
}



/* =====================================================
   LEFT CONTENT
===================================================== */

.gdb-location-content {

    height: 100%;

    padding:
        50px 42px;

    background:
        var(--gd-white);

    border:
        1px solid rgba(16,45,67,.06);

    box-shadow:
        0 18px 50px rgba(16,45,67,.07);
}



/* LABEL */

.gdb-location-label {

    display: flex;

    align-items: center;

    gap: 12px;

    margin-bottom: 15px;

    color:
        var(--gd-orange);

    font-size: 10px;

    font-weight: 900;

    letter-spacing: 1.4px;
}


.gdb-location-label > span {

    width: 39px;
    height: 3px;

    background:
        var(--gd-orange);
}



/* HEADING */

.gdb-location-content > h2 {

    margin:
        0 0 23px;

    color:
        var(--gd-navy);

    font-size:
        clamp(43px, 4vw, 61px);

    line-height:
        .98;

    font-weight:
        900;

    letter-spacing:
        -2px;
}


.gdb-location-content > h2 strong {

    display: block;

    color:
        var(--gd-orange);

    font-weight: 900;
}


.gdb-location-content > p {

    margin:
        0 0 30px;

    color:
        var(--gd-muted);

    font-size:
        14px;

    line-height:
        1.8;
}



/* =====================================================
   ADDRESS CARD
===================================================== */

.gdb-address-card {

    position: relative;

    min-height: 92px;

    padding:
        16px 19px;

    display: flex;

    align-items: center;

    gap: 15px;

    margin-bottom: 29px;

    background:
        var(--gd-navy);

    overflow: hidden;
}


.gdb-address-card::after {

    content: "";

    position: absolute;

    width: 100px;
    height: 100px;

    right: -50px;
    top: -50px;

    border-radius: 50%;

    background:
        var(--gd-orange);

    opacity: .15;
}


.gdb-address-icon {

    flex:
        0 0 52px;

    width: 52px;
    height: 52px;

    border-radius: 50%;

    display: flex;

    align-items: center;
    justify-content: center;

    color:
        var(--gd-white);

    background:
        var(--gd-orange);

    border:
        4px solid rgba(255,255,255,.14);
}


.gdb-address-card > div:last-child {

    position: relative;

    z-index: 2;

    display: flex;

    flex-direction: column;
}


.gdb-address-card small {

    color:
        var(--gd-soft);

    font-size: 8px;

    font-weight: 900;

    letter-spacing: 1px;
}


.gdb-address-card strong {

    margin:
        2px 0;

    color:
        var(--gd-white);

    font-size: 17px;

    font-weight: 900;
}


.gdb-address-card span {

    color:
        rgba(255,255,255,.68);

    font-size: 12px;
}



/* =====================================================
   ZIP AREA
===================================================== */

.gdb-zip-area {

    padding-top:
        27px;

    border-top:
        1px solid var(--gd-line);
}


.gdb-zip-heading {

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;

    margin-bottom: 19px;
}


.gdb-zip-heading small {

    display: block;

    margin-bottom: 3px;

    color:
        var(--gd-orange);

    font-size: 8px;

    font-weight: 900;

    letter-spacing: 1.3px;
}


.gdb-zip-heading h3 {

    margin: 0;

    color:
        var(--gd-navy);

    font-size: 22px;

    font-weight: 900;
}


.gdb-zip-icon {

    width: 44px;
    height: 44px;

    border-radius: 50%;

    display: flex;

    align-items: center;
    justify-content: center;

    color:
        var(--gd-orange);

    background:
        rgba(242,140,56,.10);

    font-size: 16px;
}



/* ZIP NUMBERS */

.gdb-zip-list {

    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap: 10px;

    margin-bottom: 25px;
}


.gdb-zip-list span {

    min-height: 55px;

    padding:
        0 15px;

    display: flex;

    align-items: center;

    gap: 11px;

    color:
        var(--gd-navy);

    background:
        var(--gd-bg);

    border:
        1px solid var(--gd-line);

    font-size: 15px;

    font-weight: 900;

    transition:
        .35s ease;
}


.gdb-zip-list span i {

    color:
        var(--gd-orange);

    font-size: 11px;
}


.gdb-zip-list span:hover {

    color:
        var(--gd-white);

    background:
        var(--gd-navy);

    border-color:
        var(--gd-navy);

    transform:
        translateY(-3px);
}



/* =====================================================
   LOCAL AREAS
===================================================== */

.gdb-local-areas {

    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap:
        10px 15px;
}


.gdb-local-areas > span {

    display: flex;

    align-items: center;

    gap: 8px;

    color:
        var(--gd-muted);

    font-size: 11px;

    font-weight: 700;
}


.gdb-local-areas i {

    width: 20px;
    height: 20px;

    flex: 0 0 20px;

    border-radius: 50%;

    display: flex;

    align-items: center;
    justify-content: center;

    color:
        var(--gd-white);

    background:
        var(--gd-orange);

    font-size: 7px;
}



/* =====================================================
   MAP WRAPPER
===================================================== */

.gdb-map-wrap {

    height: 100%;

    min-height: 690px;

    display: flex;

    flex-direction: column;

    background:
        var(--gd-navy);

    box-shadow:
        var(--gd-shadow);

    overflow: hidden;
}



/* =====================================================
   MAP TOP
===================================================== */

.gdb-map-top {

    min-height: 94px;

    padding:
        17px 20px 17px 24px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 25px;

    background:
        var(--gd-navy);
}


.gdb-map-top > div {

    display: flex;

    align-items: center;

    gap: 13px;
}


.gdb-map-pin {

    flex:
        0 0 45px;

    width: 45px;
    height: 45px;

    display: flex;

    align-items: center;
    justify-content: center;

    color:
        var(--gd-white);

    background:
        var(--gd-orange);

    font-size: 15px;
}


.gdb-map-top > div > div {

    display: flex;

    flex-direction: column;
}


.gdb-map-top small {

    margin-bottom: 3px;

    color:
        var(--gd-soft);

    font-size: 8px;

    font-weight: 900;

    letter-spacing: 1px;
}


.gdb-map-top strong {

    color:
        var(--gd-white);

    font-size: 13px;

    font-weight: 800;
}



/* DIRECTIONS */

.gdb-map-directions {

    min-height: 45px;

    padding:
        0 15px;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 8px;

    color:
        var(--gd-white);

    background:
        var(--gd-orange);

    text-decoration: none;

    font-size: 9px;

    font-weight: 900;

    letter-spacing: .7px;

    transition:
        .35s ease;
}


.gdb-map-directions:hover {

    color:
        var(--gd-navy);

    background:
        var(--gd-white);
}



/* =====================================================
   MAP FRAME
===================================================== */

.gdb-map-frame {

    position: relative;

    flex: 1;

    min-height: 510px;

    overflow: hidden;

    background:
        #dfe7eb;
}


.gdb-map-frame iframe {

    position: absolute;

    inset: 0;

    width: 100%;
    height: 100%;

    border: 0;

    filter:
        saturate(.82)
        contrast(.97);
}



/* =====================================================
   FLOATING MAP CARD
===================================================== */

.gdb-map-floating {

    position: absolute;

    z-index: 5;

    left: 25px;
    bottom: 25px;

    min-width: 225px;

    padding:
        13px 16px;

    display: flex;

    align-items: center;

    gap: 12px;

    background:
        rgba(16,45,67,.94);

    box-shadow:
        0 12px 32px rgba(16,45,67,.24);

    backdrop-filter:
        blur(7px);
}


.gdb-map-floating-icon {

    flex:
        0 0 43px;

    width: 43px;
    height: 43px;

    display: flex;

    align-items: center;
    justify-content: center;

    color:
        var(--gd-white);

    background:
        var(--gd-orange);
}


.gdb-map-floating > div:last-child {

    display: flex;

    flex-direction: column;
}


.gdb-map-floating small {

    color:
        var(--gd-orange);

    font-size: 7px;

    font-weight: 900;

    letter-spacing: 1px;
}


.gdb-map-floating strong {

    margin:
        1px 0;

    color:
        var(--gd-white);

    font-size: 15px;

    font-weight: 900;
}


.gdb-map-floating span {

    color:
        rgba(255,255,255,.62);

    font-size: 9px;
}



/* =====================================================
   MAP BOTTOM
===================================================== */

.gdb-map-bottom {

    min-height: 63px;

    padding:
        0 23px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;

    background:
        var(--gd-dark);

    border-top:
        1px solid rgba(255,255,255,.07);
}


.gdb-map-bottom > div {

    display: flex;

    align-items: center;

    gap: 8px;

    color:
        rgba(255,255,255,.66);

    font-size: 9px;

    font-weight: 700;
}


.gdb-map-bottom i {

    color:
        var(--gd-orange);
}



/* =====================================================
   TABLET
===================================================== */

@media (max-width: 991.98px) {

    .gdb-location {

        padding:
            90px 0;
    }


    .gdb-location-content,
    .gdb-map-wrap {

        max-width:
            720px;

        margin:
            0 auto;
    }


    .gdb-map-wrap {

        min-height:
            620px;
    }

}



/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 767.98px) {

    .gdb-location {

        padding:
            70px 0;
    }


    .gdb-location-content {

        padding:
            38px 28px;
    }


    .gdb-location-content > h2 {

        font-size:
            44px;
    }


    .gdb-map-top {

        align-items:
            flex-start;

        flex-direction:
            column;
    }


    .gdb-map-directions {

        width:
            100%;
    }


    .gdb-map-wrap {

        min-height:
            600px;
    }


    .gdb-map-frame {

        min-height:
            430px;
    }

}



/* =====================================================
   SMALL MOBILE
===================================================== */

@media (max-width: 575.98px) {

    .gdb-location {

        padding:
            55px 0;
    }


    .gdb-location-content {

        padding:
            32px 20px;
    }


    .gdb-location-content > h2 {

        font-size:
            39px;

        letter-spacing:
            -1.4px;
    }


    .gdb-zip-list,
    .gdb-local-areas {

        grid-template-columns:
            1fr;
    }


    .gdb-map-floating {

        left:
            15px;

        right:
            15px;

        bottom:
            15px;

        min-width:
            0;
    }


    .gdb-map-bottom {

        padding:
            15px 18px;

        flex-direction:
            column;

        align-items:
            flex-start;
    }

}




.gdb-contact-reviews {

    --gd-navy: #102D43;
    --gd-dark: #173B57;
    --gd-steel: #3F708E;
    --gd-soft: #A9C7D8;

    --gd-orange: #F28C38;
    --gd-orange-dark: #DB7625;

    --gd-bg: #F7F9FA;
    --gd-white: #FFFFFF;

    --gd-text: #132934;
    --gd-muted: #607582;

    --gd-line: rgba(23,59,87,.13);

    --gd-shadow:
        0 30px 70px rgba(16,45,67,.18);
}


/* =====================================================
   SECTION
===================================================== */

.gdb-contact-reviews {

    position: relative;

    padding:
        125px 0;

    background:
        var(--gd-white);

    overflow: hidden;
}


.gdb-contact-reviews::before {

    content: "";

    position: absolute;

    width: 400px;
    height: 400px;

    left: -200px;
    bottom: -200px;

    border-radius: 50%;

    border:
        1px solid rgba(63,112,142,.08);

    box-shadow:

        0 0 0 55px rgba(63,112,142,.018),
        0 0 0 110px rgba(63,112,142,.018);
}


.gdb-contact-reviews .container {

    position: relative;

    z-index: 2;
}


/* =====================================================
   FORM PANEL
===================================================== */

.gdb-form-panel {

    position: relative;

    min-height: 720px;

    height: 100%;

    padding:
        58px 50px 38px;

    color:
        var(--gd-white);

    background:
        var(--gd-navy);

    overflow: hidden;

    box-shadow:
        0 30px 70px rgba(16,45,67,.20);
}


/* GRID TEXTURE */

.gdb-form-panel::before {

    content: "";

    position: absolute;

    inset: 0;

    opacity: .075;

    pointer-events: none;

    background-image:

        linear-gradient(
            rgba(255,255,255,.12) 1px,
            transparent 1px
        ),

        linear-gradient(
            90deg,
            rgba(255,255,255,.12) 1px,
            transparent 1px
        );

    background-size:
        42px 42px;
}


/* ORANGE CORNER */

.gdb-form-panel::after {

    content: "";

    position: absolute;

    width: 170px;
    height: 170px;

    right: -90px;
    top: -90px;

    border-radius: 50%;

    background:
        var(--gd-orange);
}


.gdb-form-panel > * {

    position: relative;

    z-index: 2;
}


/* =====================================================
   FORM HEADING
===================================================== */

.gdb-form-label {

    display: flex;

    align-items: center;

    gap: 12px;

    margin-bottom: 14px;

    color:
        var(--gd-orange);

    font-size: 10px;

    font-weight: 900;

    letter-spacing: 1.5px;
}


.gdb-form-label > span {

    width: 39px;
    height: 2px;

    background:
        var(--gd-orange);
}


.gdb-form-panel > h2 {

    max-width: 520px;

    margin:
        0 0 21px;

    color:
        var(--gd-white);

    font-size:
        clamp(43px,4vw,59px);

    line-height:
        .98;

    font-weight:
        900;

    letter-spacing:
        -2px;
}


.gdb-form-panel > h2 strong {

    display: block;

    color:
        var(--gd-orange);

    font-weight: 900;
}


.gdb-form-intro {

    max-width: 510px;

    margin:
        0 0 30px;

    color:
        rgba(255,255,255,.65);

    font-size: 13px;

    line-height: 1.75;
}


/* =====================================================
   FORM
===================================================== */

.gdb-field label {

    display: block;

    margin-bottom: 7px;

    color:
        var(--gd-soft);

    font-size: 8px;

    font-weight: 900;

    letter-spacing: 1px;
}


.gdb-input-wrap {

    position: relative;
}


.gdb-input-wrap > i {

    position: absolute;

    z-index: 2;

    left: 16px;
    top: 50%;

    transform:
        translateY(-50%);

    color:
        var(--gd-orange);

    font-size: 12px;
}


.gdb-input-wrap input,
.gdb-input-wrap select,
.gdb-input-wrap textarea {

    width: 100%;

    color:
        var(--gd-white);

    background:
        rgba(255,255,255,.065);

    border:
        1px solid rgba(255,255,255,.10);

    border-radius: 0;

    outline: none;

    font-family: inherit;

    font-size: 12px;

    transition:
        .3s ease;
}


.gdb-input-wrap input,
.gdb-input-wrap select {

    height: 54px;

    padding:
        0 15px 0 43px;
}


.gdb-input-wrap textarea {

    min-height: 115px;

    padding:
        15px 15px 15px 43px;

    resize: vertical;
}


.gdb-textarea-wrap > i {

    top: 18px;

    transform: none;
}


.gdb-input-wrap input::placeholder,
.gdb-input-wrap textarea::placeholder {

    color:
        rgba(255,255,255,.36);
}


.gdb-input-wrap select {

    color:
        rgba(255,255,255,.75);
}


.gdb-input-wrap select option {

    color:
        var(--gd-navy);

    background:
        var(--gd-white);
}


.gdb-input-wrap input:focus,
.gdb-input-wrap select:focus,
.gdb-input-wrap textarea:focus {

    border-color:
        var(--gd-orange);

    background:
        rgba(255,255,255,.09);

    box-shadow:
        0 0 0 3px rgba(242,140,56,.08);
}


/* =====================================================
   SUBMIT
===================================================== */

.gdb-form-submit {

    position: relative;

    width: 100%;
    height: 60px;

    margin-top: 4px;

    padding:
        0 22px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    color:
        var(--gd-white);

    background:
        var(--gd-orange);

    border: 0;

    font-size: 12px;

    font-weight: 900;

    letter-spacing: 1px;

    cursor: pointer;

    overflow: hidden;

    transition:
        .35s ease;
}


.gdb-form-submit::before {

    content: "";

    position: absolute;

    left: -100%;
    top: 0;

    width: 60%;
    height: 100%;

    transform:
        skewX(-20deg);

    background:

        linear-gradient(
            90deg,
            transparent,
            rgba(255,255,255,.28),
            transparent
        );

    transition:
        .7s ease;
}


.gdb-form-submit span,
.gdb-form-submit i {

    position: relative;

    z-index: 2;
}


.gdb-form-submit:hover {

    color:
        var(--gd-navy);

    background:
        var(--gd-white);

    transform:
        translateY(-3px);
}


.gdb-form-submit:hover::before {

    left:
        140%;
}


/* =====================================================
   FORM BOTTOM
===================================================== */

.gdb-form-bottom {

    margin-top: 27px;

    padding-top: 18px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 15px;

    border-top:
        1px solid rgba(255,255,255,.10);
}


.gdb-form-bottom span {

    display: flex;

    align-items: center;

    gap: 7px;

    color:
        rgba(255,255,255,.55);

    font-size: 9px;

    font-weight: 700;
}


.gdb-form-bottom i {

    color:
        var(--gd-orange);
}


/* =====================================================
   REVIEW PANEL
===================================================== */

.gdb-review-panel {

    position: relative;

    min-height: 720px;

    height: 100%;

    padding:
        58px 50px 40px 65px;

    background:
        var(--gd-bg);

    overflow: hidden;
}


/* dots */

.gdb-review-panel::before {

    content: "";

    position: absolute;

    width: 250px;
    height: 230px;

    right: -20px;
    top: 20px;

    opacity: .40;

    background-image:

        radial-gradient(
            circle,
            rgba(242,140,56,.48) 1.2px,
            transparent 1.5px
        );

    background-size:
        11px 11px;
}


/* =====================================================
   WATERMARK
===================================================== */

.gdb-review-watermark {

    position: absolute;

    right: 28px;
    top: 65px;

    color:
        rgba(16,45,67,.055);

    font-family: Georgia, serif;

    font-size: 220px;

    line-height: .5;

    font-weight: 900;
}


/* =====================================================
   REVIEW HEADING
===================================================== */

.gdb-review-heading {

    position: relative;

    z-index: 3;

    max-width: 520px;
}


.gdb-review-label {

    display: flex;

    align-items: center;

    gap: 12px;

    margin-bottom: 13px;

    color:
        var(--gd-orange);

    font-size: 10px;

    font-weight: 900;

    letter-spacing: 1.4px;
}


.gdb-review-label span {

    width: 40px;
    height: 2px;

    background:
        var(--gd-orange);
}


.gdb-review-heading h2 {

    margin:
        0 0 23px;

    color:
        var(--gd-navy);

    font-size:
        clamp(39px,3.7vw,54px);

    line-height:
        .98;

    font-weight:
        900;

    letter-spacing:
        -1.9px;
}


.gdb-review-heading h2 strong {

    display: block;

    color:
        var(--gd-steel);

    font-weight: 900;
}


/* =====================================================
   DOMAIN
===================================================== */

.gdb-review-domain {

    width: fit-content;

    display: flex;

    align-items: center;

    gap: 11px;

    margin-bottom: 27px;
}


.gdb-domain-icon {

    flex:
        0 0 42px;

    width: 42px;
    height: 42px;

    display: flex;

    align-items: center;
    justify-content: center;

    color:
        var(--gd-white);

    background:
        var(--gd-orange);
}


.gdb-review-domain > div {

    display: flex;

    flex-direction: column;
}


.gdb-review-domain small {

    color:
        var(--gd-muted);

    font-size: 7px;

    font-weight: 900;

    letter-spacing: 1px;
}


.gdb-review-domain strong {

    color:
        var(--gd-navy);

    font-size: 13px;

    font-weight: 900;
}


/* =====================================================
   REVIEWS STACK
===================================================== */

.gdb-review-stack {

    position: relative;

    z-index: 4;

    display: flex;

    flex-direction: column;

    gap: 13px;
}


/* =====================================================
   REVIEW CARD
===================================================== */

.gdb-review-card {

    position: relative;

    max-width: 500px;

    padding:
        20px 22px;

    background:
        var(--gd-white);

    border:
        1px solid rgba(16,45,67,.07);

    box-shadow:
        0 15px 40px rgba(16,45,67,.07);

    transition:
        .4s cubic-bezier(.2,.7,.2,1);
}


.gdb-review-two {

    margin-left: 30px;
}


.gdb-review-three {

    margin-left: 10px;
}


.gdb-review-card:hover {

    transform:
        translateX(7px);

    border-left:
        4px solid var(--gd-orange);

    box-shadow:
        0 20px 45px rgba(16,45,67,.12);
}


/* =====================================================
   CARD TOP
===================================================== */

.gdb-review-card-top {

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 15px;

    margin-bottom: 10px;
}


.gdb-stars {

    display: flex;

    gap: 3px;

    color:
        var(--gd-orange);

    font-size: 10px;
}


.gdb-quote {

    color:
        rgba(16,45,67,.08);

    font-size: 30px;
}


/* =====================================================
   REVIEW TEXT
===================================================== */

.gdb-review-card > p {

    margin:
        0 0 14px;

    color:
        var(--gd-muted);

    font-size: 12px;

    line-height: 1.7;
}


/* =====================================================
   AUTHOR
===================================================== */

.gdb-review-author {

    display: flex;

    align-items: center;

    gap: 10px;
}


.gdb-author-circle {

    flex:
        0 0 36px;

    width: 36px;
    height: 36px;

    border-radius: 50%;

    display: flex;

    align-items: center;

    justify-content: center;

    color:
        var(--gd-white);

    background:
        var(--gd-navy);

    font-size: 11px;

    font-weight: 900;
}


.gdb-review-author > div {

    display: flex;

    flex-direction: column;
}


.gdb-review-author strong {

    color:
        var(--gd-navy);

    font-size: 10px;

    font-weight: 900;
}


.gdb-review-author small {

    color:
        var(--gd-orange);

    font-size: 8px;

    font-weight: 700;
}


/* =====================================================
   REVIEW BOTTOM
===================================================== */

.gdb-review-bottom {

    position: relative;

    z-index: 4;

    margin-top: 26px;

    padding-top: 21px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;

    border-top:
        1px solid var(--gd-line);
}


.gdb-review-bottom > div {

    display: flex;

    flex-direction: column;

    gap: 3px;
}


.gdb-bottom-stars {

    color:
        var(--gd-orange);

    font-size: 9px;
}


.gdb-review-bottom small {

    color:
        var(--gd-muted);

    font-size: 7px;

    font-weight: 900;

    letter-spacing: 1px;
}


/* WEBSITE BUTTON */

.gdb-site-btn {

    min-height: 44px;

    padding:
        0 15px;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 8px;

    color:
        var(--gd-white);

    background:
        var(--gd-navy);

    text-decoration: none;

    font-size: 8px;

    font-weight: 900;

    letter-spacing: .8px;

    transition:
        .35s ease;
}


.gdb-site-btn:hover {

    color:
        var(--gd-white);

    background:
        var(--gd-orange);

    transform:
        translateY(-3px);
}


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 1199.98px) {

    .gdb-form-panel {

        padding:
            50px 38px 35px;
    }


    .gdb-review-panel {

        padding:
            50px 38px 35px 45px;
    }

}


/* =====================================================
   <= 991
===================================================== */

@media (max-width: 991.98px) {

    .gdb-contact-reviews {

        padding:
            90px 0;
    }


    .gdb-form-panel,
    .gdb-review-panel {

        max-width:
            760px;

        min-height:
            auto;

        margin:
            0 auto;
    }


    .gdb-review-panel {

        padding-top:
            60px;
    }


    .gdb-review-card {

        max-width:
            620px;
    }

}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 767.98px) {

    .gdb-contact-reviews {

        padding:
            70px 0;
    }


    .gdb-form-panel {

        padding:
            42px 27px 32px;
    }


    .gdb-form-panel > h2 {

        font-size:
            43px;
    }


    .gdb-review-panel {

        padding:
            45px 27px 35px;
    }


    .gdb-review-heading h2 {

        font-size:
            40px;
    }


    .gdb-review-two,
    .gdb-review-three {

        margin-left: 0;
    }

}


/* =====================================================
   SMALL MOBILE
===================================================== */

@media (max-width: 575.98px) {

    .gdb-contact-reviews {

        padding:
            55px 0;
    }


    .gdb-form-panel {

        padding:
            36px 20px 28px;
    }


    .gdb-form-panel > h2 {

        font-size:
            38px;

        letter-spacing:
            -1.4px;
    }


    .gdb-form-bottom {

        align-items:
            flex-start;

        flex-direction:
            column;
    }


    .gdb-review-panel {

        padding:
            38px 20px 30px;
    }


    .gdb-review-heading h2 {

        font-size:
            36px;

        letter-spacing:
            -1.2px;
    }


    .gdb-review-card {

        padding:
            18px;
    }


    .gdb-review-bottom {

        align-items:
            flex-start;

        flex-direction:
            column;
    }


    .gdb-site-btn {

        width: 100%;
    }

}




.gdb-footer {

    --gd-navy: #102D43;
    --gd-dark: #173B57;
    --gd-steel: #3F708E;
    --gd-soft: #A9C7D8;
    --gd-orange: #F28C38;
    --gd-white: #FFFFFF;

    position: relative;

    padding:
        80px 0 0;

    color:
        var(--gd-white);

    background:
        var(--gd-navy);

    overflow: hidden;
}


/* subtle texture */

.gdb-footer::before {

    content: "";

    position: absolute;

    inset: 0;

    opacity: .07;

    pointer-events: none;

    background-image:

        linear-gradient(
            rgba(255,255,255,.10) 1px,
            transparent 1px
        ),

        linear-gradient(
            90deg,
            rgba(255,255,255,.10) 1px,
            transparent 1px
        );

    background-size:
        42px 42px;
}


/* orange glow */

.gdb-footer::after {

    content: "";

    position: absolute;

    width: 350px;
    height: 350px;

    right: -180px;
    top: -180px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(242,140,56,.22),
            transparent 67%
        );
}


.gdb-footer .container {

    position: relative;

    z-index: 2;
}


/* =====================================================
   BRAND
===================================================== */

.gdb-footer-brand {

    max-width: 340px;
}


.gdb-footer-logo {

    display: flex;

    align-items: center;

    gap: 13px;

    margin-bottom: 21px;
}


.gdb-footer-logo > span {

    width: 50px;
    height: 50px;

    display: flex;

    align-items: center;
    justify-content: center;

    color: var(--gd-white);

    background:
        var(--gd-orange);

    font-size: 19px;
}


.gdb-footer-logo > div {

    display: flex;

    flex-direction: column;
}


.gdb-footer-logo strong {

    color:
        var(--gd-white);

    font-size: 20px;

    line-height: 1;

    font-weight: 900;
}


.gdb-footer-logo small {

    margin-top: 4px;

    color:
        var(--gd-orange);

    font-size: 10px;

    font-weight: 900;

    letter-spacing: 2px;
}


.gdb-footer-brand p {

    margin:
        0 0 20px;

    color:
        rgba(255,255,255,.62);

    font-size: 13px;

    line-height: 1.8;
}


.gdb-footer-site {

    display: inline-flex;

    align-items: center;

    gap: 8px;

    color:
        var(--gd-orange);

    text-decoration: none;

    font-size: 12px;

    font-weight: 800;

    transition:
        .3s ease;
}


.gdb-footer-site:hover {

    color:
        var(--gd-white);

    transform:
        translateX(4px);
}


/* =====================================================
   COLUMNS
===================================================== */

.gdb-footer-column h3 {

    position: relative;

    margin:
        0 0 23px;

    padding-bottom: 12px;

    color:
        var(--gd-white);

    font-size: 16px;

    font-weight: 900;
}


.gdb-footer-column h3::after {

    content: "";

    position: absolute;

    left: 0;
    bottom: 0;

    width: 34px;
    height: 2px;

    background:
        var(--gd-orange);
}


.gdb-footer-column ul {

    list-style: none;

    padding: 0;
    margin: 0;
}


.gdb-footer-column li {

    margin-bottom: 12px;
}


.gdb-footer-column li:last-child {

    margin-bottom: 0;
}


.gdb-footer-column a {

    display: inline-flex;

    align-items: center;

    gap: 9px;

    color:
        rgba(255,255,255,.63);

    text-decoration: none;

    font-size: 12px;

    line-height: 1.5;

    transition:
        .3s ease;
}


.gdb-footer-column a i {

    color:
        var(--gd-orange);

    font-size: 8px;

    transition:
        .3s ease;
}


.gdb-footer-column a:hover {

    color:
        var(--gd-white);

    transform:
        translateX(5px);
}


.gdb-footer-column a:hover i {

    transform:
        translateX(3px);
}


/* =====================================================
   CONTACT
===================================================== */

.gdb-footer-contact {

    display: flex;

    flex-direction: column;

    gap: 16px;
}


.gdb-footer-contact > div {

    display: flex;

    align-items: flex-start;

    gap: 12px;
}


.gdb-footer-contact span {

    flex: 0 0 36px;

    width: 36px;
    height: 36px;

    border-radius: 50%;

    display: flex;

    align-items: center;
    justify-content: center;

    color:
        var(--gd-white);

    background:
        rgba(242,140,56,.14);

    border:
        1px solid rgba(242,140,56,.25);

    font-size: 12px;
}


.gdb-footer-contact p {

    margin: 0;

    color:
        rgba(255,255,255,.62);

    font-size: 12px;

    line-height: 1.65;
}


/* =====================================================
   BOTTOM
===================================================== */

.gdb-footer-bottom {

    margin-top: 62px;

    min-height: 75px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;

    border-top:
        1px solid rgba(255,255,255,.09);
}


.gdb-footer-bottom p {

    margin: 0;

    color:
        rgba(255,255,255,.48);

    font-size: 10px;
}


.gdb-footer-bottom > div {

    display: flex;

    align-items: center;

    gap: 12px;
}


.gdb-footer-bottom a {

    color:
        rgba(255,255,255,.55);

    text-decoration: none;

    font-size: 10px;

    transition:
        .3s ease;
}


.gdb-footer-bottom a:hover {

    color:
        var(--gd-orange);
}


.gdb-footer-bottom > div > span {

    width: 3px;
    height: 3px;

    border-radius: 50%;

    background:
        var(--gd-orange);
}


/* =====================================================
   RESPONSIVE
===================================================== */

@media (max-width: 991.98px) {

    .gdb-footer {

        padding-top: 65px;
    }


    .gdb-footer-brand {

        max-width: 450px;
    }

}


@media (max-width: 767.98px) {

    .gdb-footer {

        padding-top: 55px;
    }


    .gdb-footer-bottom {

        margin-top: 45px;

        padding:
            22px 0;

        flex-direction: column;

        align-items: flex-start;
    }

}


@media (max-width: 575.98px) {

    .gdb-footer-bottom > div {

        flex-wrap: wrap;
    }

}


.gd-top-info a {
    color: inherit;
    text-decoration: none;
    transition: .3s ease;
}

.gd-top-info a:hover {
    color: var(--gd-orange);
}




/* FORM WRAPPER */
form.CUS {
    max-width: 900px;
    width: 100%;
    margin: 20px auto;
    padding: 20px;
    background: #f9fafb;
    border: 1px solid #ddd;
    border-radius: 10px;
    font-family: system-ui, sans-serif;
}

/* FLEX FIELDSET */
form.CUS fieldset {
    display: flex;
    flex-wrap: wrap;
    border: none;
    padding: 0;
    margin: 0;
}

/* BASE BLOCK STYLE */
form.CUS fieldset > p {
    width: 100%;
    padding: 10px;
    margin: 0;
    font-size: 0.95rem;
    color: #444;
}

/* Universal input/select styling */
form.CUS input,
form.CUS select,
form.CUS textarea {
    width: 100%;
    padding: 10px;
    margin-top: 6px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 1rem;
}

/* ===============================
   ROW 1: Name, Phone, Address
=============================== */
form.CUS fieldset > p:nth-of-type(1),
form.CUS fieldset > p:nth-of-type(2),
form.CUS fieldset > p:nth-of-type(3) {
    width: 33.333%;
}

/* ===============================
   ROW 2: City, State, Zip Code
=============================== */
form.CUS fieldset > p:nth-of-type(4),
form.CUS fieldset > p:nth-of-type(5),
form.CUS fieldset > p:nth-of-type(6) {
    width: 33.333%;
}

/* ===============================
   SERVICE NEEDED TEXTAREA
=============================== */
form.CUS fieldset > p:nth-of-type(7) {
    width: 100%;
}

/* ===============================
   SERVICE DATE (Month, Day, Year)
   â†’ ALL 3 IN ONE ROW
=============================== */

/* Make the 8th <p> (Service Date block) a flex row */
form.CUS fieldset > p:nth-of-type(8) {
    width: 100%;
    display: flex;
    flex-wrap: nowrap;
    gap: 10px;
    align-items: flex-start;
}

/* Month, Day, Year = 3 equal flex columns */
form.CUS fieldset > p:nth-of-type(8) select#service_date,
form.CUS fieldset > p:nth-of-type(8) select#service_day,
form.CUS fieldset > p:nth-of-type(8) input#service_year {
    flex: 1 1 0;
             /* flex handles width */
    margin-top: 6px;
}

/* ===============================
   SERVICE TIME (Full width)
=============================== */
form.CUS fieldset > p:nth-of-type(9) {
    width: 100%;
}

/* ===============================
   SUBMIT BUTTON (Full width)
=============================== */
form.CUS fieldset > p:nth-of-type(10) {
    width: 100%;
}

form.CUS input[type="submit"] {
    width: 100%;
    background: #f28c38;
    color: #fff;
    border: none;
    padding: 12px;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
}

form.CUS input[type="submit"]:hover {
    background: #f28c38;
}

/* Hide honeypot */
form.CUS input.subject {
    display: none;
}

/* ===============================
   MOBILE RESPONSIVE (stack fields)
=============================== */
@media (max-width: 600px) {

    form.CUS fieldset > p {
        width: 100%;
        padding: 6px 0;
    }

    /* Month, Day, Year full width stacked on mobile */
    form.CUS fieldset > p:nth-of-type(8) {
        flex-direction: column;
        gap: 6px;
    }

    form.CUS fieldset > p:nth-of-type(8) select#service_date,
    form.CUS fieldset > p:nth-of-type(8) select#service_day,
    form.CUS fieldset > p:nth-of-type(8) input#service_year {
        flex: none;
        width: 100% !important;
    }
/* ===============================
   ROW 1: Name, Phone, Address
=============================== */
form.CUS fieldset > p:nth-of-type(1),
form.CUS fieldset > p:nth-of-type(2),
form.CUS fieldset > p:nth-of-type(3) {
    width: 100%;
}

/* ===============================
   ROW 2: City, State, Zip Code
=============================== */
form.CUS fieldset > p:nth-of-type(4),
form.CUS fieldset > p:nth-of-type(5),
form.CUS fieldset > p:nth-of-type(6) {
    width: 100%;
}
}