/* ( -_- ) */
*{
    padding: 0;
    margin: 0;
    font-family: 'Poppins', sans-serif;
}

.nopadding {
    padding: 0 !important;
    margin: 0 !important;
}

/* Header */

header{
    background-color: #FFF;
    height: 80px;
    line-height: 80px;
}

header .logo{
    height: 40px;
}

.banner-image-mobile{
    display: none;
}

/* Section */

section.banner-area{
    background: url('./../images/background.png');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

section.banner-area .banner{
    position: relative;
    width: 50%;
}

section.banner-area .banner.first:after{
    content: '';
    position: absolute;
    top: 0px;
    right: -2px;
    width: 1px;
    height: 100%;
    background-color: rgb(0, 119, 255);
    z-index: 999;
}

section.banner-area .banner .content_field{
    position: absolute;
    top: 30px;
    width: 80%;
    text-align: center;
}

section.banner-area .banner .content_field.adv{
    right: 5%;
}

section.banner-area .banner .content_field.mon{
    left: 5%;
}

section.banner-area .banner .content_field h1{
    color: #FFF;
    font-weight: 700;
    margin-bottom: 10px;
}

section.banner-area .banner .content_field p{
    color: #FFF;
    font-size: 15px;
}

section.banner-area .banner .banner-image{
    width: 100%;
}

section.content-area{
    background-color: #fff;
    padding-bottom: 30px;
}

section.content-area .footer-logo{
    height: 100px;
    line-height: 100px;
}

section.content-area .footer-logo img{
    height: 40px;
}

section.content-area .contacts{
    list-style: none;
    width: 75%;
    overflow: hidden;
}

section.content-area .contacts .contact-list{
    float: left;
    width: 33.33%;
}

section.content-area .contacts .contact-list > span{
    display: block;
    height: 25px;
}

section.content-area .contacts .contact-list > span.h{
    font-weight: 600;
    color: #666;
}

section.content-area .contacts .contact-list > a{
    display: block;
    height: 25px;
    line-height: 25px;
    border: solid 1px #666;
    text-align: center;
    width: 65%;
    font-size: 13px;
    text-decoration: none;
    color: #666;
}

/* Footer */

footer{
    height: 70px;
    line-height: 70px;
    background-color: #6d6d6d;
    color: #fff;
    font-size: 14px;
    text-align: center;
}


/* Mobile */

@media only screen and (max-width: 600px) {
    body {
        width: 100%;
    }
    section.banner-area .banner {
        position: relative;
        width: 100%;
    }
    section.banner-area .banner .content_field{
        width: 100%;
        left: 0 !important;
        right: 0 !important;
    }
    section.banner-area .banner .content_field h1{
        font-size: 27px;
    }
    section.banner-area .banner .content_field p{
        font-size: 13px;
        width: 90%;
        margin: 0 auto;
    }
    section.banner-area .banner .content_field p br{
        display: none;
    }
    .banner-image{
        display: none;
    }
    .banner-image-mobile{
        display: block;
        width: 100%;
    }
    section.content-area .contacts{
        width: 100%;
    }
    section.content-area .contacts .contact-list {
        float: left;
        width: 100%;
        margin-bottom: 20px;
    }
    section.content-area .footer-logo {
        height: 135px;
        line-height: 135px;
    }
    footer{
        height: auto;
        line-height: initial;
        padding: 20px 30px;
        font-size: 12px;
    }
}