@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

.main-wrapper {
    font-family: "Roboto", sans-serif;
    font-size: 24px;
    font-weight: 400;
    text-align: center;
    line-height: 1.2;
    color: #a7a7a7;
    background-color: #000;
    max-width: 1920px;
    margin: 0 auto;
}

.main-wrapper h1 {
    font-family: "Roboto", sans-serif;
    font-size: 64px;
    font-weight: 600;
    color: #444;
    margin-bottom: 12px;
}

.main-wrapper h2 {
    font-family: "Roboto", sans-serif;
    font-size: 48px;
    font-weight: 500;
    display: inline-block;
    background-image: -webkit-linear-gradient(left, #ffffff 0%, #7b7b7b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 24px;
}

.main-wrapper h3 {
    font-family: "Roboto", sans-serif;
    font-size: 38px;
    font-weight: 500;
    display: inline-block;
    background-image: -webkit-linear-gradient(left, #ffffff 0%, #7b7b7b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0;
}

.main-wrapper p {
    margin-bottom: 0;
}

.spacing {
    padding: 64px 0;
}

.section-1 {
    background-image: url(./assets/bg-hero.png);
    background-repeat: no-repeat;
    background-position: top center;
    background-size: auto 100%;
    height: 800px;
    display: flex;
    align-items: center;
    text-align: right;
    margin-bottom: 64px;
}

.section-1 p {
    color: #444;
}

.feature-list {
    display: flex;
    justify-content: space-evenly;
    margin: 48px 0;
}

.section-5 img {
    margin: 48px 0 24px;
}

.section-5 .row img {
    margin: 0;
}

@media (max-width: 768px) {
    .main-wrapper {
        font-size: 16px;
        line-height: 1.4;
    }

    .main-wrapper h1 {
        font-size: 32px;
        margin-bottom: 0;
    }

    .main-wrapper h2 {
        font-size: 24px;
        margin-bottom: 16px;
    }

    .main-wrapper h3 {
        font-size: 28px;
    }

    .spacing {
        padding: 40px 0;
    }

    .offset-6 {
        margin-left: 0;
    }

    .section-1 {
        display: block;
        height: 230px;
        margin-top: 12px;
        margin-bottom: 40px;
    }

    .section-1 p {
        font-size: 16px;
    }

    .section-4 .col-lg-6 {
        margin-bottom: 24px;
    }

    .section-4 .col-lg-6:last-child {
        margin-bottom: 0;
    }

    .section-5 .col-lg-6 {
        margin-bottom: 24px;
    }

    .section-5 .col-lg-6:last-child {
        margin-bottom: 0;
    }

    .feature-list {
        display: block;
        margin: 24px 0;
    }

    .feature-list .feature-item {
        margin-bottom: 20px;
    }

    .feature-list .feature-item:last-child {
        margin-bottom: 0;
    }
}