@import url('fonts.css');
@import url('reset.css');

/*///////////////////////////////////////////////////////
// Base
//////////////////////////////////////////////////////*/
html, body {
    height: 100%;
}
html {
    overflow-y: scroll;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
}
body {
    min-width: 320px;
    background: #fff;
    font-family: 'SourceSansPro', sans-serif;
    font-size: 22px;
    line-height: 1.36;
    color: #4c4c4c;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
}
a {
    color: #0252aa;
    cursor: pointer;
    text-decoration: none;
    -webkit-transition: opacity 0.6s;
    transition: opacity 0.6s;
}
a:hover {
    opacity: 0.8;
}
img {
    border: 0;
    vertical-align: middle;
}
ul, ol {
    list-style-position: inside;
}
strong {
    font-weight: bold;
}
small {
    font-size: 80%;
}
input {
    border-radius: 0 !important;
    border: none !important;
    background-color: #fff !important;
}
article, aside, figcaption, figure, footer, header, main, nav, section {
    display: block;
}
h1, h2, h3, h4, h5, h6 {
    font-family: 'SourceSansPro', sans-serif;
    color: #0e71b8;
    font-weight: 700 !important;
    margin: 0;
}
h1 {
    font-size: 55px;
}
h2 {
    font-size: 50px;
}
h3 {
    font-size: 48px;
}
h4 {
    font-size: 45px;
    line-height: 1.2;
    margin-bottom: 35px;
}
h5 {
    font-size: 26px;
}
h6 {
    font-size: 20px;
}
@media (max-width: 767px) {
    body {
        font-size: 20px;
    }
    h2, h4 {
        font-size: 35px !important;
        margin-bottom: 25px !important;
    }

}
button, input, select, textarea {
    font-family: inherit;
    font-size: inherit;
    color: inherit;
    -webkit-font-smoothing: antialiased;
}
textarea {
    overflow: auto;
    resize: none;
}
select {
    -webkit-appearance: none;
    -moz-appearance: none;
    -ms-appearance: none;
    -o-appearance: none;
    appearance: none;
}
select::-ms-expand {
    display: none;
}
button, input[type="button"], input[type="reset"], input[type="submit"] {
    cursor: pointer;
    -webkit-appearance: none;
}
button::-moz-focus-inner, input::-moz-focus-inner {
    padding: 0;
    border: 0;
}
table {
    border-collapse: collapse;
    border-spacing: 0;
}
th, td {
    padding: 0;
}
::-webkit-input-placeholder {
    opacity: 1;
    color: #c1bfbf;
}
:-moz-placeholder {
    opacity: 1;
    color: #c1bfbf;
}
::-moz-placeholder {
    opacity: 1;
    color: #c1bfbf;
}
:-ms-input-placeholder {
    opacity: 1;
    color: #c1bfbf;
}
.clear:after {
    display: table;
    clear: both;
    content: '';
}


/*///////////////////////////////////////////////////////
// Helper
//////////////////////////////////////////////////////*/
.alignleft, .left {
    float: left;
}
.alignright, .right {
    float: right;
}
.hidden {
    display: none;
    visibility: hidden;
}

.clearfix:before, .clearfix:after {
    display: table;
    content: ' ';
}
.clearfix:after {
    clear: both;
}
.clearfix {
    *zoom: 1;
}

.cols {
    overflow: hidden;
}
.col {
    float: left;
}

/*///////////////////////////////////////////////////////
// General
//////////////////////////////////////////////////////*/
.wrapper {
    overflow: hidden;
}
.shell {
    width: 1200px;
    padding: 0 10px;
    margin: 0 auto;
    overflow: hidden;
    box-sizing: border-box;
}

@media (max-width: 1200px) {
    .shell {
        width: 100%;
        padding: 0 16px;
    }

}
@media (max-width: 767px) {
    .wrapper br {
        display: none;
    }
    .shell {
        padding: 0 10px;
    }
}


/*///////////////////////////////////////////////////////
// Buttons
//////////////////////////////////////////////////////*/
.btn {
    display: inline-block;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}
.btn--blue {
    padding: 15px 28px 19px;
    font-size: 16px;
    -webkit-box-shadow: 1px 5px 15px -1px #A3A3A3;
    box-shadow: 1px 5px 15px -1px #A3A3A3;
    line-height: 1;
    color: #fff;
    background: #0e71b8;
    border: 1px solid #0e71b8;
    border-radius: 7px;
}
.btn--blue:hover {
    color: #0e71b8 !important;
    background: #fff;
}
a.btn--blue {
    color: #fff !important;
}
a.btn:hover {
    color: #0e71b8 !important;
}
.btn--uppercase {
    text-transform: uppercase;
}


/*///////////////////////////////////////////////////////
// Header
//////////////////////////////////////////////////////*/

.logo-box {
    display: inline-block;
    padding: 13px 30px;
    border: 1px solid #efefef;
    width: 105px;
    text-align: center;
}
.header {
    position: fixed;
    width: 100%;
    z-index: 101;
    background-color: #fff;
}
.header .logo-box {
    margin-right: 80px;
}
.header .shell {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 0 260px;
}

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 0;
    float: right;
    overflow: hidden;
}
.header .header--mail {
    position: relative;
    padding: 0 0 0 57px;
    font-size: 15px;
    line-height: 1;
    color: #939393;
}
.header .ico--mail {
    position: absolute;
    left: 23px;
    margin-right: 10px;
    display: inline-block;
    width: 28px;
    height: 18px;
    background: url('../images/icons/icon_mail.svg') no-repeat 0 0 / contain;
}

