@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');

.main-wrapper {
    font-family: "Open Sans", sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.6;
    color: #fff;
    background-color: #000;
    max-width: 1920px;
    margin: 0 auto;
    text-align: center;
}

.main-wrapper h2 {
    font-family: "Open Sans", sans-serif;
    font-size: 36px;
    font-weight: 700;
    letter-spacing: -0.025em;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 12px;
}

.main-wrapper p {
    margin-bottom: 64px;
}

.section-1 {
    background-image: url(../assets/bg-hero.png);
    background-repeat: no-repeat;
    background-position: top center;
    background-size: auto 100%;
    height: 832px;
    display: flex;
    align-items: end;
    padding-bottom: 80px;
}

.section-1 img {
    margin-bottom: 80px;
}

.section-1 p {
    margin-bottom: 0;
}

.bg-msi {
    background-image: url(../assets/bg-msi.png);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: auto 100%;
    height: 853px;
}

@media (max-width: 768px) {
    .main-wrapper p {
        font-size: 16px;
        margin-bottom: 24px;
    }
    
    .main-wrapper h2 {
        font-size: 24px;
    }
    
    .offset-2 {
        margin-left: 0;
    }

    .section-1 {
        background-image: url(../assets/bg-hero-mob.png);
        background-size: contain;
        height: auto;
        padding-bottom: 40px;
    }

    .section-1 img {
        max-width: 90%;
        margin-top: 60px;
        margin-bottom: 0;
    }

    .bg-msi {
        height: 480px;
    }
}