@charset "utf-8";

@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&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: #002D72;
    font-family: "Inter", 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%;
    height: 110px;
    background-color: #FFFFFF;
    transition: 0.35s;
    z-index: 99;
}

.bar-compact {
    height: 88px;
    background-color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(16px);
    box-shadow: 0px 0px 30px -4px rgba(0, 0, 0, 0.1);
}

.bar-layout {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    column-gap: 24px;
}

.bar-menu {
    padding-top: 28px;
    padding-left: 22px;
}

.bar-menu-btn {
    display: flex;
    width: 112px;
    cursor: pointer;
}

.bar-menu-icon {
    display: flex;
    flex-direction: column;
    row-gap: 3px;
    padding: 10px;
}

.bar-menu-line {
    width: 18px;
    height: 2px;
    background-color: #002D72;
    transition: 0.35s;
}

.bar-menu-btn:hover .bar-menu-line {
    background-color: #97AAC7;
}

.touch .bar-menu-btn:hover .bar-menu-line {
    background-color: #002D72;
}

.bar-menu-btn:active .bar-menu-line,
.touch .bar-menu-btn:active .bar-menu-line {
    background-color: #97AAC7;
}

.bar-menu-label {
    display: flex;
    align-items: center;
    padding-left: 6px;
    color: #002D72;
    font-size: 20px;
    line-height: 20px;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    transition: 0.35s;
}

.bar-menu-btn:hover .bar-menu-label {
    color: #97AAC7;
}

.touch .bar-menu-btn:hover .bar-menu-label {
    color: #002D72;
}

.bar-menu-btn:active .bar-menu-label,
.touch .bar-menu-btn:active .bar-menu-label {
    color: #97AAC7;
}

.bar-brand {
    display: flex;
    justify-content: center;
    padding-top: 21px;
}

.bar-brand img {
    display: block;
    width: 78px;
    height: 46px;
}

.bar-actions {
    display: flex;
    justify-content: flex-end;
    padding-top: 28px;
    padding-right: 32px;
}

.bar-action {
    display: inline-flex;
    cursor: pointer;
}

.bar-action-icon {
    display: flex;
    align-items: center;
}

.bar-action path {
    fill: #002D72;
    transition: 0.35s;
}

.bar-action:hover path {
    fill: #97AAC7;
}

.touch .bar-action:hover path {
    fill: #002D72;
}

.bar-action:active path,
.touch .bar-action:active path {
    fill: #97AAC7;
}

.bar-action-label {
    display: flex;
    align-items: center;
    padding-left: 17px;
    color: #002D72;
    font-size: 20px;
    line-height: 20px;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    transition: 0.35s;
}

.bar-action:hover .bar-action-label {
    color: #97AAC7;
}

.touch .bar-action:hover .bar-action-label {
    color: #002D72;
}

.bar-action:active .bar-action-label,
.touch .bar-action:active .bar-action-label {
    color: #97AAC7;
}

.bar-fix {
    height: 110px;
}

/* PANEL */

.panel {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-bottom-right-radius: 200px;
    background-color: #002D72;
    box-shadow: 6px 6px 16px 0 rgba(0, 0, 0, 0.35);
    animation: panel-anima 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
    overflow: auto;
    z-index: 100;
}

@keyframes panel-anima {
    0% {
        transform: rotateY(20deg) rotateX(35deg) translate(-300px, -300px) skew(-35deg, 10deg);
        opacity: 0;
    }

    100% {
        transform: rotateY(0) rotateX(0deg) translate(0, 0) skew(0deg, 0deg);
        opacity: 1;
    }
}

.panel-frame {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
}

.panel-layout {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    padding-top: 140px;
    padding-bottom: 48px;
    padding-left: 160px;
    padding-right: 160px;
}

.panel-close {
    position: absolute;
    top: 48px;
    right: 48px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 48px;
    height: 48px;
    cursor: pointer;
}

.panel-close img {
    display: block;
    width: 20px;
    height: 20px;
    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;
    flex-direction: column;
    row-gap: 20px;
    height: 100%;
    padding-bottom: 100px;
    overflow: auto;
}

.panel-buttons::-webkit-scrollbar {
    width: 7px;
    height: 7px;
    border-radius: 30px;
    background-color: rgba(50, 87, 142, 0.25);
}

.panel-buttons::-webkit-scrollbar-thumb {
    background: #32578E;
    border-radius: 30px;
    border: none 1px transparent;
}

.panel-buttons::-webkit-scrollbar-thumb:hover {
    background: #6580AA;
}

.panel-buttons::-webkit-scrollbar-track {
    background: transparent;
    border-radius: 0px;
}

.panel-btn-block {
    opacity: 0;
    transform: translateY(-32px);
    animation-name: panel-btn-anima;
    animation-duration: 0.4s;
    animation-fill-mode: forwards;
    transition: 0.25s;
}

.panel-btn,
.panel-btn:link,
.panel-btn:visited {
    color: #FCFDFF;
    font-size: 40px;
    line-height: 40px;
    font-weight: 300;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
    transition: 0.35s;
}

.panel-btn:hover {
    opacity: 0.4;
}

.touch .panel-btn:hover {
    opacity: 1;
}

.panel-btn:active,
.touch .panel-btn:active {
    opacity: 0.4;
}

.panel-btn-block-on .panel-btn,
.panel-btn-block-on .panel-btn:link,
.panel-btn-block-on .panel-btn:visited {
    font-weight: 900;
}

.panel-btn-block:nth-child(1) {
    animation-delay: 0.2s;
}

.panel-btn-block:nth-child(2) {
    animation-delay: 0.3s;
}

.panel-btn-block:nth-child(3) {
    animation-delay: 0.4s;
}

.panel-btn-block:nth-child(4) {
    animation-delay: 0.5s;
}

.panel-btn-block:nth-child(5) {
    animation-delay: 0.6s;
}

.panel-btn-block:nth-child(6) {
    animation-delay: 0.7s;
}