.header .contacts {
    display: flex;
}
.header .contacts li {
    display: inline-block;
    font-size: 17px;
    margin-right: 30px;
}
.header .contacts strong {
    font-weight: normal;
    color: #0e71b8;
}
.header .btn--blue {
    -webkit-box-shadow: none;
    box-shadow: none;
}
.scroll-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: #fff;
}
.scroll-progress {
    height: 6px;
    background: #0e71b8;
    width: 0%;
}

@media (max-width: 1400px) {
    .header .shell {
        padding: 0 16px;
    }
    .header .contacts {
        display: block;
    }
}
@media (max-width: 1200px) {
    .header .contacts {
        font-size: 15px;
        width: 280px;
        margin-right: 80px;
    }
    .header .contacts li {
        display: block;
    }
    .header .shell {
        justify-content: center;
    }

}
@media (max-width: 979px) {
    .header .contacts {
        margin-right: 0;
    }
    .header .logo-box {
        margin-right: 30px;
    }
    .header__right {
        padding: 32px 9px 26px;
    }
    .header__right .header--mail {
        padding: 15px 22px 19px 38px;
    }
}

@media (max-width: 767px) {
    .header .header--mail {
        height: 15px;
    }
    .header .header--mail span {
        display: none;
    }
}
@media (max-width: 610px) {
    .header {
        position: relative;
        padding-bottom: 100px;
    }
    .header .contacts {
        position: absolute;
        bottom: 15px;
        left: 20px;
    }
}
@media (max-width: 420px) {
    .header .btn--blue {
        padding: 10px;
    }
    .header .logo-box {
        width: 80px;
        padding: 10px 30px;
        margin-right: 10px;
    }
    .lobo-box {
        width: 80px !important;
        padding: 5px 15px;
    }
}

/*///////////////////////////////////////////////////////
// Section Intro
//////////////////////////////////////////////////////*/
.section--intro .intro__image {
    padding-top: 120px;
    height: calc(100vh - 120px);
    width: 100%;
    overflow: hidden;
}
.intro__image img {
    width: 100%;
    -webkit-transition: all 1.5s;
    transition: all 1.5s;
}
.intro__image:hover img {
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
}
.section--intro .intro__entry {
    position: relative;
    min-height: 623px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}
.section--intro .intro__circle-container {
    position: absolute;
    top: 50%;
    left: 65%;
    margin: -150px 0 0;
}
.section--intro .intro__circle-wrapper {
    width: 445px;
    height: 445px;
    transition: 0.6s;
    position: relative;
    -webkit-animation: fadein 2s;
    animation: fadein 2s;
}
.section--intro .intro__circle-wrapper {
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
    -webkit-transition: transform 2.5s;
    transition: transform 2.5s;
}
.section--intro .intro__circle {
    position: absolute;
    top: 0;
    left: 0;
    width: 445px;
    height: 445px;
    background: #0e71b8;
    border-radius: 50%;
    overflow: hidden;
    text-align: center;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
}
.section--intro .front {
    z-index: 2;
    -webkit-transform: rotateY( 0 );
    transform: rotateY( 0 );
}
.section--intro .back {
    z-index: 3;
    -webkit-transform: rotateY( 180deg );
    transform: rotateY( 180deg );
}
@keyframes fadein {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}
@-webkit-keyframes
    fadein {from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}
