﻿/* =====================================================
        CONFIG — change these to rebrand the site instantly
        ===================================================== */
:root {
    --blue: #0d6efd;
    --blue-dk: #0a58ca;
    --blue-deep: #072a5e;
    --blue-lt: #e8f1ff;
    --blue-mid: #f0f6ff;
    --white: #ffffff;
    --text: #1a2a3a;
    --muted: #5a7a9a;
    --border: #d0e4f7;
    --navy: #071628;
    --fh: 'Oswald', sans-serif;
    --fb: 'Lato', sans-serif;
    --r: 5px;
    --e: 0.3s ease;
    --w: 1200px;
}

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0
}

html {
    scroll-behavior: smooth
}

body {
    font-family: var(--fb);
    background: #fff;
    color: var(--text);
    line-height: 1.7
}

a {
    text-decoration: none;
    color: inherit
}

img {
    display: block;
    max-width: 100%
}

.wrap {
    /*max-width: var(--w);*/
    margin: 0 auto;
    padding: 0 24px
}

/* TOPBAR */
.topbar {
    background: var(--navy);
    padding: 9px 0;
    font-size: 13px;
    color: #6a90b0
}

    .topbar .wrap {
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
        gap: 6px
    }

    .topbar a {
        color: #7ac4ff
    }

        .topbar a:hover {
            opacity: .8
        }

.tb-right {
    display: flex;
    gap: 20px
}

/* NAVBAR */
.navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: #fff;
    border-bottom: 2px solid var(--border);
    transition: box-shadow var(--e)
}

    .navbar.scrolled {
        box-shadow: 0 4px 20px rgba(13,110,253,.1)
    }

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px
}

.logo {
    font-family: var(--fh);
    font-size: 22px;
    font-weight: 700;
    color: var(--text);
    letter-spacing: .04em;
    line-height: 1.1
}

    .logo span {
        color: var(--blue)
    }

    .logo small {
        display: block;
        font-size: 10px;
        font-weight: 400;
        letter-spacing: .16em;
        color: var(--muted);
        text-transform: uppercase
    }

.nav-list {
    display: flex;
    align-items: center;
    gap: 4px;
    list-style: none
}

    .nav-list > li {
        position: relative
    }

        .nav-list > li > a {
            display: flex;
            align-items: center;
            gap: 4px;
            padding: 8px 13px;
            font-family: var(--fh);
            font-size: 14px;
            letter-spacing: .07em;
            text-transform: uppercase;
            color: var(--text);
            transition: color var(--e)
        }

            .nav-list > li > a:hover, .nav-list > li > a.act {
                color: var(--blue)
            }

.arr {
    font-size: 9px;
    transition: transform var(--e)
}

.nav-list > li:hover .arr {
    transform: rotate(180deg)
}

.drop {
    position: absolute;
    top: calc(100% + 6px);
    left: 0;
    min-width: 220px;
    background: #fff;
    border: 1px solid var(--border);
    border-top: 2px solid var(--blue);
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-6px);
    transition: all var(--e);
    box-shadow: 0 10px 36px rgba(13,110,253,.1)
}

.nav-list > li:hover .drop {
    opacity: 1;
    visibility: visible;
    transform: translateY(0)
}

.drop li a {
    display: block;
    padding: 10px 18px;
    font-size: 13px;
    color: var(--muted);
    border-bottom: 1px solid var(--border);
    transition: all var(--e)
}

.drop li:last-child a {
    border-bottom: none
}

.drop li a:hover {
    color: var(--blue);
    background: var(--blue-lt);
    padding-left: 24px
}

.nav-cta {
    background: var(--blue) !important;
    color: #fff !important;
    border-radius: var(--r);
    font-weight: 700
}

    .nav-cta:hover {
        background: var(--blue-dk) !important
    }

.hburg {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 4px
}

    .hburg span {
        width: 26px;
        height: 2px;
        background: var(--text);
        display: block;
        transition: all var(--e)
    }

    .hburg.open span:nth-child(1) {
        transform: translateY(7px) rotate(45deg)
    }

    .hburg.open span:nth-child(2) {
        opacity: 0
    }

    .hburg.open span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg)
    }

.mob-menu {
    display: none;
    background: #fff;
    border-top: 1px solid var(--border);
    padding: 16px 24px 24px
}

    .mob-menu.open {
        display: block
    }

    .mob-menu ul {
        list-style: none
    }

        .mob-menu ul li a {
            display: block;
            padding: 10px 0;
            font-family: var(--fh);
            font-size: 14px;
            letter-spacing: .06em;
            text-transform: uppercase;
            border-bottom: 1px solid var(--border);
            color: var(--text)
        }

            .mob-menu ul li a:hover {
                color: var(--blue)
            }

