/* FONT IMPORT */

/* Google Font */
@import url('https://fonts.googleapis.com/css2?family=Roboto+Slab:wght@100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Mulish:ital,wght@0,200..1000;1,200..1000&display=swap');

:root {
    --white: #fff;
    --black: #000;
    --primary: #ff0000;
    --secondary: #333333;
}

html {
    scroll-behavior: smooth;
    height: 100%;
}

body {
    position: relative;
    background: #fff;
    overflow-x: hidden;
    height: 100%;
}

section {
    position: relative;
}


.img-auto {
    display: block;
    max-width: 100%;
    margin: 0 auto;
}

a,
button {
    text-decoration: none !important;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

a:hover,
button:hover {
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

figure {
    margin: 0;
}

header {
    padding: 1.25rem 9.375rem 0 9.375rem;
    position: absolute;
    width: 100%;
    z-index: 11;
}

.navbar-nav {
    gap: 1.25rem;
    flex-direction: row;
}

.navbar-nav li a {
    font-size: 1.25rem;
    color: var(--white);
}

.comingSoon {
    background: #313131;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: end;
    flex-direction: column;
    padding-bottom: 9.375rem;
    z-index: 1;
}

.comingSoon h1 {
    color: var(--white);
    font-size: 5.625rem;
    font-family: "Roboto Slab", serif;
    font-weight: bold;
    letter-spacing: 8px;
    background: rgb(31 31 31 / 70%);
    width: 100%;
    text-align: center;
    padding: 2rem 0;
    margin-bottom: 1rem;
}

.comingSoon p {
    font-size: 1.875rem;
    color: var(--white);
    text-align: center;
    font-family: "Mulish", sans-serif;
    font-weight: bold;
    width: 50%;
    margin: 0;
}

.logos {
    position: absolute;
    bottom: 0;
    z-index: -1;
    width: 55%;
}


.menu {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}