.section--intro .intro__circle p {
    margin: 128px 0 0;
    padding: 0 40px;
    font-size: 60px;
    font-weight: 200 !important;
    line-height: 1.07;
    color: #fff !important;
    font-weight: 300;
    overflow: hidden;
}
.section--intro .intro__circle.front p {
    margin: 115px 0 0;
}
.section--intro .intro__circle .ico--arrow {
    display: none;
    margin: 25px auto auto;
}
.section--intro .intro__actions {
    position: absolute;
    left: 50%;
    top: 100%;
    transform: translate(-50%, -50%);
}
.section--intro .intro__text {
    position: relative;
    padding: 70px 0 76px;
    text-align: center;
}
.section--intro .intro__text:after {
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 15px;
    height: 15px;
    margin-left: -8px;
    display: block;
    content: '';
    border-radius: 50%;
    background: #0e71b8;
}
.section--intro .intro__text .entry {
    margin: 0 auto;
    width: 620px;
}
.section--intro .intro__text p {
    font-size: 22px;
    line-height: 1.32;
    color: #4c4c4c;
}
.section--intro .intro__image {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

@media (max-width: 1200px) {
    .section--intro .intro__circle-container {
        left: 60%;
    }
}

@media (max-width: 1023px) {
    .section--intro .intro__image {
        height: 500px;
    }
    .section--intro .intro__circle-container {
        top: 45%;
        right: 35px;
        left: auto;
    }
    .section--intro .intro__circle-wrapper {
        animation: none;
        right: 35px;
        left: auto;
    }
    .section--intro .intro__circle-container, .section--intro .intro__circle-wrapper, .section--intro .front, .section--intro .back {
        height: 330px;
        width: 330px;
    }

    .section--intro .intro__circle.front p, .section--intro .intro__circle.back p {
        font-size: 45px;
    }

    .section--intro .intro__circle.front p {
        margin: 90px 0 0;
    }
    .section--intro .intro__circle.back p {
        margin: 105px 0 0;
    }
    .section--intro .intro__circle {
        top: 40px;
    }
}

@media (max-width: 979px) {
    .section--intro {
        padding-bottom: 57px;
    }
    .section--intro .intro__text:after {
        bottom: 6px;
    }
}

@media (max-width: 767px) {
    .section--intro .intro__image {
        height: 415px;
    }
    .section--intro {
        padding-bottom: 29px;
    }
    .section--intro .intro__entry {
        min-height: 528px;
        background-position: 65% center;
    }

    .section--intro .intro__circle-container {
        bottom: -20px;
    }
    .section--intro .intro__circle-container, .section--intro .intro__circle-wrapper {
        top: 48%;
        width: 295px;
        height: 295px;
        left: 50%;
        transform: translateX(-50%) !important;
        right: auto;
        margin: 0 !important;
    }
    .section--intro .front, .section--intro .back {
        width: 295px;
        height: 295px;
    }

    .section--intro .intro__text {
        padding: 45px 0;
    }

    .section--intro .intro__circle {
        top: 0;
    }
    .section--intro .intro__image {
        margin-bottom: 140px;
    }
    .section--intro .intro__circle .ico--arrow {
        display: inherit;
    }
    .section--intro .scroll-btn {
        display: none;
    }
    .section--intro .intro__circle.front p, .section--intro .intro__circle.back p {
        margin: 70px 0 0;
        padding: 0 25px;
        font-size: 40px;
    }
}
@media (max-width: 650px) {
    .section--intro .intro__text .entry {
        width: 100%;
    }
    .section--intro .intro__image {
        height: 350px;
    }
    .section--intro .intro__image {
        padding-top: 0;
    }
    .section--intro .intro__circle-container {
        bottom: -20px;
    }
}

@media (max-width: 480px) {
    .section--intro .intro__circle-container, .section--intro .intro__circle-wrapper, .section--intro .front, .section--intro .back {
        height: 230px;
        width: 230px;
    }

    .section--intro .intro__circle.front p, .section--intro .intro__circle.back p {
        font-size: 26px;
        margin: 55px 0 0;
    }
}
@media (max-width: 420px) {
	.section--intro .intro__text {
	    padding: 100px 0px 45px 0px;
	}
}

/* ------------------------------------------------------------ *\
	Section Feature
\* ------------------------------------------------------------ */
.section--feature {
    position: relative;
    text-align: center;
    padding-top: 60px;
    box-sizing: border-box;
}
.section--feature:after {
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 15px;
    height: 15px;
    margin-left: -8px;
    display: block;
    content: '';
    border-radius: 50%;
    background: #0e71b8;
}
.section--feature h2 {
    padding-bottom: 49px;
    font-size: 60px;
    line-height: 1;
}
.section--feature h4 {
    font-size: 50px;
}
.section--feature .feature__list {
    overflow: hidden;
}
.section--feature .feature__image {
    float: right;
    display: block;
    overflow: hidden;
    width: calc( 100% - 615px);
}
.section--feature .feature__entry {
    float: left;
    width: 448px;
    padding: 55px 110px 50px 50px;
    text-align: left;
}
.section--feature .feature__single {
    margin-bottom: 130px;
}
.section--feature .feature__single:nth-child(even) {
    margin-bottom: 110px;
}
.section--feature .feature__single:nth-child(even) .feature__entry {
    float: right;
}
.section--feature .feature__single:nth-child(even) .feature__image {
    float: left;
}
.section--feature .feature__image a {
    display: block;
}
.section--feature .feature__image img {
    width: 100%;
    -webkit-transition: all 0.4s;
    transition: all 0.4s;
}
.section--feature .feature__image:hover img {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
}
.section--feature .feature__entry h4 a {
    color: inherit;
    display: block;
    text-decoration: none;
    -webkit-transition: all 0.4s;
    transition: all 0.4s;
}

.section--feature .feature__entry h4 a:hover {
    color: #4c4c4c;
}
.section--feature .feature__entry p {
    margin-bottom: 52px;
    font-size: 22px;
    line-height: 1.4;
    color: #4c4c4c;
}
@media (max-width: 1200px) {
    .section--feature .feature__entry {
        width: 50%;
        padding: 50px 30px;
    }
    .section--feature .feature__image {
        width: calc(50% - 60px);
    }
    .section--feature .feature__single, .section--feature .feature__single:nth-child(even) {
        margin-bottom: 65px;
    }
}

@media (max-width: 979px) {
    .section--feature .feature__entry {
        width: calc(50% - 30px);
        padding: 0 30px;
    }
    .section--feature .feature__image {
        width: calc(50% - 30px);
    }
    .section--feature {
        padding-bottom: 70px;
    }
    .section--feature .feature__entry h4 {
        font-size: 35px;
    }
    .section--feature .feature__single, .section--feature .feature__single:nth-child(even) {
        margin-bottom: 0;
    }

}
@media (max-width: 767px) {
    .section--feature {
        padding-top: 0;
    }
    .section--feature h2 {
        padding-bottom: 19px;
        font-size: 40px;
        line-height: 1.13;
    }
    .section--feature .feature__image {
        margin-bottom: 29px;
    }
    .section--feature .feature__entry {
        padding: 0;
        margin-right: 15px;
    }
    .section--feature .feature__entry, .section--feature .feature__image {
        width: calc( 50% - 7.5px);
    }
    .section--feature .feature__single:nth-child(even) .feature__entry {
        margin-right: 0;
        margin-left: 15px;
    }
}
@media (max-width: 610px) {
    .section--feature {
        padding-bottom: 0;
    }
    .section--feature .feature__entry, .section--feature .feature__image {
        float: none;
        width: 100%;
        margin-left: 0;
        margin-right: 0;
        text-align: center;
    }
    .section--feature .feature__image {
        height: 320px;
    }
}


/* ------------------------------------------------------------ *\
 Section Options
 \* ------------------------------------------------------------ */

.section--options {
    position: relative;
    padding: 60px 0 90px;
}
.section--options h2 {
    font-size: 50px;
    text-align: center;
    margin-bottom: 85px;
}
.section--options .options {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin: -30px -40px;
}
.section--options .option__item {
    width: 233px;
    margin: 30px 40px;
    text-align: center;
}
.section--options .option__item p {
    text-align: center;
}
.section--options .check {
    display: block;
    position: relative;
    border-radius: 50%;
    border: 1px solid #eee;
    height: 165px;
    width: 165px;
    margin: auto auto 50px;
}
.section--options .check .ico {
    position: absolute;
    left: 55%;
    top: 52%;
    transform: translate(-50%, -50%);
    content: '';
    opacity: 0;
}
.section--options.visible .check .ico {
    opacity: 1;
}

.section--options:after {
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 15px;
    height: 15px;
    margin-left: -8px;
    display: block;
    content: '';
    border-radius: 50%;
    background: #0e71b8;
}

.section--options .option__item:nth-child(4n+1) .ico {
    -webkit-transition: all 0.6s 0.6s;
    -o-transition: all 0.6s 0.6s;
    transition: all 0.6s 0.6s;
}

.section--options .option__item:nth-child(4n+2) .ico {
    -webkit-transition: all 0.6s 0.9s;
    -o-transition: all 0.6s 0.9s;
    transition: all 0.6s 0.9s;
}

.section--options .option__item:nth-child(4n+3) .ico {
    -webkit-transition: all 0.6s 1.2s;
    -o-transition: all 0.6s 1.2s;
    transition: all 0.6s 1.2s;
}

.section--options .option__item:nth-child(4n+4) .ico {
    -webkit-transition: all 0.6s 1.5s;
    -o-transition: all 0.6s 1.5s;
    transition: all 0.6s 1.5s;
}

@media (max-width: 610px) {
    .section--options .options {
        margin: -15px -20px;
    }
    .section--options .option__item {
        width: calc(50% - 40px);
        margin: 15px 20px;
    }

}

@media (max-width: 420px) {
    .section--options .check {
        height: 85px;
        width: 85px;
        margin-bottom: 15px;
    }

}


/* ------------------------------------------------------------ *\
 Section Slider
 \* ------------------------------------------------------------ */

.section--slider {
    padding: 70px 0 105px;
}
.section--slider h2 {
    margin-bottom: 35px;
    text-align: center;
}

/* ------------------------------------------------------------ *\
 Slider
 \* ------------------------------------------------------------ */

.slider .slider__slides {
    position: relative;
}
.slider .slider__clip {
    padding-bottom: 37px;
}
.slider .slider__slide {
    height: 730px;
}
.slider button {
    font-size: 0;
    border: 0;
    background-color: transparent;
}
.slider .slick-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 99;
    height: 86px;
    width: 79px;
    -webkit-background-size: contain;
    background-size: contain;
    background-repeat: no-repeat;
}
.slider .slick-prev {
    left: 25px;
    background-image: url(../images/temp/slick-prev.png);
}
.slider .slick-next {
    right: 25px;
    background-image: url(../images/temp/sick-next.png);
}

