@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap');

.main-wrapper {
    font-family: "Outfit", sans-serif;
    font-size: 16px;
    font-weight: 300;
    line-height: 1.6;
    letter-spacing: .5px;
    color: #0A2240;
    background-color: #fff;
}

.main-wrapper h1 {
    font-size: 60px;
    font-weight: 400;
    letter-spacing: 1px;
    color: #fff;
    margin-bottom: 20px;
}

.main-wrapper h2 {
    font-size: 40px;
    font-weight: 400;
    letter-spacing: .8px;
    margin-bottom: 16px;
}

.main-wrapper h3 {
    font-size: 16px;
    font-weight: 400;
    letter-spacing: .5px;
    color: #DD052B;
    margin-bottom: 4px;
}

.main-wrapper p {
    margin-bottom: 0;
}

.main-wrapper .hero {
    background-image: url(./assets/bg-hero.jpg);
    background-repeat: no-repeat;
    background-position: top center;
    background-size: auto 100%;
    height: 750px;
    display: flex;
    align-items: center;
}

.main-wrapper .hero img {
    margin-bottom: 56px;
}

.main-wrapper .content p {
    font-size: 18px;
    color: #E3E0E7;
    padding-right: 20px;
    margin-bottom: 32px;
}

.main-wrapper .content .key-features {
    color: #fff;
    padding-left: 12px;
    margin-bottom: 0;
}

.main-wrapper .content .key-features li {
    margin-bottom: 4px;
}

.main-wrapper .content .key-features li:last-child {
    margin-bottom: 0;
}

.main-wrapper .content .key-features li::marker {
    color: #DD052B;
}

.spacing {
    padding: 80px 0;
}

.align-center {
    display: flex;
    align-items: center;
}

.align-right {
    display: flex;
    justify-content: end;
}

.mobile {
    display: none;
}

@media (max-width: 768px) {
    .mobile {
        display: block;
    }

    .order {
        order: -1 !important;
    }

    .main-wrapper h1 {
        font-size: 40px;
    }

    .main-wrapper h2 {
        font-size: 32px;
    }

    .main-wrapper .hero {
        display: block;
        background-image: linear-gradient(180deg,#081734,#2a3852 85%);
        height: auto;
        padding-bottom: 40px;
    }

    .main-wrapper .hero .mobile {
        border-bottom: 2px solid #DD052B;
        margin-bottom: 40px;
    }

    .spacing {
        padding: 40px 0;
    }

    .align-right {
        justify-content: start;
    }

    .main-wrapper .col-lg-7 img {
        margin-bottom: 16px;
    }
}