@font-face {
    font-family: 'FiraSans-Regular';
    src: url('fonts/Fira/FiraSans-Regular.ttf') format('truetype');
}
@font-face {
    font-family: 'FiraSans-Bold';
    src: url('fonts/Fira/8163.ttf') format('truetype');
}
@font-face {
    font-family: 'FiraSans-Medium';
    src: url('fonts/Fira/FiraSans-Medium.ttf') format('truetype');
}
@font-face {
    font-family: 'FiraSans-Light';
    src: url('fonts/Fira/FiraSans-Light.ttf') format('truetype');
}
@font-face {
    font-family: 'FiraSansCondensed-Light';
    src: url('fonts/Fira/FiraSansCondensed-Light.ttf') format('truetype');
}
* {
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
body {
    font-family: 'FiraSans-Regular', sans-serif;
    font-size: 14px;
    color: #636363;
}
body.overflow {
    overflow: hidden;
}
ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
a {
    text-decoration: none;
}
a:hover:not(.btn) {
    text-decoration: underline;
}
.wrapper {
    width: 100%;
    overflow: hidden;
}
.container {
    position: relative;
    width: 1200px;
    margin: 0 auto;
    padding-left: 40px;
    padding-right: 0;
}
.container::after,
.clearfix::after {
    content: '';
    display: block;
    clear: both;
}
h1, .h1 {
    margin: 0;
    font: 50px 'FiraSans-Bold', sans-serif;
    line-height: 60px;
    letter-spacing: 2px;
}
h3 {
    margin: 0;
    font: 30px 'FiraSans-Bold', sans-serif;
    line-height: 40px;
}
h4 {
    margin: 0;
    font: 24px 'FiraSans-Bold', sans-serif;
    line-height: 30px;
}
.tt-up {
    text-transform: uppercase;
}
.btn {
    display: inline-block;
    vertical-align: middle;
    padding: 0 20px;
    font-size: 18px;
    text-align: center;
    outline: none;
    -webkit-border-radius: 70px;
    -moz-border-radius: 70px;
    border-radius: 70px;
    -webkit-box-shadow: 0 2px 6px 0 rgba(65, 78, 91, 0.3);
    -moz-box-shadow: 0 2px 6px 0 rgba(65, 78, 91, 0.3);
    box-shadow: 0 2px 6px 0 rgba(65, 78, 91, 0.3);
    cursor: pointer;
    -webkit-transition: .3s ease-in-out;
    -moz-transition: .3s ease-in-out;
    -ms-transition: .3s ease-in-out;
    -o-transition: .3s ease-in-out;
    transition: .3s ease-in-out;
    border: none;
}
.btn.btn-h50 {
    height: 50px;
    line-height: 50px;
}
.btn.btn-w200 {
    min-width: 200px;
}
.btn.btn-w240 {
    min-width: 240px;
}
.btn.btn-white {
    background-color: #fff;
    color: #252aa6;
}
.btn.btn-white:hover {
    background-color: #e6e6e6;
}
.btn.btn-white:active {
    background-color: #cccccc;
}
.btn.btn-white.disabled {
    background-color: #ffffff;
    opacity: .3;
}
.btn.btn-green {
    background-color: #1fb38c;
    color: #fff;
}
.btn.btn-green:hover {
    background-color: #1c9576;
}
.btn.btn-green:active {
    background-color: #1fa683;
}
.btn.btn-green.disabled {
    background-color: #1fa683;
    opacity: .3;
}
.btn.btn-purple {
    background-color: #3e43c8;
    color: #fff;
}
.btn.btn-purple:hover {
    background-color: #383cb4;
}
.btn.btn-purple:active {
    background-color: #3135a0;
}
.btn.btn-purple.disabled {
    background-color: #3e43c8;
    opacity: .3;
}
.vertical-title {
    position: absolute;
    right: 100%;
    top: 80px;
    -moz-transform: rotate(180deg);
    -webkit-transform: rotate(180deg);
    -o-transform: rotate(180deg);
    transform: rotate(180deg);
    writing-mode: tb-rl;
    font: 30px 'FiraSans-Bold', sans-serif;
    text-transform: uppercase;
    color: #000;
    white-space: nowrap;
}
.vertical-title span {
    display: none;
}
.left-sw {
    position: absolute;
    right: 100%;
    top: 0;
    bottom: 0;
}
.right-sw {
    position: absolute;
    left: 100%;
    top: 0;
    bottom: 0;
}
.form-group:not(:last-child) {
    margin-bottom: 40px;
}
.test-checkbox {
    width: 100%;
}
.checkbox,
.radio {
    position: relative;
    z-index: 1;
}
.checkbox input[type="checkbox"],
.radio input[type="radio"] {
    position: absolute;
    top: 50%;
    left: 16px;
    cursor: pointer;
    opacity: 0;
    z-index: 1;
    outline: none !important;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
}
.checkbox label,
.radio label {
    display: block;
    position: relative;
    cursor: pointer;
    min-height: 20px;
    padding: 0 20px 0 80px;
    white-space: nowrap;
    text-overflow: ellipsis;
    font: 24px 'FiraSans-Bold', sans-serif;
    line-height: 40px;
    letter-spacing: 1px;
    color: #fff;
}
.checkbox label::before,
.radio label::before {
    content: "";
    display: inline-block;
    position: absolute;
    width: 30px;
    height: 30px;
    top: 0;
    left: 0;
    border: solid 5px #3e43c8;
    outline: none !important;
    -o-transition: .2s ease-in-out;
    -webkit-transition: .2s ease-in-out;
    transition: .2s ease-in-out;
}
.checkbox input[type="checkbox"]:focus + label::before,
.radio input[type="radio"]:focus + label::before {
    outline-offset: -2px;
    outline: none;
    outline: thin dotted;
}
.checkbox label::after,
.radio label::after {
    display: inline-block;
    position: absolute;
    top: 10px;
    left: 12px;
    width: 18px;
    height: 18px;
    font-size: 18px;
    line-height: 20px;
    color: #fff;
}
.checkbox input[type="checkbox"]:checked + label::after,
.radio input[type="radio"]:checked + label::after {
    content: "\f00c";
    font-family:FontAwesome;
}
.continue {
    display: block;
    position: absolute;
    bottom: 40px;
    right: 40px;
    font-size: 24px;
    color: #fff;
}
.continue i {
    margin-left: 50px;
}

.question-icon {
    display: block;
    position: absolute;
    top: 50%;
    right: 0;
    width: 16px;
    height: 40px;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    cursor: pointer;
    z-index: 2;
}
.question-icon i {
    display: block;
    width: 16px;
    height: 40px;
    background: url('../images/icons/question-icon.svg') no-repeat center;
    -webkit-background-size: contain;
    background-size: contain;
}
.question-icon.popup-open .question-popup {
    opacity: 1;
    visibility: visible;
}
.question-popup {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    width: 320px;
    -webkit-box-shadow: 0 10px 20px 0 rgba(0, 0, 0, 0.3);
    -moz-box-shadow: 0 10px 20px 0 rgba(0, 0, 0, 0.3);
    box-shadow: 0 10px 20px 0 rgba(0, 0, 0, 0.3);
    opacity: 0;
    visibility: hidden;
    -webkit-transition: .2s;
    -moz-transition: .2s;
    -ms-transition: .2s;
    -o-transition: .2s;
    transition: .2s;
    z-index: 2;
}
.question-popup p {
    padding: 20px;
    background-color: #fff;
    margin-bottom: 0;
    font: 14px 'FiraSans-Regular', sans-serif !important;
    line-height: 20px !important;
    color: #333333;
}
.question-popup span {
    display: none;
    background-color: #f3f3f3;
    padding: 15px;
    color: #252aa6;
    cursor: pointer;
    text-align: center;
    font: 16px 'FiraSans-Regular', sans-serif;
}

@media (min-width:768px) {
    .question-icon:hover .question-popup {
        opacity: 1;
        visibility: visible;
    }
}
@media (max-width:767px) {
    .btn.btn-h50 {
        height: 40px;
        line-height: 40px;
        font-size: 16px;
    }
    header .btn.btn-w240 {
        min-width: 200px;
    }
    h4 {
        font-size: 20px;
    }
    .vertical-title span {
        display: inline-block;
    }
    .question-popup span {
        display: block;
    }
}
@media (max-width: 360px) {
    .question-popup {
        width: 280px;
    }
}