@charset "utf-8";
@import url("https://fonts.googleapis.com/css2?family=Roboto+Flex:opsz,wght,XOPQ,XTRA,YOPQ,YTDE,YTFI,YTLC,YTUC@8..144,100..1000,96,468,79,-203,738,514,712&display=auto");

*,
*::before,
*::after {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
    border: 0;
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
    text-decoration: none;
    vertical-align: baseline;
}

html {
    height: 100%;
    font-size: 100%;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    scroll-behavior: smooth;
}

body {
    height: 100%;
    background-color: #FFFFFF;
    color: #142442;
    font-family: "Roboto Flex", sans-serif;
    font-size: 16px;
    line-height: 1;
    font-weight: 400;
    cursor: default;
    scroll-behavior: smooth;
}

input,
textarea,
select,
button {
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
    border: none;
    outline: none;
    background: none;
}

div:focus,
span:focus,
input:focus,
textarea:focus,
select:focus,
button:focus {
    outline: none;
    background-image: none;
}

div,
span,
a,
input,
textarea,
select,
button {
    -webkit-tap-highlight-color: transparent;
}

div::-moz-focus-inner,
span::-moz-focus-inner,
input::-moz-focus-inner,
textarea::-moz-focus-inner,
select::-moz-focus-inner,
button::-moz-focus-inner {
    border: 0;
}

a {
    color: inherit;
    text-decoration: none;
}

img,
form {
    display: block;
}

.touch {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
}

.noselect {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
}

/* BAR */

.bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding-top: 16px;
    padding-bottom: 16px;
    padding-left: 48px;
    padding-right: 48px;
    border-bottom: solid 1px transparent;
    background-color: transparent;
    transition: 0.25s;
    z-index: 99;
}

.bar-compact {
    border-bottom-color: rgba(20, 36, 66, 0.1);
    background-color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(18px);
}

.bar-layout {
    display: flex;
}

.bar-brand {
    flex: auto;
    display: flex;
    align-items: center;
    transition: 0.25s;
}

.bar-home .bar-brand {
    opacity: 0;
}

.bar-compact .bar-brand {
    opacity: 1;
}

.bar-brand-link {
    display: inline-flex;
}

.bar-brand-link img {
    width: auto;
    height: 38px;
    transition: 0.25s;
}

.bar-nav {
    flex: none;
    display: flex;
    align-items: center;
}

.bar-buttons {
    display: flex;
    column-gap: 40px;
    transition: 0.25s;
}

.bar-compact .bar-buttons {
    padding-top: 0px;
}

.bar-button {
    position: relative;
    color: #142442;
    font-size: 14px;
    line-height: 14px;
    font-weight: 600;
    text-transform: uppercase;
    transition: 0.25s;
}

.bar-button:hover {
    opacity: 0.5;
}

.touch .bar-button:hover {
    opacity: 1;
}

.bar-button:active,
.touch .bar-button:active {
    opacity: 0.5;
}

.bar-button-on {
    font-weight: 800;
    opacity: 1;
}

.bar-button-on:hover {
    font-weight: 800;
    opacity: 1;
}

.touch .bar-button-on:hover {
    font-weight: 800;
    opacity: 1;
}

.bar-button-on:active,
.touch .bar-button-on:active {
    font-weight: 800;
    opacity: 1;
}

.bar-button-bullet {
    position: absolute;
    bottom: -12px;
    left: 50%;
    width: 6px;
    height: 6px;
    margin-left: -3px;
    border-radius: 20px;
    background-color: #141F39;
    opacity: 0;
    transition: 0.25s;
}

.bar-button:hover .bar-button-bullet {
    opacity: 0.5;
}

.touch .bar-button:hover .bar-button-bullet {
    opacity: 0;
}

.bar-button:active .bar-button-bullet,
.touch .bar-button:active .bar-button-bullet {
    opacity: 0.5;
}

.bar-button-on .bar-button-bullet {
    opacity: 1;
}

.bar-button-on:hover .bar-button-bullet {
    opacity: 1;
}

.touch .bar-button-on:hover .bar-button-bullet {
    opacity: 1;
}

.bar-button-on:active .bar-button-bullet,
.touch .bar-button-on:active .bar-button-bullet {
    opacity: 1;
}

.bar-actions {
    display: flex;
    padding-top: 11px;
    padding-left: 70px;
}

.bar-action {
    display: inline-flex;
    align-items: center;
    column-gap: 5px;
    color: #142442;
    font-size: 14px;
    line-height: 14px;
    font-weight: 600;
    text-transform: uppercase;
    opacity: 0.25;
    transition: 0.25s;
}

.bar-action:hover {
    opacity: 0.5;
}

.touch .bar-action:hover {
    opacity: 0.25;
}

.bar-action:active,
.touch .bar-action:active {
    opacity: 0.5;
}

.bar-action svg {
    display: block;
}

.bar-menu {
    display: none;
    align-items: flex-start;
    padding-left: 16px;
}

.bar-menu-btn {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 40px;
    height: 28px;
    padding-top: 6px;
    padding-bottom: 6px;
    padding-left: 8px;
    padding-right: 8px;
    margin-top: -6px;
    cursor: pointer;
}

.bar-menu-line {
    width: 100%;
    height: 2px;
    background-color: #142442;
    transition: 0.25s;
}

.bar-menu-btn:hover .bar-menu-line {
    opacity: 0.5;
}

.touch .bar-menu-btn:hover .bar-menu-line {
    opacity: 1;
}

.bar-menu-btn:active .bar-menu-line,
.touch .bar-menu-btn:active .bar-menu-line {
    opacity: 0.5;
}

.bar-fix {
    height: 71px;
    display: none;
}

/* PANEL */

.panel {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    max-width: 540px;
    height: 100%;
    background-color: #142442;
    animation: panel-anima 0.35s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
    overflow: auto;
    z-index: 120;
}

@keyframes panel-anima {
    0% {
        transform: translate(10%);
        opacity: 0;
    }

    100% {
        transform: translate(0);
        opacity: 1;
    }
}

.panel-bg {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(127, 167, 247, 0.5);
    backdrop-filter: blur(12px);
    animation: panel-bg-anima 0.35s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
    z-index: 119;
}