.mob-sub {
    padding-left: 14px
}

    .mob-sub li a {
        font-size: 13px !important;
        text-transform: none !important;
        letter-spacing: 0 !important
    }

/* HERO */
.hero {
    position: relative;
    height: 88vh;
    min-height: 520px;
    overflow: hidden
}

.hero-slides {
    position: relative;
    height: 100%
}

.slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1.2s ease;
    display: flex;
    align-items: center
}

    .slide.on {
        opacity: 1
    }

.slide-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transform: scale(1.06);
    transition: transform 8s ease
}

.slide.on .slide-bg {
    transform: scale(1)
}

.slide-ov {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg,rgba(5,20,60,.82) 0%,rgba(10,35,90,.45) 55%,transparent 100%)
}

.slide-content {
    position: relative;
    z-index: 2;
    max-width: 680px;
    padding: 0 24px 0 48px;
    opacity: 0;
    transform: translateY(28px);
    transition: all .8s ease .3s
}

.slide.on .slide-content {
    opacity: 1;
    transform: translateY(0)
}

.h-tag {
    display: inline-block;
    background: var(--blue);
    color: #fff;
    font-family: var(--fh);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .18em;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: var(--r);
    margin-bottom: 16px
}

.h-title {
    font-family: var(--fh);
    font-size: clamp(36px,5.5vw,68px);
    font-weight: 700;
    line-height: 1.05;
    text-transform: uppercase;
    letter-spacing: .02em;
    color: #fff;
    margin-bottom: 16px;
    text-shadow: 0 2px 20px rgba(0,0,0,.4)
}

    .h-title em {
        color: #7ac4ff;
        font-style: normal
    }

.h-desc {
    font-size: 16px;
    color: rgba(255,255,255,.85);
    margin-bottom: 30px;
    max-width: 480px
}

.h-btns {
    display: flex;
    gap: 14px;
    flex-wrap: wrap
}

.btn {
    display: inline-flex;
    align-items: center;
    font-family: var(--fh);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    padding: 13px 28px;
    border-radius: var(--r);
    transition: all var(--e);
    cursor: pointer;
    border: 2px solid transparent
}

.btn-b {
    background: var(--blue);
    color: #fff;
    border-color: var(--blue)
}

    .btn-b:hover {
        background: var(--blue-dk);
        border-color: var(--blue-dk)
    }

.btn-w {
    background: transparent;
    color: #fff;
    border-color: rgba(255,255,255,.6)
}

    .btn-w:hover {
        border-color: #fff;
        background: rgba(255,255,255,.1)
    }

.h-arrows {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 18px;
    z-index: 10;
    pointer-events: none
}

.h-arr {
    width: 46px;
    height: 46px;
    background: rgba(0,0,0,.35);
    border: 1px solid rgba(255,255,255,.25);
    color: #fff;
    font-size: 22px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: all;
    transition: all var(--e);
    border-radius: var(--r)
}

    .h-arr:hover {
        background: var(--blue);
        border-color: var(--blue)
    }

.h-dots {
    position: absolute;
    bottom: 26px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10
}

.h-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,.35);
    cursor: pointer;
    border: none;
    transition: all var(--e)
}

    .h-dot.on {
        background: var(--blue);
        transform: scale(1.35)
    }

/* STATS */
.stats {
    background: linear-gradient(135deg,#0a4dbf 0%,var(--blue) 100%);
    padding: 24px 0
}

    .stats .wrap {
        display: grid;
        grid-template-columns: repeat(4,1fr)
    }

.stat {
    text-align: center;
    padding: 8px 16px;
    border-right: 1px solid rgba(255,255,255,.18)
}

    .stat:last-child {
        border-right: none
    }

.s-num {
    font-family: var(--fh);
    font-size: 38px;
    font-weight: 700;
    color: #fff;
    line-height: 1
}

.s-lbl {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: rgba(255,255,255,.75);
    margin-top: 4px
}

/* SECTIONS */
.sec {
    padding: 90px 0
}

.bg-white {
    background: #fff
}

.bg-light {
    background: var(--blue-mid)
}

.bg-navy {
    background: var(--navy)
}

/* SECTION HEADER */
.sh {
    text-align: center;
    margin-bottom: 56px
}

.sh-left {
    text-align: left
}

    .sh-left .sh-line {
        margin-left: 0
    }

.sh-tag {
    display: inline-block;
    font-family: var(--fh);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--blue);
    margin-bottom: 10px
}

