@import url('https://fonts.googleapis.com/css2?family=Roboto+Condensed:ital,wght@0,100..900;1,100..900&display=swap');

.main-wrapper {
    font-family: "Roboto Condensed", sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6;
    color: #fff;
    background-color: #000;
    max-width: 1920px;
    margin: 0 auto;
}

.main-wrapper h2 {
    font-family: "Roboto Condensed", sans-serif;
    font-size: 40px;
    font-weight: 700;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 12px;
}

.main-wrapper h3 {
    font-family: "Roboto Condensed", sans-serif;
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
    color: #000;
    margin-bottom: 2px;
}

.main-wrapper p {
    margin-bottom: 0;
}

.spacing {
    padding: 80px 0;
}

.section-1 {
    background-image: url(./assets/bg-hero.jpg);
    background-repeat: no-repeat;
    background-position: top center;
    background-size: auto 100%;
    height: 750px;
}

.section-1 img {
    display: block;
    margin: 0 auto;
    padding-top: 40px;
}

.section-2 {
    background-color: #fff;
}

section .row {
    display: flex;
    align-items: center;
}

.section-2 h2 {
    color: #222;
}

.section-2 p {
    color: #222;
}

.section-5 {
    text-align: center;
}

.section-5 p {
    padding: 0 5%;
}

.section-6 img {
    display: block;
    margin: 0 auto;
}

.section-7 {
    text-align: center;
}

.section-7 p {
    padding: 0 5%;
    margin-bottom: 40px;
}

.section-8 {
    text-align: center;
}

.section-8 p {
    padding: 0 5%;
}

@media (max-width: 768px) {
    .order {
        order: -1 !important;
    }
    
    .main-wrapper {
        text-align: center;
    }

    .main-wrapper h2 {
        font-size: 30px;
    }
    
    .spacing {
        padding: 40px 0;
    }
    
    .section-1 {
        height: 350px;
    }

    .section-2 img {
        margin-top: 12px;
    }
}