@charset "utf-8";

/**************************************************************************************************
***************************GENERAL
***************************************************************************************************/
html {
    background-color: #222222;
}

body {
    margin: 0;
}

h1 {
    margin: 0 0 .75em 0;
    color: #fff;
    font-family: 'Quicksand', sans-serif;
    font-weight: 600;
    font-size: 2em;
    word-break: break-all;
}

h2 {
    margin: .75em 0 .5em 0;
    color: #fff;
    font-family: 'Quicksand', sans-serif;
    font-weight: 600;
    font-size: 1.5em;
    word-break: break-all;
}

h3 {
    margin: .75em 0 .5em 0;
    color: #fff;
    font-family: 'Quicksand', sans-serif;
    font-weight: 600;
    font-size: 1.25em;
    word-break: break-all;
}

p {
    font-family: 'Quicksand', sans-serif;
    font-weight: 400;
    margin: .25em;
    color: #fff;
    font-size: 1em;
    line-height: 1.6;
}

a {
    text-decoration: underline;
	color: #fff;
}

a:hover {
	text-decoration: underline;
	color: #fbb900;
}

/**************************************************************************************************
***************************GRID
***************************************************************************************************/

.grid {
    display: grid;
    height: 100vh;
    grid-template-columns: 1fr;
    grid-template-rows:
        auto
        1fr
        auto;
    grid-template-areas:
        "header"
        "content"
        "footer"
    ;
}

/**************************************************************************************************
***************************HEADER
***************************************************************************************************/

.hd-sign {
    grid-area: header;
    background-color: #222222;
    background-image: url(../img/hero.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    height: 100vh;
    border-bottom: 2px solid #fbb900;
}

.hd-sign a {
    position: absolute;
    z-index: 99;
    left: 10%;
    top: 80vh;
    margin: 0 3em 0 0;
}

.hd-sign svg {
    width: 18em;
    fill: #fbb900;
}

.hd-sign svg:hover {
    fill: #fff;
}


@media screen and (max-width: 980px) {
    .hd-sign {
        background-position: center;
    }
}

@media screen and (max-width: 650px) {
    .hd-sign a {
        left: 10%;
        top: 70vh;
    }
    .hd-sign svg {
        width: 14em;
    }
}

.sub-hd-sign {
    background-color: #1d1d1d;
    height: 25vh;
    border-bottom: 2px solid #fbb900;
}

.sub-hd-sign a {
    position: relative;
    margin: 3em;
    top: 8vh;
}

.sub-hd-sign svg {
    width: 14em;
    fill: #fbb900;
}

.sub-hd-sign svg:hover {
    fill: #fff;
}

.cnt-datens {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 4em 0 2em 0;
}

.cnt-datens-wrap {
    flex-basis: 40em;
    margin: 0 1.5em;
}

.cnt-service {
    background: #222222;
    margin: 0 0 0 0;
    padding: 4em 0 0 0;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.content-wrap {
    flex-basis: 44em;
    flex-wrap: wrap;
    padding: 0 3em 0 3em;
}

.parent {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    margin: 2em 0 0 0;
    flex-wrap: wrap;
}

.items {
    flex-basis: 12em;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: center;
    margin: 2em 1em 2em 1em;
}

.items p {
    text-align: center;
}

.items h2 {
    text-align: center;
}

.cnt-testimonials {
    background: #222222;
    margin: 0 0 0 0;
}

.testimonials {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    flex-wrap: wrap;
    flex-shrink: 1;
    padding: 3em 0 2em 0;
}

.testimonials img {
    width: 25%;
    height: auto;
}

.voices {
    text-align: center;
    margin: 1em .5em 1em .5em;
}

@media screen and (max-width: 970px) {
    .testimonials img {
        width: 50%;
        height: auto;
    }
}

@media screen and (max-width: 540px) {
    .testimonials img {
        width: 100%;
        height: auto;
    }
}

.cnt-contact {
    background-color: #222222;
    padding: 2em 0 2em 0;
}

.cnt-contact h1 {
    text-align: center;
}

.foot {
    grid-area: footer;
    margin: 2em 0 0 0;
    padding: 1em 0 1em 0;
    background-color: #1d1d1d;
    display: flex;
    justify-content: center;
    align-content: center;
    flex-wrap: wrap;
    border-top: 2px solid #fbb900;
}

.foot p {
    margin: 0 .5em 0 .5em;
}