.slider .slider__slide-image {
    height: 100%;
    width: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.slider .slick-dots {
    list-style: none;
    position: absolute;
    bottom: -37px;
    left: 50%;
    transform: translateX(-50%);
}
.slider .slick-dots li {
    display: inline-block;
}
.slider .slick-dots li + li {
    margin-left: 9px;
}
.slider .slick-dots button {
    height: 5px;
    width: 32px;
    background-color: #ededed;
}
.slider .slick-dots .slick-active button {
    background-color: #0e70b7;
}

@media (max-width: 768px) {

    .slider .slider__slide, .slider__slide-image {
        height: 570px;
    }

}

@media (max-width: 650px) {

    .slider .slider__slide, .slider__slide-image {
        height: 500px;
    }

}

@media (max-width: 420px) {

    .slider .slider__slide, .slider__slide-image {
        height: 325px;
    }
    .slider .slick-arrow {
        display: none !important;
    }

}

/* ------------------------------------------------------------ *\
 Icons
 \* ------------------------------------------------------------ */

.ico {
    display: block;
    -webkit-background-size: contain;
    background-size: contain;
    background-repeat: no-repeat;
}
.ico--logo {
    background-image: url(../images/temp/logo.png);
    height: 52px;
    width: 104px;
}
.ico--checked {
    background-image: url(../images/temp/checked.png);
    height: 40px;
    width: 50px;
}
.ico--profile {
    background-image: url(../images/temp/ico-profile.png);
    height: 17px;
    width: 21px;
}
.ico--phone {
    background-image: url(../images/temp/ico-phone.png);
    height: 16px;
    width: 21px;
}
.ico--email {
    background-image: url(../images/temp/ico-email-grey.png);
    height: 13px;
    width: 21px;
}
.ico--upload {
    background-image: url(../images/temp/ico-update.png);
    height: 19px;
    width: 21px;
}
.ico--question {
    background-image: url(../images/temp/question.png);
    height: 28px;
    width: 28px;
}
.ico--lock {
    background-image: url(../images/temp/icon-lock.png);
    height: 36px;
    width: 28px;
}
.ico--brand {
    background-image: url(../images/temp/ico-brand.png);
    height: 38px;
    width: 39px;
}
.ico--approve {
    background-image: url(../images/temp/checked-green.png);
    height: 15px;
    width: 25px;
}
.ico--error {
    background-image: url(../images/temp/ico-none.png);
    height: 16px;
    width: 19px;
}
.ico--close {
    background-image: url(../images/temp/ico-close.png);
    height: 59px;
    width: 56px;
}
.ico--arrow {
    background-image: url(../images/temp/arrow-down-white.png);
    height: 27px;
    width: 49px;
}
.ico--send {
    background-image: url(../images/temp/ico-send.png);
    height: 57px;
    width: 118px;
}


@media (max-width: 1200px) {

    .ico--brand {
        height: 40px;
        width: 80px;
    }

}

@media (max-width: 767px) {

    .ico--lock {
        width: 40px;
    }

}

@media (max-width: 420px) {

    .ico--logo {
        height: 40px;
        width: 80px;
    }
    .ico--checked {
        height: 31px;
        width: 33px;
    }

}

/* ------------------------------------------------------------ *\
 Section Post
 \* ------------------------------------------------------------ */

.section--post {
    padding-bottom: 48px;
}

/* Content */

.section--post .content {
    opacity: 0;
    float: left;
    width: calc(100% - 490px);
}
.section--post.visible .content {
    opacity: 1;
}
.section--post .content {
    -webkit-transition: all 0.6s 0.6s;
    -o-transition: all 0.5s 0.5s;
    transition: all 0.5s 0.5s;
}

.section--post .content .section__body {
    padding: 0 100px 0 75px;
}
.section--post h4 {
    margin-bottom: 17px;
    font-family: 'Open Sans', sans-serif;
    font-size: 35px;
    line-height: 1.29;
    color: #0e71b8;
    font-weight: 300;
}
.section--post .content .section__body p {
    margin-bottom: 30px;
    font-size: 22px;
    line-height: 1.4;
    color: #4c4c4c;
    font-weight: 300;
}
.section--post .content .section__body p a[href^="mailto"] {
    display: block;
    font-weight: 600;
    color: #0e71b8;
    -webkit-transition: all 0.4s;
    transition: all 0.4s;
}
.section--post .content .section__body p a:hover {
    color: #0b5387;
}
.section--post .section__content {
    padding-left: 30px;
}

.section--post .section__head {
    margin-bottom: 55px;
    border-bottom: 1px solid #efefef;
}
.widget--contact .widget__head {
    margin-bottom: 35px;
    border-bottom: 1px solid #efefef;
}

/* Sidebar */

.section--post .sidebar {
    opacity: 0;
    float: right;
    width: 380px;
}
.section--post.visible .sidebar {
    opacity: 1;
}

.section--post .sidebar {
    -webkit-transition: all 0.6s 0.6s;
    -o-transition: all 0.5s 0.9s;
    transition: all 0.5s 0.9s;
}

.widget--contact .widget__head {
    margin-bottom: 33px;
}
.widget--contact  .widget__body {
    padding: 20px 0 0 5px;
    display: flex;
    flex-direction: column;
}
.widget--contact a.logo-box {
    margin: 0 0 40px;
    display: block;
}
.widget--contact .widget__head, .widget--contact .widget__body {
    padding: 0 10px;
}
.widget--contact .widget__body {
    padding-bottom: 60px;
    border-bottom: 1px solid #efefef;
}
.widget--contact img {
    margin: 0 0 23px;
    height: 105px;
    width: 105px;
    display: block;
}

.widget--contact h4 {
    margin-bottom: 20px;
}
.widget--contact h6 {
    margin: 0;
    font-size: 22px;
    line-height: 1.36;
    color: #0e71b8;
    font-weight: 600;
}
.widget--contact .btn {
    margin-top: 29px;
    font-size: 22px;
    line-height: 1.4;
    color: #2b2b2b;
}
.widget--contact a {
    color: #2b2b2b;
}
.widget--contact a[href^="tel:"] {
    margin-top: 40px;
}
.widget--contact a:hover {
    text-decoration: none;
    color: #0b5387;
}

.widget--contact p a {
    color: inherit;
    -webkit-transition: all 0.4s;
    transition: all 0.4s;
}
.widget--contact p a:hover {
    color: #0b5387;
}

.widget--contact .btn--blue {
    font-size: 16px;
    font-weight: 600;
    width: 200px;
    line-height: 1;
    padding: 15px 0;
    text-align: center;
}

@media (max-width: 979px) {

    .section--post {
        padding-bottom: 41px;
    }

    .widget--contact img.inner__logo {
        margin: 0 0 37px -1px;
    }
    .widget--contact img {
        margin: 0 0 23px 3px;
        display: block;
    }

    .widget--contact h6 {
        font-size: 20px;
    }
    .widget--contact p {
        margin-bottom: 29px;
        font-size: 20px;
    }

}

@media (max-width: 767px) {
    .widget--contact p br {
        display: block !important;
    }

}

/* Content Foot */
.section--post .section__content ul {
    list-style: none;
    margin-bottom: 37px;
}
.section--post .section__content ul li {
    position: relative;
    padding-left: 15px;
}
.section--post .section__content ul li:before {
    position: absolute;
    top: 0;
    display: block;
    left: 0;
    content: '\2022';
}
.section--post .content__foot {
    position: relative;
    padding: 82px 0 50px;
    float: left;
    width: 100%;
    text-align: center;
}
.section--post .content__foot:after {
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 15px;
    height: 15px;
    margin-left: -8px;
    display: block;
    content: '';
    border-radius: 50%;
    background: #0e71b8;
}

.section--post .content__foot h4 {
    padding-bottom: 57px;
    font-family: 'Open Sans', sans-serif;
    font-size: 35px;
    line-height: 1.29;
    color: #0e71b8;
    font-weight: 300;
}
.section--post .content__foot ul {
    list-style: none;
}
.section--post .content__foot li {
    display: block;
    padding-bottom: 9px;
    overflow: hidden;
}
.section--post .content__foot span {
    float: left;
    padding-right: 76px;
    width: calc(65% - 76px);
    font-size: 22px;
    line-height: 1.59;
    color: #4c4c4c;
    text-align: right;
    font-weight: 300;
}
.section--post .content__foot strong {
    float: right;
    width: 35%;
    font-style: 21px;
    line-height: 1.67;
    color: #0e71b8;
    text-align: left;
    font-weight: 600;
}
.section--post .content__foot strong a {
    display: block;
    color: inherit;
    -webkit-transition: all 0.4s;
    transition: all 0.4s;
}
.section--post .content__foot strong a:hover {
    color: #0b5387;
}

@media (max-width: 1024px) {

    .section--post .content .section__body p {
        font-size: 20px;
    }

    .section--post .content {
        float: none;
        width: 100%;
        padding-left: 0;
        -webkit-transition: none;
        -o-transition: none;
        transition: none;
    }
    .section--post .sidebar {
        margin: auto !important;
        width: 100%;
    }
    .section--post .sidebar {
        float: none;
        margin: auto;
        -webkit-transition: none;
        -o-transition: none;
        transition: none;
    }
    .section--post .section__content {
        padding-left: 0;
    }
    .section--post .content .section__body {
        padding: 0 10px;
    }
    .section--post .section__head {
        margin-bottom: 25px;
    }

    .section--post .content .section__body {
        padding: 0;
    }
    .section--post .content__foot {
        max-width: 90%;
        margin: 0 5%;
    }
    .section--post .content__foot li {
        text-align: left;
    }
    .section--post .content__foot span {
        width: 100%;
        text-align: left;
        margin: 0;
    }

    .widget--contact .widget__head, .section--post .section__head {
        position: relative;
    }

    .widget--contact .widget__head:before, .section--post .section__head:before {
        position: absolute;
        display: block;
        top: 35%;
        transform: translateY(-50%);
        right: 45px;
        display: block;
        width: 32px;
        height: 6px;
        background-color: #ededed;
        content: '';
    }

    .widget--contact a.logo-box {
        margin: auto auto 40px;
    }
    .widget--contact img {
        margin: auto auto 23px;
    }
    .widget--contact p, .widget--contact a, .widget--contact h6 {
        text-align: center;
    }
    .widget--contact .btn {
        margin: 35px auto auto;
    }
    .widget--contact a.btn {
        color: #fff;
    }
    .widget--contact p {
        margin-bottom: 0;
    }

}

@media (max-width: 380px) {

    .widget--contact .widget__head:before, .section--post .section__head:before {
        right: 10px;
    }

}

/* ------------------------------------------------------------ *\
 Section Form
 \* ------------------------------------------------------------ */

.section--form {
    background-color: #f5f5f8;
    padding: 75px 0 90px;
}

@media (max-width: 767px) {

    .section--form {
        padding: 45px 0;
    }

}


/* ------------------------------------------------------------ *\
 Form Contact
 \* ------------------------------------------------------------ */

.form-contact {
    box-sizing: border-box;
    width: 535px;
    margin: auto;
    background-color: #fff;
    border-radius: 10px;
    -webkit-box-shadow: 0px 4px 40px 6px #e5e5e8;
    box-shadow: 0px 4px 40px 6px #e5e5e8;
}

.form-contact .form__head {
    position: relative;
    text-align: center;
    margin-bottom: 30px;
    padding: 50px 45px 0;
    overflow: hidden;
}
.form-contact .form__head img {
    margin-bottom: 25px;
}
.form-contact .form__body {
    padding: 0 45px 50px;
}
.form-contact .tag-ssl {
    position: absolute;
    display: flex;
    padding: 6px 17px 12px 13px;
    border: 1px solid #cfd6da;
    border-radius: 9px;
    align-items: center;
    right: -5px;
    top: 68px;
    font-size: 14px;
    color: #bbc1c4;
}
.form-contact .tag-ssl p {
    margin-left: 8px;
    text-align: left;
    line-height: 1.2;
}

.form-contact input::-webkit-input-placeholder {
    font-size: 19px;
    color: #c1bfbf !important;
    border-radius: 0 !important;
    word-break: break-all;
}
.tag-placeholder {
    font-size: 22px;
    color: #c1bfbf !important;
    border-radius: 0 !important;
    word-break: break-all;
}
input:-ms-input-placeholder {
    font-size: 19px;
    color: #c1bfbf !important;
    border-radius: 0 !important;
    word-break: break-all;
}

.form-contact .form__row {
    position: relative;
    border-bottom: 1px solid #bbbbba;
    display: flex;
    align-items: center;
    padding: 6px 10px;
}
.form-contact .form__row + .form__row {
    margin-top: 10px;
}
.form-contact .form__label {
    margin-right: 10px;
}
.form-contact .form__notice {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
}
.form-contact .form__notice--approve, .form-contact .form__notice--error {
    opacity: 0;
}

.form-contact .has-success .form__notice--approve {
    opacity: 1;
}
.form-contact .has-error .form__notice--error {
    opacity: 1;
}

.form-contact .form__actions {
    text-align: center;
    padding: 15px 0px 35px 0px;
}
.form-contact .form__foot .form__row {
    border-bottom: 0;
    text-align: center;
}
#form-contact .form__foot {
    float: left;
    width: 100%;
    margin: 20px 0px;
}
.form-contact .form__btn {
    padding: 15px 39px;
    font-size: 16px;
    -webkit-box-shadow: 1px 5px 15px -1px #A3A3A3;
    box-shadow: 1px 5px 15px -1px #A3A3A3;
    line-height: 1;
    color: #fff;
    background: #0e71b8;
    border: 1px solid #0e71b8;
    border-radius: 6px;
    transition: .4s;
}
.form-contact .form__btn:hover {
    color: #0e71b8;
    background-color: #fff;
}
.form-contact .btn-question {
    position: relative;
    margin-left: auto;
    z-index: 5;
}

