* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

@font-face {
    font-family: 'GESS';
    font-weight: normal;
    src: url(../fonts/GE-SS-Medium.otf);
}

@font-face {
    font-family: 'GESS';
    font-weight: lighter;
    src: url(../fonts/GE-SS-Light.otf);
}


/* @font-face {
    font-family: 'din';
    font-weight: normal;
    src: url(../fonts/DINMedium.ttf);
}

@font-face {
    font-family: 'din';
    font-weight: light;
    src: url(../fonts/DINRegular.ttf);
}

@font-face {
    font-family: 'din';
    font-weight: lighter;
    src: url(../fonts/DINLight.ttf);
} */
.form-check {
    margin-right: 24px !important;
}

    .form-check .form-check-input {
        float: right !important;
        margin-right: -1.5em !important ;
    }
body {
    font-family: 'GESS', sans-serif;
    font-size: 16px;
    color: #2c2c2c;
}

body a {
    color: inherit;
    text-decoration: none;
}

.header__btn {
    transition-property: all;
    transition-duration: 0.2s;
    transition-timing-function: linear;
    transition-delay: 0s;
    padding: 10px 20px;
    display: inline-block;
    margin-right: 10px;
    background-color: #fff;
    border: 1px solid #2c2c2c;
    border-radius: 3px;
    cursor: pointer;
    outline: none;
}

.header__btn:last-child {
    margin-right: 0;
}

.header__btn:hover,
.header__btn.js-active {
    color: #fff;
    background-color: #2c2c2c;
}

.header {
    max-width: 600px;
    margin: 50px auto;
    text-align: center;
}

.header__title {
    margin-bottom: 30px;
    font-size: 2.1rem;
}

.content {
    width: 95%;
    margin: 0 auto 50px;
}

.content__title {
    margin-bottom: 40px;
    font-size: 20px;
    text-align: center;
}

.content__title--m-sm {
    margin-bottom: 10px;
}

.multisteps-form__progress {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(0, 1fr));
}

.multisteps-form__progress-btn {
    transition-property: all;
    transition-duration: 0.15s;
    transition-timing-function: linear;
    transition-delay: 0s;
    position: relative;
    padding-top: 20px;
    color: rgba(108, 117, 125, 0.7);
    text-indent: -9999px;
    border: none;
    background-color: transparent;
    outline: none !important;
    cursor: pointer;
}

@media (min-width: 500px) {
    .multisteps-form__progress-btn {
        text-indent: 0;
    }
}

.multisteps-form__progress-btn:before {
    position: absolute;
    top: 0;
    left: 50%;
    display: block;
    width: 13px;
    height: 13px;
    content: "";
    transform: translateX(-50%);
    transition: all 0.15s linear 0s, transform 0.15s cubic-bezier(0.05, 1.09, 0.16, 1.4) 0s;
    border: 2px solid currentColor;
    border-radius: 50%;
    background-color: #fff;
    box-sizing: border-box;
    z-index: 3;
}

.multisteps-form__progress-btn:after {
    position: absolute;
    top: 5px;
    left: calc(-50% - 13px / 2);
    transition-property: all;
    transition-duration: 0.15s;
    transition-timing-function: linear;
    transition-delay: 0s;
    display: block;
    width: 100%;
    height: 2px;
    content: "";
    background-color: currentColor;
    z-index: 1;
}

.multisteps-form__progress-btn:first-child:after {
    display: none;
}

.multisteps-form__progress-btn.js-active {
    color: #007bff;
}

.multisteps-form__progress-btn.js-active:before {
    transform: translateX(-50%) scale(1.2);
    background-color: currentColor;
}

.multisteps-form__form {
    position: relative;
}

.multisteps-form__panel {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    opacity: 0;
    visibility: hidden;
}

.multisteps-form__panel.js-active {
    height: auto;
    opacity: 1;
    visibility: visible;
}

.multisteps-form__panel[data-animation=scaleOut] {
    transform: scale(1.1);
}

.multisteps-form__panel[data-animation=scaleOut].js-active {
    transition-property: all;
    transition-duration: 0.2s;
    transition-timing-function: linear;
    transition-delay: 0s;
    transform: scale(1);
}

.multisteps-form__panel[data-animation=slideHorz] {
    left: 50px;
}

.multisteps-form__panel[data-animation=slideHorz].js-active {
    transition-property: all;
    transition-duration: 0.25s;
    transition-timing-function: cubic-bezier(0.2, 1.13, 0.38, 1.43);
    transition-delay: 0s;
    left: 0;
}

.multisteps-form__panel[data-animation=slideVert] {
    top: 30px;
}

.multisteps-form__panel[data-animation=slideVert].js-active {
    transition-property: all;
    transition-duration: 0.2s;
    transition-timing-function: linear;
    transition-delay: 0s;
    top: 0;
}

.multisteps-form__panel[data-animation=fadeIn].js-active {
    transition-property: all;
    transition-duration: 0.3s;
    transition-timing-function: linear;
    transition-delay: 0s;
}

.multisteps-form__panel[data-animation=scaleIn] {
    transform: scale(0.9);
}

.multisteps-form__panel[data-animation=scaleIn].js-active {
    transition-property: all;
    transition-duration: 0.2s;
    transition-timing-function: linear;
    transition-delay: 0s;
    transform: scale(1);
}

input[type=number]::-webkit-outer-spin-button,
input[type=number]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

input[type=number] {
    -moz-appearance: textfield;
}

.title {
    z-index: 2;
}

