body {
	font: 15px/1.5 Arial, Helvetica, sans-serif;
	margin: 0;
	background-color: #fff;
}

/* Header */
header {
    position: fixed;
    width: 100%;
    box-shadow: 0px 7px 14px -5px rgba(0, 0, 0, 0.2);
}

nav {
    font-weight: 700;
    height: 86px;
    background: #42a451;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 6.6%;
}

nav #logo {
    max-width: 10%;
}

nav #logo img {
    max-width: 100%;
}

nav .navigation-menu {
    display: flex;
    justify-content: right;
    margin: 0;
    padding: 0;
}

nav .navigation-menu li {
    display: flex;
}

nav .navigation-menu a {
    font-size: 16px;
    text-decoration: none;
    padding: 0 20px;
    color: #fff;
}

/* showcase */
main #showcase {
    /* padding: 280px 120px; */
    padding: 18.5% 8%;
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('/images/showcase.jpeg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

main #showcase h1 {
    text-transform: uppercase;
    font-size: xx-large;
    margin-right: 20%;
    color: #fff;
}

main #showcase a {
    text-decoration: none;
    color: #fff;
    font-size: large;
}

/* about */
#about .container-0 {
    display: flex;
    justify-content: space-between;
    padding: 6.8%;
}

#about .c-0_left {
    max-width: 50%;
}

#about .c-0_left p {
    font-size: large;
    font-weight: 500;
}

#about .c-0_left h2,span {
    color: #42a451;
}

#about .c-0_left h3 {
    font-size: x-large;
}

#about .c-0_right {
    max-width: 50%;
    padding-top: 10%;
}

#about .box_h {
    background-color: #ccdec9;
    padding: 2% 6%;
}

#about .box_h h2{
    margin: 0;
    max-width: 30%;
    font-size: x-large;
    padding-top: 2.2%;
}

#about .container-1 {
    background-color: #ccdec9;
    display: flex;
    justify-content: space-between;
    padding: 1% 6% 4% 6%;
}

#about .box {
    display: flex;
    display: inline-block;
    width: 32%;
    padding: 0;
}

#about .box img {
    width: 10%;
    float: left;
    padding: 0 6% 0 0;
}

#about .box h3 {
    margin: 0;
    font-size: large;
    padding: 4% 0;
} 

#about .box p {
    max-width: 90%;
    font-size: 1.2em;
    margin: 0;
}

/* services */
#services {
    padding: 2% 6%;
    margin: 0;
}

#services .os {
    max-width: 40%;
}

#services .os h3{
    margin: 0;
    padding: 2% 0 1% 0;
    font-size: large;
}

#services .os p{
    margin: 0;
    padding: 1% 0;
    font-size: x-large;
}

#services .sides {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    color: #fff;
    justify-content: space-between;
}

#services .sides > div {
    display: flex; 
    flex-basis: calc(50% - 40px);  
    justify-content: center;
    flex-direction: column;
}

#services .content-1 {
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('/images/box-1.jpeg');
    background-repeat: no-repeat;
}
#services .content-2 {
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('/images/box-2.jpeg');
    background-repeat: no-repeat;
}
#services .content-3 {
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('/images/box-3.jpeg');
    background-repeat: no-repeat;
}
#services .content-4 {
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('/images/box-4.jpeg');
    background-repeat: no-repeat;
}

#services .content-1, .content-2, .content-3, .content-4 {
    margin: 20% 0;
    padding: 10%;
    min-height: 60%;
}

/* contact */
#contact {
    background-color: #42a451;
    padding: 4% 6%;
}

#contact h3 {
    font-size: x-large;
    margin: 0;
}

#contact a {
    font-weight: 600;
    text-decoration: none;
    color: #000;
    display: flex;
    flex-direction: column;
    font-size: x-large;
    padding: 2% 0;
}

#contact p {
    font-size: large;
    margin: 0;
}

/* footer */
footer .fi{
    background-color: #04470e;
    color: #fff;
    display: flex;
    align-items: center;
}

footer #f_logo {
    max-width: 20%;
}

footer #f_logo img {
    max-width: 100%;
}

footer #f_text {
    padding: 0 16% 0 6%;
}

footer #f_text p {
    margin: 0;
}

/* Mobile */
@media (max-width: 768px) {
/* header */
    header nav {
        padding: 0;
    }

    header #logo {
        max-width: 30%;
    }

    header .navigation-menu {
        display: flex;
        flex-wrap: wrap;
        justify-content: left;
        padding: 0;
        margin: 0;
    }

    header .navigation-menu li {
        padding: 0;
    }

/* main */
    main h1, h2, h3, h4, p, ul, li {
        padding: 0;
        margin: 0;
        text-align: center;
    }

/* showcase */
    main #showcase {
        padding: 60% 4% 40% 4%;
    }

    main #showcase h2 {
        margin: 0;
        text-align: center;
    }

    main #showcase p {
        padding-top: 10%;
        margin: 0;
        text-align: center;
    }

/* about */
    #about .box_h h2 {
        max-width: 100%;
        padding: 4% 0;
    }

/* services */
    main #services .os {
        padding: 4%;
        max-width: 100%;
    }

/* contact */
    main #contact {
        padding: 10% 0;
    }

    main #contact .container p {
        padding: 0;
    }

}