.form-error {
    display: none !important;
}

.form-contact p {
    font-size: 17px;
}
.form-contact label {
    font-size: 15px;
}

.form__load, .form__thank-you {
    padding: 250px 30px;
    text-align: center;
    display: none;
}
.form__thank-you .ico, .spinner {
    margin: auto;
}

.form__load h4, .form__thank-you h4 {
    margin-bottom: 28px;
    text-align: center;
}

.spinner {
    border: 16px solid #0e71b8;
    border-radius: 50%;
    border-top: 16px solid #fff;
    width: 60px;
    height: 60px;
    -webkit-animation: spin 2s linear infinite;
    animation: spin 2s linear infinite;
}
#shareForm .success, #shareForm .error {
    display: none;
    padding: 30px;
    width: 100%;
    box-sizing: border-box;
    text-align: center;
    font-size: 22px;
}

@-webkit-keyframes spin {

0% { -webkit-transform: rotate(0deg); }
100% { -webkit-transform: rotate(360deg); }

}

@keyframes spin {

0% { transform: rotate(0deg); }
100% { transform: rotate(360deg); }

}

/* Field Upload */

.from__row-upload {
    position: relative;
}
.field--upload {
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    height: 100%;
    width: 100%;
    opacity: 0;
    z-index: 1;
    content: '';
}
.tags-upload {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    height: 100%;
    width: 352px;
    opacity: 1;
    bottom: -6px;
    left: 38px;
    right: 0;
    content: '';
    margin-left: 10px;
    float: left;
}
.ico--upload {
    float: left;
    margin-top: 5px;
}
.tag-upload {
    font-family: 'SourceSansPro', serif;
    font-weight: 700;
    font-size: 16px;
    color: #0e71b8;
    text-transform: uppercase;
}