.bg-navy .sh-tag {
    color: #7ac4ff
}

.sh-h2 {
    font-family: var(--fh);
    font-size: clamp(28px,4vw,44px);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .03em;
    line-height: 1.1;
    color: var(--text)
}

.bg-navy .sh-h2 {
    color: #fff
}

.sh-line {
    width: 52px;
    height: 3px;
    background: var(--blue);
    margin: 14px auto 18px
}

.sh-sub {
    font-size: 16px;
    color: var(--muted);
    max-width: 560px;
    margin: 0 auto
}

.bg-navy .sh-sub {
    color: #7aa8d0
}

/* ABOUT */
.about-g {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center
}

.about-img {
    position: relative
}

    .about-img img {
        width: 100%;
        height: 480px;
        object-fit: cover;
        border-radius: var(--r)
    }

.a-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--blue);
    color: #fff;
    font-family: var(--fh);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
    padding: 18px 22px;
    text-align: center;
    line-height: 1.3;
    border-radius: var(--r)
}

    .a-badge strong {
        font-size: 32px;
        display: block
    }

.about-txt p {
    color: var(--muted);
    margin-bottom: 14px
}

.checks {
    list-style: none;
    margin: 22px 0 30px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px
}

    .checks li {
        display: flex;
        align-items: center;
        gap: 8px;
        font-size: 14px;
        color: var(--text)
    }

        .checks li::before {
            content: '✓';
            color: var(--blue);
            font-weight: 700;
            font-size: 16px
        }

/* SERVICES */
.svc-g {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 3px
}

.svc {
    position: relative;
    overflow: hidden;
    cursor: pointer
}

    .svc img {
        width: 100%;
        height: 280px;
        object-fit: cover;
        transition: transform .6s ease;
        display: block
    }

    .svc:hover img {
        transform: scale(1.08)
    }

.svc-ov {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,rgba(0,0,0,.85) 0%,rgba(0,0,0,.05) 60%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 22px;
    transition: all var(--e)
}

.svc:hover .svc-ov {
    background: linear-gradient(to top,rgba(10,60,200,.9) 0%,rgba(5,25,80,.55) 100%)
}

.svc-t {
    font-family: var(--fh);
    font-size: 17px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .06em;
    color: #fff
}

.svc-lnk {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: #a8d4ff;
    margin-top: 6px;
    opacity: 0;
    transform: translateY(6px);
    transition: all var(--e);
    display: inline-block
}

.svc:hover .svc-lnk {
    opacity: 1;
    transform: translateY(0)
}

/* WHY */
.why-g {
    display: grid;
    grid-template-columns: repeat(2,1fr) 360px repeat(2,1fr);
    min-height: 420px
}

.why-img-col {
    grid-column: 3;
    overflow: hidden
}

    .why-img-col img {
        width: 100%;
        height: 100%;
        object-fit: cover
    }

.why-card {
    padding: 36px 28px;
    border: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    gap: 12px;
    background: #fff;
    transition: background var(--e),box-shadow var(--e)
}

    .why-card:hover {
        background: var(--blue-lt);
        box-shadow: 0 4px 20px rgba(13,110,253,.08)
    }

.why-ico {
    width: 54px;
    height: 54px;
    background: var(--blue-lt);
    border: 1px solid var(--border);
    border-radius: var(--r);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px
}

.why-card h3 {
    font-family: var(--fh);
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .06em;
    color: var(--text)
}

.why-card p {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.7
}

/* PROCESS */
.proc-g {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    position: relative
}

    .proc-g::before {
        content: '';
        position: absolute;
        top: 39px;
        left: 12.5%;
        width: 75%;
        height: 2px;
        background: linear-gradient(to right,var(--blue),rgba(13,110,253,.15))
    }

.proc-step {
    text-align: center;
    padding: 0 24px
}

.proc-n {
    width: 80px;
    height: 80px;
    background: #fff;
    border: 2px solid var(--blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--fh);
    font-size: 28px;
    font-weight: 700;
    color: var(--blue);
    margin: 0 auto 22px;
    position: relative;
    z-index: 2;
    box-shadow: 0 0 0 6px var(--blue-mid),0 0 20px rgba(13,110,253,.12)
}

.proc-step h3 {
    font-family: var(--fh);
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .05em;
    margin-bottom: 10px;
    color: var(--text)
}

.proc-step p {
    font-size: 13px;
    color: var(--muted)
}

/* GALLERY */
.gal-g {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    grid-template-rows: 280px 280px;
    gap: 4px
}