.titles {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    top: 50%;
    border-radius: 5px;
    transform: translateY(-50%);
    background-image: url('https://media.istockphoto.com/vectors/technology-background-vector-id1299596473?k=20&m=1299596473&s=612x612&w=0&h=GF3b1-EWl7kOweD0uQLTM4QsLtXfva6nF0rxAJ02hTs=');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: 5% 50%;
    animation: bg-movement 60s infinite ease-in-out;
}


/* @keyframes bg-movement {
    0% {
        background-position: 5% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 5% 50%;
    }
} */

.titles::after {
    content: '';
    position: absolute;
    height: 100%;
    width: 100%;
    border-radius: 5px;
    left: 0;
    top: 0;
    background-color: black;
    opacity: 0.8;
    z-index: 1;
}

@media only screen and (max-width: 992px) {
    .titles {
        height: 100%;
        padding: 10px;
    }
}

footer .nav-item a {
    color: #6c757d;
}

footer .nav-item a:hover {
    color: #03affe;
    text-decoration: none;
}

footer ::selection {
    background: #03affe;
    text-shadow: none;
}

footer {
    padding: 2rem 0;
    z-index: 500;
}

footer .quick-links {
    font-size: 90%;
    line-height: 20px;
    margin-bottom: 0;
    text-transform: none;
    font-family: Montserrat, "Helvetica Neue", Helvetica, Arial, sans-serif;
}

.faded {
    color: #7d7d7d;
}

.questions {
    margin: 10px 0;
}

.questions-content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 30px;
    color: #007bff;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    border: 1px solid #e1e2e7;
    border-radius: 10px;
    -webkit-transition: -webkit-box-shadow 0.4s;
    transition: -webkit-box-shadow 0.4s;
    -o-transition: box-shadow 0.4s;
    transition: box-shadow 0.4s;
    transition: box-shadow 0.4s, -webkit-box-shadow 0.4s;
    position: relative;
    cursor: pointer;
}

.questions input[type='radio'] {
    display: none;
}

.questions-content:hover {
    -webkit-box-shadow: 0px 3px 5px 0px #0000001a;
    box-shadow: 0px 3px 5px 0px #0000001a;
}

.questions input[type="radio"]:checked+.questions-content {
    border: 1px solid #216ee0;
    background: #eaf1fe;
    -webkit-transition: ease-in 0.3s;
    -o-transition: ease-in 0.3s;
    transition: ease-in 0.3s;
}


/* NEW 2022 */

.hide-div {
    display: none;
}

.training_btns {
    transition: transform 200ms cubic-bezier(0, .6, .41, .99);
}

.training_btns:hover {
    transform: scale(1.05);
}

.tra .main_card {
    transform: scale(0.9);
    width: 649px;
    height: 716px;
    border-radius: 10px;
    border: 1px solid #EAEAEA;
    box-shadow: 0 25px 30px -20px #00000010;
    box-shadow: 0px 25px 30px -20px rgba(0, 0, 0, 0.0959934);
    background: #fff;
}

.tra .main_card h3 {
    padding-top: 115px;
    margin-left: 90px;
    font-family: Mulish;
    font-style: normal;
    font-weight: bold;
    font-size: 22px;
    line-height: 28px;
    /* identical to box height */
    color: #1A1B38;
}

.tra .main_card .select-cards {
    width: 469px;
    height: auto;
    margin-left: 90px;
    margin-top: 30px;
}

.tra .main_card .select-cards .select {
    width: 100%;
    height: 95px;
    background: #FFFFFF;
    border: 1px solid #EAEAEA;
    border-radius: 5px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    cursor: pointer;
    transition: 0.3s;
}

.tra .main_card .select-cards .select .titless {
    margin-left: 15px;
}

.tra .main_card .select-cards .select .titles h4 {
    font-family: Mulish;
    font-style: normal;
    font-weight: bold;
    font-size: 16px;
    line-height: 20px;
    /* identical to box height */
    color: #1A1B38;
}

.tra .main_card .select-cards .select .titles h5 {
    font-family: Mulish;
    font-style: normal;
    font-weight: normal;
    font-size: 16px;
    line-height: 20px;
    /* identical to box height */
    color: #1A1B38;
    margin-top: 1px;
}

.tra .main_card .select-cards .select .check-box {
    width: 33px;
    height: 33px;
    background: #FFFFFF;
    border: 2px solid #BCBCBC;
    border-radius: 50%;
    margin-left: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}

.tra .main_card .select-cards .select .check-box .check-dot {
    width: 15px;
    height: 15px;
    background: #fff;
    border-radius: 50%;
    transition: 0.3s;
    transform: scale(0);
}

.tra .main_card .select-cards .select[data-selected=true] {
    border-color: #000000;
}

.tra .main_card .select-cards .select[data-selected=true] .check-box {
    background: #000000;
    border-color: #000;
    background: #1d3cc6;
    border-color: #1d3cc6;
}

.tra .main_card .select-cards .select[data-selected=true] .check-box .check-dot {
    width: 15px;
    height: 15px;
    transform: scale(1);
}

.tra .main_card .select-btn {
    width: 469px;
    height: 95px;
    background: #1d3cc6;
    border-radius: 5px;
    margin-left: 90px;
    margin-top: 22px;
    font-family: Mulish;
    font-style: normal;
    font-weight: bold;
    font-size: 18px;
    line-height: 23px;
    cursor: pointer;
    /* identical to box height */
    text-align: center;
    color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
}