@keyframes panel-btn-anima {
    from {
        opacity: 0;
        transform: translateY(-32px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.panel-cards {
    display: none;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
    gap: 32px;
    padding-top: 30px;
    padding-bottom: 14px;
    padding-right: 32px;
}

.panel-btn-block-on .panel-cards {
    display: grid;
}

.panel-card-block {
    width: 100%;
    opacity: 0;
    transform: translateY(-32px);
    animation-name: panel-btn-anima;
    animation-duration: 0.4s;
    animation-fill-mode: forwards;
    transition: 0.25s;
}

.panel-card-block:nth-child(1) {
    animation-delay: 0.3s;
}

.panel-card-block:nth-child(2) {
    animation-delay: 0.4s;
}

.panel-card-block:nth-child(3) {
    animation-delay: 0.5s;
}

.panel-card-block:nth-child(4) {
    animation-delay: 0.6s;
}

.panel-card-block:nth-child(5) {
    animation-delay: 0.7s;
}

.panel-card-block:nth-child(6) {
    animation-delay: 0.8s;
}

.panel-card-block:nth-child(7) {
    animation-delay: 0.9s;
}

.panel-card-block:nth-child(8) {
    animation-delay: 1s;
}

@keyframes panel-card-anima {
    from {
        opacity: 0;
        transform: translateY(-32px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.panel-card {
    position: relative;
    display: block;
    width: 100%;
    padding-bottom: 155%;
    border-radius: 2px;
    border-bottom-right-radius: 80px;
    background-color: #32578E;
    overflow: hidden;
}

.panel-card-on {
    border: solid 4px #FFFFFF;
}

.panel-card-picture {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    transition: 0.5s;
}

.panel-card:hover .panel-card-picture {
    transform: scale(1.12);
}

.touch .panel-card:hover .panel-card-picture {
    transform: scale(1);
}

.panel-card:active .panel-card-picture,
.touch .panel-card:active .panel-card-picture {
    transform: scale(1.12);
}

.panel-card-tint {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #002D72;
    opacity: 0.3;
    transition: 0.5s;
}

.panel-card:hover .panel-card-tint {
    opacity: 0.5;
}

.touch .panel-card:hover .panel-card-tint {
    opacity: 0.3;
}

.panel-card:active .panel-card-tint,
.touch .panel-card:active .panel-card-tint {
    opacity: 0.5;
}

.panel-card-caption {
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    padding: 16px;
    color: #FCFDFF;
    font-size: 2vw;
    line-height: 2vw;
    font-weight: 900;
    text-align: center;
    text-transform: uppercase;
}

.panel-shadow-frame {
    flex: none;
    position: relative;
}

.panel-shadow {
    position: absolute;
    top: -64px;
    left: 0;
    width: calc(100% - 10px);
    height: 64px;
    background: linear-gradient(to bottom, rgba(0, 45, 114, 0) 0%, rgba(0, 45, 114, 1) 100%);
}

/* GLOBALS */

.frame {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
}

.margin {
    padding-left: 24px;
    padding-right: 24px;
}

.columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 5%;
}

.column-left {
    display: flex;
    justify-content: flex-end;
}

.column-right {
    padding-left: 14px;
    padding-right: 14px;
}

.blocks {
    width: 100%;
    max-width: 1480px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    row-gap: 64px;
    padding-top: 148px;
    padding-bottom: 120px;
    overflow: hidden;
}

.break {
    display: none;
}

.mini-title {
    width: 100%;
    max-width: 254px;
    padding-top: 22px;
    padding-bottom: 44px;
    padding-left: 14px;
    padding-right: 14px;
    color: #002D72;
    font-size: 18px;
    line-height: 24px;
    text-transform: uppercase;
    border-top: solid 1px #002D72;
}

.title-box {
    width: 100%;
    max-width: 1000px;
    padding-top: 160px;
    padding-bottom: 170px;
    margin: 0 auto;
}

.title-box-alt {
    padding-top: 80px;
    padding-bottom: 80px;
}

.title-box-alt-2 {
    max-width: 1500px;
    padding-top: 70px;
    padding-bottom: 100px;
}

.title-box-alt-3 {
    padding-top: 280px;
    padding-bottom: 146px;
}

.title-box-alt-4 {
    max-width: 1500px;
    padding-top: 170px;
    padding-bottom: 64px;
}

.title-box-alt-6 {
    max-width: 1400px;
    padding-top: 100px;
    padding-bottom: 100px;
}

.title {
    font-size: 70px;
    line-height: 82px;
    letter-spacing: 0.05em;
    word-spacing: 0.05em;
    font-weight: 900;
    text-transform: uppercase;
    text-align: center;
}

.title-animated {
    opacity: 0;
    transform: translateY(-10px);
    animation-name: title-animated-anima;
    animation-duration: 2s;
    animation-fill-mode: forwards;
}

@keyframes title-animated-anima {
    0% {
        opacity: 0;
        transform: translateY(-10px);
    }

    100% {
        opacity: 1;
        transform: translateY(0px);
    }
}

.title-left {
    font-size: 50px;
    line-height: 62px;
    text-align: left;
}

.title-alt {
    margin-top: -14px;
    color: #002D72;
    font-size: 60px;
    line-height: 72px;
    letter-spacing: 0.02em;
    font-weight: 300;
    text-transform: uppercase;
    text-align: left;
}

.title-alt-2 {
    margin-top: -6px;
    padding-bottom: 20px;
    color: #002D72;
    font-size: 26px;
    line-height: 32px;
    letter-spacing: 0.05em;
    word-spacing: 0.05em;
    font-weight: 800;
    text-transform: uppercase;
    text-align: left;
}

.subtitle {
    padding-bottom: 4px;
    font-size: 40px;
    line-height: 52px;
    letter-spacing: 0.04em;
    font-weight: 300;
    text-transform: uppercase;
    text-align: center;
}

.subtitle-animated {
    opacity: 0;
    animation-name: subtitle-animated-anima;
    animation-fill-mode: forwards;
    animation-duration: 2s;
    animation-delay: 0.5s;
}

@keyframes subtitle-animated-anima {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}


.subtitle-alt {
    padding-top: 4px;
    padding-bottom: 0px;
}

.subtitle-alt-2 {
    padding-top: 22px;
    padding-bottom: 0px;
}

.subtitle-alt-3 {
    padding-top: 48px;
    padding-bottom: 0px;
}

.caption {
    padding-top: 8px;
    font-size: 28px;
    line-height: 36px;
    letter-spacing: 0.02em;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    padding-left: 18px;
    padding-right: 18px;
    border-radius: 2px;
    background-color: #002D72;
    color: #FCFDFF;
    font-size: 20px;
    line-height: 20px;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    font-weight: 700;
    text-align: center;
    transition: 0.35s;
}

.button-alt {
    height: 38px;
    font-size: 16px;
    line-height: 18px;
    letter-spacing: 0.02em;
}

.button:hover {
    background-color: #00122E;
}

.touch .button:hover {
    background-color: #002D72;
}

.button:active,
.touch .button:active {
    background-color: #00122E;
}

.content {
    padding-top: 130px;
    padding-bottom: 154px;
    background-color: #F1F3F8;
    border-bottom-left-radius: 200px;
    color: #00122E;
    font-size: 20px;
    line-height: 26px;
    letter-spacing: 0.02em;
}

.text {
    color: #00122E;
    font-size: 24px;
    line-height: 32px;
    letter-spacing: 0.02em;
}

.text p,
.text ul {
    padding-bottom: 32px;
}

.text ul {
    padding-left: 32px;
}

.text p:last-of-type {
    padding-bottom: 0px;
}

.content-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 5%;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
}

.content-title {
    padding-bottom: 36px;
    color: #002D72;
    font-size: 40px;
    line-height: 44px;
    font-weight: 900;
    letter-spacing: 0.05em;
    word-spacing: 0.05em;
    text-transform: uppercase;
}

.content-subtitle {
    padding-top: 8px;
    padding-bottom: 38px;
    color: #002D72;
    font-size: 30px;
    line-height: 34px;
    font-weight: 300;
    text-transform: uppercase;
}

.content-subtitle-alt {
    padding-top: 88px;
}

.content p,
.content ul {
    padding-bottom: 18px;
}

.content ul {
    padding-left: 32px;
}

.pictures-grid-frame {
    padding-left: 4%;
    padding-right: 4%;
}

.pictures-grid {
    display: grid;
    grid-template-columns: 0.2fr 0.4fr 0.4fr;
    gap: 20px;
}

.pictures-grid-inset {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 20px;
    height: 100%;
}

.pictures-grid-item {
    background-color: #E3E8F1;
    border-radius: 2px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    animation-name: pictures-grid-item-anima;
    animation-duration: 2s;
    animation-fill-mode: forwards;
}

@keyframes pictures-grid-item-anima {
    0% {
        opacity: 0;
        transform: scale(0.9);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}

.pictures-grid-item-1 {
    height: 100%;
}

.pictures-grid-item-2 {
    grid-column: 1 / 2;
    grid-row: 1 / 2;
}

.pictures-grid-item-3 {
    grid-column: 2 / 3;
    grid-row: 1 / 2;
}

.pictures-grid-item-4 {
    grid-column: 1 / 3;
    grid-row: 2 / 3;
}

.pictures-grid-item-5 {
    padding-bottom: 100%;
    border-bottom-right-radius: 200px;
}

.city-header-alt {
    display: none;
    padding-top: 48px;
    padding-bottom: 64px;
}

.images-grid-frame {
    width: 100%;
    max-width: 1500px;
    margin: 0 auto;
    padding-left: 17px;
    padding-right: 17px;
}

.images-grid {
    display: grid;
    grid-template-columns: 2fr 4fr 1fr;
}

.images-grid-picture {
    position: absolute;
    top: 7px;
    left: 7px;
    width: calc(100% - 14px);
    height: calc(100% - 14px);
    border-radius: 2px;
    background-color: #E3E8F1;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    animation-name: images-grid-picture-anima;
    animation-duration: 2s;
    animation-fill-mode: forwards;
}

@keyframes images-grid-picture-anima {
    0% {
        opacity: 0;
        transform: scale(0.9);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}

.images-grid-picture-alt {
    border-top-left-radius: 200px;
}

.images-grid-left {
    position: relative;
    display: grid;
    grid-template-columns: 1fr;
    padding-bottom: 200%;
}

.images-grid-pic-1 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.images-grid-center {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.images-grid-group-1 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
}

.images-grid-pic-2 {
    position: relative;
}

.images-grid-pic-3 {
    position: relative;
}

.images-grid-pic-4 {
    position: relative;
    grid-column: 1 / 3;
}

.images-grid-group-2 {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 1fr 1fr;
}

.images-grid-pic-5 {
    position: relative;
    grid-column: 1 / 3;
}

.images-grid-pic-6 {
    position: relative;
}

.images-grid-content {
    position: relative;
    width: 100%;
    grid-column: 1 / 3;
}

.images-grid-title {
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    padding: 8px;
    padding-top: 5%;
    padding-bottom: 5%;
}

.images-grid-right {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 1fr 1fr 1fr 1fr;
}

.images-grid-pic-7 {
    position: relative;
}

.images-grid-pic-8 {
    position: relative;
}

.images-grid-2 {
    display: grid;
    grid-template-columns: 3fr 2fr 1fr 1fr;
}

.images-grid-group-3 {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 1fr 1fr;
}

.images-grid-pic-9 {
    position: relative;
}

.images-grid-pic-10 {
    position: relative;
    width: 100%;
    padding-bottom: 100%;
}

.images-grid-group-4 {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 1fr;
}

.images-grid-pic-11 {
    position: relative;
}

/* NAV */

.nav {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    padding-top: 8px;
    padding-bottom: 8px;
    background-color: rgba(237, 240, 246, 0.8);
    backdrop-filter: blur(18px);
    opacity: 0;
    transform: translateY(50%);
    transition: 0.25s;
    z-index: 99;
}

.nav-on {
    display: block;
    animation-name: nav-anima;
    animation-duration: 0.35s;
    animation-fill-mode: forwards;
}

@keyframes nav-anima {
    0% {
        opacity: 0;
        transform: translateY(50%);
    }

    100% {
        opacity: 1;
        transform: translateY(0%);
    }
}

.nav-layout {
    display: flex;
    flex-wrap: wrap;
    column-gap: 70px;
    justify-content: center;
}

.nav-btn {
    padding: 8px;
    font-size: 18px;
    line-height: 22px;
    cursor: pointer;
    transition: 0.25s;
}

.nav-btn:hover {
    opacity: 0.5;
}

.touch .nav-btn:hover {
    opacity: 1;
}

.nav-btn:active,
.touch .nav-btn:active {
    opacity: 0.5;
}

.nav-prev {
    text-align: right;
}

.nav-next {
    text-align: left;
}

/* DISPLAY */

.display {
    display: flex;
    position: relative;
    width: 100%;
    height: calc(100% - 110px - 24px);
    background-color: #FFFFFF;
    overflow: hidden;
}

.display-content {
    flex: none;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 24px;
    padding-bottom: 48px;
    padding-left: 64px;
    padding-right: 32px;
}

.display-content div {
    max-width: 480px;
}

.display-title {
    font-size: 48px;
    line-height: 120%;
    letter-spacing: 0.05em;
    word-spacing: 0.05em;
    font-weight: 900;
    text-transform: uppercase;
    opacity: 0;
    animation-name: display-title-anima;
    animation-duration: 2s;
    animation-fill-mode: forwards;
}

@keyframes display-title-anima {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

.display-caption {
    padding-top: 30px;
    font-size: 26px;
    line-height: 120%;
    letter-spacing: 0.02em;
    word-spacing: 0.25em;
    font-weight: 300;
    text-transform: uppercase;
    opacity: 0;
    transform: translateY(-10px);
    animation-name: display-caption-anima;
    animation-fill-mode: forwards;
    animation-duration: 2s;
    animation-delay: 0.5s;
}

@keyframes display-caption-anima {
    0% {
        opacity: 0;
        transform: translateY(-10px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.display-button-frame {
    padding-top: 48px;
    text-align: center;
    opacity: 0;
    animation-name: display-button-frame-anima;
    animation-duration: 2s;
    animation-delay: 1s;
    animation-fill-mode: forwards;
}

@keyframes display-button-frame-anima {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

.display-button {
    display: inline-flex;
    align-items: center;
    column-gap: 24px;
    color: #00122E;
    font-size: 16px;
    line-height: 16px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    transition: 0.35s;
}

.display-button:hover {
    color: #6580AA;
}

.touch .display-button:hover {
    color: #00122E;
}

.display-button:active,
.touch .display-button:active {
    color: #6580AA;
}

.display-button-icon {
    width: 22px;
    height: 22px;
    border-radius: 100px;
    background-color: #002D72;
    transition: 0.35s;
}

.display-button:hover .display-button-icon {
    background-color: #6580AA;
}

.touch .display-button:hover .display-button-icon {
    background-color: #002D72;
}

.display-button:active .display-button-icon,
.touch .display-button:active .display-button-icon {
    background-color: #6580AA;
}

.display-button-icon img {
    width: 100%;
    height: 100%;
}

.display-swiper {
    flex: auto;
    width: 100% !important;
    height: 100% !important;
    --swiper-theme-color: #002D72;
    --swiper-pagination-bottom: 24px;
    --swiper-pagination-bullet-size: 9px;
    --swiper-pagination-bullet-width: 9px;
    --swiper-pagination-bullet-height: 9px;
    --swiper-pagination-bullet-horizontal-gap: 5px;
    --swiper-pagination-bullet-inactive-color: rgb(0, 45, 114);
    --swiper-pagination-bullet-inactive-opacity: 0.3;
}

.display-swiper .swiper-pagination {
    width: auto !important;
    left: 24px !important;
    text-align: left;
}

.display-slide {
    position: relative !important;
    width: 100% !important;
    height: 100% !important;
    overflow: hidden;
}

.display-slide-picture {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 2px;
    border-bottom-right-radius: 400px;
    background-color: #E3E8F1;
    overflow: hidden;
}

.display-slide-img {
    position: relative;
    width: 100%;
    height: 100%;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    animation-name: slide-picture-anima;
    animation-duration: 30s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
}

@keyframes slide-picture-anima {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.15);
    }

    100% {
        transform: scale(1);
    }
}

/* CARDS */

.cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: 14px;
    width: 100%;
    max-width: 1424px;
    margin: 0 auto;
}

.cards-alt {
    max-width: 1065px;
}

.card-block {
    width: 100%;
}

.card {
    position: relative;
    display: block;
    width: 100%;
    padding-bottom: 155%;
    border-radius: 2px;
    background-color: #32578E;
    overflow: hidden;
}

.card:last-of-type {
    border-radius: 2px;
    border-bottom-right-radius: 80px;
}

.card-picture {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    transition: 0.5s;
}

.card:hover .card-picture {
    transform: scale(1.2);
}

.touch .card:hover .card-picture {
    transform: scale(1);
}

.card:active .card-picture,
.touch .card:active .card-picture {
    transform: scale(1.2);
}

.card-tint {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #002D72;
    opacity: 0.3;
    transition: 0.5s;
}

.card:hover .card-tint {
    opacity: 0.5;
}

.touch .card:hover .card-tint {
    opacity: 0.3;
}

.card:active .card-tint,
.touch .card:active .card-tint {
    opacity: 0.5;
}

.card-tint-alt {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 45, 114, 0) 0%, rgba(0, 45, 114, 1) 100%);
    opacity: 0.3;
    transition: 0.5s;
}

.card:hover .card-tint-alt {
    opacity: 0.5;
}

.touch .card:hover .card-tint-alt {
    opacity: 0.3;
}

.card:active .card-tint-alt,
.touch .card:active .card-tint-alt {
    opacity: 0.5;
}

.card-caption {
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    padding: 16px;
    color: #FCFDFF;
    font-size: 2vw;
    line-height: 2vw;
    font-weight: 900;
    text-align: center;
    text-transform: uppercase;
}

.card-caption-alt {
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    width: 100%;
    height: 100%;
    padding: 16px;
    padding-bottom: 36px;
    color: #FCFDFF;
    font-size: 2.1vw;
    line-height: 2.4vw;
    font-weight: 300;
    text-align: center;
    text-transform: uppercase;
}

.card-caption-alt strong {
    font-weight: 900;
}

/* IDEAS */

.ideas {
    max-width: 1100px;
    padding-top: 100px;
    padding-bottom: 120px;
}

.map {
    position: relative;
    padding-top: 280px;
    padding-bottom: 280px;
    background-image: url(../assets/map.png);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    overflow: hidden;
}

.map-band {
    position: relative;
    width: 100%;
    height: 470px;
    background-color: rgba(0, 45, 114, 0.05);
}

.map-shadow-top {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 72px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
}

.map-shadow-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 72px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 100%);
}

.map-items {
    position: relative;
    height: 100%;
    z-index: 2;
}

.map-item {
    position: absolute;
    top: 50%;
    left: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    row-gap: 22px;
    transform: translateX(-50%) translateY(-50%) translateY(var(--translatey)) translateX(var(--translatex));
}

.map-item:hover {
    z-index: 10;
}

.touch .map-item:hover {
    z-index: auto;
}

.map-item:active,
.touch .map-item:active {
    z-index: 10;
}

.map-display {
    width: 212px;
    margin: 0 auto;
}

.map-display-picture {
    position: relative;
    width: 100%;
    padding-bottom: 155%;
}

.map-display-video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    border-radius: 2px;
    border-bottom-right-radius: 80px;
    background-color: #97AAC7;
    transition: left 0.3s ease, right 0.3s ease, width 0.3s ease;
    overflow: hidden;
}

.map-display-media {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.map-item:hover .map-display-video {
    width: 224%;
}

.touch .map-item:hover .map-display-video {
    width: 100%;
}

.map-item:active .map-display-video,
.touch .map-item:active .map-display-video {
    width: 224%;
}

.map-city {
    font-size: 40px;
    line-height: 40px;
    font-weight: 900;
    text-transform: uppercase;
    text-align: center;
}

.map-action {
    display: flex;
    justify-content: flex-end;
    padding-right: 90px;
}

/* GALLERY */

.gallery-ticker {
    padding-top: 0px;
    padding-bottom: 170px;
    cursor: move;
    cursor: grab;
    cursor: -moz-grab;
    cursor: -webkit-grab;
}

.gallery-ticker:active {
    cursor: grabbing;
    cursor: -moz-grabbing;
    cursor: -webkit-grabbing;
}

/* EXCELLENCE */

.excellence {
    position: relative;
    width: 100%;
    height: 100%;
    margin-bottom: 100px;
    overflow: hidden;
}

.excellence-display {
    position: relative;
    display: flex;
    width: 100%;
    height: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.excellence-display-quotes {
    position: relative;
    width: 100%;
}

.excellence-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transform: translateY(100px);
}

.excellence-item-1 {
    opacity: 1;
    transform: translateY(0);
}

.excellence-layout {
    display: flex;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.excellence-caption {
    width: 100%;
    max-width: 740px;
}

.excellence-shape {
    position: absolute;
    top: 0;
    left: 0;
    width: 62%;
    height: 100%;
    border-radius: 2px;
    border-bottom-right-radius: 400px;
    background-color: #E3E8F1;
}

/* SUCCESS */

.success {
    display: flex;
    flex-direction: column;
    row-gap: 80px;
    padding-bottom: 140px;
    overflow: hidden;
}

.success-grid-1 {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
    gap: 40px;
}

.success-img {
    width: 100%;
    background-color: #E3E8F1;
    border-radius: 2px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.success-1 {
    display: flex;
    align-items: center;
    padding-top: 100px;
    padding-bottom: 100px;
    padding-left: 40px;
    padding-right: 0px;
}

.success-2 {
    display: flex;
    align-items: center;
    overflow: hidden;
}

.success-img-2 {
    padding-bottom: 114.5475372279496%;
    background-image: url(../assets/success-1.jpg);
}

.success-3 {
    display: flex;
    align-items: center;
    overflow: hidden;
}

.success-img-3 {
    padding-bottom: 70.2247191011236%;
    background-image: url(../assets/success-2.jpg);
}

.success-4 {
    display: flex;
    align-items: center;
    overflow: hidden;
}

.success-img-4 {
    padding-bottom: 156.7398119122257%;
    background-image: url(../assets/success-3.jpg);
}

.success-5 {
    display: flex;
    align-items: center;
    overflow: hidden;
}

.success-img-5 {
    padding-bottom: 95.14747859181732%;
    background-image: url(../assets/success-4.jpg);
}

.success-grid-2 {
    display: grid;
    grid-template-columns: 0.22fr 0.28fr 0.25fr 0.25fr;
    gap: 40px;
}

.success-6 {
    display: flex;
    align-items: center;
    overflow: hidden;
}

.success-img-6 {
    padding-bottom: 72.46376811594203%;
    background-image: url(../assets/success-5.jpg);
}

.success-7 {
    display: flex;
    align-items: center;
    overflow: hidden;
}

.success-img-7 {
    padding-bottom: 74.68259895444361%;
    background-image: url(../assets/success-6.jpg);
}

.success-8 {
    display: flex;
    align-items: center;
    overflow: hidden;
}

.success-img-8 {
    padding-bottom: 119.047619047619%;
    background-image: url(../assets/success-7.jpg);
}

.success-9 {
    display: block;
    padding-top: 26px;
    padding-bottom: 30px;
    padding-left: 30px;
    padding-right: 48px;
    background-color: #E3E8F1;
    color: #00122E;
    font-size: 20px;
    line-height: 26px;
    letter-spacing: 0.02em;
    transition: 0.35s;
}

.success-button {
    padding-top: 20px;
    text-decoration: underline;
    text-transform: uppercase;
}

.success-9:hover {
    color: #32578E;
}

.touch .success-9:hover {
    color: #00122E;
}

.success-9:active,
.touch .success-9:active {
    color: #32578E;
}

/* ANALYTICS */

.analytics {
    padding-top: 160px;
    padding-bottom: 180px;
    border-radius: 2px;
    border-top-left-radius: 250px;
    background-color: #E3E8F1;
    overflow: hidden;
}

.analytics-header {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    padding-left: 32px;
    padding-right: 32px;
}

.analytics-items {
    display: grid;
    grid-template-columns: 16.66666666666667% 16.66666666666667% 16.66666666666667% 16.66666666666667% 16.66666666666667% 16.66666666666667%;
    row-gap: 32px;
    padding-top: 100px;
    padding-left: 64px;
    padding-right: 64px;
}

.analytics-item {
    position: relative;
    display: flex;
    flex-direction: column;
    row-gap: 14px;
    padding-left: 32px;
    padding-right: 32px;
}

.analytics-statistic {
    display: flex;
    justify-content: center;
    align-items: baseline;
    column-gap: 4px;
}

.analytics-sides {
    color: #97AAC7;
    font-size: 40px;
    line-height: 40px;
    letter-spacing: 0.05em;
    word-spacing: 0.05em;
    font-weight: 900;
}

.analytics-number {
    color: #00122E;
    font-size: 68px;
    line-height: 68px;
    letter-spacing: 0em;
    word-spacing: 0.05em;
    font-weight: 900;
    font-variant-numeric: tabular-nums;
    font-feature-settings: "tnum";
}

.digit {
  overflow: hidden;
  height: 1em;
  position: relative;
  display: inline-block;
}

.digit-stack {
  display: block;
  transform: translateY(0);
  will-change: transform;
}

.analytics-caption {
    color: #00122E;
    font-size: 20px;
    line-height: 26px;
    letter-spacing: 0.02em;
    text-align: center;
}

.analytics-separator {
    position: absolute;
    top: 28%;
    right: 0;
    width: 1px;
    height: 24px;
    background-color: #00122E;
    opacity: 0.5;
}

/* PEOPLE */

.people {
    position: relative;
    overflow: hidden;
}

.people-caption {
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    padding-left: 24px;
    padding-right: 24px;
    font-size: 135px;
    font-weight: 900;
    letter-spacing: 0.05em;
    word-spacing: 0.05em;
    text-transform: uppercase;
    text-align: center;
}

.people-caption-text {
    transform: translateY(-350%);
}

.people-items {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 0.5fr 1fr 1fr;
    column-gap: 8px;
    width: 100%;
    max-width: 1600px;
    margin: 0 auto;
    padding-top: 190px;
    padding-bottom: 190px;
    padding-left: 32px;
    padding-right: 32px;
}

.people-bubble {
    padding-top: 60px;
    padding-bottom: 70px;
    padding-left: 50px;
    padding-right: 50px;
    border-radius: 100px;
    border-bottom-right-radius: 2px;
    background-color: rgba(235, 237, 245, 0.75);
    backdrop-filter: blur(16px);
    color: #00122E;
    font-size: 20px;
    line-height: 26px;
    letter-spacing: 0.02em;
    font-weight: 500;
}

.people-author {
    padding-top: 18px;
    font-size: 14px;
    line-height: 20px;
    font-weight: 300;
}

.people-bubble-1 {
    transform: scale(0.9) translateY(70%) translateX(20%);
}

.people-bubble-2 {
    transform: scale(0.9) translateY(50%) translateX(-50%);
}

.people-bubble-3 {
    transform: scale(0.9) translateY(100%) translateX(-20%);
}

/* CLIENTS */

.marquee {
    display: flex;
    flex-direction: column;
    gap: calc(clamp(10rem, 1rem + 40vmin, 30rem) / 14);
    max-width: 100vw;
    margin: auto;
    margin-bottom: 140px;
}

.marquee-frame {
    display: flex;
    gap: calc(clamp(10rem, 1rem + 40vmin, 30rem) / 14);
    overflow: hidden;
    mask-image: linear-gradient(to right, hsl(0 0% 0% / 0), hsl(0 0% 0% / 1) 20%, hsl(0 0% 0% / 1) 80%, hsl(0 0% 0% / 0));
    -webkit-mask-image: linear-gradient(to right, hsl(0 0% 0% / 0), hsl(0 0% 0% / 1) 20%, hsl(0 0% 0% / 1) 80%, hsl(0 0% 0% / 0));
}

.marquee-logos {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: space-around;
    gap: calc(clamp(10rem, 1rem + 40vmin, 30rem) / 14);
    min-width: 100%;
    animation: marquee-anima 90s linear infinite;
}

.marquee-frame-reverse .marquee-logos {
    animation-direction: reverse;
    animation-delay: -3s;
}

@keyframes marquee-anima {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(calc(-100% - calc(clamp(10rem, 1rem + 40vmin, 30rem) / 14)));
    }
}

.marquee-logos div {
    display: flex;
    justify-content: center;
    align-items: center;
    width: clamp(10rem, 1rem + 40vmin, 30rem);
    padding: calc(clamp(10rem, 1rem + 40vmin, 30rem) / 10);
    aspect-ratio: 16/9;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.marquee-logos-alt div {
    width: clamp(10rem, 1rem + 24vmin, 30rem);
    aspect-ratio: 1/1;
}

.marquee-logos div img {
    display: block;
    width: 100%;
}

/* APPOINTMENTS */

.appointments {
    padding-top: 90px;
    padding-bottom: 58px;
    padding-left: 0px;
    padding-right: 0px;
    background-color: #E3E8F1;
}

.appointments-swiper {
    width: 100%;
    margin: 0 auto;
    padding-bottom: 32px !important;
    --swiper-theme-color: #002D72;
    --swiper-pagination-right: 0px;
    --swiper-pagination-bottom: 0px;
    --swiper-pagination-bullet-size: 7px;
    --swiper-pagination-bullet-width: 7px;
    --swiper-pagination-bullet-height: 7px;
    --swiper-pagination-bullet-inactive-color: rgb(0, 45, 114);
    --swiper-pagination-bullet-inactive-opacity: 0.5;
}

.appointments-swiper .swiper-pagination {
    bottom: 0px !important;
}

.appointments-slide {
    width: 320px !important;
    height: unset !important;
}

.appointment {
    padding-top: 40px;
    padding-bottom: 32px;
    padding-left: 32px;
    padding-right: 32px;
    border-radius: 2px;
    border-bottom-right-radius: 100px;
    border: solid 1px #002D72;
    background-color: #FCFDFF;
    font-size: 14px;
    line-height: 20px;
    letter-spacing: 0.02em;
    text-align: center;
}

.appointment-picture {
    padding-bottom: 32px;
    padding-left: 14%;
    padding-right: 14%;
}

.appointment-picture img {
    display: block;
    width: 100%;
}

.appointment-name {
    padding-top: 16px;
    font-weight: 700;
}

.appointment-caption {
    font-weight: 300;
}

.appointment-moment {
    padding-top: 12px;
    font-weight: 700;
}

.appointment-place {
    padding-bottom: 14px;
    font-weight: 700;
}

.appointment-bubbles {
    display: flex;
    justify-content: center;
    column-gap: 10px;
    height: 38px;
}

.appointment-bubble {
    width: 38px;
    height: 38px;
    border-radius: 100px;
    background-color: #E3E8F1;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

/* READY */

.ready-frame {
    position: relative;
    margin-top: 240px;
    margin-bottom: 190px;
    overflow: hidden;
}

.ready-frame-alt {
    position: relative;
    margin-top: 200px;
    margin-bottom: 64px;
    overflow: hidden;
}

.ready {
    padding-top: 110px;
    padding-bottom: 80px;
}

.ready-alt {
    position: relative;
    padding-top: 210px;
    padding-bottom: 180px;
}

.ready-alt-2 {
    position: relative;
    padding-top: 140px;
    padding-bottom: 58px;
}

.ready-alt-3 {
    position: relative;
    padding-top: 120px;
    padding-bottom: 100px;
}

.ready-alt-4 {
    position: relative;
    padding-top: 80px;
    padding-bottom: 160px;
}

.ready-title {
    max-width: 900px;
    margin: 0 auto;
}

.ready-title-alt {
    max-width: 1200px;
    margin: 0 auto;
}

.ready-caption {
    padding-top: 64px;
    padding-bottom: 32px;
    color: #00122E;
    font-size: 32px;
    line-height: 38px;
    letter-spacing: 0.02em;
    text-align: center;
}

.ready-button {
    padding-top: 34px;
    text-align: center;
}

.ready-button-alt {
    padding-top: 96px;
    text-align: center;
}

.ready-shape {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 37%;
    height: 100%;
    border-radius: 2px;
    border-top-left-radius: 400px;
    background-color: #E3E8F1;
}

.ready-shape-2 {
    position: absolute;
    bottom: 0;
    right: 5%;
    width: 90%;
    height: 100%;
    border-radius: 2px;
    border-bottom-left-radius: 200px;
    background-color: #E3E8F1;
}

/* AFFILLIATIONS */

.affilliations-block {
    margin-bottom: 110px;
    padding-left: 64px;
    padding-right: 64px;
    background-color: #F2F7FF;
}

.affilliations {
    display: flex;
    column-gap: 16%;
    width: 100%;
    max-width: 1540px;
    margin: 0 auto;
    padding-top: 100px;
    padding-bottom: 100px;
}

.affilliations-caption {
    flex: none;
    display: flex;
    align-items: center;
    font-size: 20px;
    line-height: 22px;
    font-weight: 600;
    text-transform: uppercase;
}

.affilliations-logos {
    flex: auto;
    display: flex;
    justify-content: space-between;
}

.affilliations-logo img {
    display: block;
    width: auto;
    height: 50px;
    opacity: 0.7;
}

/* DMC */

.dmc-intro {
    position: relative;
    width: 75%;
    height: calc(100% - 110px - 24px);
    background-color: #E3E8F1;
    border-top-right-radius: 2px;
    border-bottom-right-radius: 400px;
    overflow: hidden;
}

.dmc-intro-picture {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url(../assets/dmc-1.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    animation-name: dmc-intro-picture-anima;
    animation-duration: 30s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
}

@keyframes dmc-intro-picture-anima {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.15);
    }

    100% {
        transform: scale(1);
    }
}

.dmc-intro-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    padding-top: 24px;
    padding-bottom: 20%;
    padding-left: 6%;
    padding-right: 6%;
}

.dmc-intro-title {
    padding-bottom: 26px;
    max-width: 600px;
    color: #FFFFFF;
    font-size: 40px;
    line-height: 50px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    word-spacing: 0.05em;
}

.dmc-intro-subtitle {
    color: #FFFFFF;
    font-size: 25px;
    line-height: 35px;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    word-spacing: 0.5em;
}

.dmc-intro-subtitle a {
    transition: 0.25s;
}

.dmc-intro-subtitle a:hover {
    opacity: 0.5;
}

.touch .dmc-intro-subtitle a:hover {
    opacity: 1;
}

.dmc-intro-subtitle a:active,
.touch .dmc-intro-subtitle a:active {
    opacity: 0.5;
}

.dmc-blocks {
    display: flex;
    flex-direction: column;
    row-gap: 80px;
    overflow: hidden;
}

.dmc-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 5%;
    width: 100%;
    max-width: 1480px;
    margin: 0 auto;
}

.dmc-block-alt {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 5%;
}

.dmc-picture {
    width: 100%;
    padding-bottom: 100%;
    background-color: #E3E8F1;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.dmc-picture-1 {
    border-radius: 2px;
    background-image: url(../assets/dmc-2.jpg);
}

.dmc-picture-2 {
    border-radius: 2px;
    background-image: url(../assets/dmc-3.jpg);
}

.dmc-picture-3 {
    border-radius: 2px;
    border-bottom-right-radius: 200px;
    background-image: url(../assets/dmc-4.jpg);
}

.dmc-content {
    padding-top: 100px;
    padding-bottom: 100px;
    padding-left: 14px;
    padding-right: 14px;
}

.dmc-content strong {
    font-weight: 700;
}

.dmc-button-frame {
    display: flex;
    justify-content: flex-end;
    padding-top: 64px;
    padding-right: 5%;
}

.dmc-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 200px;
    border: solid 1px #002D72;
    transition: 0.35s;
}

.dmc-button:hover {
    opacity: 0.5;
    transform: scale(0.9);
}

.touch .dmc-button:hover {
    opacity: 1;
    transform: scale(1);
}

.dmc-button:active,
.touch .dmc-button:active {
    opacity: 0.5;
    transform: scale(0.9);
}

/* DESTINATIONS */

.destinations-map {
    position: relative;
    background-image: url(../assets/map-2.png);
    background-position: center;
    background-size: cover;
    background-size: 1920px auto;
    background-repeat: no-repeat;
}

.destinations-points {
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    justify-content: center;
    align-items: center;
}

.destinations-point {
    position: absolute;
    top: 50%;
    left: 50%;
    display: inline-flex;
    flex-direction: column;
    row-gap: 3px;
    text-align: center;
    cursor: pointer;
    color: #002D72;
    font-size: 12px;
    line-height: 14px;
    text-transform: uppercase;
    font-weight: 400;
    z-index: 4;
    transform: translateX(-50%) translateY(-50%) translateY(var(--translatey-alt)) translateX(var(--translatex-alt));
    opacity: 0;
    animation-name: destinations-point-anima;
    animation-duration: 3s;
    animation-fill-mode: forwards;
    transition: 0.25s;
}

@keyframes destinations-point-anima {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

.destinations-point:hover {
    color: #32578E;
}

.touch .destinations-point:hover {
    color: #002D72;
}

.destinations-point:active,
.touch .destinations-point:active {
    color: #32578E;
}

.destinations-pointer {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 24px;
    height: 24px;
    margin: 0 auto;
    border: solid 2px #002D72;
    border-radius: 100px;
    background-color: transparent;
    transition: 0.25s;
}

.destinations-point:hover .destinations-pointer {
    border-color: #32578E;
    color: #32578E;
}

.touch .destinations-point:hover .destinations-pointer {
    border-color: #002D72;
    color: #002D72;
}

.destinations-point:active .destinations-pointer,
.touch .destinations-point:active .destinations-pointer {
    border-color: #32578E;
    color: #32578E;
}

.destinations-point-on .destinations-pointer {
    border-color: transparent;
    background-color: #002D72;
}

.destinations-point-on:hover .destinations-pointer {
    border-color: transparent;
    color: #32578E;
}

.touch .destinations-point-on:hover .destinations-pointer {
    border-color: transparent;
    color: #002D72;
}

.destinations-point-on:active .destinations-pointer,
.touch .destinations-point-on:active .destinations-pointer {
    border-color: transparent;
    color: #32578E;
}

.destinations-pointer-horizontal {
    position: absolute;
    top: 9px;
    left: 4px;
    width: 12px;
    height: 2px;
    border-radius: 100px;
    background-color: #002D72;
    transition: 0.25s;
}

.destinations-pointer-vertical {
    position: absolute;
    top: 4px;
    left: 9px;
    height: 12px;
    width: 2px;
    border-radius: 100px;
    background-color: #002D72;
    transition: 0.25s;
}

.destinations-point:hover .destinations-pointer-horizontal {
    background-color: #32578E;
}

.touch .destinations-point:hover .destinations-pointer-horizontal {
    background-color: #002D72;
}

.destinations-point:active .destinations-pointer-horizontal,
.touch .destinations-point:active .destinations-pointer-horizontal {
    background-color: #32578E;
}

.destinations-point:hover .destinations-pointer-vertical {
    background-color: #32578E;
}

.touch .destinations-point:hover .destinations-pointer-vertical {
    background-color: #002D72;
}

.destinations-point:active .destinations-pointer-vertical,
.touch .destinations-point:active .destinations-pointer-vertical {
    background-color: #32578E;
}

.destinations-point-on .destinations-pointer-horizontal {
    background-color: #CEDBE4;
}

.destinations-point-on .destinations-pointer-vertical {
    background-color: #CEDBE4;
}

.destinations-point-on:hover .destinations-pointer-horizontal {
    background-color: #CEDBE4;
}

.touch .destinations-point-on:hover .destinations-pointer-horizontal {
    background-color: #CEDBE4;
}

.destinations-point-on:active .destinations-pointer-horizontal,
.touch .destinations-point-on:active .destinations-pointer-horizontal {
    background-color: #CEDBE4;
}

.destinations-point-on:hover .destinations-pointer-vertical {
    background-color: #CEDBE4;
}

.touch .destinations-point-on:hover .destinations-pointer-vertical {
    background-color: #CEDBE4;
}

.destinations-point-on:active .destinations-pointer-vertical,
.touch .destinations-point-on:active .destinations-pointer-vertical {
    background-color: #CEDBE4;
}

.destinations-title {
    flex: auto;
    font-size: 60px;
    line-height: 72px;
    text-align: left;
    padding-left: 10%;
}

.destinations-title-alt {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding-top: 18%;
    padding-left: 10%;
    padding-right: 10%;
    text-align: center;
}

.destinations-data {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 32px;
    padding: 32px;
    padding-top: 120px;
    padding-bottom: 120px;
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 3;
}

.destinations-data-alt {
    display: none;
    grid-template-columns: 1fr;
    row-gap: 24px;
    padding: 24px;
    padding-top: 0px;
    padding-bottom: 0px;
    margin-top: -55%;
}

.destinations-transports-cards {
    flex: none;
    padding-left: 15%;
}

.destinations-transports {
    display: flex;
    flex-direction: column;
    row-gap: 32px;
}

.destinations-transport {
    display: none;
    width: 330px;
}

.destinations-transport-on {
    display: block;
    animation: destinations-transport-anima 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
}

@keyframes destinations-transport-anima {
    0% {
        transform: translateY(8px);
        opacity: 0;
    }

    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

.destinations-drop {
    display: flex;
    column-gap: 8px;
    background-color: #002D72;
    border-radius: 2px;
    padding: 9px;
    cursor: pointer;
    transition: 0.25s;
}

.destinations-drop:hover {
    background-color: #32578E;
}

.touch .destinations-drop:hover {
    background-color: #002D72;
}

.destinations-drop:active,
.touch .destinations-drop:active {
    background-color: #32578E;
}

.destinations-drop-caption {
    flex: auto;
    color: #FCFDFF;
    font-size: 14px;
    line-height: 16px;
    font-weight: 700;
    text-transform: uppercase;
}

.destinations-drop-arrow {
    flex: none;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 2px;
    transform: rotate(180deg);
    transition: 0.5s;
}

.destinations-drop-on .destinations-drop-arrow {
    transform: rotate(0deg);
}

.destinations-transport-items {
    display: none;
    border-radius: 2px;
    background-color: #FCFDFF;
    border: solid 1px #CAD3E3;
    padding: 12px;
    margin-top: 4px;
}

.destinations-transport-items-on {
    display: block;
    animation: destinations-transport-items-anima 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;

}

@keyframes destinations-transport-items-anima {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

.destinations-transport-item {
    padding-top: 10px;
    padding-bottom: 10px;
    border-bottom: solid 1px #CAD3E3;
    color: #00122E;
    font-size: 14px;
    line-height: 20px;
    letter-spacing: 0.02em;
    font-weight: 300;
}

.destinations-transport-item:first-of-type {
    padding-top: 0px;
}

.destinations-transport-item:last-of-type {
    border-bottom: none;
    padding-bottom: 0px;
}

.destinations-transport-item strong {
    font-weight: 700;
}

.destinations-sheets {
    display: flex;
    justify-content: flex-end;
    align-items: flex-start;
}

.destinations-sheet {
    display: none;
    width: 540px;
    padding: 24px;
    padding-bottom: 48px;
    border: solid 1px #002D72;
    border-radius: 2px;
    border-bottom-right-radius: 80px;
    background-color: #FFFFFF;
}

.destinations-sheet-on {
    display: block;
    animation: destinations-sheet-anima 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
}

@keyframes destinations-sheet-anima {
    0% {
        transform: translateY(8px);
        opacity: 0;
    }

    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

.destinations-picture {
    width: 100%;
    padding-bottom: 60.8%;
    background-color: #E3E8F1;
    border-radius: 2px;
    border-bottom-right-radius: 80px;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.destinations-name {
    color: #00122E;
    font-size: 30px;
    line-height: 34px;
    letter-spacing: 0.02em;
    font-weight: 300;
    text-transform: uppercase;
    padding-top: 23px;
    padding-bottom: 8px;
}

.destinations-section {
    display: flex;
    column-gap: 8px;
    cursor: pointer;
    padding-top: 14px;
    padding-bottom: 0px;
    color: #00122E;
    transition: 0.25s;
}

.destinations-section:hover {
    color: #32578E;
}

.touch .destinations-section:hover {
    color: #00122E;
}

.destinations-section:active,
.touch .destinations-section:active {
    color: #32578E;
}

.destinations-section-title {
    flex: auto;
    font-size: 20px;
    line-height: 24px;
    letter-spacing: 0.02em;
    font-weight: 700;
    text-transform: uppercase;
}

.destinations-plus {
    flex: none;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 24px;
    height: 24px;
    background-color: #002D72;
    border-radius: 2px;
    transition: 0.25s;
}

.destinations-section:hover .destinations-plus {
    background-color: #32578E;
}

.touch .destinations-section:hover .destinations-plus {
    background-color: #002D72;
}

.destinations-section:active .destinations-plus,
.touch .destinations-section:active .destinations-plus {
    background-color: #32578E;
}

.destinations-plus-horizontal {
    position: absolute;
    top: 11px;
    left: 6px;
    width: 12px;
    height: 2px;
    background-color: #FFFFFF;
    border-radius: 100px;
}

.destinations-plus-vertical {
    position: absolute;
    top: 6px;
    left: 11px;
    height: 12px;
    width: 2px;
    border-radius: 100px;
    background-color: #FFFFFF;
    transition: 0.25s;
}

.destinations-section-on .destinations-plus-vertical {
    opacity: 0;
}

.destinations-divisor {
    width: 100%;
    height: 2px;
    background-color: #EAEAEB;
    margin-top: 15px;
}

.destinations-info {
    display: none;
    padding-top: 8px;
    color: #00122E;
    font-size: 14px;
    line-height: 20px;
    letter-spacing: 0.02em;
    font-weight: 300;
}

.destinations-info strong {
    font-weight: 700;
}

.destinations-info-on {
    display: block;
    animation: destinations-info-anima 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;

}

@keyframes destinations-info-anima {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

.destinations {
    display: flex;
    flex-direction: column;
    row-gap: 48px;
    width: 100%;
    max-width: 1234px;
    margin: 0 auto;
}

.destination {
    border-top: solid 1px #002D72;
}

.destination-title {
    font-size: 22px;
    line-height: 30px;
    text-align: left;
    padding-top: 15px;
    padding-bottom: 15px;
}

.destination-content {
    padding-left: 10%;
    padding-right: 10%;
}

/* CITY */

.city-gallery-frame {
    position: relative;
}

.city-gallery-swiper {
    width: 100%;
    --swiper-theme-color: #FFFFFF;
    --swiper-navigation-size: 32px;
}

.city-gallery-slide {
    position: relative !important;
    width: 100% !important;
    padding-bottom: 50%;
    background-color: #E3E8F1;
}

.city-gallery-picture {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.city-gallery-caption {
    position: absolute;
    top: 10%;
    right: 0;
    width: 100%;
    max-width: 700px;
    padding: 40px;
    padding-top: 32px;
    border-radius: 2px;
    border-bottom-left-radius: 40px;
    background-color: #002D72;
    color: #FFFFFF;
    font-size: 24px;
    line-height: 32px;
}

.city-gallery-caption-title {
    font-weight: 700;
    font-size: 32px;
    line-height: 40px;
}

.city-thumbs {
    position: absolute;
    left: 0px;
    bottom: 14px;
    display: flex;
    justify-content: flex-end;
    width: 100%;
}

.city-thumbs-swiper {
    width: auto !important;
    height: auto !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    border-radius: 12px;
}

.city-thumbs-swiper-slide {
    width: 94px !important;
    height: 140px !important;
    border-radius: 12px;
    border: solid 2px rgba(255, 255, 255, 0.25);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    cursor: pointer;
    transition: 0.25s;
}

.city-thumbs-swiper .swiper-slide-thumb-active {
    border: solid 2px rgba(255, 255, 255, 1);
}

.gallery-container {
    position: relative;
}

.gallery-swiper {
    position: relative;
    width: 100% !important;
    height: auto !important;
}

.gallery-swiper-left {
    position: absolute;
    top: 0;
    left: 0;
    width: 10%;
    height: 100%;
    background: linear-gradient(to right, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
    z-index: 2;
}

.gallery-swiper-right {
    position: absolute;
    top: 0;
    right: 0;
    width: 10%;
    height: 100%;
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 100%);
    z-index: 2;
}

.gallery-slide {
    background-color: #EFEFEF;
    transform: scale(0.7) !important;
    transition: transform 0.3s ease;
    cursor: pointer;
}

.gallery-slide-picture {
    width: 100%;
    padding-bottom: 150%;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.gallery-swiper .swiper-slide-active {
    transform: scale(1) !important;
    cursor: default !important;
}

.gallery-caption {
    position: relative;
    width: 100%;
    padding: 24px;
    padding-top: 48px;
    padding-right: 5%;
    text-align: center;
}

.gallery-caption-title {
    font-size: 40px;
    line-height: 48px;
    font-weight: 900;
    letter-spacing: 0.05em;
    word-spacing: 0.05em;
    text-transform: uppercase;
}

.gallery-caption-subtitle {
    padding-bottom: 8px;
    font-size: 30px;
    line-height: 38px;
    font-weight: 300;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.gallery-caption a {
    color: #002D72;
    transition: 0.25s;
}

.gallery-caption a:hover {
    color: #00122E;
}

.touch .gallery-caption a:hover {
    color: #002D72;
}

.gallery-caption a:active,
.touch .gallery-caption a:active {
    color: #00122E;
}

/* ABOUT US */

.timeline {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.timeline-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.timeline-bg>div:nth-child(1) {
    background-color: #FFFFFF;
}

.timeline-bg>div:nth-child(2) {
    background-color: #F1F3F8;
}

.timeline-event:last-of-type .timeline-bg>div:nth-child(2) {
    border-bottom-right-radius: 200px;
}

.timeline-event {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    display: flex;
    align-items: center;
    transform: translateY(100px);
}

.timeline-event-layout {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.timeline-event-1 {
    opacity: 1;
    transform: translateY(0);
}

.timeline-title {
    padding-left: 10%;
    padding-right: 5%;
    font-size: 62px;
    line-height: 68px;
    letter-spacing: 0.05em;
    word-spacing: 0.05em;
    font-weight: 900;
    text-transform: uppercase;
    word-break: break-word;
    overflow-wrap: break-word;
}

.timeline-title-hidden {
    display: none;
    padding-bottom: 10px;
    font-size: 26px;
    line-height: 30px;
    letter-spacing: 0.05em;
    word-spacing: 0.05em;
    font-weight: 900;
    text-transform: uppercase;
}

.timeline-position {
    position: absolute;
    top: 0;
    left: calc(50% + 48px);
    display: flex;
    justify-content: center;
    height: 100%;
    width: 1px;
    background-color: #F1F3F8;
    z-index: 2;
}

.timeline-line {
    position: relative;
    width: 1px;
    height: 100%;
    background-color: #002D72;
}

.timeline-line-top {
    position: absolute;
    top: 0;
    left: 0;
    width: 1px;
    height: 140px;
    background: linear-gradient(to bottom, #F1F3F8 0%, #002D72 100%);
}

.timeline-line-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 1px;
    height: 140px;
    background: linear-gradient(to bottom, #002D72 0%, #F1F3F8 100%);
}

.timeline-point {
    position: absolute;
    top: 24px;
    left: calc(50% + 48px - 9px);
    width: 19px;
    height: 19px;
    border-radius: 100px;
    background-color: #002D72;
}

.timeline-caption {
    position: relative;
    padding-left: 120px;
    padding-right: calc(10% + 72px);
    color: #00122E;
    font-size: 20px;
    line-height: 26px;
    letter-spacing: 0.02em;
}

/* TEAM */

.team {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 24px;
    padding-bottom: 172px;
}

.team-nav {
    display: flex;
    column-gap: 12px;
    padding-bottom: 30px;
}

.team-nav-btn {
    font-size: 16px;
    line-height: 22px;
    text-transform: uppercase;
    cursor: pointer;
    transition: 0.25s;
}

.team-nav-btn:hover {
    opacity: 0.5;
}

.touch .team-nav-btn:hover {
    opacity: 1;
}

.team-nav-btn:active,
.touch .team-nav-btn:active {
    opacity: 0.5;
}

.team-nav-btn-on {
    font-weight: 700;
    cursor: default;
}

.team-nav-btn-on:hover {
    opacity: 1;
}

.touch .team-nav-btn-on:hover {
    opacity: 1;
}

.team-nav-btn-on:active,
.touch .team-nav-btn-on:active {
    opacity: 1;
}

.team-group {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    background-color: #F1F3F8;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    transition: 0.3s;
}

.team-group-off {
    opacity: 0.2;
}

.team-group-name {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    padding: 30px;
    padding-top: 60px;
    padding-bottom: 24px;
    color: #FFFFFF;
    font-size: 22px;
    line-height: 24px;
    font-weight: 900;
    text-transform: uppercase;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.5) 100%);
}

.team-items {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    margin-top: 24px;
}

.team-item {
    background-color: #F1F3F8;
    transition: 0.3s;
}

.team-item-pic {
    position: relative;
    width: 100%;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.team-item-square-100 {
    width: 100%;
}

.team-item-square-100-pic {
    padding-bottom: 100%;
}

.team-item-square-50 {
    width: calc(50% - 12px);
}

.team-item-square-50-pic {
    padding-bottom: 100%;
}

.team-item-landscape-100 {
    width: 100%;
}

.team-item-landscape-100-pic {
    padding-bottom: 50%;
}

.team-item-portrait-100 {
    width: 100%;
}

.team-item-portrait-100-pic {
    padding-bottom: 150%;
}

.team-item-portrait-50 {
    width: calc(50% - 12px);
}

.team-item-portrait-50-pic {
    padding-bottom: 175%;
}

.team-item-caption {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    background: linear-gradient(to bottom,  rgba(0,45,114,0) 0%,rgba(0,45,114,1) 100%);
    padding: 12px;
    padding-top: 48px;
    color: #FFFFFF;
    font-size: 14px;
    line-height: 18px;
    font-weight: 200;
    text-transform: uppercase;
    opacity: 0;
    transition: 0.25s;
}

.team-item-caption strong {
    font-weight: 900;
}

.team-item:hover .team-item-caption {
    opacity: 1;
}

.touch .team-item:hover .team-item-caption {
    opacity: 0;
}

.team-item:active .team-item-caption,
.touch .team-item:active .team-item-caption {
    opacity: 1;
}

.team-item-email {
    text-transform: capitalize;
    transition: 0.25s;
}

.team-item-email:hover {
    opacity: 0.5;
}

.touch .team-item-email:hover {
    opacity: 1;
}

.team-item-email:active,
.touch .team-item-email:active {
    opacity: 0.5;
}

/* ENQUIRY */

.enquiry {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    justify-content: flex-end;
    width: 100%;
    height: 100%;
    animation: enquiry-anima 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
    z-index: 101;
}

@keyframes enquiry-anima {
    0% {
        transform: translateX(64px);
        opacity: 0;
    }

    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

.enquiry-alt {
    justify-content: center;
    align-items: center;
    animation: enquiry-anima-alt 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
}

@keyframes enquiry-anima-alt {
    0% {
        transform: scale(0.9);
        opacity: 0;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.enquiry-container {
    position: relative;
    width: auto;
    height: 100%;
    border-radius: 2px;
    border-bottom-left-radius: 200px;
    background-color: #002D72;
    box-shadow: -6px 6px 16px 0 rgba(0, 0, 0, 0.35);
}

.enquiry-alt .enquiry-container {
    width: auto;
    height: auto;
    max-height: 100%;
    border-bottom-left-radius: 0px;
    border-bottom-right-radius: 200px;
    box-shadow: -6px 6px 16px 0 rgba(0, 0, 0, 0.35);
}

.enquiry-bg {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.35);
    backdrop-filter: blur(16px);
    animation: enquiry-bg-anima 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
    z-index: 101;
}

@keyframes enquiry-bg-anima {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

.enquiry-frame {
    position: relative;
    height: 100%;
    padding-top: 72px;
    padding-bottom: 90px;
    padding-left: 64px;
    padding-right: 40px;
}

.enquiry-alt .enquiry-frame {
    height: 100%;
    padding-bottom: 48px;
    padding-left: 120px;
    padding-right: 120px;
}

.enquiry-layout {
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    padding-bottom: 12px;
    padding-right: 12px;
    overflow: auto;
}

.enquiry-layout::-webkit-scrollbar {
    width: 8px;
    height: 8px;
    border-radius: 30px;
    background-color: rgba(50, 87, 142, 0.25);
}

.enquiry-layout::-webkit-scrollbar-thumb {
    background: #32578E;
    border-radius: 30px;
    border: none 1px transparent;
}

.enquiry-layout::-webkit-scrollbar-thumb:hover {
    background: #6580AA;
}

.enquiry-layout::-webkit-scrollbar-track {
    border-radius: 0px;
    background: transparent;
}

.enquiry-close {
    position: absolute;
    top: 24px;
    right: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 48px;
    height: 48px;
    cursor: pointer;
}

.enquiry-close img {
    display: block;
    width: 16px;
    height: 16px;
    transition: 0.5s;
}

.enquiry-close:hover img {
    transform: rotate(180deg);
}

.touch .enquiry-close:hover img {
    transform: rotate(0deg);
}

.enquiry-close:active img,
.touch .enquiry-close:active img {
    transform: rotate(180deg);
}

.enquiry-title {
    color: #FCFDFF;
    font-size: 20px;
    line-height: 20px;
    font-weight: 700;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.enquiry-title-alt {
    display: none;
    color: #FCFDFF;
    font-size: 70px;
    line-height: 70px;
    font-weight: 900;
    letter-spacing: 0.05em;
    word-spacing: 0.05em;
    text-transform: uppercase;
}

.enquiry-alt .enquiry-title {
    display: none;
}

.enquiry-alt .enquiry-title-alt {
    display: block;
}

.enquiry-form {
    display: flex;
    flex-direction: column;
    row-gap: 24px;
    padding-top: 48px;
}

.enquiry-fields-double {
    display: flex;
    flex-direction: column;
    row-gap: 24px;
}

.enquiry-alt .enquiry-fields-double {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 24px;
}

.enquiry-field {
    width: 100%;
    min-width: 470px;
}

.enquiry-alt .enquiry-field {
    min-width: 300px;
}

.enquiry-label {
    padding-bottom: 8px;
    color: #FCFDFF;
    font-size: 14px;
    line-height: 16px;
}

.enquiry-textbox {
    width: 100%;
    height: 48px;
    padding-left: 16px;
    padding-right: 16px;
    border-radius: 2px;
    background-color: #FCFDFF;
    color: #002D72;
    font-size: 16px;
    line-height: 18px;
    font-weight: 700;
    transition: 0.25s;
}

.enquiry-textbox::placeholder {
    color: #D2D2D2;
    font-weight: 400;
    opacity: 1;
}

.enquiry-textbox:focus {
    background-color: #CAD3E3;
}

.enquiry-textarea {
    width: 100%;
    height: 130px;
    padding-top: 16px;
    padding-bottom: 16px;
    padding-left: 16px;
    padding-right: 16px;
    border-radius: 2px;
    background-color: #FCFDFF;
    color: #002D72;
    font-size: 16px;
    line-height: 18px;
    font-weight: 700;
    resize: none;
    transition: 0.25s;
}

.enquiry-textarea::placeholder {
    color: #D2D2D2;
    font-weight: 400;
    opacity: 1;
}

.enquiry-textarea:focus {
    background-color: #CAD3E3;
}

.enquiry-textarea::-webkit-scrollbar {
    width: 8px;
    height: 8px;
    border-radius: 0px;
    background-color: rgba(50, 87, 142, 0.25);
}

.enquiry-textarea::-webkit-scrollbar-thumb {
    background: #32578E;
    border-radius: 0px;
    border: none 1px transparent;
}

.enquiry-textarea::-webkit-scrollbar-thumb:hover {
    background: #6580AA;
}

.enquiry-textarea::-webkit-scrollbar-track {
    background: transparent;
    border-radius: 0px;
}

.enquiry-checkbox {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    row-gap: 18px;
    column-gap: 24px;
    padding-top: 16px;
    padding-left: 26px;
}

.enquiry-alt .enquiry-checkbox {
    flex-direction: row;
}

.enquiry-checkbox-option {
    position: relative;
    display: flex;
    align-items: center;
    padding-left: 30px;
    color: #FCFDFF;
    font-size: 14px;
    line-height: 16px;
    cursor: pointer;
    user-select: none;
}

.enquiry-checkbox-option input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.enquiry-checkbox-checkmark {
    position: absolute;
    top: 0;
    left: 0;
    width: 18px;
    height: 18px;
    border: solid 1px #FCFDFF;
    background-color: #002D72;
    border-radius: 4px;
    transition: background-color 0.2s;
}

.enquiry-checkbox-option input:checked~.enquiry-checkbox-checkmark {
    background-color: #FCFDFF;
}

.enquiry-checkbox-checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

.enquiry-checkbox-option input:checked~.enquiry-checkbox-checkmark:after {
    display: block;
}

.enquiry-checkbox-option .enquiry-checkbox-checkmark:after {
    top: 1px;
    left: 5px;
    width: 6px;
    height: 12px;
    border: solid #002D72;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.enquiry-button {
    display: flex;
    justify-content: flex-end;
    padding-top: 24px;
}

.enquiry-alt .enquiry-button {
    padding-top: 8px;
}

.enquiry-submit {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    height: 36px;
    padding-left: 24px;
    padding-right: 24px;
    border-radius: 2px;
    background-color: #FCFDFF;
    color: #002D72;
    font-size: 16px;
    line-height: 16px;
    letter-spacing: 0.02em;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    transition: 0.25s;
}

.enquiry-submit:hover {
    background-color: #00122E;
    color: #FCFDFF;
}

.touch .enquiry-submit:hover {
    background-color: #FCFDFF;
    color: #002D72;
}

.enquiry-submit:active,
.touch .enquiry-submit:active {
    background-color: #00122E;
    color: #FCFDFF;
}

/* FOOTER */

.footer {
    padding-top: 72px;
    padding-bottom: 48px;
    padding-left: 64px;
    padding-right: 64px;
    background-color: #002D72;
}

.footer-alt {
    padding-bottom: 72px;
}

.footer-layout {
    display: grid;
    grid-template-columns: 1.25fr 0.7fr 1fr 1fr;
    column-gap: 5%;
}

.footer-brand img {
    display: block;
    width: 126px;
    height: 74px;
}

.footer-caption {
    padding-top: 32px;
    color: #FCFDFF;
    font-size: 20px;
    line-height: 26px;
    letter-spacing: 0.02em;
    white-space: nowrap;
}

.footer-caption strong {
    font-weight: 800;
    text-transform: uppercase;
}

.footer-section {
    display: flex;
    flex-direction: column;
    row-gap: 22px;
    color: #FCFDFF;
    font-size: 16px;
    line-height: 22px;
    letter-spacing: 0.02em;
    font-weight: 300;
}

.footer-button {
    display: inline-flex;
    column-gap: 15px;
    color: #FCFDFF;
    font-weight: 700;
    transition: 0.35s;
}

.footer-button>div:nth-child(1) {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 16px;
}

.footer-button-location {
    align-items: flex-start !important;
    padding-top: 4px;
}

.footer-button:hover {
    color: #6580AA;
}

.touch .footer-button:hover {
    color: #FCFDFF;
}

.footer-button:active,
.touch .footer-button:active {
    color: #6580AA;
}

.footer-button path {
    fill: #FCFDFF;
    transition: 0.35s;
}

.footer-button:hover path {
    fill: #6580AA;
}

.touch .footer-button:hover path {
    fill: #FCFDFF;
}

.footer-button:active path,
.touch .footer-button:active path {
    fill: #6580AA;
}

.footer-cv {
    font-size: 14px;
    line-height: 18px;
    letter-spacing: 0.02em;
    font-weight: 700;
}

.footer-cv-form {
    display: flex;
    flex-direction: column;
    row-gap: 18px;
}

.footer-cv-textbox {
    width: 100%;
    height: 48px;
    padding-left: 18px;
    padding-right: 18px;
    border-radius: 8px;
    background-color: #CAD3E3;
    color: #002D72;
    font-size: 14px;
    line-height: 18px;
    font-weight: 600;
    transition: 0.25s;
}

.footer-cv-textbox::placeholder {
    color: rgba(0, 45, 114, 0.5);
    opacity: 1;
}

.footer-cv-textbox:focus {
    background-color: #FCFDFF;
}

#hiring-file {
    display: none;
}

.footer-cv-upload {
    width: 100%;
    height: 48px;
    padding-left: 18px;
    padding-right: 18px;
    border-radius: 8px;
    background-color: #CAD3E3;
    color: rgba(0, 45, 114, 0.5);
    font-size: 14px;
    line-height: 18px;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    transition: 0.25s;
}

.footer-cv-upload:hover {
    background-color: #FCFDFF;
    color: rgba(0, 45, 114, 1);
}

.touch .footer-cv-upload:hover {
    background-color: #CAD3E3;
    color: rgba(0, 45, 114, 0.5);
}

.footer-cv-upload:active,
.touch .footer-cv-upload:active {
    background-color: #FCFDFF;
    color: rgba(0, 45, 114, 1);
}

.footer-cv-submit {
    display: inline-block;
    height: 34px;
    padding-left: 18px;
    padding-right: 18px;
    border-radius: 8px;
    background-color: #FCFDFF;
    color: #002D72;
    font-size: 14px;
    line-height: 18px;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    transition: 0.25s;
}

.footer-cv-submit:hover {
    background-color: #00122E;
    color: #FCFDFF;
}

.touch .footer-cv-submit:hover {
    background-color: #FCFDFF;
    color: #002D72;
}

.footer-cv-submit:active,
.touch .footer-cv-submit:active {
    background-color: #00122E;
    color: #FCFDFF;
}

.footer-layout-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding-top: 64px;
    color: #FCFDFF;
    font-size: 14px;
    line-height: 18px;
    letter-spacing: 0.02em;
    font-weight: 300;
}

.footer-social {
    display: flex;
    column-gap: 22px;
    justify-content: flex-end;
}

.footer-social>div:nth-child(1) {
    padding-right: 16px;
}

.footer-network {
    transition: 0.35s;
}

.footer-network:hover {
    transform: scale(1.4);
}

.touch .footer-network:hover {
    transform: scale(1);
}

.footer-network:active,
.touch .footer-network:active {
    transform: scale(1.4);
}

/* LEGAL */

.document-content {
    padding-top: 70px;
    padding-bottom: 120px;
}

.document-intro {
    font-size: 22px;
    line-height: 30px;
}

.document-content h2,
.document-content h3,
.document-content p,
.document-content ul,
.document-content ol,
.document-image {
    padding-top: 8px;
    padding-bottom: 8px;
    margin: 0 auto;
}

.document-content strong,
.document-content b {
    font-weight: 700;
}

.document-content p,
.document-content ul,
.document-content ol {
    font-size: 16px;
    line-height: 24px;
}

.document-content ul,
.document-content ol {
    padding-left: 38px;
}

.document-content li {
    padding: 0;
    margin: 0;
}

.document-content h2 {
    padding-top: 18px;
    font-size: 22px;
    line-height: 30px;
    font-weight: 600;
}

.document-content h3 {
    padding-top: 18px;
    font-size: 16px;
    line-height: 24px;
    font-weight: 600;
}

.document-content a,
.document-content a:link,
.document-content a:visited {
    color: #999999;
    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;
}

.document-image {
    padding-top: 22px;
    padding-bottom: 22px;
}

.document-content img {
    display: block;
    max-width: 100%;
    padding: 0;
    margin: 0 auto;
    cursor: pointer;
}

.document-image-full {
    width: 100%;
    max-width: none;
    padding-left: 0;
    padding-right: 0;
}

.document-image-full img {
    width: 100%;
    max-width: none;
    border-radius: 0;
}

.document-image-with-border img {
    border: solid 2px #F4F5F8;
}

.document-image-with-bg img {
    padding: 32px;
    background-color: #F4F5F8;
}

.document-content figcaption {
    padding-top: 10px;
    padding-left: 16px;
    padding-right: 16px;
    color: #999999;
    font-size: 14px;
    line-height: 20px;
    text-align: center;
}

/* IMPRINT */

.imprint-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 5%;
    padding-top: 100px;
    padding-bottom: 200px;
    font-size: 16px;
    line-height: 24px;
}

.imprint-blocks {
    display: flex;
    flex-direction: column;
    row-gap: 20px;
    padding-top: 24px;
}

.imprint-blocks strong {
    text-transform: uppercase;
}

/* TOAST */

#toast {
    position: fixed;
    top: 0px;
    left: 50%;
    width: auto;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    row-gap: 16px;
    padding-left: 16px;
    padding-right: 16px;
    transform: translateX(-50%);
    z-index: 110;
}

.toast-item {
    display: none;
    column-gap: 12px;
    padding-top: 16px;
    padding-bottom: 18px;
    padding-left: 26px;
    padding-right: 26px;
    background-color: #E46962;
    opacity: 0;
    box-shadow: 0 0 16px 0 rgba(0, 0, 0, 0.2);
    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: #FFFFFF;
    font-size: 16px;
    line-height: 20px;
    font-weight: 700;
    text-align: center;
    white-space: nowrap;
}

.toast-inverse .toast-caption {
    color: #000000;
}

.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: #000000;
}

.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: #002D72;
    animation: advice-anima 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
    overflow: auto;
    z-index: 102;
}

@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(255, 255, 255, 0.35);
    backdrop-filter: blur(16px);
    animation: advice-bg-anima 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
    z-index: 101;
}

@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: 12px;
    padding-top: 11px;
    padding-bottom: 17px;
    cursor: pointer;
}

.advice-close img {
    display: block;
    width: 20px;
    height: 20px;
    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-actions-buttons {
    flex: none;
    display: flex;
    column-gap: 22px;
    padding-bottom: 16px;
}

.advice-content {
    flex: auto;
    display: flex;
    align-items: center;
    padding-bottom: 64px;
}

.advice-main {
    color: #FCFDFF;
    font-size: 20px;
    line-height: 26px;
    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 {
    font-weight: 700;
}

.advice-detail {
    padding-top: 16px;
    color: #FCFDFF;
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    text-align: center;
    opacity: 0;
    animation-name: advice-content-anima;
    animation-duration: 1s;
    animation-delay: 1s;
    animation-fill-mode: forwards;
}

.advice-detail strong {
    font-weight: 700;
}

.advice-main div,
.advice-detail div {
    padding-bottom: 16px;
}

@keyframes advice-content-anima {
    from {
        opacity: 0;
        transform: scale(0.85);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* RESPONSIVE */

@media (max-width: 1450px) {

    .analytics-items {
        grid-template-columns: 33.33333333333333% 33.33333333333333% 33.33333333333333%;
    }

    .analytics-item:nth-child(3) .analytics-separator {
        display: none;
    }

}

@media (max-width: 1400px) {

    .destinations-sheet {
        width: 400px;
    }

}

@media (max-width: 1366px) {

    .footer-layout {
        grid-template-columns: 1fr 0.7fr 1fr 1fr;
        column-gap: 24px;
    }

    .affilliations {
        column-gap: 64px;
    }

}

@media (max-width: 1300px) {

    .city-title {
        font-size: 5vw;
        line-height: 5vw;
    }

    .city-subtitle {
        font-size: 3vw;
        line-height: 3vw;
    }

}

@media (max-width: 1259px) {

    .people-items {
        grid-template-columns: 1fr 1fr 1fr;
        column-gap: 24px;
        padding-left: 24px;
        padding-right: 24px;
    }

    .people-items-empty {
        display: none;
    }

    .people-bubble {
        padding-top: 35px;
        padding-bottom: 40px;
        padding-left: 30px;
        padding-right: 30px;
        border-radius: 50px;
    }

    .timeline-title {
        font-size: 5vw;
        line-height: 5vw;
    }

}

@media (max-width: 1200px) {

    .panel-cards {
        gap: 16px;
        padding-right: 16px;
    }

    .affilliations {
        flex-direction: column;
        row-gap: 48px;
    }

    .affilliations-caption {
        justify-content: center;
        text-align: center;
    }

    .success-grid-1 {
        gap: 24px;
        grid-template-columns: 1fr 1fr;
    }

    .success-1 {
        grid-column: 1 / -1;
        justify-content: center;
        padding-bottom: 48px;
        padding-left: 32px;
        padding-right: 32px;
    }

    .success-grid-2 {
        gap: 24px;
        grid-template-columns: 1fr 1fr;
    }

    .success-6 {
        order: 1;
    }

    .success-7 {
        order: 3;
    }

    .success-img-7 {
        padding-bottom: 60%;
        background-image: url(../assets/success-6.jpg);
    }

    .success-8 {
        order: 2;
    }

    .success-9-frame {
        order: 4;
    }

    .success-grid-2> :last-child {
        grid-column: 1 / -1;
    }

    .success-grid-2> :nth-child(2) {
        grid-column: 1 / -1;
    }

    .team-item-caption {
        font-size: 12px;
        line-height: 16px;
    }

    .destinations-title {
        font-size: 60px;
        line-height: 72px;
    }

    .destinations-sheet {
        width: 360px;
    }

    .destinations-transport {
        width: 240px;
    }

    .footer-layout {
        grid-template-columns: 1fr 1fr;
        row-gap: 48px;
    }

    .footer-1 {
        order: 1;
    }

    .footer-2 {
        order: 4;
    }

    .footer-3 {
        order: 3;
    }

    .footer-4 {
        order: 2;
    }

}

@media (max-width: 1100px) {

    .city-gallery-caption {
        top: 0%;
        max-width: 700px;
        padding: 24px;
        padding-top: 18px;
        border-bottom-left-radius: 30px;
        font-size: 16px;
        line-height: 22px;
    }

    .city-gallery-caption-title {
        font-size: 20px;
        line-height: 28px;
    }

}

@media (max-width: 1023px) {

    .panel-layout {
        padding-top: 80px;
        padding-left: 32px;
        padding-right: 32px;
    }

    .panel-close {
        top: 16px;
        right: 16px;
    }

    .panel-links {
        column-gap: 24px;
        row-gap: 16px;
    }

    .panel-card-caption {
        font-size: 3vw;
        line-height: 3vw;
    }

    .enquiry-alt {
        justify-content: flex-start;
        align-items: flex-start;
    }

    .enquiry-alt .enquiry-frame {
        padding-bottom: 90px;
    }

    .enquiry-alt .enquiry-container {
        width: 100%;
        height: 100%;
    }

    .enquiry-alt .enquiry-field {
        min-width: unset;
    }

    .enquiry-alt .enquiry-close {
        right: 104px;
    }

    .display {
        height: auto;
        flex-direction: column;
    }

    .display-content {
        padding-left: 32px;
    }

    .display-swiper {
        height: 500px !important;
    }

    .people-bubble {
        padding-top: 25px;
        padding-bottom: 30px;
        padding-left: 20px;
        padding-right: 20px;
        border-radius: 40px;
        font-size: 16px;
        line-height: 22px;
    }

    .dmc-content {
        padding-top: 16px;
        padding-bottom: 16px;

    }

    .destinations-map {
        margin-top: -40%;
    }

    .destinations-map .map-shadow-top {
        margin-top: 40%;
    }

    .destinations-data {
        height: auto;
        padding-top: 100%;
    }

    .destinations-title {
        display: none;
    }

    .destinations-title-alt {
        display: block;
        padding-top: 50%;
    }

    .destinations-sheets {
        display: block;
    }

    .destinations-sheet {
        width: 100%;
    }

    .destinations-transports-cards {
        padding-left: 0;
    }

    .destinations-transport {
        width: 100%;
    }

    .timeline-caption {
        padding-right: 10%;
    }

}

@media (max-width: 990px) {

    .excellence-layout {
        flex-direction: column;
        row-gap: 32px;
        padding-top: 32px;
        padding-left: 24px;
        padding-right: 24px;
    }

    .excellence-display {
        flex-direction: column;
        padding-left: 0px;
        padding-right: 0px;
    }

    .excellence-display-quotes {
        position: relative;
        width: 100%;
        height: 100%;
    }

}

@media (max-width: 940px) {

    .analytics-items {
        padding-left: 24px;
        padding-right: 24px;
    }

    .columns {
        grid-template-columns: 1fr 1.7fr;
    }

}

@media (max-width: 860px) {

    .analytics-items {
        grid-template-columns: 50% 50%;
    }

    .analytics-item:nth-child(2) .analytics-separator {
        display: none;
    }

    .analytics-item:nth-child(4) .analytics-separator {
        display: none;
    }

    .analytics-item:nth-child(3) .analytics-separator {
        display: block;
    }

    .cards {
        grid-template-columns: 1fr 1fr;
    }

    .card-caption {
        font-size: 32px;
        line-height: 32px;
    }

}

@media (max-width: 780px) {

    .display-content {
        padding-bottom: 32px;
        padding-left: 24px;
        padding-right: 24px;
    }

    .display-title {
        font-size: 32px;
    }

    .display-caption {
        padding-top: 30px;
        font-size: 19px;
    }

    .display-button-frame {
        padding-top: 32px;
    }

    .display-button {
        column-gap: 16px;
        font-size: 15px;
        line-height: 15px;
    }

    .display-slide-picture {
        border-bottom-right-radius: 220px;
    }

    .subtitle {
        font-size: 20px;
        line-height: 26px;
    }

    .title {
        font-size: 34px;
        line-height: 40px;
    }

    .title-left {
        font-size: 34px;
        line-height: 40px;
    }

    .destination-title {
        font-size: 22px;
        line-height: 30px;
    }

    .ideas {
        padding-top: 60px;
        padding-bottom: 80px;
    }

    .map {
        padding-top: 100px;
        padding-bottom: 180px;
    }

    .map-display {
        width: 148px;
    }

    .map-item {
        transform: translateX(-50%) translateY(-50%) translateY(var(--translatey-mobile)) translateX(var(--translatex-mobile));
    }

    .map-display-video {
        border-bottom-right-radius: 60px;
    }

    .map-city {
        font-size: 24px;
        line-height: 24px;
    }

    .map-action {
        padding-right: 0;
        justify-content: center;
    }

    .button {
        font-size: 16px;
        line-height: 16px;
    }

    .title-box {
        padding-top: 80px;
        padding-bottom: 80px;
    }

    .cards {
        padding: 14px;
    }

    .card:last-of-type {
        border-bottom-right-radius: 60px;
    }

    .card-caption {
        font-size: 20px;
        line-height: 20px;
    }

    .gallery-ticker {
        padding-bottom: 60px;
    }

    .caption {
        font-size: 22px;
        line-height: 30px;
    }

    .excellence-caption {
        font-size: 20px;
        line-height: 28px;
    }

    .excellence-button {
        height: 54px;
        padding-left: 28px;
        padding-right: 38px;
        border-bottom-right-radius: 42px;
        font-size: 16px;
        line-height: 16px;
    }

    .excellence-shape {
        width: 100%;
        border-bottom-right-radius: 200px;
    }

    .success {
        row-gap: 14px;
    }

    .success-grid-1 {
        gap: 8px;
    }

    .success-grid-2 {
        gap: 8px;
    }

    .success-9 {
        margin-top: 32px;
        font-size: 18px;
        line-height: 24px;
    }

    .analytics {
        border-top-left-radius: 200px;
        padding-bottom: 180px;
    }

    .analytics-items {
        row-gap: 32px;
        padding-top: 40px;
        padding-left: 0px;
        padding-right: 0px;
    }

    .analytics-item {
        row-gap: 8px;
        padding-left: 18px;
        padding-right: 18px;
    }

    .analytics-sides {
        font-size: 24px;
        line-height: 24px;
    }

    .analytics-number {
        font-size: 44px;
        line-height: 44px;
    }

    .analytics-caption {
        font-size: 16px;
        line-height: 24px;
    }

    .people-caption {
        font-size: 70px;
    }

    .people-items {
        grid-template-columns: 1fr;
        padding-top: 100px;
        padding-bottom: 100px;
        padding-left: 24px;
        padding-right: 24px;
    }

    .marquee {
        margin-bottom: 60px;
    }

    .appointments {
        padding-left: 8px;
        padding-right: 0px;
    }

    .affilliations-logos {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 32px;
    }

    .dmc-intro {
        width: 100%;
        border-bottom-right-radius: 220px;
    }

    .dmc-intro-content {
        padding-left: 24px;
        padding-right: 24px;
    }

    .dmc-intro-title {
        font-size: 36px;
        line-height: 46px;
    }

    .dmc-intro-subtitle {
        font-size: 20px;
        line-height: 30px;
    }

    .content {
        padding-top: 100px;
        padding-bottom: 124px;
        border-bottom-left-radius: 160px;
        font-size: 18px;
        line-height: 24px;
    }

    .content-layout {
        grid-template-columns: 1fr;
    }

    .content-title {
        padding-bottom: 26px;
        font-size: 36px;
        line-height: 40px;
    }

    .content-subtitle {
        padding-bottom: 28px;
        font-size: 26px;
        line-height: 30px;
    }

    .content-subtitle-alt {
        padding-top: 32px;
    }

    .columns {
        grid-template-columns: 1fr;
    }

    .column-left {
        justify-content: flex-start;
    }

    .dmc-block {
        grid-template-columns: 1fr;

    }

    .dmc-picture {
        order: 1;
    }

    .dmc-content {
        order: 2;
        padding-top: 32px;
    }

    .title-box-alt-3 {
        padding-top: 110px;
        padding-bottom: 50px;
    }

    .card-caption-alt {
        font-size: 20px;
        line-height: 20px;
    }

    .ready-frame {
        margin-top: 50px;
        margin-bottom: 90px;
    }

    .ready-shape {
        width: 80%;
        border-top-left-radius: 220px;
    }

    .subtitle-alt-3 {
        padding-top: 24px;
    }

    .ready-button-alt {
        padding-top: 64px;
    }

    .title-box-alt {
        padding-top: 40px;
        padding-bottom: 40px;
    }

    .pictures-grid-frame {
        padding-left: 14px;
        padding-right: 14px;
    }

    .pictures-grid {
        gap: 14px;
        grid-template-columns: 1fr;
    }

    .pictures-grid-inset {
        gap: 14px;
        height: 400px;
    }

    .pictures-grid-item-5 {
        padding-bottom: 100%;
        border-bottom-right-radius: 160px;
    }

    .title-box-alt-2 {
        padding-top: 50px;
        padding-bottom: 40px;
    }

    .ready-alt {
        padding-top: 100px;
        padding-bottom: 150px;
    }

    .panel-btn,
    .panel-btn:link,
    .panel-btn:visited {
        font-size: 36px;
        line-height: 36px;
    }

    .panel-card-on {
        border: solid 3px #FFFFFF;
    }

    .destination-content {
        padding-left: 24px;
        padding-right: 24px;
    }

    .destinations-map {
        height: 100%;
        margin-top: 0%;
    }

    .destinations-map .map-shadow-top {
        margin-top: 0%;
    }

    .destinations-title-alt {
        padding-top: 18%;
    }

    .destinations .cards {
        padding: 0;
    }

    .destinations-data {
        display: none;
    }

    .destinations-data-alt {
        display: grid;
        padding-top: 0px;
        padding-bottom: 48px;
        margin-top: -30%;
    }

    .ready-alt-2 {
        padding-top: 120px;
        padding-bottom: 100px;
    }

    .ready-caption {
        font-size: 24px;
        line-height: 30px;
    }

    .ready-frame-alt {
        margin-top: 100px;
    }

    .break {
        display: block;
    }

    .city-header-alt {
        display: block;
    }

    .images-grid-frame {
        padding-left: 3px;
        padding-right: 3px;
    }

    .images-grid {
        display: grid;
        grid-template-columns: 2fr 4fr;
    }

    .images-grid-right {
        display: none;
    }

    .image-grid-empty {
        display: none;
    }

    .images-grid-picture-alt {
        border-top-left-radius: 160px;
    }

    .images-grid-picture {
        top: 3px;
        left: 3px;
        width: calc(100% - 6px);
        height: calc(100% - 6px);
    }

    .images-grid-content {
        display: none;
    }

    .city-gallery-slide {
        padding-bottom: 160%;
    }

    .city-gallery-caption {
        top: 0;
        max-width: 90%;
        padding: 20px;
        padding-top: 16px;
        border-bottom-left-radius: 20px;
        font-size: 14px;
        line-height: 20px;
    }

    .city-gallery-caption-title {
        font-size: 14px;
        line-height: 20px;
    }

    .city-thumbs-swiper-slide {
        width: 64px !important;
        height: 95px !important;
        border-radius: 10px;
    }

    .gallery-caption-title {
        font-size: 20px;
        line-height: 28px;
    }

    .gallery-caption-subtitle {
        font-size: 18px;
        line-height: 26px;
    }

    .timeline-bg {
        grid-template-columns: 0px 1fr;
    }

    .timeline-position {
        left: 32px;
    }

    .timeline-event-layout {
        grid-template-columns: 1fr;
    }

    .timeline-event:last-of-type .timeline-bg>div:nth-child(2) {
        border-bottom-right-radius: 150px;
    }

    .timeline-point {
        top: 55px;
        left: 25px;
        width: 15px;
        height: 15px;
    }

    .timeline-title {
        display: none;
    }

    .timeline-title-hidden {
        display: block;
    }

    .timeline-caption {
        padding-top: 48px;
        padding-left: 64px;
        padding-right: 24px;
        font-size: 17px;
        line-height: 23px;
    }

    .team {
        grid-template-columns: 1fr;
        gap: 48px;
        padding-bottom: 120px;
    }

    .team-items {
        gap: 14px;
        margin-top: 14px;
    }

    .document-content {
        padding-top: 40px;
        padding-bottom: 100px;
    }

    .document-intro {
        font-size: 18px;
        line-height: 24px;
    }

    .imprint-layout {
        padding-top: 70px;
        padding-bottom: 140px;
        grid-template-columns: 1fr;
        row-gap: 48px;
    }

}

@media (max-width: 760px) {

    .footer {
        padding-left: 32px;
        padding-right: 32px;
    }

    .footer-layout {
        grid-template-columns: 1fr;
        row-gap: 48px;
    }

    .footer-1 {
        order: 1;
    }

    .footer-2 {
        order: 4;
    }

    .footer-3 {
        order: 2;
    }

    .footer-4 {
        order: 3;
    }

    .footer-layout-2 {
        grid-template-columns: 1fr;
        row-gap: 32px;
    }

    .footer-copy {
        order: 2;
    }

    .footer-social {
        order: 1;
        justify-content: flex-start;
    }

}

@media (max-width: 700px) {

    .panel-cards {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }

    .panel-card-caption {
        font-size: 5vw;
        line-height: 5vw;
    }

    .enquiry-alt .enquiry-frame {
        height: 100%;
        padding-bottom: 120px;
        padding-left: 32px;
        padding-right: 32px;
    }

    .enquiry-alt .enquiry-close {
        right: 16px;
    }

}

@media (max-width: 620px) {

    .enquiry-container {
        width: 100%;
    }

    .enquiry-field {
        min-width: unset;
    }

    .enquiry-alt .enquiry-fields-double {
        grid-template-columns: 1fr;
    }

}

@media (max-width: 490px) {

    .bar-layout {
        display: flex;
        column-gap: 19px;
    }

    .bar-menu {
        flex: none;
    }

    .bar-menu-btn {
        width: auto;
    }

    .bar-brand {
        flex: auto;
        justify-content: flex-start;
    }

    .bar-actions {
        flex: none;
    }

    .bar-menu-label {
        display: none;
    }

    .bar-action-label {
        padding-left: 10px;
    }

    .panel {
        border-bottom-right-radius: 148px;
    }

    .panel-layout {
        padding-bottom: 32px;
    }

    .panel-links {
        padding-right: 48px;
    }

    .panel-buttons::-webkit-scrollbar {
        width: 6px;
        height: 6px;
    }

    .panel-card {
        padding-bottom: 155%;
        border-bottom-right-radius: 40px;
    }

    .panel-links {
        padding-top: 48px;
    }

    .enquiry-layout::-webkit-scrollbar {
        width: 6px;
        height: 6px;
    }

    .enquiry-container {
        border-bottom-left-radius: 148px;
    }

    .enquiry-alt .enquiry-container {
        border-bottom-left-radius: 0px;
        border-bottom-right-radius: 148px;
    }

    .enquiry-frame {
        padding-bottom: 100px;
        padding-left: 32px;
        padding-right: 20px;
    }

    .enquiry-alt .enquiry-frame {
        padding-bottom: 80px;
    }

    .enquiry-close {
        top: 16px;
        right: 4px;
    }

    .enquiry-title-alt {
        font-size: 50px;
        line-height: 50px;
    }

    .blocks {
        padding-top: 100px;
        padding-bottom: 90px;
    }

    .mini-title {
        padding-bottom: 34px;
        max-width: unset;
    }

    .title-alt {
        margin-top: 0px;
        font-size: 40px;
        line-height: 52px;
    }

    .text {
        font-size: 18px;
        line-height: 24px;
    }

    .text p {
        padding-bottom: 20px;
    }

    .display-swiper {
        --swiper-pagination-bullet-size: 8px;
        --swiper-pagination-bullet-width: 8px;
        --swiper-pagination-bullet-height: 8px;
        --swiper-pagination-bullet-horizontal-gap: 4px;
    }

    .dmc-picture-3 {
        border-bottom-right-radius: 120px;
    }

    .dmc-button-frame {
        padding-top: 48px;
        padding-left: 0px;
        padding-right: 0px;
    }

    .team-item-caption-on {
        opacity: 1 !important;
    }

    .people-caption-text {
        transform: translateY(-200%);
    }

    .ready-shape-2 {
        right: 3%;
        width: 94%;
    }

    .destinations-data-alt {
        margin-top: -55%;
    }

    .nav-layout {
        column-gap: 12px;
    }

    .nav-btn {
        font-size: 16px;
        line-height: 20px;
    }

    .footer-caption {
        font-size: 16px;
        line-height: 22px;
    }

}