.gal-item {
    position: relative;
    overflow: hidden
}

    .gal-item:first-child {
        grid-column: 1;
        grid-row: 1/3
    }

    .gal-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform .7s ease;
        display: block
    }

    .gal-item:hover img {
        transform: scale(1.06)
    }

.gal-ov {
    position: absolute;
    inset: 0;
    background: rgba(10,50,180,.55);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--e)
}

.gal-item:hover .gal-ov {
    opacity: 1
}

.gal-ov span {
    font-family: var(--fh);
    font-size: 15px;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: #fff;
    border-bottom: 2px solid #fff;
    padding-bottom: 4px
}

/* TESTIMONIALS */
.testi-g {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 24px
}

.tcard {
    background: #fff;
    border: 1px solid var(--border);
    border-top: 3px solid var(--blue);
    padding: 32px;
    border-radius: var(--r);
    transition: transform var(--e),box-shadow var(--e);
    box-shadow: 0 2px 12px rgba(13,110,253,.06)
}

    .tcard:hover {
        transform: translateY(-4px);
        box-shadow: 0 10px 32px rgba(13,110,253,.12)
    }

.t-q {
    font-size: 52px;
    color: var(--blue);
    line-height: 1;
    font-family: Georgia,serif;
    margin-bottom: 10px
}

.t-stars {
    color: var(--blue);
    font-size: 14px;
    margin-bottom: 4px
}

.t-txt {
    font-size: 14px;
    color: var(--muted);
    font-style: italic;
    margin-bottom: 18px;
    line-height: 1.8
}

.t-author {
    display: flex;
    align-items: center;
    gap: 12px
}

.t-av {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--blue);
    color: #fff;
    font-family: var(--fh);
    font-size: 18px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0
}

.t-name {
    font-family: var(--fh);
    font-size: 15px;
    font-weight: 600;
    color: var(--text)
}

.t-role {
    font-size: 12px;
    color: var(--muted)
}

/* CTA */
.cta {
    background: linear-gradient(135deg,#0a4dbf 0%,var(--blue) 60%,#3a9fff 100%);
    padding: 70px 0
}

.cta-in {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    flex-wrap: wrap
}

.cta-txt h2 {
    font-family: var(--fh);
    font-size: clamp(24px,3.5vw,40px);
    font-weight: 700;
    text-transform: uppercase;
    color: #fff;
    letter-spacing: .03em
}

.cta-txt p {
    color: rgba(255,255,255,.8);
    font-size: 15px;
    margin-top: 6px
}

.btn-cta {
    background: #fff;
    color: var(--blue-deep);
    font-family: var(--fh);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    padding: 15px 34px;
    border-radius: var(--r);
    transition: all var(--e);
    white-space: nowrap;
    display: inline-block
}

    .btn-cta:hover {
        background: #dceeff
    }

/* CONTACT */
.contact-g {
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    gap: 56px
}

.ci h3 {
    font-family: var(--fh);
    font-size: 22px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .05em;
    margin-bottom: 24px;
    color: var(--text)
}

.cd {
    display: flex;
    gap: 14px;
    margin-bottom: 22px;
    align-items: flex-start
}

.cd-ico {
    width: 44px;
    height: 44px;
    background: var(--blue-lt);
    border: 1px solid var(--border);
    border-radius: var(--r);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0
}

.cd-lbl {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--blue);
    margin-bottom: 4px
}

.cd-val {
    color: var(--text);
    font-size: 15px
}

    .cd-val a {
        color: var(--blue)
    }

.cform {
    display: flex;
    flex-direction: column;
    gap: 16px
}

.frow {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px
}

.ff {
    display: flex;
    flex-direction: column;
    gap: 6px
}

    .ff label {
        font-size: 11px;
        font-weight: 700;
        letter-spacing: .12em;
        text-transform: uppercase;
        color: var(--muted)
    }

    .ff input, .ff select, .ff textarea {
        background: #fff;
        border: 1.5px solid var(--border);
        color: var(--text);
        padding: 12px 16px;
        font-family: var(--fb);
        font-size: 14px;
        border-radius: var(--r);
        outline: none;
        transition: border-color var(--e),box-shadow var(--e)
    }

        .ff input:focus, .ff select:focus, .ff textarea:focus {
            border-color: var(--blue);
            box-shadow: 0 0 0 3px rgba(13,110,253,.1)
        }

    .ff textarea {
        resize: vertical;
        min-height: 120px
    }

