:root {
    --blue: #00aeef;
    --blue-700: #007cae;
    --blue-900: #064b6b;
    --blue-soft: #eefaff;
    --ink: #17212b;
    --muted: #65727f;
    --line: #e5e7eb;
    --silver: #f3f4f6;
    --white: #fff;
    --warm: #faf8f4;
    --max: 1280px;
    --text: 720px;
    --radius: 28px;
    --shadow: 0 20px 60px rgba(20, 40, 55, .08);
    --ease: cubic-bezier(.22, 1, .36, 1)
}

* {
    box-sizing: border-box
}

html {
    scroll-behavior: smooth
}

body {
    margin: 0;
    font-family: Inter, system-ui, sans-serif;
    color: var(--ink);
    font-size: 17px;
    line-height: 1.7;
    background: #fff
}

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

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

button {
    font: inherit
}

.wrap {
    width: min(calc(100% - 48px), var(--max));
    margin: auto
}

.section {
    padding: clamp(88px, 10vw, 150px) 0
}
.section--white {
  background: var(--white);
}
.section--soft {
    background: var(--blue-soft)
}

.section--silver {
    background: var(--silver)
}

.section--warm {
    background: var(--warm)
}

h1,
h2,
h3 {
    margin: 0 0 22px;
    line-height: 1.05;
    letter-spacing: -.04em;
    text-wrap: balance
}

h1 {
    font-size: clamp(52px, 6.4vw, 92px);
    max-width: 950px
}

h2 {
    font-size: clamp(38px, 4.5vw, 64px);
    max-width: 900px
}

h3 {
    font-size: clamp(23px, 2.2vw, 31px);
    letter-spacing: -.025em
}

p {
    margin: 0 0 20px;
    color: var(--muted)
}

.lead {
    font-size: clamp(20px, 2vw, 25px);
    line-height: 1.55;
    max-width: 760px
}

.signature {
    display: block;
    width: 72px;
    height: 3px;
    background: var(--blue);
    margin-bottom: 30px;
    border-radius: 9px
}

.section-head {
    max-width: 900px;
    margin-bottom: clamp(45px, 6vw, 78px)
}

.section-head.center {
    margin-inline: auto;
    text-align: center
}

.section-head.center .signature {
    margin-inline: auto
}

.btn:not(#scroll-top) {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    padding: 0 24px;
    border-radius: 999px;
    font-size: 15px;
    font-weight: 600;
    border: 1px solid transparent;
    transition: background .2s ease, color .2s ease, border-color .2s ease;
}
.btn-back-to-top {
    /* display: inline-flex;
    align-items: center;
    justify-content: center; */
    min-height: 42px;
    /*padding: 0 24px;
    padding-left:21px;*/
    text-align: center;
    border-radius: 999px;
    font-size: 15px;
    font-weight: 600;
    border: 1px solid transparent;
    transition: background .2s ease, color .2s ease, border-color .2s ease;
}
.btn--blue {
    background: var(--blue);
    color: #fff
}

.btn--blue:hover {
    background: #0098d1;
    color: var(--white);
}

.btn--white {
    background: #fff;
    color: var(--ink)
}

.btn--light {
    background: rgba(255, 255, 255, .94);
    color: var(--ink)
}

.btn--light:hover {
    background: #fff
}

.btn--ghost {
    color: #fff;
    border-color: rgba(255, 255, 255, .65)
}

.btn--contact {
    min-height: 48px;
    padding-inline: 22px;
    background: #fff;
    color: #07577b;
    font-weight: 600
}

.btn--contact:hover {
    background: #eefaff
}

.actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 34px
}

.icon {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: var(--blue-soft);
    color: var(--blue)
}

.icon svg {
    width: 23px;
    height: 23px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round
}

.eyebrow-demo {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: .12em;
    color: var(--blue);
    font-weight: 800
}

.note {
    font-size: 14px;
    color: #89939c
}

.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(45px, 8vw, 110px);
    align-items: center
}

.media {
    overflow: hidden;
    border-radius: var(--radius)
}

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

.media--43 {
    aspect-ratio: 4/3
}
.elementor .media--43 img, .media--43 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.media--wide {
    aspect-ratio: 16/9
}

@media(max-width:800px) {
    .grid-2 {
        grid-template-columns: 1fr
    }

    .section {
        padding: 80px 0
    }

    .actions {
        flex-direction: column
    }

    .actions .btn {
        width: 100%
    }
}