@font-face {
    font-family: Umiak;
    font-weight: bold;
    src: url("../font/Umiak-BoldTRIAL.otf") format("opentype");
}

html {
    box-sizing: border-box;
    font-display: swap;
}

body {
    background-color: #0d0b22;
    padding: 0;
    margin: 0;

    font-family: "Roboto", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    font-variation-settings: "wdth" 400;
}

*,
*:before,
*:after {
    box-sizing: inherit;
}

.hidden {
    display: none;
    visibility: hidden;
    opacity: 0;
}

.escapad_container {
    display: flex;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    height: 100vh;
    height: calc(var(--vh, 1vh) * 100);
    width: 100vw;
}

.escapad_left_part {
    flex: 1;
    background-size: cover;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.escapad_background {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: -1;
    overflow: hidden;
    font-size: 0;
}

.escapad_background_slider {
    position: relative;
    height: 100%;
    width: 300%;
    left: 0;
    transition: 250ms left;
}

.escapad_background img {
    width: 33.3%;
    width: calc(100% / 3);
    height: 100%;
    object-fit: cover;
    object-position: 50% 50%;
}

.escapad_form_container {
    flex: 1;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: flex-start;
    padding: 0 2em 2em 2em;
}

.escapad_form {
    /* backdrop-filter: brightness(0.8) blur(2px); */
    backdrop-filter: brightness(0.8);
    border: 2px solid #fdf5ce;
    border-radius: 1em;
}

.escapad_form_header {
    padding: 3em;
    color: #fdf5ce;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.escapad_form_title {
    font-weight: bold;
    font-size: 2em;
}

.escapad_form_subtitle {
    font-size: 2em;
    font-weight: 200;
    font-variation-settings: "wdth" 200;
}

.escapad_form_description {
    font-size: 1.2em;
    margin: 1em;
    max-width: 30em;
}

.escapad_logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 3em;
}

.escapad_logo img {
    max-height: 15em;
    width: 100%;
}

.escapad_right_part {
    color: #0d0b22;
}

.escapad_right_part,
.escapad_mobile_address_footer {
    padding: 3em 1em;
    display: flex;
    align-items: center;
}

.escapad_right_part.escapad_right_part_1 {
    background-color: #f4c2a2;
}

.escapad_right_part.escapad_right_part_2 {
    background-color: #fdf5ce;
}

.escapad_right_part.escapad_right_part_3 {
    background-color: #dbe6d5;
}

.escapad_mobile_address_footer {
    color: #dbe6d5;
    background-color: #0d0b22;
}

.escapad_right_part_title {
    font-family: 'Umiak', serif;
    font-weight: bold;
    font-size: 3.3em;
}

.escapad_right_part_subtitle {
    margin-bottom: 1em;
    font-size: 1.5em;
    font-weight: 200;
    font-variation-settings: "wdth" 200;
    transition: 100ms font-weight;
}

.escapad_right_part:hover .escapad_right_part_subtitle {
    font-weight: 700;
    font-variation-settings: "wdth" 700;
}

.escapad_address_footer {
    color: #fdf5ce;
    text-transform: uppercase;
    text-align: center;
}

.escapad_desktop_address_footer {
    padding: 0 1em 1.5em 1em;
    font-size: 1.5em;
}

.escapad_desktop_address_footer div {
    display: inline-block;
}

.escapad_address_footer .second_line {
    display: block;
    padding-top: 0.4em;
    font-size: 0.8em;
}

.escapad_address_footer a {
    color: #fdf5ce;
    text-decoration: none;
}

.escapad_address_footer .link_logo {
    height: 1em;
    vertical-align: middle;
}

.escapad_container .sib-form {
    padding: 0;
    text-align: center;
}

.escapad_container #sib-container {
    padding: 0;
}

.escapad_container .sib-input {
    padding: 0;
}

.escapad_container form {
    margin: 0;
}


.escapad_container .sib-form .entry__field {
    background-color: transparent;
    border: none;
    margin: 0;
}

.escapad_container .sib-input input {
    background-color: #f4c2a2;
    padding: 0.5em 1em;
    border: 3px solid #fdf5ce;
    color: #0d0b22;
    border-radius: 1em;
    margin-left: -3px;
    margin-right: -3px;
    margin-bottom: -3px;
}

.escapad_container .sib-form button[type="submit"] {
    position: absolute;
    right: 0.2em;
    top: 0.05em;
    background: transparent;
    border: none;
    font-size: 3em;
}

.escapad_container .sib-form button[type="submit"] svg {
    fill: #0D0B22;
    height: 0.9em;
    width: 0.9em;
}

@media screen and (max-width: 800px) {
    .escapad_container {
        flex-direction: column;
    }

    .escapad_logo {
        padding: 1em;
    }

    .escapad_right_part,
    .escapad_mobile_address_footer {
        padding: 0.5em 0.5em;
        justify-content: center;
        flex-direction: column;
    }

    .escapad_right_part_title {
        font-size: 2.8em;
    }

    .escapad_right_part_subtitle {
        display: none;
    }

    .escapad_form_container {
        padding: 0 2em 4em 2em;
        width: 100%;
    }

    .escapad_form_header {
        padding: 2em 0 2em 0;
    }

    .escapad_form {
        border: none;
        width: 100%;
    }

    .escapad_desktop_address_footer {
        display: none;
    }
}

@media screen and (min-width: 800px) {
    .escapad_right_part {
        height: 100%;
    }

    .escapad_right_part {
        writing-mode: sideways-lr;
        text-orientation: sideways;
    }

    .escapad_mobile_address_footer {
        display: none;
    }

    .mobile-break {
        display: none;
    }
}

/* 
=================
Brevo form
=================
*/
#sib-container input:-ms-input-placeholder {
    text-align: center;
    font-style: italic;
    color: #0d0b22;
    opacity: 0.6;
}

#sib-container input::placeholder {
    text-align: center;
    font-style: italic;
    color: #0d0b22;
    opacity: 0.6;
}

#sib-container textarea::placeholder {
    text-align: center;
    font-style: italic;
    color: #0d0b22;
    opacity: 0.6;
}

#sib-container a {
    text-decoration: underline;
    color: #2BB2FC;
}