@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/Montserrat-VariableFont_wght.woff2') format('woff2');
    font-weight: 100 900;
    font-style: normal;
}

@font-face {
    font-family: 'Cormorant Garamond';
    src: url('../fonts/subset-CormorantGaramond-Medium.woff2') format('woff2');
    font-weight: 500;
    font-style: normal;
}


:root {
    --navy: #24365f;
    --blue: #527fac;
    --line: rgba(255, 255, 255, .72);
    --serif: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
    --sans: Montserrat, Arial, Helvetica, sans-serif;
}

* {
    box-sizing: border-box
}

html,
body {
    margin: 0;
    min-height: 100%;
    background: #f4f4f4
}

body {
    color: #fff;
    font-family: var(--sans);
    overflow: hidden
}

button {
    font: inherit;
    color: inherit;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent
}

.page {
    width: 100vw;
    height: 100vh;
    min-height: 680px;
    padding: 28px 3.4vw 3.2vh;
    background-image: linear-gradient(180deg, #152E5A 0%, #387da5 100%);
}

.topbar {
    height: 74px;
    display: flex;
    justify-content: flex-end;
    align-items: flex-start
}

.languages {
    display: flex;
    gap: 9px
}

.language {
    min-width: 120px;
    height: 52px;
    padding: 0 25px;
    border: 1px solid #fff;
    border-radius: 30px;
    background: transparent;
    font-size: 20px;
    font-weight: 300
}

.language.active {
    background: rgba(255, 255, 255, .12);
    font-weight: 700
}

.layout {
    display: grid;
    grid-template-columns: minmax(475px, 0.8fr) minmax(720px, 2fr);
    gap: 3vw;
    height: calc(100% - 74px)
}

.intro {
    min-width: 0;
    display: flex;
    flex-direction: column
}

h1 {
    margin: 8px 0 0;
    font: 93px / 1 var(--serif);
    font-weight: 400;
    white-space: nowrap
}

.strapline {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    margin-bottom: 44px;
    font-size: 32px;
    text-transform: uppercase;
}

html[lang='es'] h1 {
    font-size: 71px;
}

html[lang='es'] .strapline {
    font-size: 29px
}

.strapline:before,
.strapline:after {
    content: '';
    width: 124px;
    height: 1px;
    background: var(--line)
}

.accordion {
    flex: 1;
    min-height: 0;
    padding: 0 6px
}

.section {
    border-bottom: 1px solid var(--line)
}

.section-trigger {
    width: 100%;
    min-height: 105px;
    padding: 17px 0;
    display: grid;
    grid-template-columns: 80px 1fr;
    align-items: center;
    text-align: left;
    border: 0;
    background: transparent
}

.section.active .section-trigger {
    min-height: 116px
}

html[lang='en'] .section-trigger span:nth-child(2) {
    padding-right: 14px;
}

.icon {
    width: 60px;
    height: 60px;
    display: grid;
    place-items: center
}

.icon img {
    object-fit: contain;
}

.section-title {
    display: block;
    font-size: 30px;
    line-height: 1.05;
    transition: font-weight .25s;
}

.section.active .section-title,
.section.active .section-subtitle {
    font-weight: bold;
}

.section-subtitle {
    margin-top: 6px;
    font-size: 20px;
    line-height: 1.15;
    transition: font-weight .25s;
}

.section-copy {
    max-height: 0;
    overflow: hidden;
    transition: max-height .35s, padding .35s;
    padding: 0 14px 0 80px;
    will-change: max-height, padding
}

.section.active .section-copy {
    max-height: 240px;
    padding-bottom: 22px
}

.section-copy p {
    margin: 0;
    font-size: 20px;
    line-height: 1.17
}

.gallery-column {
    min-width: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding-top: 16px
}

.stage {
    position: relative;
    width: 100%;
    aspect-ratio: 1.54;
    border: 1px solid rgba(255, 255, 255, .9);
    border-radius: 30px;
    overflow: hidden;
    background: rgba(0, 0, 0, .18);
    touch-action: pan-y
}

.stage .swiper-wrapper,
.stage .swiper-slide {
    height: 100%
}

.gallery-panels,
.gallery-panel {
    position: absolute;
    inset: 0
}

.gallery-panel {
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    transition: opacity .6s ease, visibility 0.6s ease;
}

.gallery-panel.active {
    visibility: visible;
    opacity: 1;
    pointer-events: auto
}

.stage-image {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover
}

.gallery-control,
.fullscreen {
    position: absolute;
    border: 2px solid #fff;
    border-radius: 50%;
    background-color: rgba(55, 60, 67, .25);
    display: grid;
    place-items: center;
    transition: background-color .2s
}

.gallery-control {
    width: 86px;
    height: 86px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10
}

.gallery-control.prev {
    left: 31px
}

.gallery-control.next {
    right: 31px
}

.gallery-control:active {
    background-color: rgba(140, 149, 161, 0.5)
}

.gallery-control:after {
    content: '';
    width: 24px;
    height: 24px;
    border-left: 2px solid #fff;
    border-bottom: 2px solid #fff;
    transform: rotate(45deg);
    margin-left: 9px
}

.gallery-control.next:after {
    transform: rotate(225deg);
    margin-left: -9px
}

.fullscreen {
    width: 58px;
    height: 58px;
    top: 33px;
    right: 33px;
    z-index: 10
}

.fullscreen-icon {
    width: 26px;
    height: 26px;
    fill: none;
    stroke: #fff;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round
}

.fullscreen-icon-exit {
    display: none
}

.fullscreen.is-fullscreen .fullscreen-icon-enter {
    display: none
}

.fullscreen.is-fullscreen .fullscreen-icon-exit {
    display: block
}

.thumbs {
    display: grid;
    grid-template-columns: 1fr;
    margin-top: 30px
}

.thumb-group {
    display: block;
    grid-column: 1/-1;
    grid-row: 1;
    width: 100%;
    overflow: hidden;
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    padding: 3px;
    transition: opacity .6s ease, visibility .6s ease
}

.thumb-group.active {
    visibility: visible;
    opacity: 1;
    pointer-events: auto
}

.thumb-group .swiper-wrapper {
    height: auto
}

.thumb {
    width: calc((100% - 175px) / 8);
    flex-shrink: 0;
    aspect-ratio: 1.42;
    border: 1px solid #fff;
    border-radius: 11px;
    padding: 0;
    overflow: hidden;
    background: #365d80;
    opacity: .75;
    transition: box-shadow .2s, opacity .2s
}

.thumb.active {
    box-shadow: 0 0 0 2px #fff;
    opacity: 1
}

.thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block
}
