:root {
    --primary-color: #a57b2d;
    --main-text-color: #6b6e71;
}

@font-face {
    font-family: 'GTSectra';
    src: url('../fonts/GTSectra-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Nitti';
    src: url('../fonts/Nitti-Normal.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

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

* {
    box-sizing: border-box;
}

body {
    font-family: 'Nitti', system-ui, sans-serif;
    padding: 0;
    margin: 0;
    color: var(--main-text-color);
    letter-spacing: 1px;
}

img {
    max-width: 100%;
}

p {
    font-size: 18px;
}

/************************
Main Banner
***********************/

    .main-banner {

    }

    .main-banner--image {
        width: 100%;
    }

    .main-banner--logo{
        width: 200px;
        margin: 0 auto 2rem auto;
    }

    .main-banner--content {
        text-align: center;
        padding: 4rem 3rem;
    }

    .main-banner--copys {

    }

    .main-banner--copys h1 {
        font-size: 1.5rem;
        margin-bottom: 2rem;
    }

/************************
  Second Banner
  ***********************/

    .second-banner {
        display: flex;
        flex-direction: column;
        width: 100%;
    }

    .second-banner--image {
        position: relative;
    }

    .second-banner--image img:first-child{
        object-fit: cover;
        object-position: top;
        transform: scaleX(-1);
        height: 50vh;
    }

    .second-banner--copys {
        width: 100%;
        padding: 4rem 3rem;
    }

    .second-banner--copys h2 {
        margin: 0 0 2rem 0;
        font-size: 1.5rem;
    }

    .second-banner--copys p {

    }

    .second-banner--logo {
        position: absolute;
        bottom: 3rem;
        left: calc(50% - 75px);
        width: 150px;
    }

    /************************
     Utilities
     ***********************/

    .ff-nitti {
        font-family: 'Nitti', system-ui, sans-serif;
    }

    .ff-sectra {
        font-family: 'GTSectra', system-ui, sans-serif;
    }

    .fc-primary {
        color: var(--primary-color);
        letter-spacing: 0 !important;
    }

    .fc-text {
        color: var(--main-text-color);
    }

    @media (min-width: 768px) {
        p {
            font-size: 18px;
            line-height: 28px;
        }

        .fs-subtitle {
            font-size: 1.5rem;
        }

        .main-banner--image {
            height: 80vh;
            object-fit: cover;
            object-position: center;
        }

        .main-banner--logo {
            width: 300px;
        }

        .main-banner--copys h1 {
            font-size: 2rem;
        }

        .main-banner--content {
            padding: 4rem 4rem 8rem 4rem;
        }

        .second-banner {
            flex-direction: row;
        }

        .second-banner--image {
            width: 40% !important;
            height: 700px;
        }

        .second-banner--image img:first-child {
            width: 100%;
            height: 100%;
        }

        .second-banner--copys {
            width: 60%;
            display: flex;
            flex-direction: column;
            justify-content: center;
            padding: 4rem 8rem 4rem 4rem;
        }

        .second-banner--copys h2 {
            font-size: 1.5rem;
        }
    }