/* all */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* body */
body {
    font-family: 'Lato', sans-serif;
    font-weight: 300;
    font-size: 17px;
    line-height: 1.5;
    background: #f5f5f5;
    color: #384e49;
}

h1,
h2,
h3,
h4 {
    font-family: 'Antonio', sans-serif;
    letter-spacing: 3px;
    color: #5B8C80;
}

a {
    color: #5B8C80;
}

.top-border {
    width: 100%;
    height: 40px;
    background: #5B8C80;
}



/* header */
.logo-box {
    width: 250px;
}

.under-construction-logo {
    margin-top: 80px;
    margin-left: auto;
    margin-right: auto;
}

.logo-img {
    width: 100%;
}

.phone {
    font-weight: bold;
}

.facebook {
    padding-left: 20px;
}




/* main */
.container {
    max-width: 1200px;
    width: 80%;
    margin: 0 auto;
}

.under-construction-text {
    margin-top: 50px;
    text-align: center;
}

.row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    margin-top: 80px;
    margin-bottom: 80px;
}

.main-heading {
    text-align: center;
    font-size: 1.5em;
    margin-bottom: 40px;
    margin-top: 40px;
}

.main-text {
    width: 80%;
    margin: 0 auto;
}

.mulch-box {
    background-color: #5B8C80;
    width: 32%;
}

.mulch-img {
    height: 300px;
}

.mulch-box img {
    width: 100%;
}

.mulch-text {
    background-color: #D4DEDC;
    height: 180px;
    position: relative;
    z-index: 100;
}

.mulch-text h2 {
    font-size: 16px;
    padding-top: 10px;
    padding-bottom: 4px;
    text-align: center;
}

.mulch-text p {
    font-size: 14px;
    padding-top: 4px;
    padding-bottom: 20px;
    padding-right: 20px;
    padding-left: 20px;
    text-align: left;
}

.price {
    font-weight: bold !important;
    text-align: center;
    font-size: 16px !important;
    position: absolute;
    z-index: 110;
    bottom: 0px;
    left: 0px;
    width: 100%;
    text-align: center !important;
}

.call-now-box {
    text-align: center;
}

.towns {
    margin-top: 20px;
}

.call-now {
    text-align: center;
    margin-bottom: 80px;
    margin-top: 40px;
    line-height: 2em;
}



/* footer */
footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 400px;
    padding: 0 20px;
    background-color: #5B8C80;
}

.footer-box {
    width: 30%;
    color: #fff;
    height: 400px;
}

.footer-box h3 {
    margin-bottom: 20px;
    color: #fff;
}

.map {
    width: 100%;
    height: 300px;
    background-color: #344e48;
}

iframe {
    width: 100%;
    height: 100%;
}

.address {
    margin-top: 20px;
}

.hours {
    margin-top: 20px;
}






/* form */

input {
    width: 100%;
    height: 40px;
    border: 1px solid #5B8C80;
    border-radius: 5px;
    padding-left: 10px;
    margin-bottom: 20px;
}

.calculate-button {
    width: 100%;
    height: 40px;
    border-radius: 5px;
    border: none;
    background-color: #3c544e;
    color: #fff;
    font-weight: bold;
    cursor: pointer;
}

.results {
    margin-top: 30px;
    padding-left: 4px;
}



/* screens sizes less than 955px */
@media screen and (max-width: 955px) {
    .mulch-text {
        height: 200px;
    }
}


/* screens sizes less than 855px */
@media screen and (max-width: 855px) {
    .mulch-text {
        height: 250px;
    }
}


/* screens sizes less than 728px */
@media screen and (max-width: 728px) {
    .mulch-text {
        height: 270px;
    }

    .container {
        width: 90%;
    }
}


/* screens sizes less than 623px */
@media screen and (max-width: 623px) {
    .container {
        width: 96%;
    }

    .logo-box {
        margin-left: auto;
        margin-right: auto;
    }

    .header-right {
        margin-left: auto;
        margin-right: auto;
    }
}


/* screens sizes less than 560px */
@media screen and (max-width: 560px) {
    .container {
        width: 90%;
    }

    .logo-box {
        margin-left: auto;
        margin-right: auto;
    }

    .header-right {
        margin-left: auto;
        margin-right: auto;
    }

    .mulch-box {
        width: 100%;
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 40px;
    }

    .mulch-text {
        height: 150px;
    }

    .footer-box {
        width: 100%;
    }
}