

:root {
    --color-dark: #002643;
    --color-blue: #0090FF;
    --color-blue-light: #73C2FF;
    --color-blue-bg: #D7ECFF;
    --color-gray: #B7B7B7;
    --color-gray-dark: #3F3F3F;
    --color-error: #FF2626;
    --color-success: #0AC58C;

    --font-main: "Open Sans";
    --font-heading: "Lora";

    --container-width: 1380px;
    --shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

/* reset */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
    display: block;
}

body {
    line-height: 1;
}

ol, ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

blockquote, q {
    quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
    content: '';
    content: none;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

*, *:after, *:before {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    outline: none;
}

a::-moz-focus-inner, button::-moz-focus-inner {
    border: 0;
}

select:-moz-focusring, select::-moz-focus-inner {
    color: transparent !important;
    text-shadow: 0 0 0 #000 !important;
}

select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    padding-left: 9px;
}

select::-ms-expand {
    display: none;
}

select::-ms-value {
    background: none;
    color: #000;
}

textarea {
    overflow: auto;
}

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

button, input, select, textarea {
    font: inherit;
    color: inherit;
    background: none;
    border: none;
    outline: none;
}

:focus {
    outline: 2px solid #0090FF;
    outline-offset: 2px;
}


html, body {
    height: 100%;
}

html {
    scroll-behavior: smooth;
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    margin: 0;
    color: var(--color-dark);
    font-family: var(--font-main), sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: normal;
    background: #fff;
}

main {
    flex: 1;
}

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

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 25px 50px;
    border-radius: 6px;
    font-family: var(--font-main), sans-serif;
    font-size: 22px;
    font-weight: 700;
    border: none;
    color: #fff;
    background-color: var(--color-blue);
    text-transform: uppercase;
    letter-spacing: 2px;
    text-decoration: none;
    text-align: center;
    cursor: pointer;
    transition: .2s;
}