@keyframes panel-bg-anima {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

.panel-frame {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    padding-top: 10%;
    padding-bottom: 10%;
    padding-left: 10%;
    padding-right: 10%;
}

.panel-layout {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
}

.panel-actions {
    display: flex;
    justify-content: center;
    column-gap: 16px;
}

.panel-close {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
    cursor: pointer;
}

.panel-close img {
    display: block;
    width: 16px;
    height: 16px;
    transition: 0.5s;
}

.panel-close:hover img {
    transform: rotate(180deg);
}

.touch .panel-close:hover img {
    transform: rotate(0deg);
}

.panel-close:active img,
.touch .panel-close:active img {
    transform: rotate(180deg);
}

.panel-buttons {
    flex: auto;
    display: flex;
    align-items: center;
    padding-bottom: 48px;
}

.panel-buttons-layout {
    display: flex;
    flex-direction: column;
    row-gap: 8px;
    width: 100%;
    padding-top: 32px;
}

.panel-networks {
    flex: none;
    display: flex;
    justify-content: center;
    column-gap: 16px;
    padding-bottom: 32px;
}

.panel-link-block {
    position: relative;
    width: 100%;
    padding-top: 8px;
    padding-bottom: 8px;
    text-align: center;
    opacity: 0;
    transform: translateY(-32px);
    animation-name: panel-link-anima;
    animation-duration: 0.4s;
    animation-fill-mode: forwards;
    transition: 0.25s;
}

.panel-link {
    display: inline-block;
    color: #FFFFFF;
    font-size: 20px;
    line-height: 20px;
    font-weight: 500;
    cursor: pointer;
    transition: 0.25s;
}

.panel-link:hover {
    opacity: 0.5;
}

.touch .panel-link:hover {
    opacity: 1;
}

.panel-link:active,
.touch .panel-link:active {
    opacity: 0.5;
}

.panel-link-on {
    opacity: 0.5;
}

.panel-link-on:hover {
    opacity: 0.5;
}

.touch .panel-link-on:hover {
    opacity: 0.5;
}

.panel-link-on:active,
.touch .panel-link-on:active {
    opacity: 0.5;
}

.panel-link-block:nth-child(1) {
    animation-delay: 0.1s;
}

.panel-link-block:nth-child(2) {
    animation-delay: 0.2s;
}

.panel-link-block:nth-child(3) {
    animation-delay: 0.3s;
}

.panel-link-block:nth-child(4) {
    animation-delay: 0.4s;
}

.panel-link-block:nth-child(5) {
    animation-delay: 0.5s;
}

.panel-link-block:nth-child(6) {
    animation-delay: 0.6s;
}

@keyframes panel-link-anima {
    from {
        opacity: 0;
        transform: translateY(-32px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.panel-social {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 34px;
    height: 34px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 200px;
    opacity: 0;
    cursor: pointer;
    transform: scale(0.75);
    animation-name: panel-social-anima;
    animation-duration: 0.5s;
    animation-fill-mode: forwards;
    transition: 0.25s;
}

.panel-social:hover {
    margin-top: -6px;
}

.touch .panel-social:hover {
    margin-top: 0px;
}

.panel-social:active,
.touch .panel-social:active {
    margin-top: -6px;
}

.panel-social img {
    width: 30px;
    height: 30px;
    transition: 0.25s;
}

.panel-social:hover img {
    opacity: 0.4;
}

.touch .panel-social:hover img {
    opacity: 1;
}

.panel-social:active img,
.touch .panel-social:active img {
    opacity: 0.4;
}

.panel-social:nth-child(1) {
    animation-delay: 0.5s;
}

.panel-social:nth-child(2) {
    animation-delay: 0.75s;
}

.panel-social:nth-child(3) {
    animation-delay: 1s;
}

.panel-social:nth-child(4) {
    animation-delay: 1.25s;
}

@keyframes panel-social-anima {
    from {
        opacity: 0;
        transform: scale(0.75);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* GLOBAL */

.margin {
    padding-left: 48px;
    padding-right: 48px;
}

.block {
    width: 100%;
    max-width: 1248px;
    margin: 0 auto;
    padding-left: 24px;
    padding-right: 24px;
}

.block-alt {
    width: 100%;
    max-width: 1264px;
    margin: 0 auto;
    padding-left: 16px;
    padding-right: 16px;
}

.block-alt-2 {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding-left: 24px;
    padding-right: 24px;
}

.block-alt-3 {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    padding-left: 24px;
    padding-right: 24px;
}

.pretitle {
    padding-bottom: 8px;
    font-size: 30px;
    line-height: 120%;
    font-weight: 300;
    text-transform: uppercase;
}

.pretitle-animated {
    opacity: 0;
    animation-name: header-intro-anima;
    animation-duration: 2s;
    animation-delay: 0.5s;
    animation-fill-mode: forwards;
}

.title {
    font-size: 60px;
    line-height: 110%;
    font-weight: 600;
}

.title-animated {
    opacity: 0;
    transform: translateX(15%);
    animation-name: header-title-anima;
    animation-duration: 2s;
    animation-fill-mode: forwards;
}

.subtitle {
    padding-bottom: 10px;
    font-size: 25px;
    line-height: 120%;
    font-weight: 700;
}

.text {
    color: #52525B;
    font-size: 18px;
    line-height: 160%;
}

.text-animated {
    opacity: 0;
    animation-name: header-intro-anima;
    animation-duration: 2s;
    animation-delay: 0.5s;
    animation-fill-mode: forwards;
}

.text p {
    padding-bottom: 16px;
}

.text ul {
    padding-bottom: 16px;
    padding-left: 48px;
}

.heading {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    padding-left: 16px;
    padding-right: 16px;
}

.heading-alt {
    display: grid;
    grid-template-columns: 140px 1fr 140px;
    padding-left: 16px;
    padding-right: 16px;
}

.heading-title {
    font-size: 60px;
    line-height: 100%;
    font-weight: 700;
    letter-spacing: -1px;
    text-align: center;
}

.heading-title-alt {
    font-size: 48px;
}

.heading-title-alt-2 {
    width: 100%;
    max-width: 540px;
    margin: 0 auto;
}

.heading-caption {
    width: 100%;
    max-width: 580px;
    margin: 0 auto;
    padding-top: 16px;
    color: #565F72;
    font-size: 16px;
    line-height: 160%;
    text-align: center;
}

.heading-caption-alt {
    max-width: 380px;
}

.heading-actions {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.heading-actions-alt {
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
    column-gap: 10px;
    padding-right: 24px;
}

.button {
    display: inline-flex;
    align-items: center;
    column-gap: 10px;
    height: 40px;
    padding-left: 24px;
    padding-right: 24px;
    border-radius: 200px;
    background-color: #142442;
    color: #FFFFFF;
    font-size: 12px;
    line-height: 12px;
    font-weight: 700;
    font-style: italic;
    text-transform: uppercase;
    transition: 0.25s;
}

.button:hover {
    background-color: #213A68;
    color: #6E94E2;
}

.touch .button:hover {
    background-color: #142442;
    color: #FFFFFF;
}

.button:active,
.touch .button:active {
    background-color: #213A68;
    color: #6E94E2;
}

.button svg {
    display: block;
}

.button path {
    fill: #FFFFFF;
    transition: 0.25s;
}

.button:hover path {
    fill: #6E94E2;
}

.touch .button:hover path {
    fill: #FFFFFF;
}

.button:active path,
.touch .button:active path {
    fill: #6E94E2;
}

.button-alt {
    display: inline-flex;
    align-items: center;
    column-gap: 10px;
    height: 40px;
    padding-left: 24px;
    padding-right: 24px;
    border-radius: 200px;
    background-color: #D6E1EE;
    color: #142442;
    font-size: 12px;
    line-height: 12px;
    font-weight: 700;
    font-style: italic;
    text-transform: uppercase;
    transition: 0.25s;
}

.button-alt:hover {
    background-color: #E6EDF5;
    color: #6E94E2;
}

.touch .button-alt:hover {
    background-color: #D6E1EE;
    color: #142442;
}

.button-alt:active,
.touch .button-alt:active {
    background-color: #E6EDF5;
    color: #6E94E2;
}

.button-alt svg {
    display: block;
}

.button-alt path {
    fill: #142442;
    transition: 0.25s;
}

.button-alt:hover path {
    fill: #6E94E2;
}

.touch .button-alt:hover path {
    fill: #142442;
}

.button-alt:active path,
.touch .button-alt:active path {
    fill: #6E94E2;
}

/* HEADER */

.header {
    position: relative;
    padding-top: 71px;
    padding-bottom: 124px;
    margin-top: 0px;
    margin-bottom: 0px;
    overflow: hidden;
}

.header-full {
    width: 100%;
    height: 100%;
    padding: 24px;
    padding-top: 71px;
}

.header-diagonal {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #F0F3F6;
    transform: skewY(-3deg);
    transform-origin: 0 100%;
}

.header-diagonal-alt {
    top: -340px;
    background-color: #F0F3F6;
}

.header-diagonal-alt-2 {
    top: -240px;
    background-color: #F0F3F6;
}

.header-content {
    position: relative;
    padding-left: 24px;
    padding-right: 24px;
    background-color: #F0F3F6;
    color: #191933;
    z-index: 2;
}

.header-content-alt {
    background-color: transparent;
}

.header-portrait {
    position: relative;
    display: flex;
    align-items: flex-end;
    width: 100%;
    height: 100%;
    padding: 5%;
    border-radius: 10px;
    background-color: #B4C0CA;
    overflow: hidden;
}

.header-portrait-shadow {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 75%;
    background: linear-gradient(to bottom, rgba(25, 25, 51, 0) 0%, rgba(25, 25, 51, 0.7) 100%);
}

.header-portrait-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    animation-name: header-portrait-bg-anima;
    animation-duration: 60s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
}

@keyframes header-portrait-bg-anima {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.15);
    }

    100% {
        transform: scale(1);
    }
}

.header-layout {
    position: relative;
    display: grid;
    grid-template-columns: 1.16fr 1fr;
    column-gap: 24px;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 24px;
}

.header-layout-alt {
    padding-top: 72px;
}

.header-info {
    padding-top: 100px;
    padding-bottom: 80px;
}

.header-info-alt {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 0px;
    padding-bottom: 48px;
}

.header-info-alt-2 {
    position: relative;
    padding-top: 0px;
    padding-bottom: 0px;
}

.header-title {
    width: 100%;
    max-width: 580px;
    margin: 0 auto;
    padding-bottom: 20px;
    font-size: 80px;
    line-height: 100%;
    font-weight: 600;
    text-align: center;
    opacity: 0;
    transform: translateX(15%);
    animation-name: header-title-anima;
    animation-duration: 2s;
    animation-fill-mode: forwards;
}

@keyframes header-title-anima {
    0% {
        opacity: 0;
        transform: translateX(15%);
    }

    100% {
        opacity: 1;
        transform: translateX(0%);
    }
}

.header-title-2 {
    transform: translateY(-25%);
    animation-name: header-title-anima-2;
    animation-duration: 2s;
    animation-fill-mode: forwards;
}

@keyframes header-title-anima-2 {
    0% {
        opacity: 0;
        transform: translateY(-25%);
    }

    100% {
        opacity: 1;
        transform: translateY(0%);
    }
}

.header-title-alt {
    max-width: 440px;
    margin: unset;
    text-align: left;
}

.header-title-alt-2 {
    max-width: unset;
    margin: unset;
    color: #FFFFFF;
    text-align: left;
}

.header-intro {
    width: 100%;
    max-width: 580px;
    margin: 0 auto;
    font-size: 18px;
    line-height: 160%;
    text-align: center;
    opacity: 0;
    animation-name: header-intro-anima;
    animation-duration: 2s;
    animation-delay: 0.5s;
    animation-fill-mode: forwards;
}

@keyframes header-intro-anima {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 0.85;
    }
}

.header-intro-alt {
    max-width: 440px;
    margin: unset;
    text-align: left;
}

.header-intro-alt-2 {
    max-width: 440px;
    margin: unset;
    color: #FFFFFF;
    text-align: left;
}

.header-frame {
    position: relative;
    width: 100%;
    max-width: 1048px;
    padding-left: 24px;
    padding-right: 24px;
    margin: 0 auto;
}

.header-frame-picture {
    position: relative;
    width: 100%;
    padding-bottom: 56%;
    margin: 0 auto;
    border-radius: 10px;
    background-color: #E6EDF5;
    overflow: hidden;
    opacity: 0;
    transform: translateY(10%);
    animation-name: header-frame-picture-anima;
    animation-duration: 2s;
    animation-fill-mode: forwards;
}

@keyframes header-frame-picture-anima {
    0% {
        opacity: 0;
        transform: translateY(10%);
    }

    100% {
        opacity: 1;
        transform: translateY(0%);
    }
}

.header-frame-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url(../assets/services.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.header-silhouette-frame {
    padding-left: 6%;
}

.header-silhouette {
    width: 100%;
    padding-bottom: 132%;
    background-image: url(../assets/about.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    opacity: 0;
    transform: translateX(15%);
    animation-name: header-silhouette-anima;
    animation-duration: 2s;
    animation-fill-mode: forwards;
    border-radius: 10px;
    background-color: #E6EDF5;
}

.header-silhouette-alt {
    background-image: url(../assets/clients.jpg);
}

@keyframes header-silhouette-anima {
    0% {
        opacity: 0;
        transform: translateX(15%);
    }

    100% {
        opacity: 1;
        transform: translateX(0%);
    }
}

.header-button {
    position: absolute;
    bottom: 5%;
    left: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100px;
    height: 100px;
    margin-left: -50px;
    border-radius: 300px;
    background-color: #CED8E3;
    opacity: 0.75;
    animation: header-button-anima 2s ease-in-out infinite;
}

.header-button img {
    width: 80%;
    height: auto;
    transition: 0.25s;
}

.header-button:hover img {
    transform: scale(0.85);
}

.touch .header-button:hover img {
    transform: scale(1);
}

.header-button:active img,
.touch .header-button:active img {
    transform: scale(0.85);
}

.header-button-alt {
    display: none;
    z-index: 3;
}

@keyframes header-button-anima {
    0% {
        transform: translateY(0);
        opacity: 0.75;
    }

    50% {
        transform: translateY(14px);
        opacity: 1;
    }

    100% {
        transform: translateY(0);
        opacity: 0.75;
    }
}

/* DISPLAY */

.display {
    padding-top: 70px;
}

.display-swiper {
    touch-action: pan-y !important;
    --swiper-theme-color: #142442;
    --swiper-pagination-left: 0px;
    --swiper-pagination-right: 0px;
    --swiper-pagination-bottom: 0px;
    --swiper-pagination-bullet-size: 6px;
    --swiper-pagination-bullet-width: 6px;
    --swiper-pagination-bullet-height: 6px;
    --swiper-pagination-bullet-horizontal-gap: 4px;
    --swiper-pagination-bullet-inactive-color: rgb(20, 36, 66);
    --swiper-pagination-bullet-inactive-opacity: 0.3;
}

.display-slide {
    height: auto !important;
}

.display-swiper .swiper-slide {
    opacity: 0 !important;
    pointer-events: none !important;
}

.display-swiper .swiper-slide-active {
    opacity: 1 !important;
    pointer-events: auto !important;
}

.display-slide-layout {
    display: grid;
    grid-template-columns: 0.46fr 0.54fr;
    column-gap: 48px;
    width: 100%;
    height: 100%;
}

.slide-content {
    display: flex;
    align-items: center;
    padding-top: 0;
    padding-bottom: 10%;
    padding-left: 70px;
}

.slide-content>div {
    width: 100%;
}

.slide-brand {
    padding-bottom: 40px;
    transition: 0.25s;
}

.slide-brand-compact {
    opacity: 0;
    transform: translateY(-50%);
}

.slide-title {
    width: 100%;
    margin-left: -4px;
    font-size: 64px;
    line-height: 100%;
    font-weight: 600;
}

.display-slide-on .slide-title {
    animation-name: slide-title-anima;
    animation-duration: 1.5s;
    animation-fill-mode: forwards;
}

@keyframes slide-title-anima {
    0% {
        opacity: 0;
        transform: translateY(-8%);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.slide-caption {
    width: 100%;
    max-width: 520px;
    padding-top: 20px;
    font-size: 18px;
    line-height: 160%;
}

.display-slide-on .slide-caption {
    animation-name: slide-caption-anima;
    animation-duration: 2s;
    animation-fill-mode: forwards;
}

@keyframes slide-caption-anima {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

.slide-button {
    padding-top: 40px;
    padding-bottom: 40px;
    margin-left: -2px;
}

.slide-picture {
    display: flex;
    justify-content: center;
}

.slide-picture-frame {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
}

.slide-image {
    position: relative;
    width: 100%;
    padding-bottom: 100%;
    border-radius: 10px;
    overflow: hidden;
}

.slide-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    animation-name: slide-img-anima;
    animation-duration: 60s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
}

@keyframes slide-img-anima {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.15);
    }

    100% {
        transform: scale(1);
    }
}

.slide-detail {
    flex: none;
    padding-top: 12px;
    padding-bottom: 12px;
    font-size: 16px;
    line-height: 160%;
    text-transform: uppercase;
    text-align: center;
}

/* SKEW */

.skew {
    position: relative;
    padding-top: 170px;
    padding-bottom: 116px;
    margin-bottom: 84px;
}

.skew-alt {
    padding-top: 140px;
    padding-bottom: 264px;
    margin-top: -40px;
    margin-bottom: 0px;
}

.skew-diagonal {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #191933;
    transform: skewY(3deg);
    transform-origin: 0 100%;
}

.skew-alt .skew-diagonal {
    background-color: #F0F3F6;
    transform: skewY(-3deg);
}

.skew-content {
    position: relative;
    background-color: #191933;
    color: #FFFFFF;
    z-index: 2;
}

.skew-alt .skew-content {
    background-color: #F0F3F6;
    color: #191933;
}

/* SECTIONS */

.sections {
    display: flex;
    flex-direction: column;
    row-gap: 100px;
    padding-bottom: 124px;
    overflow: hidden;
}

.sections-alt {
    padding-top: 64px;
    padding-bottom: 72px;
}

.section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 10%;
}

.section-picture {
    order: 1;
}

.section-image {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 400px;
    max-height: 700px;
    border-radius: 10px;
    background-color: #E6EDF5;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.section-quote {
    position: absolute;
    left: -16px;
    bottom: 24px;
    width: 100%;
    max-width: 380px;
    padding-top: 32px;
    padding-bottom: 34px;
    padding-left: 36px;
    padding-right: 36px;
    border-radius: 10px;
    background-color: #213A68;
    color: #FFFFFF;
    font-size: 16px;
    line-height: 120%;
    font-weight: 300;
}

.section-quote-header {
    display: flex;
    column-gap: 12px;
}

.section-quote-profile {
    position: relative;
    width: 80px;
    height: 80px;
    margin-top: -46px;
    margin-left: -8px;
    border-radius: 300px;
    background-color: rgba(20, 36, 66, 0.2);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.section-quote-icon {
    display: block;
    position: absolute;
    bottom: -4px;
    left: 8px;
}

.section-quote-info {
    display: flex;
    align-items: center;
}

.section-quote-name {
    font-weight: 600;
}

.section-quote-role {
    font-weight: 400;
}

.section-quote-text {
    padding-top: 20px;
}

.section:nth-child(even) .section-quote {
    left: unset;
    right: 0;
}

.section-content {
    order: 2;
    padding-top: 48px;
    padding-bottom: 48px;
}

.section:nth-child(even) .section-picture {
    order: 2;
}

.section:nth-child(even) .section-content {
    order: 1;
}

.section-text {
    padding-top: 24px;
}

/* ABOUT */

.team {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    column-gap: 64px;
    row-gap: 72px;
    max-width: 1600px;
    margin: 0 auto;
    padding-bottom: 124px;
    padding-left: 64px;
    padding-right: 64px;
}

.team-picture {
    width: 100%;
    padding-bottom: 66.66666666666667%;
    border-radius: 10px;
    background-color: #E6EDF5;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.team-role {
    padding-top: 32px;
    padding-bottom: 4px;
    font-size: 20px;
    line-height: 120%;
    font-weight: 300;
    text-transform: uppercase;
}

.team-name {
    padding-bottom: 28px;
    font-size: 40px;
    line-height: 110%;
    font-weight: 600;
}

/* SERVICES */

.services-block {
    padding-top: 64px;
    padding-bottom: 112px;
    border-top: solid 1px rgba(20, 36, 66, 0.1);
}

.services-all {
    display: inline-flex;
    align-items: center;
    column-gap: 5px;
    color: #142442;
    font-size: 14px;
    line-height: 14px;
    font-weight: 600;
    text-transform: uppercase;
    transition: 0.25s;
}

.services-all:hover {
    opacity: 0.5;
}

.touch .services-all:hover {
    opacity: 1;
}

.services-all:active,
.touch .services-all:active {
    opacity: 0.5;
}

.services-all svg {
    display: block;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: stretch;
    gap: 32px;
    padding-top: 48px;
}

.services-item-frame {
    display: flex;
    flex: 1 0 calc(25% - 32px);
    max-width: calc(25% - 32px);
}

.services-item {
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 24px;
    padding-top: 36px;
    border-radius: 10px;
    background-color: #FFFF;
    box-shadow: 0px 4px 65px 0px rgba(20, 36, 66, 0.08);
    transition: 0.75s;
}

.services-item-on {
    border: solid 2px #142442;
}

.services-item:hover {
    box-shadow: 0px 0px 24px -2px rgba(20, 36, 66, 0.35);
}

.touch .services-item:hover {
    box-shadow: 0px 0px 16px -2px rgba(20, 36, 66, 0.08);
}

.services-item:active,
.touch .services-item:active {
    box-shadow: 0px 0px 24px -2px rgba(20, 36, 66, 0.35);
}

.services-item-on {
    box-shadow: 0px 0px 24px -2px rgba(20, 36, 66, 0.35);
}

.services-item-on:hover {
    box-shadow: 0px 0px 24px -2px rgba(20, 36, 66, 0.35);
}

.touch .services-item-on:hover {
    box-shadow: 0px 0px 24px -2px rgba(20, 36, 66, 0.35);
}

.services-item-on:active,
.touch .services-item-on:active {
    box-shadow: 0px 0px 24px -2px rgba(20, 36, 66, 0.35);
}

.services-item-icon svg {
    display: block;
}

.services-item-info {
    flex: auto;
    height: 100%;
}

.services-item-name {
    padding-top: 30px;
    padding-bottom: 8px;
    font-size: 21px;
    line-height: 120%;
    font-weight: 700;
    letter-spacing: -1px;
    transition: 0.25s;
}

.services-item:hover .services-item-name {
    color: #6E94E2;
}

.touch .services-item:hover .services-item-name {
    color: #142442;
}

.services-item:active .services-item-name,
.touch .services-item:active .services-item-name {
    color: #6E94E2;
}

.services-item-on:hover .services-item-name {
    color: #6E94E2;
}

.touch .services-item-on:hover .services-item-name {
    color: #6E94E2;
}

.services-item-on:active .services-item-name,
.touch .services-item-on:active .services-item-name {
    color: #6E94E2;
}

.services-item-intro {
    padding-bottom: 22px;
    color: #848484;
    font-size: 16px;
    line-height: 120%;
}

.services-item-btn {
    flex: none;
}

.services-item-button {
    display: inline-flex;
    align-items: center;
    column-gap: 6px;
    height: 25px;
    padding-left: 18px;
    padding-right: 18px;
    border-radius: 200px;
    background-color: #CED8E2;
    color: #142442;
    font-size: 12px;
    line-height: 12px;
    font-weight: 700;
    font-style: italic;
    text-transform: uppercase;
    transition: 0.25s;
}

.services-item:hover .services-item-button {
    color: #6E94E2;
}

.touch .services-item:hover .services-item-button {
    color: #142442;
}

.services-item:active .services-item-button,
.touch .services-item:active .services-item-button {
    color: #6E94E2;
}

.services-item-button svg {
    display: block;
    width: 9px;
    height: 9px;
}

.services-item-button path {
    fill: #142442;
    transition: 0.25s;
}

.services-item:hover .services-item-button path {
    fill: #6E94E2;
}

.touch .services-item:hover .services-item-button path {
    fill: #142442;
}

.services-item:active .services-item-button path,
.touch .services-item:active .services-item-button path {
    fill: #6E94E2;
}

/* LABS */

.labs {
    width: 100%;
    max-width: 1264px;
    margin: 0 auto;
    margin-top: -100px;
    padding-bottom: 110px;
    padding-left: 16px;
    padding-right: 16px;
}

.labs .services-grid {
    padding-top: 0px;
}

.process {
    display: grid;
    grid-template-columns: 2fr 1fr;
    column-gap: 48px;
    max-width: 1600px;
    margin: 0 auto;
    padding-top: 112px;
    padding-bottom: 124px;
    padding-left: 64px;
    padding-right: 64px;
}

.process-info {
    padding-top: 24px;
    padding-bottom: 64px;
}

.process-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 48px;
    row-gap: 48px;
    padding-top: 48px;
}

.process-item {
    display: grid;
    grid-template-columns: auto 1fr;
    column-gap: 24px;
}

.process-number {
    display: flex;
    align-items: center;
}

.process-number-bullet {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 60px;
    height: 60px;
    border-radius: 200px;
    background-color: #CED8E3;
    font-size: 40px;
    line-height: 100%;
    font-weight: 600;
    text-align: center;
}

.process-picture {
    overflow: hidden;
}

.process-image {
    width: 100%;
    height: 100%;
    border-radius: 10px;
    background-color: #E6EDF5;
    background-image: url(../assets/process.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

/* CLIENTS */

.clients {
    padding-top: 56px;
    padding-left: 64px;
    padding-right: 64px;
}

.clients-alt {
    margin-top: -48px;
    padding-top: 0px;
    padding-bottom: 72px;
    padding-left: 64px;
    padding-right: 64px;
}

.clients-swiper {
    width: 100%;
    height: 152px;
    margin: 0 auto;
    --swiper-theme-color: #142442;
    --swiper-pagination-right: 0px;
    --swiper-pagination-bottom: 0px;
    --swiper-pagination-bullet-size: 6px;
    --swiper-pagination-bullet-width: 6px;
    --swiper-pagination-bullet-height: 6px;
    --swiper-pagination-bullet-horizontal-gap: 4px;
    --swiper-pagination-bullet-inactive-color: rgb(20, 36, 66);
    --swiper-pagination-bullet-inactive-opacity: 0.3;
}

.clients-slide {
    display: flex !important;
    justify-content: center !important;
    align-items: center;
    padding-top: 48px;
    padding-bottom: 48px;
    padding-left: 32px;
    padding-right: 32px;
}

.clients-slide img {
    display: block;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

/* STORY */

.story {
    position: relative;
    padding-bottom: 90px;
    padding-left: 24px;
    padding-right: 24px;
    margin-top: -140px;
    z-index: 2;
    overflow: hidden;
}

.story-layout {
    display: flex;
    flex-direction: column;
    row-gap: 52px;
    width: 100%;
    max-width: 1024px;
    margin: 0 auto;
}

.story-words {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 8%;
    row-gap: 28px;
}

.story-words-picture {
    position: relative;
    width: 100%;
    padding-bottom: 125%;
    border-radius: 10px;
    background-color: #E6EDF5;
    overflow: hidden;
}

.story-words-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("../assets/words.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.story-words-caption {
    display: flex;
    align-items: center;
    font-size: 100px;
    line-height: 100%;
    font-weight: 600;
}

.story-vision {
    position: relative;
    padding-top: 64px;
    padding-bottom: 72px;
    padding-left: 10%;
    padding-right: 10%;
    border-radius: 10px;
    background-color: #E6EDF5;
    color: #FFFFFF;
    font-size: 90px;
    line-height: 100%;
    font-weight: 600;
    text-align: center;
    overflow: hidden;
}

.story-vision-picture {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url(../assets/vision.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.story-vision-tint {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #142442;
    opacity: 0.54;
}

.story-vision-caption {
    position: relative;
}

.story-pictures {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    column-gap: 20px;
}

.story-picture {
    position: relative;
    width: 100%;
    padding-bottom: 125%;
    border-radius: 10px;
    background-color: #E6EDF5;
    overflow: hidden;
}

.story-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.story-picture-1 .story-image {
    background-image: url(../assets/story-1.jpg);
}

.story-picture-2 .story-image {
    background-image: url(../assets/story-2.jpg);
}

.story-picture-3 .story-image {
    background-image: url(../assets/story-3.jpg);
}

.story-caption {
    margin-top: -24px;
    padding-bottom: 48px;
    font-size: 90px;
    line-height: 100%;
    font-weight: 600;
}

.story-mirror {
    position: relative;
    width: 100%;
    padding-bottom: 40%;
    border-radius: 10px;
    background-color: #E6EDF5;
    filter: brightness(10%);
    overflow: hidden;
    z-index: 2;
}

.story-mirror-picture {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url(../assets/mirror.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center bottom;
}

.story-reflex {
    position: relative;
    border-radius: 10px;
    background-color: #FFFFFF;
    font-size: 200px;
    line-height: 75%;
    font-weight: 600;
    transform-origin: top center;
    overflow: hidden;
    transform: translateZ(0);
    will-change: transform, opacity;
    backface-visibility: hidden;
}

.story-reflex-picture {
    position: absolute;
    top: -10px;
    left: -6px;
    width: calc(100% + 12px);
    padding-bottom: 48.22916666666667%;
    background-image: url(../assets/mirror-2.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center bottom;
    filter: blur(6px);
    opacity: 0.6;
}

.story-reflex-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(230, 237, 245, 0) 0%, rgba(255, 255, 255, 1) 100%);
}

.story-reflex-caption {
    position: relative;
    margin-top: -3px;
    color: transparent;
    background-image: url(../assets/mirror-2.jpg);
    background-size: 100% 100%;
    background-position: center bottom;
    background-clip: text;
    -webkit-background-clip: text;
    filter: brightness(140%);
}

.story-reflex-caption strong {
    color: rgba(39, 114, 255, 0.5);
    font-weight: 600;
}

/* BOOKING */

.booking {
    display: grid;
    grid-template-columns: 0.4fr 0.6fr;
    column-gap: 6%;
    width: 100%;
    max-width: 1328px;
    padding-left: 24px;
    padding-right: 24px;
    margin: 0 auto;
}

.booking-image {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 10px;
    background-color: #182B4E;
    overflow: hidden;
    z-index: 2;
}

.booking-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url(../assets/booking.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.booking-content {
    display: flex;
    align-items: center;
    padding-top: 48px;
    padding-bottom: 48px;
}

.booking-title {
    padding-bottom: 28px;
    font-size: 60px;
    line-height: 100%;
    letter-spacing: -1px;
    font-weight: 700;
}

.booking-caption {
    width: 100%;
    max-width: 500px;
    color: #BABAC2;
    font-size: 16px;
    line-height: 160%;
}

.booking-form {
    display: grid;
    grid-template-columns: 1fr auto;
    column-gap: 5px;
    width: 100%;
    max-width: 590px;
    height: 65px;
    padding: 5px;
    margin-top: 44px;
    border-radius: 100px;
    background-color: #FFFFFF;
}

.booking-textbox {
    width: 100%;
    height: 100%;
    padding-left: 26px;
    padding-right: 26px;
    border-radius: 100px;
    color: #142442;
    font-size: 16px;
    line-height: 120%;
    font-weight: 600;
    transition: 0.25s;
}

.booking-textbox::placeholder {
    color: #142442;
    font-weight: 400;
    opacity: 0.4;
}

.booking-textbox:focus {
    background-color: #D1DDEB;
}

.booking-button {
    display: flex;
    align-items: center;
    column-gap: 10px;
    height: 100%;
    padding-left: 24px;
    padding-right: 24px;
    border-radius: 200px;
    background-color: #213A68;
    color: #FFFFFF;
    font-size: 14px;
    line-height: 14px;
    font-weight: 600;
    font-style: italic;
    text-transform: uppercase;
    cursor: pointer;
    transition: 0.25s;
}

.booking-button:hover {
    background-color: #142442;
    color: #6E94E2;
}

.touch .booking-button:hover {
    background-color: #213A68;
    color: #FFFFFF;
}

.booking-button:active,
.touch .booking-button:active {
    background-color: #142442;
    color: #6E94E2;
}

.booking-button svg {
    display: block;
}

.booking-button path {
    fill: #FFFFFF;
    transition: 0.25s;
}

.booking-button:hover path {
    fill: #6E94E2;
}

.touch .booking-button:hover path {
    fill: #FFFFFF;
}

.booking-button:active path,
.touch .booking-button:active path {
    fill: #6E94E2;
}

.booking-actions {
    display: flex;
    column-gap: 48px;
    padding-top: 27px;
    padding-left: 27px;
}

.booking-action {
    display: flex;
    align-items: center;
    column-gap: 10px;
    height: 36px;
    padding-left: 4px;
    padding-right: 4px;
    color: #FFFFFF;
    font-size: 14px;
    line-height: 14px;
    font-weight: 600;
    font-style: italic;
    text-transform: uppercase;
    cursor: pointer;
    transition: 0.25s;
}

.booking-action:hover {
    color: #6E94E2;
}

.touch .booking-action:hover {
    color: #FFFFFF;
}

.booking-action:active,
.touch .booking-action:active {
    color: #6E94E2;
}

.booking-action svg {
    display: block;
}

.booking-action path {
    fill: #FFFFFF;
    transition: 0.25s;
}

.booking-action:hover path {
    fill: #6E94E2;
}

.touch .booking-action:hover path {
    fill: #FFFFFF;
}

.booking-action:active path,
.touch .booking-action:active path {
    fill: #6E94E2;
}

/* REVIEWS */

.reviews {
    padding-top: 80px;
    padding-bottom: 140px;
}

.reviews-swiper {
    width: 100%;
    padding-top: 32px !important;
    padding-bottom: 32px !important;
    margin-top: 32px;
    --swiper-theme-color: #142442;
    --swiper-pagination-right: 0px;
    --swiper-pagination-bottom: 0px;
    --swiper-pagination-bullet-size: 6px;
    --swiper-pagination-bullet-width: 6px;
    --swiper-pagination-bullet-height: 6px;
    --swiper-pagination-bullet-horizontal-gap: 4px;
    --swiper-pagination-bullet-inactive-color: rgb(20, 36, 66);
    --swiper-pagination-bullet-inactive-opacity: 0.3;
}

.swiper-button-prev.reviews-swiper-prev {
    position: relative !important;
    top: initial !important;
    bottom: initial !important;
    left: initial !important;
    right: initial !important;
    width: 48px;
    height: 48px;
    margin-top: 0px !important;
    border-radius: 5px;
    background-color: #FFFFFF;
    background-image: url(../assets/prev.svg);
    background-position: center;
    background-repeat: no-repeat;
    box-shadow: 0px 0px 24px -4px rgba(20, 36, 66, 0.15);
    transition: 0.25s;
}

.swiper-button-prev.reviews-swiper-prev::after {
    content: '';
}

.swiper-button-next.reviews-swiper-next {
    position: relative !important;
    top: initial !important;
    bottom: initial !important;
    left: initial !important;
    right: initial !important;
    width: 48px;
    height: 48px;
    margin-top: 0px !important;
    border-radius: 5px;
    background-color: #FFFFFF;
    background-image: url(../assets/next.svg);
    background-position: center;
    background-repeat: no-repeat;
    box-shadow: 0px 0px 24px -4px rgba(20, 36, 66, 0.15);
    transition: 0.25s;
}

.swiper-button-next.reviews-swiper-next::after {
    content: '';
}

.swiper-button-disabled.reviews-swiper-prev,
.swiper-button-disabled.reviews-swiper-next {
    background-color: rgba(20, 36, 66, 0.25);
}

.reviews-slide {
    height: unset !important;
    padding: 16px;
}

.reviews-layout {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding-top: 36px;
    padding-bottom: 40px;
    padding-left: 40px;
    padding-right: 40px;
    border-radius: 10px;
    box-shadow: 0px 0px 24px -4px rgba(20, 36, 66, 0.15);
}

.reviews-author {
    display: flex;
    column-gap: 24px;
    padding-bottom: 22px;
    margin-left: -4px;
}

.reviews-profile {
    width: 70px;
    height: 70px;
    border-radius: 500px;
    background-color: #E6EDF5;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.reviews-info {
    display: flex;
    align-items: center;
}

.reviews-name {
    font-size: 20px;
    line-height: 120%;
    font-weight: 700;
}

.reviews-role {
    padding-top: 6px;
    color: #5B6274;
    font-size: 14px;
    line-height: 120%;
}

.reviews-content {
    font-size: 18px;
    line-height: 28px;
}

/* LANGS */

.languages {
    padding-top: 100px;
    padding-bottom: 100px;
    padding-left: 24px;
    padding-right: 24px;
    margin-bottom: 0px;
    border-radius: 10px;
    background-color: #F0F3F6;
}

.languages-alt {
    background-color: #FFDEF3;
}

.languages-keys {
    display: flex;
    justify-content: center;
    gap: 12px;
    row-gap: 26px;
    flex-wrap: wrap;
    width: 100%;
    max-width: 930px;
    padding-top: 48px;
    margin: 0 auto;
    font-size: 40px;
    line-height: 100%;
    letter-spacing: -1px;
    text-align: center;
    font-weight: 700;
}

.languages-key {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.languages-key div {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    opacity: 0.8;
    animation-name: languages-key-pulse;
    animation-timing-function: ease-in-out;
    animation-iteration-count: infinite;
}

.languages-key:nth-child(-n+4) {
    flex: 1 0 calc(25% - 12px);
}

.languages-key:nth-child(n+5):nth-child(-n+7) {
    flex: 0 0 calc(33.333% - 12px - 10%);
    filter: blur(1px);
}

.languages-key:nth-child(n+8) {
    flex: 0 0 calc(50% - 12px);
    justify-content: flex-end;
    filter: blur(3px);
}

.languages-key:nth-child(n+8) {
    flex: 0 0 calc(50% - 12px);
    justify-content: flex-end;
    padding-right: 8%;
}

.languages-key:nth-child(n+8):nth-child(odd) {
    flex: 0 0 calc(50% - 12px);
    justify-content: flex-start;
    padding-left: 8%;
}

@keyframes languages-key-pulse {

    0% {
        transform: translateY(0) scale(1);
        opacity: 0.8;
    }

    50% {
        transform: translateY(-6px) scale(1.12);
        opacity: 1;
    }

    100% {
        transform: translateY(0) scale(1);
        opacity: 0.8;
    }

}

.languages-key:nth-child(1) div {
    animation-duration: 6s;
}

.languages-key:nth-child(2) div {
    animation-duration: 7.5s;
    animation-delay: 0.8s;
}

.languages-key:nth-child(3) div {
    animation-duration: 5.8s;
    animation-delay: 1.4s;
}

.languages-key:nth-child(4) div {
    animation-duration: 6.8s;
    animation-delay: 0.3s;
}

.languages-key:nth-child(5) div {
    animation-duration: 7.2s;
    animation-delay: 1.1s;
}

.languages-key:nth-child(6) div {
    animation-duration: 4.2s;
    animation-delay: 0.1s;
}

.languages-key:nth-child(7) div {
    animation-duration: 3.2s;
    animation-delay: 1.5s;
}

.languages-key:nth-child(8) div {
    animation-duration: 9.2s;
    animation-delay: 1.9s;
}

.languages-key:nth-child(9) div {
    animation-duration: 7.2s;
    animation-delay: 0.5s;
}

/* MARQUEE */

.marquee {
    position: relative;
    padding-top: 100px;
    padding-bottom: 100px;
    overflow: hidden;
}

.marquee-alt {
    padding-top: 0px;
    margin-top: -72px;
}

.marquee-blur {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    mask-image: linear-gradient(to left, black 0%, transparent 100%);
    -webkit-mask-image: linear-gradient(to left, black 0%, transparent 100%);
    pointer-events: none;
}

.marquee .carouselTicker__item {
    height: auto;
}

.marquee-caption {
    color: #191933;
    font-family: "Roboto Flex", sans-serif;
    font-size: 150px;
    line-height: 120%;
    font-weight: 700;
    letter-spacing: -1px;
    white-space: nowrap;
}

/* CONTACT */

.contact-layout {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    column-gap: 24px;
    height: 100%;
    padding: 24px;
    padding-top: 71px;
    overflow: hidden;
}

.contact-info {
    padding: 10%;
    padding-top: 10%;
    padding-bottom: 10%;
}

.contact-buttons {
    display: flex;
    flex-direction: column;
    row-gap: 14px;
    width: 264px;
    padding-top: 16px;
}

.contact-buttons-alt {
    width: 90px;
}

.contact-picture {
    position: relative;
    border-radius: 10px;
    background-color: #E6EDF5;
    overflow: hidden;
    opacity: 0;
    transform: translateX(5%);
    animation-name: contact-picture-anima;
    animation-duration: 2s;
    animation-fill-mode: forwards;
}

@keyframes contact-picture-anima {
    0% {
        opacity: 0;
        transform: translateX(4%);
    }

    100% {
        opacity: 1;
        transform: translateX(0%);
    }
}

.contact-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url(../assets/contact.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    animation-name: header-portrait-bg-anima;
    animation-duration: 60s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
}

/* FAQS */

.faqs-block {
    margin-top: 64px;
    padding-top: 52px;
    padding-bottom: 96px;
    border-top: solid 1px rgba(20, 36, 66, 0.1);
}

.faqs-layout {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    column-gap: 24px;
}

.faqs-list {
    flex: auto;
    display: flex;
    flex-direction: column;
}

.faqs-item {
    border-bottom: solid 1px rgba(20, 36, 66, 0.1);
}

.faqs-item:last-of-type {
    border-bottom: none;
}

.faqs-header {
    display: flex;
    column-gap: 10px;
    padding-top: 16px;
    padding-bottom: 16px;
    color: #213A68;
    cursor: pointer;
    transition: 0.25s;
}

.faqs-header:hover {
    color: #6E94E2;
}

.touch .faqs-header:hover {
    color: #213A68;
}

.faqs-header:active,
.touch .faqs-header:active {
    color: #6E94E2;
}

.faqs-item-on .faqs-header {
    color: #213A68;
}

.faqs-item-on .faqs-header:hover {
    color: #213A68;
}

.touch .faqs-item-on .faqs-header:hover {
    color: #213A68;
}

.faqs-item-on .faqs-header:active,
.touch .faqs-item-on .faqs-header:active {
    color: #213A68;
}

.faqs-question {
    flex: auto;
    font-size: 18px;
    line-height: 150%;
    font-weight: 600;
}

.faqs-item-on .faqs-question {
    font-weight: 700;
}

.faqs-arrow {
    flex: none;
    display: flex;
    align-items: flex-start;
    padding-top: 6px;
    padding-right: 0px;
}

.faqs-arrow svg {
    width: 18px;
    transition: 0.5s;
}

.faqs-item-on .faqs-arrow svg {
    transform: rotate(180deg);
}

.faqs-arrow path {
    fill: #213A68;
    transition: 0.25s;
}

.faqs-header:hover .faqs-arrow path {
    fill: #6E94E2;
}

.touch .faqs-header:hover .faqs-arrow path {
    fill: #213A68;
}

.faqs-header:active .faqs-arrow path,
.touch .faqs-header:active .faqs-arrow path {
    fill: #6E94E2;
}

.faqs-item-on .faqs-arrow path {
    fill: #6E94E2;
    transition: 0.25s;
}

.faqs-item-on .faqs-header:hover .faqs-arrow path {
    fill: #6E94E2;
}

.touch .faqs-item-on .faqs-header:hover .faqs-arrow path {
    fill: #6E94E2;
}

.faqs-item-on .faqs-header:active .faqs-arrow path,
.touch .faqs-item-on .faqs-header:active .faqs-arrow path {
    fill: #6E94E2;
}

.faqs-response {
    display: none;
    width: 100%;
    padding-bottom: 32px;
    color: #52525B;
    font-size: 16px;
    line-height: 160%;
    opacity: 0;
    transform: scale(0.9);
    animation: faqs-response-anima 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
}

.faqs-item-on .faqs-response {
    display: block;
}

.faqs-response p {
    padding-bottom: 8px;
}

.faqs-response p:last-of-type {
    padding-bottom: 0px;
}

@keyframes faqs-response-anima {
    0% {
        transform: translateY(16px);
        opacity: 0;
    }

    100% {
        transform: translateY(0px);
        opacity: 1;
    }
}

/* DOCUMENTS */

.document-content {
    padding-top: 180px;
    padding-bottom: 100px;
}

.document-intro {
    padding-top: 24px;
    padding-bottom: 24px;
    color: #142442;
    font-size: 22px;
    line-height: 160%;
    font-weight: 600;
}

.document-content h2,
.document-content h3,
.document-content p,
.document-content ul,
.document-content ol,
.document-image {
    padding-top: 12px;
    padding-bottom: 12px;
    margin: 0 auto;
}

.document-content strong,
.document-content b {
    font-weight: 600;
}

.document-content p,
.document-content ul,
.document-content ol {
    color: #52525B;
    font-size: 18px;
    line-height: 160%;
}

.document-content ul,
.document-content ol {
    padding-left: 36px;
    padding-right: 36px;
}

.document-content li {
    padding: 0;
    margin: 0;
}

.document-content h2 {
    padding-top: 18px;
    color: #142442;
    font-size: 24px;
    line-height: 140%;
    font-weight: 700;
}

.document-content h3 {
    padding-top: 18px;
    color: #142442;
    font-size: 20px;
    line-height: 140%;
    font-weight: 600;
}

.document-content a,
.document-content a:link,
.document-content a:visited {
    color: #142442;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
}

.document-content a:hover {
    text-decoration: underline;
}

.touch .document-content a:hover {
    text-decoration: none;
}

.document-content a:active,
.touch .document-content a:active {
    text-decoration: underline;
}

/* FOOTER */

.footer {
    padding-top: 80px;
    padding-bottom: 80px;
    background-color: #FAFAFA;
    color: #52525B;
    font-size: 16px;
    line-height: 26px;
}

.footer-row-1 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 24px;
}

.footer-brand {
    display: inline-block;
}

.footer-brand img {
    display: block;
    width: auto;
    height: 62px;
}

.footer-caption {
    max-width: 240px;
    padding-top: 6px;
    padding-bottom: 20px;
}

.footer-actions {
    display: flex;
    flex-direction: column;
    row-gap: 3px;
}

.footer-action {
    display: inline-flex;
    align-items: center;
    column-gap: 14px;
    color: #52525B;
    transition: 0.25s;
}

.footer-action:hover {
    color: #141F38;
    opacity: 0.5;
}

.touch .footer-action:hover {
    color: #52525B;
    opacity: 1;
}

.footer-action:active,
.touch .footer-action:active {
    color: #141F38;
    opacity: 0.5;
}

.footer-action svg {
    display: block;
}

.footer-action path {
    display: block;
    fill: #52525B;
    transition: 0.25s;
}

.footer-action:hover path {
    fill: #141F38;
    opacity: 0.5;
}

.touch .footer-action:hover path {
    fill: #52525B;
    opacity: 1;
}

.footer-action:active path,
.touch .footer-action:active path {
    fill: #141F38;
    opacity: 0.5;
}

.footer-nav {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    column-gap: 24px;
}

.footer-list {
    display: flex;
    flex-direction: column;
    row-gap: 10px;
}

.footer-group {
    color: #141F38;
    font-weight: 700;
}

.footer-button {
    color: #52525B;
    transition: 0.25s;
}

.footer-button:hover {
    color: #141F38;
    opacity: 0.5;
}

.touch .footer-button:hover {
    color: #52525B;
    opacity: 1;
}

.footer-button:active,
.touch .footer-button:active {
    color: #141F38;
    opacity: 0.5;
}

.footer-button-on {
    color: #141F38;
    font-weight: 600;
    opacity: 1;
}

.footer-button-on:hover {
    color: #141F38;
    font-weight: 600;
    opacity: 1;
}

.touch .footer-button-on:hover {
    color: #141F38;
    font-weight: 600;
    opacity: 1;
}

.footer-button-on:active,
.touch .footer-button-on:active {
    color: #141F38;
    font-weight: 600;
    opacity: 1;
}

.footer-row-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    padding-top: 100px;
}

.footer-networks {
    display: flex;
    column-gap: 16px;
}

.footer-networks-alt {
    padding-top: 32px;
    padding-bottom: 16px;
}

.footer-network {
    transition: 0.25s;
}

.footer-network:hover {
    opacity: 0.5;
    transform: scale(1.2);
}

.touch .footer-network:hover {
    opacity: 1;
    transform: scale(1);
}

.footer-network:active,
.touch .footer-network:active {
    opacity: 0.5;
    transform: scale(1.2);
}

.footer-network img {
    width: 20px;
    height: 20px;
}

.footer-networks-alt .footer-network img {
    width: 32px;
    height: 32px;
}

.footer-copyright {
    display: flex;
    justify-content: flex-end;
    color: #74747B;
    font-size: 14px;
    line-height: 120%;
}

/* TOAST */

#toast {
    position: fixed;
    top: 12px;
    left: 50%;
    width: auto;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    row-gap: 16px;
    transform: translateX(-50%);
    padding-left: 16px;
    padding-right: 16px;
    z-index: 110;
}

.toast-item {
    display: none;
    column-gap: 12px;
    justify-content: center;
    padding-top: 14px;
    padding-bottom: 14px;
    padding-left: 24px;
    padding-right: 24px;
    border-radius: 10px;
    background-color: #213A68;
    opacity: 0;
    box-shadow: 0 0 16px 0 rgba(110, 148, 226, 1);
    transform: translateY(-100%);
}

.toast-show {
    opacity: 1;
    transform: translateY(0%);
    transition: 0.5s;
}

.toast-hide {
    opacity: 0;
    transform: scale(0.9);
    transition: 0.25s;
}

.toast-caption {
    color: #7FA7F7;
    font-size: 16px;
    line-height: 20px;
    font-weight: 700;
    text-align: center;
    white-space: nowrap;
}

.toast-inverse .toast-caption {
    color: #141F38;
}

.toast-button {
    color: #FFFFFF;
    font-size: 14px;
    line-height: 19px;
    font-weight: 700;
    text-transform: uppercase;
    opacity: 0.7;
    cursor: pointer;
    transition: 0.25s;
}

.toast-inverse .toast-button {
    color: #141F38;
}

.toast-button:hover {
    opacity: 1;
}

.touch .toast-button:hover {
    opacity: 0.7;
}

.toast-button:active,
.touch .toast-button:active {
    opacity: 1;
}

/* ADVICE */

.advice {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    max-width: 480px;
    height: 100%;
    background-color: #142442;
    animation: advice-anima 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
    overflow: auto;
    z-index: 120;
}

@keyframes advice-anima {
    0% {
        transform: translate(-10%);
        opacity: 0;
    }

    100% {
        transform: translate(0);
        opacity: 1;
    }
}

.advice-bg {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(127, 167, 247, 0.5);
    backdrop-filter: blur(12px);
    animation: panel-bg-anima 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
    z-index: 119;
}

@keyframes advice-bg-anima {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

.advice-frame {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    padding-top: 10%;
    padding-bottom: 10%;
    padding-left: 10%;
    padding-right: 10%;
}

.advice-layout {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
}

.advice-actions {
    display: flex;
    justify-content: center;
}

.advice-close {
    display: inline-flex;
    padding: 16px;
    cursor: pointer;
}

.advice-close img {
    display: block;
    width: 16px;
    height: 16px;
    transition: 0.5s;
}

.advice-close:hover img {
    transform: rotate(180deg);
}

.touch .advice-close:hover img {
    transform: rotate(0deg);
}

.advice-close:active img,
.touch .advice-close:active img {
    transform: rotate(180deg);
}

.advice-content {
    flex: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-bottom: 64px;
}

.advice-main {
    color: #FFFFFF;
    font-size: 18px;
    line-height: 24px;
    font-weight: 400;
    text-align: center;
    opacity: 0;
    animation-name: advice-content-anima;
    animation-duration: 1s;
    animation-delay: 0.5s;
    animation-fill-mode: forwards;
}

.advice-main strong {
    color: #7FA7F7;
    font-size: 20px;
    line-height: 26px;
    font-weight: 700;
}

.advice-main div {
    padding-bottom: 16px;
}

.advice-title {
    padding-bottom: 24px !important;
}

@keyframes advice-content-anima {
    from {
        opacity: 0;
        transform: scale(0.85);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* RESPONSIVE */

@media (max-width: 1200px) {

    .display-slide-layout {
        grid-template-columns: 1fr 1fr;
        column-gap: 24px;
    }

    .process {
        grid-template-columns: 1fr 1fr;
    }

    .process-grid {
        grid-template-columns: 1fr;
    }

    .contact-layout {
        grid-template-columns: 0.85fr 1fr;
    }

}

@media (max-width: 1160px) {

    .section {
        column-gap: 24px;
    }

    .team {
        column-gap: 24px;
        row-gap: 72px;
        max-width: 1600px;
        margin: 0 auto;
        padding-bottom: 124px;
        padding-left: 24px;
        padding-right: 24px;
    }

}

@media (max-width: 1120px) {

    .booking {
        grid-template-columns: 1fr 1fr;
        column-gap: 32px;
    }

}

@media (max-width: 1020px) {

    .margin {
        padding-left: 24px;
        padding-right: 24px;
    }

    .display-swiper {
        --swiper-pagination-left: -32px !important;
    }

    .display-slide-layout {
        grid-template-columns: 1fr;
    }

    .slide-content {
        padding-top: 120px;
        padding-bottom: 24px;
        padding-left: 0px;
    }

    .slide-title {
        margin-left: 0px;
    }

    .slide-button {
        margin-left: 0px;
    }

    .skew-alt {
        padding-top: 400px;
        padding-bottom: 230px;
        margin-top: -320px;
        margin-bottom: 0px;
    }

    .services-item-frame {
        flex: 1 0 calc(50% - 32px);
        max-width: calc(50% - 32px);
    }

    .story-words {
        column-gap: 24px;
    }

    .story-reflex {
        font-size: 140px;
    }

}

@media (max-width: 960px) {

    .bar {
        padding-left: 24px;
        padding-right: 24px;
    }

    .bar-buttons {
        display: none;
    }

    .bar-menu {
        display: flex;
    }

    .slide-content {
        padding-top: 32px;
    }

    .process {
        padding-left: 24px;
        padding-right: 24px;
    }

    .team {
        grid-template-columns: 1fr 1fr;
    }

    .header-layout {
        grid-template-columns: 1fr;
    }

    .header-layout-alt {
        row-gap: 32px;
        padding-top: 72px;
    }

    .header-button {
        margin-left: -25px;
        width: 50px;
        height: 50px;
    }

    .header-silhouette-frame {
        padding-left: 0%;
    }

    .contact-layout {
        grid-template-columns: 1fr;
        row-gap: 24px;
        height: auto;
    }

    .contact-info {
        order: 1;
    }

    .contact-picture {
        order: 2;
        height: 480px;
    }

}

@media (max-width: 890px) {

    .booking {
        grid-template-columns: 1fr;
    }

    .booking-image {
        width: 100%;
        height: unset;
        padding-bottom: 56.25%;
    }

    .process {
        padding-top: 64px;
        grid-template-columns: 1fr;
    }

    .process-picture {
        height: 400px;
    }

    .sections {
        row-gap: 24px;
        padding-bottom: 32px;
    }

    .section {
        grid-template-columns: 1fr;
    }

    .section:nth-child(even) .section-picture {
        order: 1;
    }

    .section:nth-child(even) .section-content {
        order: 2;
    }

    .team-role {
        font-size: 18px;
    }

    .team-name {
        font-size: 28px;
    }

    .contact-info {
        padding: 32px;
        padding-top: 72px;
        padding-bottom: 72px;
    }

    .faqs-layout {
        grid-template-columns: 1fr;
        row-gap: 24px;
    }

}

@media (max-width: 780px) {

    .story-words-caption {
        font-size: 72px;
    }

    .story-vision {
        font-size: 72px;
    }

    .story-caption {
        font-size: 72px;
    }

    .story-reflex {
        font-size: 100px;
    }

}

@media (max-width: 680px) {

    .pretitle {
        font-size: 20px;
    }

    .title {
        font-size: 40px;
    }

    .team {
        grid-template-columns: 1fr;
    }

}

@media (max-width: 620px) {

    .story-words {
        grid-template-columns: 1fr;
    }

    .story-words-picture {
        padding-bottom: 100%;
    }

    .story-words-caption {
        font-size: 48px;
    }

    .story-vision {
        font-size: 48px;
    }

    .story-caption {
        font-size: 48px;
    }

    .story-reflex {
        font-size: 72px;
    }

    .booking-title {
        font-size: 40px;
    }

    .heading {
        grid-template-columns: 1fr;
    }

    .heading-title {
        font-size: 40px;
    }

    .heading-actions {
        justify-content: center;
        padding-top: 32px;
    }

    .heading-actions-alt {
        justify-content: center;
        padding-top: 64px;
        padding-right: 0px;
    }

    .header-button {
        display: none;
    }

    .header-button-alt {
        display: flex;
    }

    .header-alt {
        padding-top: 100px;
        padding-bottom: 64px;
    }

    .services {
        padding-left: 24px;
        padding-right: 24px;
    }

    .services-grid {
        gap: 24px;
    }

    .services-item-frame {
        flex: 1 0 100%;
        max-width: 100%;
    }

    .reviews {
        padding-top: 40px;
        padding-bottom: 70px;
    }

    .reviews-swiper {
        padding-top: 16px !important;
        margin-top: 0px;
    }

    .languages-keys {
        gap: 12px;
        row-gap: 20px;
        font-size: 24px;
    }

    .languages-key:nth-child(n+5):nth-child(-n+7) {
        filter: blur(1px);
    }

    .languages-key:nth-child(n+8) {
        filter: blur(2px);
    }

    .booking-form {
        grid-template-columns: 1fr;
        margin-bottom: 55px;
    }

    .booking-textbox {
        height: 55px;
    }

    .booking-button {
        width: calc(100% + 10px);
        height: 55px;
        margin-top: 10px;
        margin-left: -5px;
    }

    .marquee {
        padding-top: 80px;
        padding-bottom: 80px;
    }

    .marquee-caption {
        font-size: 70px;
    }

    .header-title {
        font-size: 50px;
    }

    .footer-row-1 {
        grid-template-columns: 1fr;
        row-gap: 48px;
    }

}

@media (max-width: 490px) {

    .slide-content {
        padding-top: 16px;
        padding-bottom: 0px;
    }

    .slide-title {
        font-size: 36px;
    }

    .slide-brand {
        padding-bottom: 32px;
    }

    .slide-brand img {
        width: auto;
        height: 96px;
    }

    .skew {
        padding-top: 130px;
        padding-bottom: 90px;
    }

    .skew-alt {
        padding-top: 400px;
        padding-bottom: 230px;
        margin-top: -320px;
        margin-bottom: 0px;
    }

    .story {
        margin-top: -156px;
    }

    .story-words-caption {
        font-size: 40px;
    }

    .story-pictures {
        column-gap: 8px;
    }

    .story-picture {
        padding-bottom: 140%;
    }

    .story-vision {
        padding-top: 64px;
        padding-bottom: 72px;
        padding-left: 24px;
        padding-right: 24px;
        font-size: 40px;
    }

    .story-caption {
        padding-bottom: 0px;
        font-size: 40px;
    }

    .story-reflex {
        font-size: 64px;
    }

    .clients {
        padding-top: 24px;
        padding-left: 0px;
        padding-right: 0px;
    }

    .clients-slide {
        padding-top: 30px;
        padding-bottom: 30px;
        padding-left: 16px;
        padding-right: 16px;
    }

    .reviews {
        padding-left: 0px !important;
        padding-right: 0px !important;
    }

    .reviews-swiper {
        padding-top: 16px !important;
        padding-bottom: 24px !important;
    }

    .reviews-slide {
        padding: 24px;
    }

    .reviews-content {
        font-size: 16px;
        line-height: 26px;
    }

    .languages {
        padding-top: 70px;
        padding-bottom: 70px;
    }

    .languages-keys {
        gap: 8px;
        row-gap: 16px;
        padding-top: 32px;
        font-size: 20px;
    }

    .booking-image {
        padding-bottom: 100%;
    }

    .booking-actions {
        column-gap: 16px;
        padding-top: 44px;
        padding-left: 0px;
        justify-content: center;
    }

    .header-info {
        padding-top: 70px;
        padding-bottom: 280px;
    }

    .header-info-alt {
        padding-top: 0px;
        padding-bottom: 16px;
    }

    .header-info-alt-2 {
        padding-top: 0px;
        padding-bottom: 0px;
    }

    .header-portrait {
        padding: 24px;
    }

    .header-diagonal-alt {
        top: -240px;
    }

    .header-frame {
        margin-top: 0px;
        padding-left: 0px;
        padding-right: 0px;
    }

    .header-frame-picture {
        padding-bottom: 85%;
        margin-top: -70%;
    }

    .header-full {
        max-height: 700px;
    }

    .subtitle {
        font-size: 20px;
    }

    .text {
        font-size: 17px;
    }

    .sections {
        row-gap: 0px;
        padding-bottom: 32px;
    }

    .sections-alt {
        padding-top: 0px;
    }

    .section-quote {
        max-width: 300px;
        padding-top: 22px;
        padding-bottom: 24px;
        padding-left: 26px;
        padding-right: 26px;
    }

    .labs {
        padding-bottom: 72px;
        padding-left: 24px;
        padding-right: 24px;
    }

    .process {
        padding-top: 40px;
        padding-bottom: 82px;
    }

    .process-grid {
        row-gap: 32px;
        padding-top: 48px;
    }

    .process-info {
        padding-bottom: 48px;
    }

    .process-item {
        column-gap: 16px;
    }

    .process-number {
        align-items: flex-start;
        margin-top: -7px;
    }

    .process-number-bullet {
        width: 40px;
        height: 40px;
        font-size: 24px;
    }

    .team {
        row-gap: 48px;
        padding-bottom: 80px;
    }

    .team-role {
        padding-top: 28px;
    }

    .team-name {
        padding-bottom: 18px;
    }

    .clients-alt {
        margin-top: -64px;
        padding-bottom: 64px;
        padding-left: 24px;
        padding-right: 24px;
    }

    .document-content {
        padding-top: 140px;
    }

    .document-intro {
        font-size: 20px;
    }

    .document-content p,
    .document-content ul,
    .document-content ol {
        font-size: 17px;
    }

    .contact-title {
        font-size: 36px;
        line-height: 46px;
    }

    .contact-info {
        padding-top: 64px;
        padding-bottom: 24px;
        padding-left: 0px;
        padding-right: 0px;
        font-size: 17px;
        line-height: 30px;
    }

    .faqs-block {
        margin-top: 40px;
    }

    .faqs-title {
        font-size: 36px;
        line-height: 46px;
    }

    .footer-row-1 {
        row-gap: 32px;
    }

    .footer-nav {
        grid-template-columns: 1fr;
        row-gap: 24px;
    }

    .footer-row-2 {
        grid-template-columns: 1fr;
        row-gap: 24px;
        padding-top: 70px;
    }

    .footer-copyright {
        justify-content: flex-start;
    }

    .footer-networks-alt .footer-network img {
        width: 26px;
        height: 26px;
    }

}