/*///////////////////////////////////////////////////////
// Upload Form
//////////////////////////////////////////////////////*/
.formRow {
    width: 100%;
    float: left;
    position: relative;
    padding: 0px 10px;
    box-sizing: border-box;
}
.uploadTable {
    display: none;
    width:  100%;
    margin-top: 15px;
}
.fileupload-progress {
    display: none;
}
.uploadTable h3 {
    font-size: 22px;
    margin-bottom: 15px;
}
.uploadItem {
    position: relative;
}
.uploadItem .cancel {
    position: absolute;
    background: url('../images/icons/icon_close.svg') no-repeat center center / contain transparent;
    width: 15px;
    height: 15px;
    border: 0;
    right: 15px;
    padding: 0;
    margin: 0;
    text-indent: -999em;
}
.progress-extended {
    font-size: 15px;
    padding: 3px 0px 25px 0px;
}
.progress {
    border-radius: 5px;
    overflow: hidden;
    margin: 15px 0px 0px 0px;
}
.progress-bar {
    background: #0e71b8;
    width: 100%;
    height: 15px;
    top: 0;
    left: 0;
}
.downloadItem, .downloadItem p, .uploadItem, .uploadItem p {
    float: left;
    width: 100%;
    position: relative;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    padding-right: 37px;
}
.downloadItem, .uploadItem {
    margin-bottom: 10px;
    padding-bottom: 3px;
    border-bottom: 1px solid #bbbbba;
}
.downloadItem .size, .uploadItem .size, .fileErrors {
    font-size: 15px;
    float: left;
}
.downloadItem .name a {
    word-break: break-word;
    -webkit-hyphens: auto;
    -moz-hyphens: auto;
    hyphens: auto;
    word-wrap: break-word;
}
.uploadPreview .delete {
    border: 0;
    width: 20px;
    height: 20px;
    background: url('../images/icons/icon_trash.svg') no-repeat center center / 20px 20px transparent;
    text-indent: -999em;
    color: transparent;
    position: absolute;
    right: 15px;
    bottom: 10px;
    cursor: pointer;
}
.uploadPreview .delete:hover {
    background: url('../images/icons/icon_trash_blue.svg') no-repeat center center / 20px 20px transparent;
}
.fileErrors {
    color: #e2001a;
    width: 100%;
    padding-right: 37px;
    box-sizing: border-box;
}
.form-contact .rowCheckData {
    display: none;
}
.form-contact .rowCheckData.active {
    display: flex;
}