.button:hover {
    background-color: var(--color-blue-light, #73C2FF);
}

.button:hover .button__icon {
    background-color: var(--color-blue, #0090FF);
}

.button__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    margin: 0 20px 0 0;
    background-color: var(--color-dark);
    border-radius: 3px;
    transition: .2s;
}

.preform {
    display: flex;
    justify-content: space-between;
    margin: 0 auto;
    gap: 6px;
}

.preform__field {
    position: relative;
    width: 100%;
    max-width: 183px;
}

.preform__field_error .preform__control {
    color: var(--color-error, #FF2626);
}

.preform__field_success .preform__control {
    color: var(--color-success, #0AC58C);
}

.preform__error {
    position: absolute;
    bottom: 8px;
    left: 0;
    right: 0;
    font-size: 12px;
    line-height: 18px;
    text-align: center;
    color: var(--color-error, #FF2626);
}

.preform__field_select {
    max-width: 260px;
}

.preform__control {
    background-color: #fff;
    width: 100%;
    height: 80px;
    padding: 24px 40px;
    border: 1px solid var(--color-dark, #002643);
    border-radius: 8px;
    font-size: 22px;
    font-weight: 400;
    text-align: center;
    color: var(--color-dark, #002643);
}

.preform__control::placeholder {
    color: var(--color-dark, #002643);
}

.preform__control:focus::placeholder {
    opacity: 0;
}

select.preform__control {
    text-align: left;
    padding: 24px 50px 24px 40px;
    background: #fff url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTYiIGhlaWdodD0iMTQiIHZpZXdCb3g9IjAgMCAxNiAxNCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICAgIDxwYXRoIGQ9Ik04IDE0TC02LjgzNDNlLTA3IC00LjQ1MDllLTA3TDE2IDkuNTM2NzRlLTA3TDggMTRaIiBmaWxsPSIjMUIxQzFDIi8+Cjwvc3ZnPgogICAg) no-repeat right 30px center;
}

.preform__submit {
    margin-left: 14px;
    width: 100%;
    max-width: 196px;
}

.container {
    width: 100%;
    max-width: 1380px;
    margin: 0 auto;
    padding: 0 45px;
}

.header {
    background-color: var(--color-dark);
    padding: 21px 0;
}

.header__logo {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 155px;
    height: 42px;
}

.header__logo img {
    width: 100%;
}

.header__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1330px;
}

.header-nav {
    margin: 0 80px 0 auto;
    display: flex;
    align-items: center;
    gap: 44px;
}

.header-nav__link {
    display: inline-flex;
    border-bottom: 1px solid transparent;
    font-size: 16px;
    font-weight: 400;
    text-decoration: none;
    color: #fff;
    cursor: pointer;
}

.header-nav__link:hover {
    border-color: currentColor;
}

.header-nav__link.active {
    color: var(--color-blue-light, #73C2FF);
}

.header__cta {
    padding: 10px 20px 10px 10px;
    font-size: 16px;
    font-weight: 400;
    text-transform: capitalize;
    letter-spacing: normal;
    cursor: pointer;
}

.header__burger {
    display: none;
    width: 38px;
    height: 20px;
    padding: 0;
    margin-left: 33px;
    background: transparent;
    border: 0;
    cursor: pointer;
}

.header__burger-line {
    display: block;
    height: 2px;
    background: #fff;
    border-radius: 1px;
    margin: 3px 0;
}

.header_form {
    background-color: #fff;
    padding: 30px 0;
    box-shadow: 0 10px 30px 0 rgba(77, 85, 89, 0.10);
}

.header_form .header__inner {
    justify-content: center;
}

.mnav {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 1000;
}

.mnav__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .4);
    opacity: 0;
    transition: opacity .25s ease;
}

.mnav__panel {
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    width: min(86vw, 320px);
    background: var(--color-blue-bg, #D7ECFF);
    box-shadow: -24px 0 48px rgba(0, 0, 0, .25);
    transform: translateX(100%);
    transition: transform .28s ease;
    padding: 20px 18px 28px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.mnav__close {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    align-self: flex-end;
    width: 36px;
    height: 36px;
    border-radius: 0;
    background: var(--color-dark, #002643);
    color: #fff;
    font-size: 22px;
    line-height: 36px;
    border: 0;
    cursor: pointer;
}

.mnav__nav {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
}

.mnav__link {
    display: inline-flex;
    font-size: 20px;
    font-weight: 600;
    color: var(--color-dark, #002643);
    border-bottom: 1px solid transparent;
}

.mnav__link:hover,
.mnav__link.active {
    border-color: var(--color-dark, #002643);
}

.mnav.is-open {
    pointer-events: auto;
}

.mnav.is-open .mnav__backdrop {
    opacity: 1;
}

.mnav.is-open .mnav__panel {
    transform: translateX(0);
}

.footer {
    padding: 30px 0;
    background-color: var(--color-dark, #002643);
    border-bottom: 10px solid var(--color-blue, #0090FF);
}

.footer__logo {
    width: 122px;
    height: 33px;
}

.footer__logo img {
    width: 100%;
}

.footer__inner {
    max-width: 1200px;
}

.footer__cta {
    padding: 10px 20px 10px 10px;
    font-size: 16px;
    font-weight: 400;
    text-transform: capitalize;
    letter-spacing: normal;
    cursor: pointer;
}

.footer__top {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer__divider {
    border-color: #fff;
    margin: 27px auto 25px
}

.footer__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.footer-nav__list {
    display: flex;
    gap: 30px;
}

.footer-nav__link {
    display: inline-flex;
    border-bottom: 1px solid transparent;
    color: #fff;
    font-size: 16px;
    font-weight: 400;
    text-decoration: none;
    transition: .2s;
}

.footer-nav__link:hover {
    border-color: currentColor;
}

.footer-nav__link.active {
    color: var(--color-blue-light, #73C2FF);
}

.footer__copy-wrap {
    display: flex;
    align-items: center;
    gap: 30px;
}

.footer__copy {
    font-size: 16px;
    font-weight: 400;
    color: #fff;
    white-space: nowrap;
}

/* HOMEPAGE */
.hero {
    padding: 100px 0 130px;
    overflow: hidden;
    position: relative;
}

.hero__inner {
    position: relative;
    z-index: 1;
}

.hero__art {
    position: absolute;
    width: 560px;
    height: 580px;
    bottom: 0;
    z-index: 0;
}

.hero__art::before {
    content: '';
    width: 870px;
    height: 870px;
    border-radius: 50%;
    background-color: #CCE9FF;
    position: absolute;
    top: 0;
    opacity: 0.5;
    z-index: -1;
}

.hero__art_left {
    left: 0;
}

.hero__art_left::before {
    top: 0;
    right: 130px;
}

.hero__art_right {
    right: 0;
}

.hero__art_right::before {
    top: 0;
    left: 135px;
}

.hero__title {
    width: 100%;
    max-width: 900px;
    margin: 0 auto 20px;
    color: #002643;
    text-align: center;
    font-family: "Lora", serif;
    font-size: 64px;
    font-weight: 700;
}

.hero__text {
    margin: 0 auto 100px;
    text-align: center;
    font-size: 22px;
    font-weight: 400;
    text-transform: capitalize;
    color: var(--color-dark, #002643);
}

.hero__form {
    width: 100%;
    max-width: 690px;
    padding: 12px;
    border-radius: 8px;
    background-color: var(--color-dark, #002643);
}


.services {
    background-color: #002643;
    padding: 100px 0 130px;
}

.services__title {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 80px;
    font-family: "Lora", serif;
    font-size: 64px;
    font-weight: 700;
    text-align: center;
    color: #fff;
}

.services__title-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 58px;
    height: 58px;
    margin: 0 40px 0 0;
    padding: 13px 17px;
    border-radius: 4px;
    background-color: #fff;
}

.services__title-icon img {
    width: 100%;
}

.services__grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px 43px;
}

.service-card {
    display: flex;
    align-items: center;
    flex-direction: column;
    width: 100%;
    max-width: 400px;
    padding: 54px 40px 52px;
    border-radius: 34px;
    background: #FFF;
    box-shadow: 0 4px 40px 0 rgba(139, 154, 162, 0.25);
    transition: all .2s;
}
.service-card:not(.service-card_cta):hover {
    transform: translate(0, -5px);
}

.service-card_cta {
    padding: 54px 37px 52px;
}

.service-card__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 117px;
    height: 117px;
    margin: 0 auto 26px;
    border-radius: 12px;
    background: #ffffff;
    box-shadow: 0 4px 44px 0 rgba(112, 197, 253, 0.30);
}

.service-card__title {
    margin: 0 auto 14px;
    font-family: "Lora", serif;
    font-size: 28px;
    font-weight: 700;
    text-align: center;
    color: #002643;
}

.service-card__text {
    font-size: 18px;
    font-weight: 400;
    text-align: center;
    color: #3F3F3F;
}

.service-card__button {
    margin: auto auto 0;
    padding: 25px 10px;
    width: 100%;
    font-size: 22px;
}

.service-card__illustration {
    width: 120px;
    height: 150px;
}

.steps {
    padding: 120px 0;
}

.steps__title {
    margin: 0 auto 20px;
    font-family: "Lora", serif;
    font-size: 54px;
    font-weight: 700;
    line-height: 60px;
    text-align: center;
}

.steps__subtitle {
    margin: 0 auto 80px;
    font-size: 22px;
    font-weight: 400;
    text-transform: capitalize;
    text-align: center;
}

.steps__media {
    width: 100%;
    max-width: 445px;
    height: 580px;
}

.steps__inner {
    display: flex;
    gap: 125px;
    align-items: center;
    justify-content: center;
}

.steps__list {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.steps__list:before {
    content: '';
    display: block;
    width: 1px;
    position: absolute;
    left: 12px;
    top: 70px;
    bottom: 70px;
    background-color: var(--color-gray, #B7B7B7);
    z-index: -1;
}

.steps-item {
    display: flex;
    align-items: center;
}

.steps-item__num {
    width: 25px;
    height: 70px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 14px;
    font-family: var(--font-heading), serif;
    font-size: 36px;
    font-weight: 700;
    color: var(--color-dark, #002643);
    background-color: #fff;
}

.steps-item__content {
    display: flex;
    align-items: center;
}

.steps-item__icon {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 140px;
    width: 140px;
    height: 140px;
    margin-right: 16px;
    border-radius: 50%;
    box-shadow: 0 4px 40px 0 rgba(0, 0, 0, 0.10);
}

.steps-item__icon:after {
    content: '';
    display: block;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background-color: var(--color-dark, #002643);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
}

.steps-item__title {
    font-family: var(--font-heading, "Lora"), serif;
    font-size: 28px;
    font-weight: 700;
    color: var(--color-dark, #002643);
}

.cta-bar__inner {
    display: flex;
    justify-content: space-between;
    max-width: 1290px;
    padding: 12px 12px 12px 45px;
    border-radius: 8px;
    background-color: var(--color-dark, #002643);
}

.cta-bar__hint {
    display: flex;
    align-items: center;
    gap: 16px;
    max-width: 440px;
    font-size: 16px;
    font-weight: 400;
    color: #fff;
}

.cta-bar__hint b {
    display: block;
    padding-right: 25px;
    border-right: 2px solid #D9D9D9;
    font-size: 52px;
    font-weight: 400;
    line-height: 52px;
}

.cta-bar__form {
    margin: 0;
    width: 100%;
    max-width: 670px;
    justify-content: flex-end;
}

.why {
    padding: 100px 0;
}

.why__title {
    margin: 0 0 50px;
    font-family: var(--font-heading), serif;
    font-size: 54px;
    font-weight: 700;
    line-height: 60px;
    color: var(--color-dark, #002643);
}

.why__title span {
    white-space: nowrap;
}

.why__inner {
    position: relative;
    padding: 70px 0 70px 78px;
    background-color: #ECFBFF;
}

.why__panel {
    position: relative;
    max-width: 700px;
    z-index: 1;
}

.why__illustration {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: 0;
}

.why__list {
    display: grid;
    grid-template-columns: 340px 1fr;
    gap: 30px 11px;
}

.why-item {
    display: flex;
    align-items: center;
    gap: 30px;
    font-size: 20px;
    font-weight: 600;
    color: var(--color-dark, #002643);
}

.why-item__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 78px;
    width: 78px;
    height: 78px;
    border-radius: 6px;
    background-color: var(--color-dark, #002643);
    box-shadow: 0 4px 44px 0 rgba(0, 0, 0, 0.10);
}


.all-services {
    padding: 70px 0 75px;
    background: var(--color-blue-bg, #D7ECFF);
}

.all-services__inner {
    max-width: 1470px;
}

.all-services__heading {
    display: flex;
    align-items: center;
    gap: 95px;
    margin: 0 0 70px;
}

.all-services__title {
    font-family: var(--font-heading), serif;
    font-size: 54px;
    font-weight: 700;
    line-height: 60px;
    white-space: nowrap;
}

.all-services__search {
    width: 100%;
    max-width: 910px
}

.all-services__input {
    width: 100%;
    height: 58px;
    border: 1px solid #1B1C1C;
    border-radius: 6px;
    padding: 0 24px;
    font-family: var(--font-main), sans-serif;
    font-size: 20px;
    font-weight: 600;
    background: #fff;
    color: #1B1C1C;
}

.all-services__layout {
    display: flex;
    gap: 95px;
    align-items: start;
}

/* alphabet box */
.alphabet {
    flex: 0 0 300px;
    width: 100%;
    max-width: 300px;
    padding: 30px;
    border-radius: 6px;
    background: var(--color-dark, #002643);
    box-shadow: 0 1.625px 19.983px 4.874px rgba(23, 49, 39, 0.08);
}

.alphabet__list {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: center;
    grid-template-columns: repeat(4, 1fr);
    gap: 9px;
}

.alphabet__key {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 53px;
    height: 53px;
    border-radius: 10px;
    cursor: pointer;
    color: #fff;
    background: transparent;
    border: 0;
    padding: 0;
    font-family: var(--font-main), sans-serif;
    font-size: 26px;
    font-weight: 600;
    line-height: 40px;
}

.alphabet__key:hover {
    color: #fff;
}

.alphabet__key_active {
    background: var(--color-blue, #0090FF);
    color: #fff;
}

.alphabet__key:disabled {
    opacity: .35;
    cursor: not-allowed;
}

.all-services__listwrap {
    position: relative;
    display: flex;
    justify-content: space-between;
    width: 100%;
    gap: 10px;
}

.services-scroller {
    width: 100%;
    max-height: 450px;
    overflow: auto;
    padding-right: 22px;
}

.services-list {
    display: grid;
    grid-template-columns: repeat(3, minmax(270px, 1fr));
    grid-auto-rows: auto;
    gap: 28px 50px;
    list-style: none;
    padding: 4px;
    margin: 0;
}

.services-list__item {
    break-inside: avoid;
}

.services-list__item.is-hidden {
    display: none;
}

.services-list__link {
    color: #1b2430;
    text-decoration: none;
}

.services-list__link:hover {
    color: #0090FF;
}

.all-services__scrollbar {
    width: 18px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
}

.all-services__arrow {
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
}

.all-services__arrow_up {
    border-bottom: 8px solid #565C63;
}

.all-services__arrow_down {
    border-top: 8px solid #565C63;
}

.all-services__track {
    width: 6px;
    flex: 1;
    background: #fff;
    position: relative;
    box-shadow: 0 4px 40px 0 rgba(0, 0, 0, 0.10);
}

.all-services__thumb {
    position: absolute;
    left: 0;
    right: 0;
    height: 38px;
    background: var(--color-dark, #002643);
    box-shadow: 0 4px 40px 0 rgba(0, 0, 0, 0.10);
    transform: translateY(0);
}

/* native scrollbar (webkit) — тонкая */
.services-scroller::-webkit-scrollbar {
    width: 8px;
}

.services-scroller::-webkit-scrollbar-thumb {
    background: #0c2236;
    border-radius: 4px;
}

.services-scroller::-webkit-scrollbar-track {
    background: #ffffff70;
    border-radius: 4px;
}

.services-scroller {
    overflow: auto;
    padding-right: 0;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.services-scroller::-webkit-scrollbar {
    width: 0;
    height: 0;
}

.hl {
    background: var(--color-blue-light, #73C2FF);
    color: #0c2236;
    border-radius: 4px;
    padding: 0 2px;
}

.hl_focus {
    background: var(--color-blue, #0090FF);
    color: #fff;
}

/* CONTACT PAGE */
.contact {
    padding: 80px 0 140px;
}

.contact__inner {
    max-width: 1200px;
}

.contact__title {
    margin: 0 0 30px;
    font-family: var(--font-heading), serif;
    font-size: 64px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    color: var(--color-dark, #002643);
}

.contact__subtitle {
    margin: 0 0 10px;
    font-family: var(--font-heading), serif;
    font-size: 28px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    color: var(--color-dark, #002643);
}

.contact__text {
    margin: 0 0 85px;
    font-size: 22px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-transform: capitalize;
    color: var(--color-dark, #002643);
}

.contact__grid {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 30px;
}

.contact__content {
    width: 100%;
    max-width: 600px;
    padding: 30px 0 0 0;
    border-top: 1px solid var(--color-dark, #002643);
}

.contact__map {
    width: 100%;
    max-width: 445px;
    height: 420px;
}

.contact__map iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

.contact-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
}

.contact-item__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 55px;
    width: 55px;
    height: 55px;
    margin: 0 30px 0 0;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 4px 44px 0 rgba(112, 197, 253, 0.30);
}

.contact-item__data {
    display: flex;
    align-items: baseline;
    width: 100%;
    margin: 10px 0 0;
}

.contact-item__label {
    width: 100%;
    max-width: 200px;
    margin: 0 25px 0 0;
    font-family: var(--font-heading), serif;
    font-size: 28px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    color: var(--color-dark, #002643);
}

.contact-item__value {
    font-size: 22px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.contact-item__link {
    border-bottom: 1px solid transparent;
}

.contact-item__link:hover {
    color: var(--color-blue, #0090FF);;
    border-color: var(--color-blue, #0090FF);;
}


.lets-talk {
    padding: 80px 0;
    background-color: var(--color-blue-bg, #D7ECFF);
}

.lets-talk__inner {
    display: flex;
    max-width: 1200px;
    gap: 70px;
    justify-content: space-between;
}

.lets-talk__content {
    width: 100%;
    max-width: 690px;
}

.lets-talk__title {
    max-width: 620px;
    margin: 0 0 30px;
    font-family: var(--font-heading), serif;
    font-size: 64px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

.lets-talk__text {
    margin: 0 0 60px;
    font-size: 22px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-transform: capitalize;
}

.lets-talk__form {
    width: 100%;
    max-width: 690px;
    padding: 12px;
    border-radius: 8px;
    background-color: var(--color-dark, #002643);
}

/* HOW IT WORKS PAGE */
.hiw-hero {
    padding: 100px 0 95px;
    overflow: hidden;
    position: relative;
}

.hiw-hero__inner {
    position: relative;
    z-index: 1;
}

.hiw-hero__title {
    max-width: 915px;
    margin: 0 auto 50px;
    font-family: var(--font-heading), serif;
    font-size: 64px;
    font-weight: 700;
    line-height: normal;
    color: var(--color-dark, #002643);
    text-align: center;
}

.hiw-hero__text {
    max-width: 805px;
    margin: 0 auto;
    font-size: 22px;
    font-weight: 400;
    line-height: normal;
    text-transform: capitalize;
}

.hiw-hero__text ul {
    list-style: disc;
    padding-left: 35px;
}

.hiw-hero__art {
    position: absolute;
    width: 560px;
    height: 580px;
    bottom: 0;
    z-index: 0;
}

.hiw-hero__art::before {
    content: '';
    width: 870px;
    height: 870px;
    border-radius: 50%;
    background-color: #CCE9FF;
    position: absolute;
    top: 0;
    opacity: 0.5;
    z-index: -1;
}

.hiw-hero__art_left {
    left: 0;
}

.hiw-hero__art_left::before {
    top: 0;
    right: 135px;
}

.hiw-hero__art_right {
    right: 0;
}

.hiw-hero__art_right::before {
    top: 0;
    left: 140px;
}

.ready-to-action {
    padding: 70px 0;
}

.ready-to-action__inner {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    padding: 90px 93px;
    background-color: #ECFBFF;
    overflow: hidden;
}

.ready-to-action__inner::before {
    content: '';
    position: absolute;
    top: -98px;
    right: -94px;
    display: block;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background-color: #FFF4CA;
    z-index: 0;
}

.ready-to-action__inner::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    display: block;
    width: 573px;
    background-color: #A0D2FF;
    clip-path: polygon(0 100%, 100% 0, 100% 100%);
}

.ready-to-action__panel {
    max-width: 690px;
    position: relative;
    z-index: 1;
}

.ready-to-action__title {
    margin: 0 0 20px;
    font-family: var(--font-heading), serif;
    font-size: 54px;
    font-weight: 700;
    line-height: 60px;
    color: var(--color-dark, #002643);
}

.ready-to-action__text {
    max-width: 550px;
    margin: 0 0 62px;
    font-family: var(--font-heading), serif;
    font-size: 28px;
    font-weight: 700;
    line-height: normal;
    color: var(--color-dark, #002643);
}

.ready-to-action__form {
    width: 100%;
    max-width: 690px;
    padding: 12px;
    margin: 0;
    border-radius: 8px;
    background-color: var(--color-dark, #002643);
}

.ready-to-action__illustration {
    position: relative;
    width: 325px;
    height: 340px;
}

.ready-to-action__illustration-img {
    position: relative;
    height: 100%;
    z-index: 1;
}

.terms-content {
    padding: 80px 0 90px;
}

.terms-content h1 {
    margin: 0 0 30px;
    font-family: var(--font-heading), serif;
    font-size: 64px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

.terms-content p {
    margin: 0 0 20px;
    font-family: var(--font-main), sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.terms-content p > strong {
    display: inline-block;
    margin: 20px 0 0;
    font-family: var(--font-main), sans-serif;
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

.terms-content a {
    display: inline-flex;
    border-bottom: 1px solid transparent;
    color: var(--color-blue, #0090FF);
    text-decoration: none;
    cursor: pointer;
    transition: 0.2s;
}

.terms-content a:hover {
    border-color: var(--color-blue, #0090FF);
}

.thank-you {
    display: flex;
    align-items: center;
    height: 100%;
    padding: 86px 0 95px;
    background: var(--color-blue-bg, #D7ECFF);
}

.thank-you__inner {
    display: flex;
    align-items: center;
    gap: 70px;
    max-width: 1490px;
}

.thank-you__illustration {
    flex: 0 0 350px;
    width: 100%;
    max-width: 350px;
}

.thank-you__text {
    font-family: var(--font-heading), serif;
    font-size: 64px;
    font-weight: 700;
    line-height: normal;
    color: var(--color-dark, #002643);
}
