body {
    background-image: unset;
    background-color: white;
    font-size: 0.75rem;
}

h1, h2 {
    font-size: 2em;
}

#hero {
    padding: 0;
    display: flex;
    justify-content: space-between;


    & div.container-fluid {
        flex-shrink: 1;
        padding: 50px;
    }

    & #heroImage {
        flex-shrink: 0;
        height: auto;
        width: 645px;
        overflow: hidden;

        & img {
            width: auto;
            height: 100%;
            object-fit: cover;
        }
    }
}

#reactivate p {
    width: 100%;
}

section {
    padding: 50px 25px;
}

button.btn {
    border-radius: 1.5rem;
}

.btn-link {
    border: none;
    text-decoration: none;
}

#statisticsContainer {
    max-width: 100%;
}

#opportunityMap {
    position: relative;

    & img {
        max-height: 500px;
    }
}


#howPremiumWorks {
    border-left: 1px solid #00AEEF;

    & ul {
        padding-left: 1.18em;

        & li::marker {
            font-size: 2em;
            color: #CCEEFB;
            position: relative;
        }
    }
}

@media (min-width: 576px) {
    body {
        font-size: 1rem;
    }

    #opportunityCount {
        position: absolute;
        left: 50px;
        bottom: 0;
    }
}


@media (min-width: 768px) {
    #reactivate p {
        width: 55%;
    }

    #hero, #reactivate {
        & h1 {
            font-size: 3em;
        }

        & div.container-fluid {
            padding: 100px;
        }
    }
}

@media (min-width: 992px) {
    #hero div.container-fluid {
        padding: 150px
    }

    #statisticsContainer {
        max-width: 90%;

        & .stat:not(:last-child) {
            margin-right: 10%;
            width: 20%;
        }
    }
}


@media (min-width: 1200px) {
    #reactivate p {
        width: 45%;
    }

    section {
        padding: 50px 150px;
    }
}