* {
    box-sizing: border-box;
}
* {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img {
    max-width: 100%;
}
p:last-child {
    margin-bottom: 0;
}
h1, h2, h3, h4, h5, h6 {
    margin: 0 0;
    font-family: 'Bitter', serif;
}
a {
    cursor: pointer;
    color: #1318c8;
}
html, body {
    margin: 0;
}
body {
    background-color: #f2f2f2;
    font-family: 'Raleway', sans-serif;
    color: #262522;
    font-weight: 400;
}
.container {
    position: relative;
    overflow: hidden;
}
.inner {
    max-width: 1100px;
    margin: 35px auto;
}
.coming-soon {
    background: #fff;
    padding: 25px 25px;
    overflow: hidden;
    -webkit-box-shadow: 0px 2px 2px 0px rgba(167,169,171,0.2);
    -moz-box-shadow: 0px 2px 2px 0px rgba(167,169,171,0.2);
    box-shadow: 0px 2px 2px 0px rgba(167,169,171,0.2);
}
.coming-soon__logo {
    text-align: center;
}
.coming-soon__content {
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-align-content: stretch;
    -ms-flex-line-pack: stretch;
    align-content: stretch;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    min-height: 550px;
}
.coming-soon__content > div {
    position: relative;
    width: 50%;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-align-content: stretch;
    -ms-flex-line-pack: stretch;
    align-content: stretch;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
}
.content__element img {
    max-width: 1000px;
}
.coming-soon__logo img {
    display: inline-block;
    max-width: 220px;
}
.content__text h1 {
    position: relative;
    color: #fff;
    background: #1318C8;
    padding: 16px 16px;
    z-index: 40;
    line-height: 37px;
}
.content__text p {
    position: relative;
    padding: 10px 15px;
    z-index: 40;
    background: #fff;
    max-width: 475px;
    margin-top: -6px;
    margin-left: auto;
    margin-right: auto;
    font-size: 14px;
    line-height: 20px;
    letter-spacing: 0.8px;
    
    -webkit-box-shadow: 0px 2px 2px 0px rgba(167,169,171,0.2);
    -moz-box-shadow: 0px 2px 2px 0px rgba(167,169,171,0.2);
    box-shadow: 0px 2px 2px 0px rgba(167,169,171,0.2);
}
.content__text p a {
    font-family: 'Bitter', serif;
    font-weight: 600;
}
.coming-soon__contacts {
    border-top: 1px solid #f3f3f3;
    padding-top: 20px;
    margin-top: 20px;
}
.coming-soon__contacts ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.coming-soon__contacts ul li {
    color: #343333;
    font-size: 14px;
    line-height: 19px;
    letter-spacing: 0.8px;
}
.row {
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-align-content: stretch;
    -ms-flex-line-pack: stretch;
    align-content: stretch;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
    margin: 0 -15px;
}
.row .col-3 {
    width: 25%;
    padding: 0 15px;
}
.row .col-6 {
    width: 50%;
    padding: 0 15px;
}
.coming-soon__contacts .row .col-6 {
    text-align: right;
}
.coming-soon__contacts ul li h4 {
    color: #1318C8;
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 5px;
}

@media only screen and (max-width: 768px) {
    [class*="col-"] {
        margin-bottom: 25px;
        text-align: left;
    }
    [class*="col-"]:last-child {
        margin-bottom: 0;
    }
    .coming-soon {
        margin: 0 15px;
    }
    .row .col-3, .row .col-6 {
        width: 100%;
    } 
    .coming-soon__contacts .row .col-6 {
        text-align: left;
    }
}