@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: 16px;
    font-weight: 400;
    text-align: center;
    line-height: 1.6;
    color: #fefefe;
    background-color: #000;
    max-width: 1920px;
    margin: 0 auto;
}

.main-wrapper h1 {
    font-family: "Open Sans", sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.4;
    margin-top: 20px;
    margin-bottom: 0;
    padding-right: 5%;
}

.main-wrapper h2 {
    font-family: "Open Sans", sans-serif;
    font-size: 34px;
    font-weight: 700;
    letter-spacing: -1px;
    color: #fefefe;
    text-align: center;
    -webkit-text-fill-color: transparent;
    background: linear-gradient(-98deg, #23559f, #8db7ff);
    -webkit-background-clip: text;
    background-clip: text;
    margin-bottom: 0;
}

.main-wrapper h3 {
    font-family: "Open Sans", sans-serif;
    font-size: 34px;
    font-weight: 700;
    letter-spacing: -1px;
    margin-bottom: 16px;
}

.main-wrapper p {
    margin-bottom: 48px;
    padding: 0 20%;
}

.spacing {
    padding: 80px 0;
}

.section-1 {
    background-image: url(./assets/bg-section-1.jpg);
    background-repeat: no-repeat;
    background-position: top center;
    background-size: auto 100%;
    height: 947px;
    display: flex;
    align-items: center;
    text-align: left;
}

.bg-white h3 {
    color: #000;
}

.bg-white p {
    color: #000;
}


@media (max-width: 768px) {
    .main-wrapper h1 {
        font-size: 14px;
    }

    .main-wrapper h2 {
        font-size: 24px;
    }

    .main-wrapper h3 {
        font-size: 24px;
    }

    .main-wrapper p {
        padding: 0;
        margin-bottom: 24px;
    }

    .spacing {
        padding: 64px 0;
    }

    .section-1 {
        background-image: url(./assets/bg-section-1-mob.jpg);
        height: 610px;
        display: block;
        padding-top: 64px;
    }
}