/*font-family: 'Bebas Neue', cursive;*/
/*font-family: 'Poppins', sans-serif;*/
/*font-family: 'Source Sans Pro', sans-serif;*/

*{
    margin: 0;
    padding: 0;
    font-family: 'Source Sans Pro', sans-serif;
    box-sizing: border-box;
    color: #1D1D1B;
}

img{
    max-width: 100%;
}

.image-container{
    position: relative;
}

.image-container img{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

h1{
    font-family: 'Bebas Neue', cursive;
    font-weight: 600;
    font-size: 72px;
    line-height: 1;
}

p.domain-name, p.domain-name span, a.button{
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 18px;
}

section{
    padding: 50px 0;
}

.wrapper{
    width: calc(100% - 50px);
    margin: 0 auto;
    max-width: 1600px;
}

a.button{
    transition: all 0.4s ease-in-out;
    display: inline-block;
    line-height: 60px;
    background: #1D1D1B;
    border: 2px solid #1D1D1B;
    color: #FFF;
    text-decoration: none;
    padding: 0 35px;
    font-weight: 600;
}

a.button:hover{
    background: #FFF;
    color: #000;
}

.head .wrapper{
    text-align: center;
}

img.head-logo{
    display: inline-block;
    width: 200px;
    margin: 14px 0 47px;
}

.oh-no.image-container{
    height: 175px;
}

.services{
    background: #E7443C;
}

.services .wrapper{
    display: -ms-grid;
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    grid-gap: 20px 30px;
    gap: 30px 30px;
}

.services-block{
    box-shadow: 0 15px 10px 0 rgb(0 0 0 / 15%);
    background: #FFF;
    text-align: center;
}

.services-block-image{
    height: 280px;
}

.services-block-text{
    padding: 50px 20px 40px;
}

.services-block-text h2{
    font-family: 'Bebas Neue', cursive;
    font-weight: normal;
    font-size: 48px;
    line-height: 1;
    color: #1D1D1D;
    margin-bottom: 20px;
}

.services-block-text p{
    font-size: 24px;
    line-height: 36px;
    font-weight: 300;
    color: #333;
    margin-bottom: 32px;
}

.contact{
    padding: 0;
}

.contact h3{
    font-family: 'Poppins', sans-serif;
    font-size: 30px;
    line-height: 1;
    margin-bottom: 20px;
}

.contact p{
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 25px;
    line-height: 45px;
    font-weight: 300;
}

.contact > div{
    padding: 50px 0;
}

.contact-right{
    background: #F9F9F9;
}

.contact-right h3:last-of-type{
    margin-top: 30px;
}

.contact-right p{
    margin-bottom: 14px;
}

footer{
    background: #1D1D1B;
    padding: 20px 0;
}

footer a{
    color: #FFF;
}

.social-icons{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 20px;
}

.social-icons a{
    display: block;
    width: 35px;
    height: 24px;
    margin: 0 25px;
}

.social-icons a:hover > svg path{
    fill: #E7443C;
}

.social-icons svg{
    max-height: 100%;
}

.social-icons svg path{
    fill: #FFF;
}

.footer-contact{
    text-align: center;
}

.footer-contact a{
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-size: 16px;
    margin: 0 10px;
}


@media (min-width: 768px) {
    section{
        padding: 70px 0;
    }
    h1{
        font-size: 80px;
        line-height: 1.1;
    }
    p.domain-name, p.domain-name span{
        font-size: 26px;
    }
    img.head-logo{
        width: 220px;
    }
    .oh-no.image-container{
        height: 400px;
        width: 750px;
        margin: 0 auto;
    }
    .services .wrapper{
        grid-gap: 40px 30px;
        gap: 40px 30px;
    }
    .services-block-text{
        padding: 50px 40px 40px;
    }
    .contact h3{
        font-size: 40px;
    }
}


@media (min-width: 1024px) {
    .wrapper{
        width: calc(100% - 80px);
    }
    section{
        padding: 100px 0;
    }
    a.button{
        padding: 0 10px;
        width: calc(100% + 40px);
        text-align: center;
        margin-left: -20px;
    }
    .head{
        padding: 80px 0 130px;
    }
    img.head-logo{
        width: 250px;
        margin-bottom: 20px;
    }
    .services .wrapper{
        grid-template-columns: repeat(3, 1fr);
        grid-gap: 40px 40px;
        gap: 40px 40px;
    }
    .contact{
        display: -ms-grid;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        grid-gap: 0;
        gap: 0;
    }
    .contact-left .wrapper{
        padding-right: 50px;
    }
    .contact-right .wrapper{
        padding-left: 50px;
    }
}

@media (min-width: 1200px) {
    a.button{
        padding: 0 35px;
        width: auto;
        margin-left: 0;
    }
    .contact-left .wrapper{
        padding: 10% 15%;
    }
    .contact-right .wrapper{
        padding: 10% 15%;
    }
}