/* --------------------------------------------- */
/* ----- UTILITY ----- */
/* --------------------------------------------- */

:root {
    --white: #FEFEFE;
    --primary: #050821;
    --accent: #B59268;
}

@font-face {
    font-family: 'Gilroy';
    src: url('/assets/fonts/Gilroy-Light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: 'Gilroy';
    src: url('/assets/fonts/Gilroy-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'Gilroy';
    src: url('/assets/fonts/Gilroy-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'Gilroy';
    src: url('/assets/fonts/Gilroy-Black.ttf') format('truetype');
    font-weight: 900;
    font-style: normal;
}

@font-face {
    font-family: 'Didonesque Display';
    src: url('/assets/fonts/Didonesque-Display.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}

*, html, body {
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
}

html {
    overflow: hidden;
}

body {
    height: 100vh;
    width: 100vw;
    overflow: hidden;
    position: relative;
    color: var(--white);
    padding-inline: 5rem;
    padding-block: 2rem;
    background: var(--primary);
    font-family: "Gilroy", sans-serif;
    font-weight: 500;
    font-size: 1rem;
}

h1, h2, h3 {
    font-family: "Didonesque Display", 'Times New Roman', Times, serif;
}

@media screen and (max-width: 992px) {
    body {
        padding-inline: 3rem;
    }
}

@media screen and (max-width: 767px) {
    body {
        padding-inline: 2rem;
    }
}

@media screen and (max-width: 567px) {
    body {
        padding-inline: 1rem;
    }
}

.d-flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
}

.flex-column {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            -webkit-flex-direction: column;
            flex-direction: column;
}

.equal-columns > * {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            -webkit-flex: 1;
            flex: 1;
}

.align-items-center {
    -webkit-box-align: center;
        -ms-flex-align: center;
            -webkit-align-items: center;
            align-items: center;
}

.align-items-stretch {
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            -webkit-align-items: stretch;
            align-items: stretch;
}

.justify-content-between {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            -webkit-justify-content: space-between;
            justify-content: space-between;
}

.primary-button {
    gap: 4rem;
    font-size: 0.875rem;
    padding: 1.25rem 2rem;
    background: var(--accent);
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    text-decoration: none;
    text-transform: uppercase;
    color: var(--white);
    font-weight: 700;
}

.primary-button span img {
    width: 6px;
}

/* --------------------------------------------- */
/* ----- NAVIGATION ----- */
/* --------------------------------------------- */
nav .logo {
    width: 123px;
}

nav .right-side img {
    width: 100px;
}

nav .right-side {
    gap: 1rem;
}

/* --------------------------------------------- */
/* ----- MAIN SECTION ----- */
/* --------------------------------------------- */
main {
    margin-top: 15vh;
}
main .subtitle {
    text-transform: uppercase;
    font-weight: 700;
    font-size: 1.5rem;
}
main h1 {
    font-size: 6.9rem;
    width: 50%;
}

main .d-flex.equal-columns {
    margin-top: 10vh;
}

main .container-fluid > .d-flex {
    width: 100%;
}

main .left {
    gap: 1rem;
    font-size: 1.25rem;
}

main .left img {
    width: 36px;
}

main .left .d-flex {
    gap: 2rem;
}


.mb-minus-3 {
    margin-bottom: -3px;
}

main .right p {
    font-size: 1.1rem;
    line-height: 169%;
    width: 70%;
}

/* --------------------------------------------- */
/* ----- WATERMARKS ----- */
/* --------------------------------------------- */
.watermark {
    position: absolute;
    font-size: 20vw;
    background: -o-linear-gradient(bottom left, rgba(255,255,255,0), rgba(255,255,255,0.8));
    background: -webkit-gradient(linear, left bottom, right top, from(rgba(255,255,255,0)), to(rgba(255,255,255,0.8)));
    background: linear-gradient(to top right, rgba(255,255,255,0), rgba(255,255,255,0.8));
    -webkit-background-clip: text;
            background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    opacity: 0.2;
    text-transform: uppercase;
    font-weight: 900;
    z-index: -1;
}

.watermark.row-1 {
    top: 100px;
    left: -30px;
}

.watermark.row-2 {
    top: 400px;
    left: 14vw;
    width: 200%;
}

@media screen and (max-width: 1200px) {
    main .right p {
        width: 100%;
    }
    main h1 {
        width: 80%;
    }
    .watermark.row-2 {
        top: 300px;
    }
}

@media screen and (max-width: 992px) {
    main .right p {
        margin-bottom: 30px;
    }
    main h1 {
        width: 100%;
    }
    .watermark.row-1 {
        top: 500px;
    }
    .watermark.row-2 {
        top: 700px;
    }
    main .container-fluid > .d-flex {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                -webkit-flex-direction: column;
                flex-direction: column;
        gap: 3rem;
    }
}

@media screen and (max-width: 767px) {
    main h1 {
        font-size: 12vw;
    }
    .watermark.row-1 {
        top: 400px;
    }
    .watermark.row-2 {
        top: 550px;
    }
}

@media screen and (max-width: 1000px) and (orientation: landscape) {
    html {
        overflow: auto;
    }
    body {
        height: auto;
    }
}

@media screen and (max-width: 567px) {
    main {
        margin-top: 10vh;
    }
    main h1 {
        font-size: 14vw;
    }
    main .subtitle {
        font-size: 1.1rem;
    }
    .watermark.row-1 {
        top: 350px;
    }
    .watermark.row-2 {
        top: 450px;
    }
    nav .logo {
        width: 100px;
    }
    nav .right-side img {
        width: 80px;
    }
    nav .right-side p {
        font-size: 0.875rem;
    }
    html {
        overflow: auto;
    }
    body {
        height: auto;
    }
}

@media screen and (min-width: 2000px) {
    main h1 {
        font-size: 6.9vw;
    }
    .watermark.row-1 {
        top: 6vh;
    }
    .watermark.row-2 {
        top: 40vh;
    }
}