section {
    .row {
        display: flex;
        flex-wrap: wrap;
        flex-direction: row;
    }

    .col-6 {
        width: 50%;
    }
    p {
        font-size: 20px;
    }

    img {
        display: block;
    }

    .image-wrapper {
        padding: 0 30px;
    }
}

#hero-section {

    h1 {
        font-weight: 700;
    }
    h1, div, p {
        color: white;
    }

    .background-wrapper, .filter-wrapper {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        height: 100%;
        width: 100%;
        background: rgba(0, 0, 0, 0.5);
    }

    .content-wrapper {
        position: relative;
        height: 100vh;
        max-width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
}

#intro-section {
    display: none;
    padding-top: 120px;
    padding-bottom: 120px;
}


@media (max-width: 800px) {
    section {

        .col-6 {
            width: 100%;
        }
        p {
            font-size: 14px;
        }


        .image-wrapper {
            padding: 30px 0;
        }
    }
}
