@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;600&display=swap');

body,
html {
    margin: 0;
    padding: 0;
    font-size: 20px;
    line-height: 1.5;
    color: white;
    background: #3e004c;
    font-family: 'Poppins', sans-serif;
    font-weight: 300;
    width: 100%;
    overflow: hidden;
}

* {
    box-sizing: border-box;
    outline: none !important;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1 {
    font-size: 57px;
    font-weight: 600;
    line-height: 1.1;
}

h1,
p {
    margin: 0 0 20px 0;
}

a {
    color: white;
    text-decoration: none;
}

.loaded .preloader {
    opacity: 0;
}

.preloader {
    background: #3e004c;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 100;
    transition: opacity .6s ease-in-out;
    pointer-events: none;
    display: none;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 100px 80px;
}

.container.wide {
    padding: 0 40px;
    max-width: 1600px;
}

header {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    z-index: 50;
}

header .logo img {
    width: 200px;
    height: 70px;
    object-fit: contain;
    object-position: left center;
}

header .container,
header.container.wide {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    height: 100px;
}

.controls-wrap {
    width: 100%;
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: 50;
}

.controls-wrap .container {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    height: 100px;
}

section.coming-soon {
    height: 100vh;
    min-height: 800px;
    position: relative;
    z-index: 5;
}

section.coming-soon .container {
    height: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
}

.controls {
    cursor: pointer;
    font-size: 14px;
}

section.coming-soon .content {
    padding-bottom: 100px;
    max-width: 600px;
}

section.coming-soon .content > *:last-child {
    margin-bottom: 0;
}

section.coming-soon .contact-info .flex-wrapper {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
}

section.coming-soon .contact-info .flex-wrapper > * {
    margin-right: 80px;
    font-size: 16px;
    display: block;
}

.vimeo-container {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 0;
}

.vimeo-background {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    height: 100%;
}

.vimeo-sizer {
    border: none;
    max-width: none;
    height: 100%;
    width: auto;
    display: inline-block;
    vertical-align: top;
}

.vimeo-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
}

.lines {
    display: none;
}

@media only screen and (min-width: 2200px) {
    .vimeo-background {
        height: 125%;
    }
}

@media only screen and (max-width: 767px) {
    h1 {
        font-size: 32px;
    }

    p {
        font-size: 16px;
    }

    .container {
        padding: 100px 20px;
    }

    .container.wide {
        padding: 0 20px;
    }

    .controls-wrap {
        display: none;
    }

    header .logo img {
        height: 50px;
        width: 150px;
    }

    header .container {
        height: 60px;
    }

    section.coming-soon {
        height: auto;
        min-height: auto;
    }

    section.coming-soon .container {
        height: auto;
        padding-bottom: 0;
    }

    section.coming-soon .content {
        padding-bottom: 40px;
    }

    section.coming-soon .contact-info .flex-wrapper {
        display: block;
    }

    section.coming-soon .contact-info .flex-wrapper > * {
        margin: 0 0 10px 0;
    }

    .vimeo-container {
        display: none;
    }

    .lines {
        margin-top: -120px;
        display: block;
    }

    .mobile-lines {
        object-fit: cover;
        object-position: right bottom;
        display: block;
        width: 100%;
    }
}

@media only screen and (max-width: 767px) and (min-height: 820px) {
    section.coming-soon {
        padding-top: 40px;
    }

    .lines {
        position: absolute;
        left: 0;
        bottom: 0;
        width: 100%;
    }
}