/**
* Hero section
*
* @since 1.0.0
*/

.hero-banner {
    padding: 165px 0 80px;
    background: linear-gradient(30deg, rgba(253,252,252,1) 0%, rgba(210,179,179,1) 30%);
    min-height: 0 !important;
}

.hero-banner .bg-img {
    mix-blend-mode: overlay;
}

.hero-banner h1 {
    font-size: 38px;
}

/**
* Content section
*
* @since 1.0.0
*/

.content {
    padding: 80px 0;
}

.content > .container {
    max-width: 810px;
}

.content p {
    color: #36302a;
    font-size: 20px;
}

@media( max-width: 1025px ) {
    .hero-banner h1 {
        font-size: 36px;
    }

    .content {
        padding: 70px 0;
    }

    .content p {
        font-size: 18px;
    }
}

@media( max-width: 768px ) {
    .hero-banner h1 {
        font-size: 34px;
    }

    .content {
        padding: 50px 0;
    }

    .content p {
        font-size: 16px;
    }
}