*{
    margin: 0;
    padding: 0;
    -webkit-box-sizing:border-box;
    -moz-box-sizing:border-box;
    box-sizing:border-box
}
ul{
    margin: 0;
    padding: 0;
    list-style: outside none none;
}
a{
    color: #FFF;
    outline: 0;
    text-decoration: none;
}
a:focus, a:hover{
    color: #fdca38 !important;
    text-decoration: none;
    transition: all .5s;
    outline: 0;
}
img {
    height: auto;
    max-width: 100%;
    width: auto;
}
h1, h2, h3, h4, h5, h6{
    margin: 0;
    font-size: 18px;
    line-height: 1.1;
    font-weight: 700;
    
}
body{
    font-family: 'Montserrat', sans-serif;
    color: #FFF;
    font-size: 14px;
    font-weight: 400;
}
body p{
    margin-bottom: 7px;
}

.main-wrapper {
    background: url(./body-bg.jpg) no-repeat scroll 0 0 transparent;
    background-size: 100% 100%;
    text-align: center;
}
.header-wrapper{
    margin-bottom: 70px;
}
.header-logo{
    padding: 70px 0;
}
.header-info h3{
    margin-bottom: 20px;
}
.service-wrapper {
    width: 60%;
    margin: 0 auto 70px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}
.service-container {
    padding: 0 30px;
}
.service-container img {
    margin-bottom: 25px;
    height: 65px;
}
.service-container h3 {
    margin-bottom: 15px;
}
.contact-wrapper p {
    margin-bottom: 15px;
    font-weight: 700;
}

.contact-wrapper a img {
    margin-right: 10px;
    margin-top: 7px;
}
.content-wrapper {
    margin-bottom: 70px;
}
.footer-wrapper {
    padding-bottom: 30px;
}

.mobile{
    display: none;
}

@media screen and (max-width: 1500px){
    .service-wrapper {
        width: 80%;
    }
}
@media screen and (max-width: 1200px){
    .service-wrapper {
        width: 95%;
    }
}
@media screen and (max-width: 993px){
    .desktop {
        display: none;
    }
    .mobile{
        display: flex;
    }
}
@media screen and (max-width: 600px){
    br{
        display: none;
    }
    .main-wrapper {
        padding: 0 20px;
        background: url(./body-bg-mobile.jpg) no-repeat scroll 0 0 transparent;
        background-size: 100% 100%;
    }
}
@media screen and (max-width: 500px){
    .mobile {
       display: block;
       margin: 0 auto;
    }
    .service-container{
        margin-bottom: 30px;
    }
}