input[type="checkbox"].error ~  .checkmark {
    border: 1px solid #e2001a;
}

/* Checkbox */

.form__controls-checkbox {
/*     display: flex;
    align-items: center; */
    position: relative;
    padding-left: 35px;
    margin: auto;
    cursor: pointer;
    font-size: 22px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    text-align: left;
    width: 100%;
}
.form__controls-checkbox input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}
.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 20px;
    width: 20px;
    background-color: #fff;
    border: 1px solid #bbbbba;
}
.form__controls-checkbox:hover input ~
.checkmark {
    background-color: #f1f0f0;
}
.form__controls-checkbox input:checked ~
.checkmark {
    background-color: #fff;
}
.checkmark:after {
    position: absolute;
    display: none;
    content: '';
}
.form__controls-checkbox input:checked ~
.checkmark:after {
    display: block;
}
.form__controls-checkbox .checkmark:after {
    left: 7px;
    top: 3px;
    width: 3px;
    height: 10px;
    border: solid #000;
    border-width: 0 2px 2px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

@media (max-width: 767px) {

    .form-contact {
        width: 95%;
    }
    .tag-ssl {
        width: 123px;
        font-size: 14px;
    }
    .form-contact .from__row-upload {
        display: none;
    }

}

@media (max-width: 480px) {

    .form-contact .form__head {
        text-align: left;
    }
    .form-contact .form__body {
        padding: 0 15px;
    }

    .form__controls-checkbox {
        text-align: left;
    }

}

/* Question Popup */

.btn-question {
    position: relative;
}
.question-popup {
    display: none;
    position: absolute;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 15px;
    line-height: 1.1;
    background-color: #fff;
    padding: 15px;
    width: 135px;
    -webkit-box-shadow: 0px 6px 23px 0px rgba(161,159,161,1);
    -moz-box-shadow: 0px 6px 23px 0px rgba(161,159,161,1);
    box-shadow: 0px 6px 23px 0px rgba(161,159,161,1);
}

.question-popup:after {
    position: absolute;
    bottom: -14px;
    left: 50%;
    transform: translateX(-50%);
    display: block;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 14px 11.5px 0 11.5px;
    border-color: #ffffff transparent transparent transparent;
    content: '';
}

/* ------------------------------------------------------------ *\
 Scroll btn
 \* ------------------------------------------------------------ */

.scroll-btn {
    position: relative;
    display: block;
    background-image: url(../images/temp/arrow-down.png);
    height: 57px;
    width: 57px;
    -webkit-background-size: contain;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}
.scroll-btn:before {
    position: absolute;
    color: #fff;
    left: 50%;
    top: -28px;
    transform: translateX(-50%);
    white-space: nowrap;
    text-transform: uppercase;
    font-size: 18px;
    font-weight: 700;
    text-shadow: -2px 2px 10px #1c1c1c;
    content: 'RUNTER SCROLLEN';
}

/* ------------------------------------------------------------ *\
 Footer
 \* ------------------------------------------------------------ */

.footer {
    position: relative;
    padding: 25px 0;
}

.footer .footer--nav {
    text-align: center;
}
.footer .footer--nav ul {
    list-style: none;
}
.footer .footer--nav li {
    display: inline-block;
    vertical-align: middle;
    margin: 0 13px;
}
.footer .footer--nav li a {
    display: block;
    font-size: 19px;
    line-height: 1;
    color: #0e71b8;
    font-weight: 400;
    -webkit-transition: all 0.4s;
    transition: all 0.4s;
}
.footer .footer--nav li a:hover {
    color: #0b5387;
}

.footer .footer__copyright {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 53px;
    display: flex;
    align-items: center;
    font-size: 15px;
    color: #cecece;
}
.footer .footer__copyright p {
    margin-left: 10px;
}

@media (max-width: 1200px) {

	.footer .shell {display: flex; justify-content: space-between; }
	.footer .footer__copyright { position: static; width: 210px; transform: none; }
	.footer .footer--nav { width: 250px; }
}

@media (max-width: 979px) {

	.footer { padding: 15px 0; }

}

@media (max-width: 480px) {

	.footer .shell { flex-wrap: wrap; justify-content: center; }
	.footer .footer--nav { margin-bottom: 30px; }
	

}

/* ------------------------------------------------------------ *\
	Bounce Effect
\* ------------------------------------------------------------ */

.bounce { 	-moz-animation: bounce 3s infinite;
	-webkit-animation: bounce 3s infinite;
	animation: bounce 3s infinite; } 

	@-moz-keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    -moz-transform: translateY(0);
    transform: translateY(0);
  }
  40% {
    -moz-transform: translateY(-30px);
    transform: translateY(-30px);
  }
  60% {
    -moz-transform: translateY(-15px);
    transform: translateY(-15px);
  }
}
@-webkit-keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  40% {
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
  }
  60% {
    -webkit-transform: translateY(-15px);
    transform: translateY(-15px);
  }
}
@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  40% {
    -moz-transform: translateY(-30px);
    -ms-transform: translateY(-30px);
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
  }
  60% {
    -moz-transform: translateY(-15px);
    -ms-transform: translateY(-15px);
    -webkit-transform: translateY(-15px);
    transform: translateY(-15px);
  }
}

