* {
    font-family: 'Montserrat', sans-serif;
}

/* Landing Section */

.landingMainWrapper {
    background-image: url('../img/bricks-bg.jpg');
    background-position: center center;
}

.landingOverlayWrapper {
    background-color: rgba(255, 255, 255, 0.824);
    width: 100%;
    height: 100%;
}

#landingWrapper {
    min-height: 70vh;
}

/* Navbar */

.navbar-wrapper {
    padding: 0;
    display: flex;
    justify-content: center;
}

.nav-link {
    font-size: 1.4rem;
}

.nav-link:hover {
    color: hsl(23, 90%, 50%);
}

.menu-item a:hover {
    border-bottom: 1px solid hsl(23, 90%, 50%);
}

/* Hero Text */

#heroTextContainer {
    color: hsl(0, 0%, 9%);
    padding: 3rem;
}

#heroTextTitle {
    color: hsl(23, 90%, 50%);
    font-size: 4rem;
    font-weight: 700;
    text-transform: uppercase;
}

#heroTextSubtitle {
    color: hsl(0, 0%, 26%);
    font-size: 2rem;
    font-weight: 600;
}

/* Landing Orange Bar */

#landingBottomWrapper {
    width: 100%;
    background: linear-gradient(0.25turn, hsl(23, 100%, 63%), hsl(23, 90%, 50%), #f69d3c);
}

#landingBottomContainer {
    padding: 2rem 0;
}

#landingBottomLeftContainer h2,
#landingBottomLeftContainer span,
#landingBottomSocialContainer a,
#landingBottomRightContainer span,
#landingBottomRightContainer i,
#landingBottomRightContainer a,
.contactBox a {
    color: hsl(0, 0%, 100%);
    text-decoration: none;
}

#landingBottomSocialContainer a,
#landingBottomRightContainer i,
.contactBox i {
    font-size: 2rem;
}

/* Home Sections */

.section-container {
    margin: 0 auto;
    padding: 5rem 0;
}

.section-title {
    margin-bottom: 2rem;
}

.colored-text-orange {
    color: hsl(23, 100%, 60%);
}

.colored-text-blue {
    color: hsl(198, 100%, 86%);
}

/* Evaluation Section */

#evaluationSection .section-container {
    min-height: 50vh;
}

#evaluationBtn {
    background-color: hsl(197, 82%, 32%);
    color: white;
    border: 3px solid rgb(175, 211, 242);
    border-radius: 40px;
    padding: 1.5rem 5rem;
    font-size: 1.2rem;
}

#evaluationBtn:hover {
    background-color: hsl(197, 86%, 25%);
}

/* Services Section */

#servicesSection {
    color: #fff;
    background: hsl(23, 100%, 63%);
}

#servicesSectionWrapper {
    min-height: 50vh;
}

#servicesWrapper {
    flex-wrap: wrap;
}

.serviceIconContainer {
    font-size: 2rem;
}

#servicesBtn {
    background-color: hsl(0, 0%, 100%);
    color: hsl(28, 100%, 61%);
    border: 3px solid hsl(27, 100%, 73%);
    border-radius: 40px;
    padding: 1rem 3rem;
    font-size: 1.2rem;
}

#servicesBtn:hover {
    background-color: hsla(0, 0%, 100%, 0.8);
}

#servicesSectionWrapper ol li,
#servicesSectionWrapper .list-group-item {
    background-color: hsla(0, 0%, 100%, 0);
    color: white;
}

/* Contact Form Section */

#contactFormSection {
    background-color: hsl(0, 0%, 10%);
}

/* Sales Section */

#salesSection {
    background-color: hsla(197, 100%, 94%, 0.378);
}

.card-img-overlay {
    background-color: rgba(0, 0, 0, 0.2);
}

.card-footer {
    background-color: hsl(197, 82%, 32%);
}

.card-footer a {
    color: hsl(0, 0%, 100%);
    text-decoration: none;
}

.serviceSection {
    min-height: 30vh;
    background-color: #fff;
    border-radius: 20px;
    color: black;
}

/* Footer */

footer {
    background-color: hsl(0, 0%, 21%);
    color: hsl(0, 0%, 100%);
    width: 100%;
    text-align: center;
    padding: 5%;
}

/* Contacts Page */

#contactsMainWrapper {
    background-image: url('../img/bricks-bg.jpg');
    min-height: 70vh;
}

#contactsMainOverlay {
    background-color: rgba(0, 0, 0, 0.3);
}

.contactBox {
    background-color: hsl(197, 82%, 32%);
    color: white;
}

.contactName {
    font-weight: 600;
    text-transform: uppercase;
}

.contactBox a {
    background-color: hsl(197, 82%, 32%);
    color: hsl(0, 0%, 100%);
}

#contactFormContainer {
    color: hsl(0, 0%, 100%);
    background-color: hsl(0, 0%, 10%);
}

#formSubmitBtn {
    width: 100%;
    background-color: hsl(28, 100%, 61%);
    border: none;
    font-weight: bold;
    font-size: 1.2rem;
}

#formSubmitBtn:hover {
    background-color: rgba(255, 149, 57, 0.800);
}

/* Blog */

.articleContainer {
    margin: 6rem auto;
}

.articleTitle {
    margin: 3rem auto;
    font-weight: bold;
}

/* La Vendita */

.stepContainer {
    flex: 1;
    color: hsl(0, 0%, 100%);
    background-color: hsl(28, 100%, 61%);
    border-radius: 40px;
}

/* Media */

@media(max-width: 768px) {

    #heroTextTitle {
        font-size: 2.5rem;
    }

    #heroTextSubtitle {
        font-size: 1.2rem;
    }

    #landingBottomContainer {
        padding: 2rem;
    }

    #landingBottomSocialContainer a,
    #landingBottomRightContainer i {
        font-size: 1.5rem;
    }

    .section-container {
        padding: 5rem 2rem;
    }

    .contactBox {
        min-height: 12rem;
    }

    #contactMapContainer iframe {
        min-height: 40vh;
    }

    .articleImg {
        width: 80%;
    }
}