.btn-send {
    background: var(--blue);
    color: #fff;
    font-family: var(--fh);
    font-size: 15px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    padding: 15px;
    border: none;
    border-radius: var(--r);
    cursor: pointer;
    transition: background var(--e);
    width: 100%
}

    .btn-send:hover {
        background: var(--blue-dk)
    }

/* FOOTER */
.footer {
    background: var(--navy);
    padding: 70px 0 0
}

.foot-g {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr 1.5fr;
    gap: 40px;
    padding-bottom: 56px;
    border-bottom: 1px solid rgba(255,255,255,.07)
}

.foot-logo {
    font-family: var(--fh);
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    letter-spacing: .04em;
    margin-bottom: 14px
}

    .foot-logo span {
        color: var(--blue)
    }

.foot-about {
    font-size: 14px;
    color: #4a7090;
    line-height: 1.8;
    margin-bottom: 18px
}

.socials {
    display: flex;
    gap: 10px
}

.soc {
    width: 38px;
    height: 38px;
    background: rgba(255,255,255,.07);
    border: 1px solid rgba(255,255,255,.1);
    color: #6a90b0;
    border-radius: var(--r);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    transition: all var(--e)
}

    .soc:hover {
        background: var(--blue);
        color: #fff;
        border-color: var(--blue)
    }

.foot-col h4 {
    font-family: var(--fh);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 18px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--blue);
    display: inline-block
}

.foot-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 9px
}

    .foot-links li a {
        font-size: 13px;
        color: #4a7090;
        display: flex;
        align-items: center;
        gap: 6px;
        transition: all var(--e)
    }

        .foot-links li a::before {
            content: '›';
            color: var(--blue);
            font-size: 16px
        }

        .foot-links li a:hover {
            color: #7ac4ff;
            padding-left: 4px
        }

.foot-bot {
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px
}

    .foot-bot p {
        font-size: 13px;
        color: #2e4a62
    }

    .foot-bot a {
        color: var(--blue)
    }

/* BACK TO TOP */
#btt {
    position: fixed;
    bottom: 26px;
    right: 26px;
    width: 44px;
    height: 44px;
    background: var(--blue);
    color: #fff;
    border: none;
    border-radius: var(--r);
    font-size: 20px;
    cursor: pointer;
    opacity: 0;
    transform: translateY(10px);
    transition: all var(--e);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center
}

    #btt.show {
        opacity: 1;
        transform: translateY(0)
    }

    #btt:hover {
        background: var(--blue-dk)
    }

/* REVEAL */
.rev {
    opacity: 0;
    transform: translateY(26px);
    transition: opacity .7s ease,transform .7s ease
}

    .rev.in {
        opacity: 1;
        transform: translateY(0)
    }

/* ---- RESPONSIVE ---- */
@media(max-width:1100px) {
    .why-g {
        grid-template-columns: repeat(2,1fr)
    }

    .why-img-col {
        display: none
    }

    .foot-g {
        grid-template-columns: 1fr 1fr;
        gap: 32px
    }
}

@media(max-width:900px) {
    .svc-g {
        grid-template-columns: repeat(2,1fr)
    }

    .about-g {
        grid-template-columns: 1fr;
        gap: 36px
    }

    .about-img img {
        height: 320px
    }

    .a-badge {
        bottom: 0;
        right: 0
    }

    .proc-g {
        grid-template-columns: repeat(2,1fr);
        gap: 36px
    }

        .proc-g::before {
            display: none
        }

    .testi-g {
        grid-template-columns: 1fr
    }

    .contact-g {
        grid-template-columns: 1fr;
        gap: 40px
    }

    .frow {
        grid-template-columns: 1fr
    }
}

@media(max-width:768px) {
    .nav-list {
        display: none
    }

    .hburg {
        display: flex
    }

    .stats .wrap {
        grid-template-columns: repeat(2,1fr)
    }

    .stat:nth-child(2) {
        border-right: none
    }

    .gal-g {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto
    }

    .gal-item:first-child {
        grid-column: 1;
        grid-row: 1
    }

    .foot-g {
        grid-template-columns: 1fr
    }

    .foot-bot {
        flex-direction: column;
        text-align: center
    }

    .topbar .wrap {
        justify-content: center
    }

    .tb-right {
        display: none
    }

    .cta-in {
        flex-direction: column;
        text-align: center
    }

    .slide-content {
        padding: 0 20px
    }
}

@media(max-width:560px) {
    .sec {
        padding: 60px 0
    }

    .svc-g {
        grid-template-columns: 1fr
    }

    .why-g {
        grid-template-columns: 1fr
    }

    .proc-g {
        grid-template-columns: 1fr
    }

    .checks {
        grid-template-columns: 1fr
    }
}
