@font-face {
    font-family: "Avenir";
    src: url("/fonts/Avenir/avenirLTStdBook.woff2") format("woff2"),
    url("/fonts/Avenir/avenirLTStdBook.woff") format("woff");
}

* {
    font-family: 'Avenir', sans-serif;
}

body {
    background: #f6f6f6;
    margin: 0;
    height: 100vh;
}

.container {
    max-width: 1330px;
    width: 100%;
    margin: 0 auto;
    padding: 0 15px;
    box-sizing: border-box;
}

header {
    padding: 25px 0;
    border-bottom: 1px solid #3b506b;
    background: #fff;
}

header span {
    position: relative;
    margin: 0 32px;
}

header a {
    text-decoration: none;
    display: inline-block;
}

header a h2 {
    font-size: 20px;
    line-height: 19px;
    color: #3b506b;
    font-weight: 400;
}

header span:after {
    content: '';
    width: 1px;
    height: 56px;
    position: absolute;
    top: -23px;
    left: 0;
    background: rgba(0, 0, 0, .12);
}

.logo {
    width: 120px;
}

section {
    padding-top: 150px;
}

.text-wrapper p {
    margin-bottom: 10px;
}

.text-center {
    text-align: center;
}

.image-wrapper {
    padding: 30px 0 15px;
}

.image-wrapper img {
    max-width: 100%;
}

p {
    font-size: 22px;
    line-height: 28px;
    color: #3b506d;
    margin: 0;
}

.mail-link {
    font-size: 22px;
    line-height: 28px;
    color: #F47658;
    text-decoration: none;
}

@media all and (max-width:415px){
    header {
        text-align: center;
    }

    .link-text {
        display: none;
    }

    .line {
        display: none;
    }
}