html,
body {
    margin: 0;
    padding: 0;
}

*,
*:before,
*:after {
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    background: #1e1b2b url("../img/background.jpg") no-repeat;
    color: #fff;
    min-height: 100vh;
    background-size: cover;
    display: flex;
    align-items: center;
    overflow-x: hidden;
}


#logo {
    background: url("../img/logo.png") center center no-repeat;
    width: 330px;
    height: 100px;
    float: right;
}


.center-box {
    margin: 0 auto;
    overflow: hidden;
    display: flex;
    align-items: center;
}


.one-half {
    width: 50%;
    float: left;
    min-height: 1px;
}

section {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.one-half:first-of-type {
    padding-right: 40px;
}

.one-half:last-of-type {
    border-left: 2px solid #fff;
    padding-left: 40px;
    padding-bottom: 40px;
}

h1 {
    font-size: 48px;
    font-weight: 500;
    padding-bottom: 0;
    margin-bottom: 20px;
}

h2 {
    font-size: 16px;
    font-weight: 600;
}


ul {
    margin-top: 20px;
    padding-left: 0;

}

ul li {
    display: block;
    position: relative;
}


li a {
    display: block;
    padding: 13px 12px 3px 40px;
    position: relative;
    line-height: 1.3;
    color: inherit;
    font-weight: 400;
    font-size: 16px;
    text-decoration: none;
}

li a:before {

    font-family: 'FontAwesome';
    font-style: normal;
    font-weight: bold;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-size: 13px;
    display: block;
    height: 26px;
    width: 26px;
    line-height: 26px;
    position: absolute;
    top: 6px;
    left: 0px;
    color: #1e1b2b;
    background: #fff;
    border-radius: 50%;
    text-align: center;
}

.location a:before {
    content: "\f041";
}

.mail a:before {
    content: "\f0e0";
}

.phone-call a:before {
    content: "\f095";
}


@media only screen and (min-width: 1141px) {
    .center-box {
        width: 1140px;
    }
}

@media only screen and (max-width: 1140px) {
    .center-box {
        width: 100%;
    }
}

@media only screen and (max-width: 768px) {

    body,
    .center-box {
        display: block !important;
    }
    
    section {
    padding-top: 20%;
    padding-bottom: 25%;
}

    #logo {
        float: none;
        display: inline-block;
        background-size: contain;
        width: 250px;
        height: 100px;
    }
    
    h1{
        font-size: 36px;
    }
    
    h2 {
    font-size: 14px;
    line-height: 1.3;
}

    .one-half {
        position: relative;
        float: none;
        width: 100%;
        display: block;
        overflow: hidden;
    }

    .one-half:first-of-type {
        padding-right: 0;
        text-align: center;
    }

    .one-half:last-of-type {
        border-left: none;
        padding-left: 20px;
        padding-right: 20px;

    }
    
    #text{
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }
}