/* ------------------------------------------------------------ *\
 Fade Effect
 \* ------------------------------------------------------------ */

.scrolled {
    position: relative;
    top: 80px;
    opacity: 0;
    transition: all 1s;
}

.visible.scrolled {
    top: 0;
    opacity: 1;
}

.feature__image.scrolled {
    opacity: 1;
}

@media (max-width: 1023px) {

    .scrolled {
        top: 30px;
    }

}

@media (max-width: 767px) {

    .scrolled {
        top: 0;
        opacity: 1;
    }

}

/* ------------------------------------------------------------ *\
 Tabs
 \* ------------------------------------------------------------ */

@media (max-width: 1024px) {

    .tab-content {
        display: none;
    }
    .tab-content.current {
        display: block;
    }

    .tab-link.current:before {
        background-color: #0e71b8;
    }

}

/* ------------------------------------------------------------ *\
 Popup
 \* ------------------------------------------------------------ */

.form-contact--popup {
    box-shadow: none;
    -webkit-box-shadow: none;
}
.form-contact--popup .form__head {
    padding: 60px 45px 0;
}
.form-contact--popup .form__foot p {
    font-size: 14px;
    text-align: center;
    color: #a7a7a7;
}

.form-contact--popup form {
    padding: 40px 0;
}

.form-contact--popup h4 {
    font-family: 'SourceSansPro', sans-serif;
    font-weight: 200;
    text-align: center;
}
.form-contact--popup .form__group-checkbox {
    margin-top: 15px;
}
.form-contact--popup .form__controls-checkbox {
    margin-left: 0;
}
.form-contact--popup .form__row-checkbox {
    border: 0;
}

.form-contact--popup .form__controls, .form-contact--popup input {
    width: 100%;
}

.popup-modal-close {
    position: absolute;
    display: block;
    right: 15px;
    top: 0;
    content: '';
}

@media (max-width: 420px) {

    .form-contact--popup .form__body {
        padding: 0 15px;
    }
    .form-contact--popup .form__head {
        margin-bottom: 0;
    }

}
