@font-face {
    font-family: "Benton Sans BBVA";
    src: url("/assets/front/fonts/BentonSansBBVA-Book.woff2") format("woff2"),
        url("/assets/front/fonts/BentonSansBBVA-Book.woff") format("woff");
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Benton Sans BBVA bold";
    src: url("/assets/front/fonts/BentonSansBBVA-Medium.woff2") format("woff2"),
        url("/assets/front/fonts/BentonSansBBVA-Medium.woff") format("woff");
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Benton Sans BBVA-Light";
    src: url("/assets/front/fonts/BBVABentonSansLight-Regular.ttf");
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Benton Sans BBVA-Book";
    src: url("/assets/front/fonts/BBVABentonSans-Book.ttf");
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "TiemposHeadline-Bold";
    src: url("/assets/front/fonts/TiemposHeadline-Bold.ttf");
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "TiemposHeadline-BoldItalic";
    src: url("/assets/front/fonts/TiemposHeadline-BoldItalic.ttf");
    font-weight: bold;
    font-style: italic;
    font-display: swap;
}

:root {
    --primary-color: #001391;
}

* {
    font-family: TiemposHeadline-Bold;
}

body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

span.italic {
    font-family: "TiemposHeadline-BoldItalic";
}

strong {
    font-family: inherit;
    font-weight: bold;
}

/* MOBILE FIRST */

.landing-page {
    width: 100vw;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background-color: #f7f8f8;
    background-position: bottom center;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.landing-page__header {
    display: flex;
    justify-content: center;
    width: 100%;
}

.landing-page__header-image {
    width: 40%;
    padding: 1em;
}

.landing-page__content {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 1em auto;
    max-width: 1200px;
}

.landing-page__footer {
    box-sizing: border-box;
    width: 100%;
    padding: 1.5rem;
}

.landing-page__footer > img {
    width: 100%;
    max-width: 100%;
    object-fit: cover;
    border-radius: 1rem;
}

.landing-page__footer > .default-image {
    display: block;
}

.landing-page__footer > .big-image {
    display: none;
}

.landing-page__title {
    font-family: "TiemposHeadline-Bold";
    color: var(--primary-color);
    font-size: 1.5rem;
    font-weight: lighter;
}
.landing-page__title-span {
    font-family: "Benton Sans BBVA-Book";
    color: var(--primary-color);
    font-weight: bold;
}
.landing-page__paragraph {
    font-family: "Benton Sans BBVA-Book";
    color: var(--primary-color);
    font-weight: lighter;
}
.landing-page__paragraph-span {
    font-family: "Benton Sans BBVA-Book";
    color: var(--primary-color);
    font-weight: bold;
}
.landing-page__subtitle-container {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: center;
    gap: 4rem;
    margin: 30px 25px 20px 10px;
}

.landing-page__subtitle-container-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.landing-page__subtitle-icon {
    width: 30px;
}

.landing-page__subtitle-datetime {
    font-family: "Benton Sans BBVA-Book";
    color: var(--primary-color);
    font-weight: bold;
    margin: 0;
}

.landing-page__subtitle-datetime--thin {
    font-family: "Benton Sans BBVA-Book";
    color: var(--primary-color);
    margin: 0;
}

.landing-page__paragraph--center {
    font-family: "Benton Sans BBVA-Book";
    color: var(--primary-color);
    align-self: center;
    margin-top: 2em;
}

.landing-page__guests-container {
    display: flex;
    flex-direction: column;
    justify-content: center;

    margin-bottom: 2em;
}

.landing-page__guest {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;

    width: 100%;
    max-width: 400px;
    margin: auto;
    gap: 20px;
}

.landing-page__guest-image {
    height: 100px;
}

.landing-page__guest-info {
}

.landing-page__guest-name {
    font-family: "Benton Sans BBVA-Book";
    color: var(--primary-color);
    font-size: 1em;
}
.landing-page__guest-hr {
    border: solid 1px var(--primary-color););
}
.landing-page__guest-description {
    font-family: "Benton Sans BBVA-Book";
    color: var(--primary-color);
    font-weight: lighter;
    font-size: 1em;
}

.landing-page__countdown {
    margin: auto;
}

.landing-page__countdown-span {
    font-family: "Benton Sans BBVA-Book";
    color: var(--primary-color);
    font-weight: lighter;
    font-size: 3em;
    margin: 0;
}

@media only screen and (min-width: 768px) {
    .landing-page__header-image {
        width: 20%;
        padding: 2em;
    }
    .landing-page__guests-container {
        margin: 2em 0 2em 0;
    }
}

@media only screen and (min-width: 900px) {
    .landing-page__header-image {
        width: 10%;
        padding: 3em;
    }

    .landing-page__title {
        margin: auto;
        font-size: 2em;
    }

    .landing-page__paragraph {
        text-align: center;
    }

    .landing-page__guests-container {
        display: flex;
        flex: 1;
        flex-direction: row;
        justify-content: center;
        align-items: flex-start;
        flex-wrap: wrap;

        margin-bottom: 2em;
        gap: 30px;
    }

    .landing-page__guest {
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;

        width: 30%;
        margin: 0;
        gap: 20px;
    }
}

@media only screen and (max-width: 1200px) {
    .landing-page__content {
        width: 70%;
        max-width: 600px;
    }

    .landing-page__footer > .default-image {
        display: none;
    }

    .landing-page__footer > .big-image {
        display: block;
    }
}

@media only screen and (min-width: 1400px) {
    .landing-page__header-image {
        width: 8%;
        padding: 3em;
    }
}

@media only screen and (min-width: 1920px) {
    .landing-page__header-image {
        width: 8%;
        max-width: 200px;
        padding: 3em;
    }
}
