@font-face {
    font-family: 'Akrobat';
    src: url("../fonts/Akrobat-Thin.ttf");
    font-weight: 100;
    font-style: normal;
}

@font-face {
    font-family: 'Akrobat';
    src: url("../fonts/Akrobat-Regular.ttf");
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Akrobat';
    src: url("../fonts/Akrobat-SemiBold.ttf");
    font-weight: 600;
    font-style: normal;
}

@font-face {
    font-family: 'Akrobat';
    src: url("../fonts/Akrobat-Bold.ttf");
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'Gotham Pro';
    src: url("../fonts/GothamPro.ttf");
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Gotham Pro';
    src: url("../fonts/GothamPro-Bold.ttf");
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'Akrobat';
    src: url("../fonts/Akrobat-ExtraBold.ttf");
    font-weight: 900;
    font-style: normal;
}

html, body {
    height: 100%;
}

::-webkit-scrollbar-track {
    background-color: #F5F5F5;
    border-radius: 10px;
}

::-webkit-scrollbar {
    width: 6px;
    background-color: #F5F5F5;
    border-radius: 10px;
    max-height: 6px;
}

::-webkit-scrollbar-thumb {
    border-radius: 10px;
    background: #4F328A;
}

select.form-control:not([size]):not([multiple]) {
    height: 100%;
}

.input-radio-container,
.input-checkbox-container {
    display: inline-flex;
    position: relative;
    padding-left: 29px;
    margin-bottom: 12px;
    cursor: pointer;
    font-size: 16px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/* Hide the browser's default checkbox */
.input-radio-container input,
.input-checkbox-container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

/* Create a custom checkbox */
.input-radio-container .checkmark,
.input-checkbox-container .checkmark {
    position: absolute;
    left: 0;
    top: 6px;
    height: 14px;
    width: 14px;
    border: 1px solid #fff;
    box-shadow: none;
    background: #E8E8E8;
}

.input-radio-container .checkmark {
    border-radius: 50%;
}

/* Create the checkmark/indicator (hidden when not checked) */
.input-radio-container .checkmark:after,
.input-checkbox-container .checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

/* Show the checkmark when checked */
.input-radio-container input:checked ~ .checkmark:after,
.input-checkbox-container input:checked ~ .checkmark:after {
    display: block;
}

/* Style the checkmark/indicator */
.input-radio-container .checkmark:after,
.input-checkbox-container .checkmark:after {
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    width: 10px;
    height: 10px;
    background: #f33d5d;
}

.input-radio-container .checkmark:after {
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #f33d5d;
}

.input-radio-container.input-container--light .checkmark,
.input-checkbox-container.input-container--light .checkmark {
    border: none;
}

.input-radio-container.input-container--light input:checked ~ .checkmark,
.input-checkbox-container.input-container--light input:checked ~ .checkmark {
    box-shadow: 0px 0px 7px rgba(0, 0, 0, 0.25);
    border: 1px solid #fff;
}

.input-checkbox-container.input-container--light .checkmark:after {
    background: #043A8A;
    border-radius: 2px;
}

.support-text {
    font-weight: 500;
    font-size: 24px;
    line-height: 30px;
    color: rgba(255, 255, 255, 0.5);
    max-width: 860px;
    margin: auto;
}

.js-tilt {
    font-size: 72px;
    position: absolute;
    font-family: 'GothamPro', sans-serif;
    font-weight: 700;
    user-select: none;
    bottom: 0;
    right: 5%;
    z-index: 8;
    opacity: .1;
}

.shape-tilt {
    position: absolute;
    user-select: none;
    top: 30%;
    right: 5%;
    z-index: 6;
    opacity: .8;
}

.figure-tilt {
    position: absolute;
    user-select: none;
    top: 40%;
    left: 1%;
    z-index: 6;
    opacity: .3;
}

.figure-sm-tilt {
    position: absolute;
    user-select: none;
    bottom: 10%;
    left: 1%;
    z-index: 6;
    opacity: .3;
}

.figure-md-tilt {
    position: absolute;
    user-select: none;
    top: 15%;
    right: 1%;
    z-index: 6;
    opacity: .3;
}

.vr-man-tilt {
    position: absolute;
    user-select: none;
    bottom: 0;
    left: 0;
    z-index: 6;
}

html,
body {
    font-family: 'Akrobat', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #434343;
}

section {
    overflow: hidden;
}

section:hover .heading-label {
    background-size: 200% 200%;
    background-position: 100% 0;
}

section:hover .heading-label.heading-label--reverse {
    background-position: 0% 0;
}

.bg-none {
    background: none !important;
}

.flex {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.block {
    display: block !important;
}

.slick-slide {
    outline: none !important;
}

.close-window {
    position: absolute;
    top: 30px;
    right: 30px;
    cursor: pointer;
    user-select: none;
}

.max-width {
    max-width: 1920px;
    margin: 0 auto;
}

.form-custom input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.form-custom .form-control {
    background: none;
    color: #fff;
    border: none;
    border-bottom: 1px solid #fff;
    border-radius: unset;
    font-size: 20px;
    padding: .375rem .75rem .375rem 0;
}

.form-custom .form-control:focus {
    box-shadow: unset;
}

.form-custom select.form-control {
    color: rgba(255, 255, 255, 0.5);
}

.form-custom select.form-control option {
    background: #043a8a;
    color: #fff;
}

.form-custom input.form-control {
    padding: .375rem .75rem .375rem 0.275rem;
}

.form-custom--grey input::placeholder {
    color: #999;
}

.form-custom--grey .form-control {
    color: #999;
    border-bottom: 1px solid #999;
}

.modal-custom .modal-dialog {
    max-width: 250px;
    margin-right: 30px;
}

.modal-custom .modal-dialog .modal-content {
    height: 250px;
    border: none;
    border-radius: unset;
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.15);
}

.modal-custom .modal-dialog .modal-content .modal-close {
    position: absolute;
    right: 10px;
    top: 8px;
    z-index: 10;
    cursor: pointer;
}

.modal-custom .modal-dialog .modal-content .modal-body {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem;
}

.modal-custom .modal-dialog .modal-content .modal-body .form-custom {
    width: 100%;
}

.button {
    border: 1px solid #f33d5d;
    color: #fff;
    text-transform: uppercase;
    background: none;
    border-radius: 30px;
    min-width: 120px;
    height: 46px;
    font-size: 18px;
    padding: 0 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    outline: 0 !important;
}

.button:hover {
    text-decoration: none;
}

.button--filled {
    background: #f33d5d;
}

.button--filled-blue {
    background: #2298F4;
    border: none;
}

.button--filled-white {
    background: #fff;
    color: #f33d5d;
    border: none;
}

.button--filled-white:hover {
    background: none;
    color: #fff;
    border: 1px solid #fff;
}

.button--animated {
    background: #f33d5d;
    position: relative;
    transition: opacity .3s, padding .3s;
}

.button--animated:after {
    content: url("../img/circle-arrow-right.svg");
    height: 21px;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0;
}

.button--animated:hover, .button--animated:active, .button--animated:focus {
    background: linear-gradient(90deg, #4F328A 0%, #D02846 100%);
    border: none;
    padding: 0 40px 0 20px;
    transition: all .3s ease;
}

.button--animated:hover:after, .button--animated:active:after, .button--animated:focus:after {
    opacity: 1;
    right: 10px;
}

.button--condensed {
    height: 38px;
    min-width: 150px;
    text-transform: inherit;
}

.button--colored {
    color: #f33d5d;
}

.button--colored:hover {
    color: #fff;
    background-color: #f33d5d;
}

.button--colored-dark {
    color: #434343;
    border-color: #434343;
}

.button--colored-dark:hover {
    color: #fff;
    background-color: #434343;
}

.button--small {
    min-width: 50px;
}

.button--glow {
    box-shadow: 0px 0px 15px #f33d5d;
}

.button--glow-blue {
    box-shadow: 0px 0px 15px #2298F4;
}

.button--glow:hover,
.button--glow-blue:hover {
    box-shadow: none;
}

.button--bg-dark:after {
    content: none;
}

.button--bg-dark:hover, .button--bg-dark:active, .button--bg-dark:focus {
    background: #fff;
    border: none;
    color: #f33d5d !important;
    padding: 0 30px;
}

.button--link {
    color: #999999;
    border: none;
    padding: 0;
    min-width: auto;
    height: auto;
    border-radius: unset;
    border-bottom: 1px solid #999;
    text-transform: initial;
    position: relative;
}

.button--link:before {
    content: url("../img/circle-arrow-left-curved.svg");
    position: absolute;
    left: -26px;
    top: 3px;
}

.button[disabled] {
    opacity: .5;
}

.button[disabled]:hover {
    color: inherit;
    background-color: inherit;
}

.nav--custom {
    margin-bottom: 20px;
}

.nav--custom .nav {
    border-bottom: none;
}

.nav--custom .nav-tabs .nav-link.active,
.nav--custom .nav-tabs .nav-item.show .nav-link {
    background: none;
    border: none;
}

.nav-tabs .nav-link {
    text-transform: uppercase;
    font-weight: 500;
    font-size: 16px;
    line-height: 20px;
    letter-spacing: 0.05em;
    color: #D2D2D2;
}

.nav-tabs .nav-link:after {
    content: "";
    display: block;
    margin-top: 4px;
    width: 100%;
    height: 3px;
    background: #D2D2D2;
    border-radius: 5px;
}

.nav--custom .nav-tabs .nav-link.active:after,
.nav--custom .nav-tabs .nav-item.show .nav-link:after {
    content: "";
    display: block;
    margin-top: 4px;
    width: 100%;
    height: 3px;
    background: #2298F4;
    box-shadow: 0 0 5px rgba(4, 58, 138, 0.4);
    border-radius: 5px;
}

.nav--custom .nav-tabs .nav-link:hover,
.nav--custom .nav-tabs .nav-link:focus {
    border-color: transparent;
}

.user {
    color: #f33d5d;
    font-size: 16px;
    font-weight: 700;
}

a.user {
    color: #f33d5d;
    font-size: 16px;
    font-weight: 700;
}

a.user:hover {
    text-decoration: none !important;
    color: #fff;
}

.exit {
    background: none;
    border: none;
    border-bottom: 1px solid #f33d5d;
    color: #f33d5d;
    padding-bottom: 0;
    line-height: 1.6;
    font-size: 16px;
    text-align: center;
}

.exit:hover {
    text-decoration: none !important;
    color: #fff;
}

.heading {
    text-transform: uppercase;
    font-family: 'GothamPro', sans-serif;
    font-size: 36px;
    font-weight: 700;
    text-align: center;
    color: #fff;
    letter-spacing: 0.05em;
    padding-top: 36px;
    padding-bottom: 20px;
}

.heading--mobile {
    display: none;
}

.heading--dark {
    color: #434343;
}

.heading--heavy {
    font-weight: 900;
}

.heading-label {
    background: linear-gradient(90deg, #4F328A 0%, #D02846 100%);
    position: absolute;
    left: 0;
    width: 44%;
    height: 88px;
    z-index: 4;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 0 120px;
}

.heading-label--reverse {
    background: linear-gradient(90deg, #F33D5D 0%, #513289 100%);
    right: 0;
    left: unset;
    justify-content: flex-start;
}

.heading-label--top {
    top: 100px;
}

.hero-section {
    background: url("../img/hero-bg.png") no-repeat 50%;
    background-size: cover;
    color: #fff;
}

.hero-section__wrapper {
    max-width: 1670px;
    margin: 0 auto;
    padding: 16px;
}

.hero-section .navbar-dark .navbar-nav .nav-link {
    color: rgba(255, 255, 255, 0.8);
    font-size: 18px;
    text-transform: uppercase;
}

.hero-section .navbar-expand-lg .navbar-nav .nav-link {
    padding-right: 1.1rem;
    padding-left: 1.1rem;
}

.hero-section__navbar {
    position: relative;
}

.hero-section__navbar .nav-item.active,
.hero-section__navbar .nav-item:hover {
    border-bottom: 1px solid #f33d5d;
}

.hero-section__navbar .nav-item.active a {
    color: #fff;
}

.hero-section__navbar:after {
    content: "";
    position: absolute;
    bottom: 40px;
    right: -20%;
    width: 20%;
    height: 1px;
    background: #f33d5d;
}

.hero-section__content {
    padding-left: 92px;
    position: relative;
}

.hero-section__content:before {
    content: "";
    position: absolute;
    bottom: -40px;
    left: -24px;
    background: #f33d5d;
    width: 60%;
    height: 1px;
}

.hero-section__content:after {
    content: "";
    position: absolute;
    height: 200%;
    width: 1px;
    left: -24px;
    bottom: -40px;
    background: #f33d5d;
}

.hero-section__heading {
    font-family: 'GothamPro', sans-serif;
    font-weight: 700;
    font-size: 54px;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    padding-top: 70px;
    padding-left: 18px;
    margin-bottom: 0;
}

.hero-section__subheading {
    font-family: 'GothamPro', sans-serif;
    font-weight: 700;
    font-size: 20px;
    color: rgba(243, 61, 93, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    padding-left: 312px;
}

.hero-section__main {
    display: flex;
    max-width: 1000px;
    flex-wrap: wrap;
    padding: 40px 0;
}

.hero-section__main .box {
    display: flex;
    align-items: center;
    padding: 19px 16px;
    width: 468px;
}

.hero-section__main .box__title {
    font-size: 24px;
    line-height: 29px;
    max-width: 340px;
    padding-left: 20px;
}

.hero-section__info {
    display: flex;
    padding-top: 70px;
    padding-left: 30px;
    justify-content: space-between;
    width: 430px;
    position: relative;
}

.hero-section__info .box {
    font-size: 18px;
    line-height: 22px;
    position: relative;
    padding: 16px;
}

.hero-section__info .box:before {
    content: url("../img/triangle-icon.svg");
    position: absolute;
    top: 15px;
    left: -8px;
}

.hero-section__info .box__title {
    letter-spacing: 0.1em;
}

.hero-section__info .box__content {
    font-weight: 900;
    letter-spacing: 0.05em;
}

.about-section {
    display: flex;
    justify-content: flex-end;
    padding: 118px 21% 118px 16px;
    position: relative;
    overflow: hidden;
}

.about-section__info {
    max-width: 482px;
    font-weight: 600;
    font-size: 24px;
    line-height: 29px;
    margin-bottom: 0;
}

.about-section__info a {
    text-decoration: underline;
}

.about-section__info a:hover {
    color: #f33d5d;
}

.about-section .whale {
    position: absolute;
    width: 700px;
    left: -140px;
    top: 20px;
}

.about-section .small-fish {
    position: absolute;
    width: 200px;
    right: 0;
}

.about-section:after {
    content: "";
    position: absolute;
    width: 100vw;
    left: 0;
    height: 76%;
    background-color: #FBFBFB;
    top: 50%;
    transform: translateY(-50%);
    z-index: -1;
}

.lecturers-section {
    background: url("../img/lecturers-bg.png") no-repeat 50%;
    background-size: cover;
    padding: 70px 16px;
}

.lecturers-section__slider {
    max-width: 1200px;
    margin: 0 auto;
}

.lecturers-section__slider .slick-next:before {
    content: url("../img/arrow-right.svg");
}

.lecturers-section__slider .slick-prev:before {
    content: url("../img/arrow-left.svg");
}

.lecturers-section__slider .slick-prev, .lecturers-section__slider .slick-next {
    top: 42%;
}

.lecturers-section__slider .slick-prev {
    left: -110px;
}

.lecturers-section__slider .slick-next {
    right: -110px;
}

.lecturers-section .box {
    background: #fff;
    padding: 15px;
    margin: 100px 22px 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 320px;
    box-shadow: -15px 5px 20px rgba(0, 0, 0, 0.15);
}

.lecturers-section .box__photo {
    height: 150px;
    width: 150px;
    margin-top: -94px;
    position: relative;
    margin-bottom: 30px;
    border-radius: 50%;
}

.lecturers-section .box__photo--chernov {
    background: url("../img/chernov.jpg") no-repeat 50% 20%;
    background-size: cover;
}

.lecturers-section .box__photo--trunov {
    background: url("../img/trunov.jpg") no-repeat 70% 50%;
    background-size: cover;
}

.lecturers-section .box__photo--kuzina {
    background: url("../img/kuzina.jpg") no-repeat 66% 50%;
    background-size: cover;
}

.lecturers-section .box__photo--kozlovskiy {
    background: url("../img/kozlovskiy.jpg") no-repeat 50%;
    background-size: cover;
}

.lecturers-section .box__photo--kurylev {
    background: url("../img/kurylev.jpg") no-repeat 75% 50%;
    background-size: cover;
}

.lecturers-section .box__photo--kozlovskiy-artem {
    background: url("../img/kozlovskiy-artem.jpg") no-repeat 54% 50%;
    background-size: cover;
}

.lecturers-section .box__photo--popovich {
    background: url("../img/popovich.jpg") no-repeat 45% 50%;
    background-size: cover;
}

.lecturers-section .box__photo--sangadjiev {
    background: url("../img/sangadjiev.jpg") no-repeat 50% 50%;
    background-size: cover;
}

.lecturers-section .box__photo--gromov {
    background: url("../img/gromov.jpg") no-repeat 54% 50%;
    background-size: cover;
    background-position-y: top;
}

.lecturers-section .box__photo--rudicer {
    background: url("../img/rudicer.jpg") no-repeat 45% 50%;
    background-size: cover;
    background-position-y: top;
}

.lecturers-section .box__photo--fatyhov {
    background: url("../img/fatyhov.jpg") no-repeat 50% 50%;
    background-size: cover;
    background-position-y: top;
}

.lecturers-section .box__photo:before {
    content: url("../img/arc-top.svg");
    position: absolute;
    top: -13px;
    left: -10px;
    transform-origin: 50%;
    height: 170px;
    width: 170px;
    transition: transform .6s ease, opacity .7s ease;
}

.lecturers-section .box__photo:after {
    content: url("../img/arc-bottom.svg");
    position: absolute;
    bottom: -98px;
    left: -10px;
    transform-origin: 50% 0;
    height: 170px;
    width: 170px;
    transition: transform .6s ease, opacity .7s ease;
}

.lecturers-section .box__secondary-name {
    font-weight: 600;
    font-size: 24px;
    text-transform: uppercase;
    color: #434343;
}

.lecturers-section .box__first-name {
    font-weight: 600;
    font-size: 20px;
}

.lecturers-section .box__hr {
    height: 1px;
    width: 58px;
    background-color: #f33d5d;
    margin-top: 40px;
    margin-bottom: 22px;
}

.lecturers-section .box__status {
    text-align: center;
    color: #999;
    line-height: 17px;
    padding: 0 15px;
}

.lecturers-section .box:hover {
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.15);
}

.lecturers-section .box:hover .box__photo:before {
    transform: rotateZ(180deg);
    opacity: 0;
    transition: transform .6s ease, opacity .7s ease;
}

.lecturers-section .box:hover .box__photo:after {
    transform: rotateZ(180deg);
    opacity: 0;
    transition: transform .6s ease, opacity .7s ease;
}

.modules-section {
    background: url("../img/modules.png") no-repeat 50%;
    background-size: cover;
    position: relative;
    padding: 70px 16px;
}

.modules-section .figure-first {
    position: absolute;
    left: 0;
    top: 10%;
    z-index: -1;
}

.modules-section .figure-second {
    position: absolute;
    right: 0;
    top: 50%;
    z-index: -1;
}

.modules-section .modules-section__slider {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.modules-section .slick-prev {
    left: -40px;
}

.modules-section .slick-prev:before {
    content: url("../img/module-arrow-left.svg");
}

.modules-section .slick-next:before {
    content: url("../img/module-arrow-right.svg");
}

.collapse-wrapper:before {
    content: url("../img/decore.svg");
    position: absolute;
    top: 55%;
    left: -10%;
}

.collapse-wrapper:after {
    content: url("../img/decore.svg");
    position: absolute;
    top: 10%;
    right: -8%;
    transform: rotateZ(180deg);
}

.collapse-box {
    background: #FBFBFB;
    box-shadow: -15px 5px 20px rgba(0, 0, 0, 0.15);
    margin: 30px;
}

.collapse-box:hover {
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.15);
}

.collapse-box .card {
    border: none;
    padding-left: 85px;
    font-size: 16px;
    background: #fbfbfb;
    text-align: left;
    margin-left: 0;
}

.collapse-box__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 28px 40px 28px 85px;
    background: #fbfbfb;
}

.collapse-box__title {
    margin-bottom: 0;
    font-weight: 500;
    font-size: 30px;
    line-height: 37px;
    color: #000;
    max-width: 80%;
}

.collapse-box__title--reddish {
    color: #b74475;
}

.collapse-box__title--bluish {
    color: #043a8a;
}

.collapse-box__title--rose {
    color: #923677;
}

.collapse-box__title--orange {
    color: #cb636b;
}

.collapse-box__title--purple {
    color: #5f3385;
}

.collapse-box__id {
    border-radius: 50%;
    background: #EDEDED;
    color: #999;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
    font-size: 18px;
}

.collapse-box__lecturer {
    color: #043a8a;
    font-weight: 600;
    font-size: 24px;
}

.collapse-box__lecturer span {
    font-size: 22px;
    color: #999;
    padding-left: 16px;
}

.collapse-box__footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 40px 18px 85px;
    background: #f7f7f7;
}

.partners-section {
    background: #fff;
    padding: 70px 0;
}

.partners-section .partner-box {
    height: 160px;
}

.partners-section .partner-box:hover {
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.07);
}

.partners-section .partner-box__link {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    width: 100%;
    overflow: hidden;
}

.partners-section .partner-box__link img {
    max-width: 100%;
}

.stages-section {
    background: url("../img/stage-bg.png") no-repeat 50%;
    background-size: cover;
    position: relative;
    display: flex;
    justify-content: flex-end;
}

.stages-section .bird {
    position: absolute;
    right: 5%;
    bottom: 10%;
}

.stages-section .stages-block {
    margin-top: 200px;
    margin-bottom: 50px;
    width: 38.7%;
    position: relative;
}

.stages-section .stages-block:before {
    content: "";
    position: absolute;
    height: 90%;
    width: 1px;
    background: #f33d5d;
    left: -25px;
    top: -20px;
}

.stages-section .stages-block .stage-box {
    position: relative;
    margin-bottom: 80px;
}

.stages-section .stages-block .stage-box:last-child {
    margin-bottom: 0;
}

.stages-section .stages-block .stage-box__title {
    font-weight: 700;
    font-size: 30px;
    line-height: 37px;
    color: #f33d5d;
    text-transform: uppercase;
}

.stages-section .stages-block .stage-box__title a {
    color: #f33d5d;
}

.stages-section .stages-block .stage-box__title a:hover {
    color: #fff;
    text-decoration: none;
}

.stages-section .stages-block .stage-box__content {
    font-weight: 700;
    font-size: 18px;
    line-height: 22px;
    letter-spacing: 0.1em;
    color: #fff;
    max-width: 380px;
    text-transform: uppercase;
}

.stages-section .stages-block .stage-box__content a {
    color: #fff;
    text-decoration: underline;
}

.stages-section .stages-block .stage-box:before {
    content: "";
    position: absolute;
    height: 18px;
    width: 18px;
    background: #043a8a;
    border: 2px solid #fff;
    border-radius: 50%;
    left: -33px;
    top: 9px;
}

.stages-section .stages-block .stage-box:after {
    content: "1";
    position: absolute;
    left: -100px;
    top: -30px;
    font-weight: 100;
    font-size: 80px;
    color: rgba(255, 255, 255, 0.5);
}

.stages-section .stages-block .stage-box:nth-child(2n):after {
    content: "2";
}

.stages-section .stages-block .stage-box:last-child:after {
    content: "3";
}

.stages-section .stages-block .stage-box:hover:before {
    background: #2298F4;
    box-shadow: 0px 0px 15px #2298F4;
}

.stages-section .stages-block .stage-box:hover:after {
    color: #f33d5d;
    opacity: .5;
}

.stages-section .stages-block .stage-box:nth-child(2n):hover:before {
    background: #f33d5d;
    box-shadow: 0px 0px 15px #f33d5d;
}

.stages-section .stages-block .stage-box:nth-child(2n):hover a {
    color: #fff;
    position: relative;
}

.stages-section .stages-block .stage-box:nth-child(2n):hover a:before {
    content: url("../img/circle-arrow-right.svg");
    position: absolute;
    right: -30px;
    top: 50%;
    transform: translateY(-50%);
}

.message-section,
.bid-section,
.contacts-section {
    background: url("../img/bg.png") 50% no-repeat;
    background-size: cover;
    min-height: 100vh;
    color: #fff;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 70px 16px;
    position: relative;
    overflow-x: hidden;
}

.bid-section .container {
    position: relative;
    z-index: 10;
}

.bid-section .instructions-row {
    margin-top: 88px;
}

.bid-section .instructions-row a {
    font-size: 16px;
    color: #fff;
    text-decoration: underline;
}

.contacts-section .container {
    position: relative;
    z-index: 10;
}

.contacts-section .feedback__company {
    font-weight: 700;
    font-size: 24px;
    line-height: 30px;
    text-transform: uppercase;
    color: #fff;
}

.contacts-section .feedback__contacts a {
    font-weight: 700;
    font-size: 24px;
    color: #fff;
    position: relative;
    margin-left: 30px;
}

.contacts-section .feedback__contacts a:hover {
    color: #fff;
}

.contacts-section .feedback__contacts_phone:before {
    content: url("../img/phone.svg");
    position: absolute;
    left: -30px;
    top: 0;
}

.contacts-section .feedback__contacts_email {
    margin-left: 60px !important;
}

.contacts-section .feedback__contacts_email:before {
    content: url("../img/mail.svg");
    position: absolute;
    left: -30px;
    top: 0;
}

.footer {
    /*background: #180124;*/
    padding: 16px;
}

.footer__wrapper {
    max-width: 1240px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer__link {
    margin: 0 40px;
    color: #fff;
    font-size: 18px;
}

.footer__link:hover {
    color: #f33d5d;
    text-decoration: none;
}

.admin-layout__wrapper,
.user-layout__wrapper {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    /*min-height: 100%;*/
}

.admin-layout__header,
.user-layout__header {
    background: url("../img/admin-bg.png") 50% no-repeat;
    background-size: cover;
}

.admin-layout__header .logo,
.user-layout__header .logo {
    width: 40px;
}

.admin-layout__header .nav-link,
.user-layout__header .nav-link {
    font-size: 16px;
}

.admin-layout__header .navbar-dark .navbar-nav .nav-item.active .nav-link,
.user-layout__header .navbar-dark .navbar-nav .nav-item.active .nav-link {
    color: #fff;
}

.admin-layout__header .navbar-dark .navbar-nav .nav-item .nav-link,
.user-layout__header .navbar-dark .navbar-nav .nav-item .nav-link {
    color: rgba(255, 255, 255, 0.8);
}

.admin-layout__header .navbar-dark .navbar-nav .nav-item .nav-link:hover,
.user-layout__header .navbar-dark .navbar-nav .nav-item .nav-link:hover {
    color: #fff;
}

.admin-layout__main,
.user-layout__main {
    height: calc(100vh - 48px);
    /*overflow-y: auto;*/
}

.admin-layout__footer .footer__wrapper,
.user-layout__footer .footer__wrapper {
    justify-content: flex-start;
}

.test-heading-block {
    background-color: #F9F9F9;
    color: #D2D2D2;
    text-transform: uppercase;
    padding: 25px 0;
}

.test-heading-block h2 {
    font-weight: 700;
    letter-spacing: 0.05em;
    font-size: 30px;
}

.card-header {
    padding: 0.75rem 1.25rem;
    background: #F7FBFE;
    border-bottom: none;
    margin: 1px 0;
    display: flex;
    align-items: flex-start;
}

.card-body {
    margin-left: 56px;
}

.course_menu_item a {
    margin-left: 0;
    padding-left: 20px;
}

.card-header__arrow {
    margin-top: 4px;
}

#accordion > .card .card-header a:active,
#accordion > .card .card-header a.active{
    text-decoration: underline;
}

.container-fluid .progress-bar__wrapper .box.active{
    background: #f33d5db8;
}

.sidebar-module-second .card:nth-child(3n) .card-header{
    background-image: url("../img/module-1.jpg");
    background-repeat: no-repeat;
    background-position: 10px 50%;
}
.sidebar-module-second .card:nth-child(4n) .card-header{
    background-image: url("../img/module-2.jpg");
    background-repeat: no-repeat;
    background-position: 10px 50%;
}
.sidebar-module-second .card:nth-child(5n) .card-header{
    background-image: url("../img/module-3.jpg");
    background-repeat: no-repeat;
    background-position: 10px 50%;
}

.sidebar-module-second .card:nth-child(6n) .card-header{
    background-image: url("../img/module-4.jpg");
    background-repeat: no-repeat;
    background-position: 10px 50%;
}

.sidebar-module-second .card:nth-child(7n) .card-header{
    background-image: url("../img/module-5.jpg");
    background-repeat: no-repeat;
    background-position: 10px 50%;
    padding-left: 20px;
}

.sidebar-module-second .course_menu_item a {
    color: #000;
}

.sidebar-module-second .card-body {
    margin-left: 56px;
}

.sidebar-module-second .course_menu_item a {
    margin-left: 0;
    padding-left: 40px;
}

.list-group-item a {
    padding: 8px;
}

.progress-bar {
    background: #fff;
    /*box-shadow: inset 0px 2px 3px rgba(4, 58, 138, 0.5);*/
}

.progress-bar__wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
}

.progress-bar__wrapper .head-title-box {
    width: 100%;
    display: flex;
    color: rgba(34, 152, 244, 0.65);
    justify-content: center;
}

.progress-bar__wrapper .head-title-box-mobile {
    display: none;
    color: rgba(34, 152, 244, 0.65);
    justify-content: center;
    width: 100%;
}

.progress-bar__wrapper .head-title-box h3,
.progress-bar__wrapper .head-title-box-mobile h3 {
    font-size: 24px;
    font-weight: 600;
    text-transform: uppercase;
}

.progress-bar__wrapper .head-title-box h3.anket-1-3 {
    width: 45%;
    max-width: 486px;
}

.progress-bar__wrapper .head-title-box h3.modules-1-6 {
    width: 55%;
}

.progress-bar__wrapper .head-title-box h3.modules-1-6 span {
    text-transform: none;
}

.progress-bar__wrapper .head-title-box h3.anket-4-6 {
    width: 45%;
    max-width: 486px;
}

.progress-bar__wrapper .box {
    text-align: left;
    position: relative;
    width: 162px;
    padding-left: 18px;
    background: rgba(34, 152, 244, 0.65);
    clip-path: polygon(94% 0, 100% 50%, 94% 100%, 0 100%, 6% 50%, 0 0);
    margin: 4px 0;
}

.progress-bar__wrapper .box.anket {
    background: #05429c70;
}

.progress-bar__wrapper .box.box-test {
    background: rgba(4, 58, 138, 0.65);
}

.progress-bar__wrapper .box.box-cert {
    background: rgba(243, 61, 93, 0.65);
}

.progress-bar__wrapper .box__title {
    margin-top: 6px;
}

.progress-bar__wrapper .box__title a {
    font-weight: 700;
    font-size: 14px;
    line-height: 17px;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.progress-bar__wrapper .box__divider {
    border: 1px dashed rgba(255, 255, 255, 0.5);
    margin-top: 2px;
}

.progress-bar__wrapper .box__status {
    display: flex;
    flex-wrap: wrap;
    font-weight: 500;
    font-size: 16px;
    line-height: 20px;
    color: #fff;
    min-height: 22px;
    margin: 6px 0;
}

.progress-bar__wrapper .box__status div {
    width: 18px;
    height: 18px;
    margin-right: 4px;
    margin-bottom: 4px;
    background: #F33D5D;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    color: #fff;
    border-radius: 50%;
    font-size: 10px;
    line-height: 0.9;
}

.progress-bar__wrapper .box__status div.w-space {
    background: #fff;
    color: #000;
    text-align: center;
    line-height: 1;
}

.progress-bar__wrapper .box__status div a {
     color: #fff;
     height: 100%;
     width: 100%;
     display: flex;
     justify-content: center;
     align-items: center;
 }

.progress-bar__wrapper .box__status div a:hover {
    text-decoration: none;
}

.progress-bar__wrapper .box__status div.active {
    background: #2298F4;
}

.progress-bar__wrapper .box:last-child:after {
    content: none;
}

.progress-bar--module-second.progress-bar {
    box-shadow: unset;
}

.progress-bar--module-second .progress-bar__wrapper .box {
    display: flex;
    flex-direction: column;
    width: 162px;
    background: linear-gradient(147.23deg, #D02846 -6.15%, #4F328A 139.99%);
    padding: 0 16px;
}

.bg-gradient {
    background: linear-gradient(173.28deg, #55006A 2.66%, #081167 23.95%, #00516A 51.91%, #21286A 77.19%, #55006A 100%);
}

.modal-dialog {
    max-width: 80%;
}

.slick-prev, .slick-next {
    top: 5%;
}

.lecture_content p {
    font-size: 18px;
}

.lecture_content p img {
    max-width: 100%;
}
.modal-title {
    color: #000;
}
.modal-body p {
    color: #000;
    white-space: normal;
    text-align: left;
}

@media (min-width: 1440px) {
    .about-section .whale {
        position: absolute;
        width: 954px;
        left: -1%;
        top: -21%;
    }

    .about-section .small-fish {
        position: absolute;
        width: 273px;
        right: 7%;
        top: 12%;
    }
}

@media (max-width: 1780px) {
    .about-section .whale {
        width: 820px;
        left: -1%;
        top: -5%;
    }
}

@media (max-width: 1600px) {
    .about-section .whale {
        left: -10%;
    }
}

@media (max-width: 1440px) {
    .heading-label {
        width: 30%;
        padding: 0 30px;
    }

    .heading-label--top {
        width: 44%;
    }

    .hero-section .navbar-dark .navbar-nav .nav-link {
        color: rgba(255, 255, 255, 0.8);
        font-size: 13px;
        text-transform: uppercase;
    }

    .hero-section__main .box__title {
        font-size: 18px;
        line-height: 26px;
    }

    .lecturers-section__slider .slick-prev {
        left: -30px;
    }

    .lecturers-section__slider .slick-next {
        right: -20px;
    }

    .lecturers-section__slider .slick-dots li.slick-active button:before {
        opacity: .75;
        color: #fff;
    }

    .lecturers-section__slider .slick-dots li.slick-active button:before {
        color: #fff;
        font-size: 16px;
    }

    .lecturers-section__slider .slick-dots li button:before {
        color: #fff;
        font-size: 14px;
    }

    .lecturers-section__slider .slick-dots {
        bottom: -45px;
    }

    .about-section .whale {
        left: -20%;
    }
}

@media (max-width: 1200px) {
    .hero-section__heading {
        padding-left: 16px;
    }

    .hero-section__subheading {
        padding-left: 16px;
    }

    .about-section .whale {
        left: -470px;
    }

    .hero-section__navbar:after {
        display: none;
    }
}

@media (max-width: 992px) {
    .hero-section__heading {
        font-size: 46px;
    }

    .hero-section__subheading {
        font-size: 16px;
    }

    .hero-section__main {
        max-width: 1000px;
    }

    .hero-section__main .box {
        align-items: center;
        width: 470px;
    }

    .hero-section__main .box__title {
        font-size: 18px;
        line-height: 22px;
        max-width: 290px;
        padding-left: 20px;
    }

    .about-section .whale {
        display: none;
    }

    .heading-label {
        display: none;
    }

    .heading--mobile {
        display: block;
    }

    .about-section {
        flex-direction: column;
        padding: 70px 16px;
    }

    .stages-section {
        flex-direction: column;
        padding: 70px 16px;
    }

    .stages-section .stages-block {
        width: 80%;
        margin-top: 50px;
        margin-bottom: 0;
        padding-left: 140px;
    }

    .stages-section .stages-block:before {
        left: 116px;
    }

    .about-section__info {
        margin: 0 auto;
    }

    .progress-bar__wrapper .head-title-box h3.modules-1-6,
    .progress-bar__wrapper .head-title-box.mobile-none {
        display: none;
    }

    .progress-bar__wrapper .head-title-box-mobile {
        display: flex;
    }

    .progress-bar__wrapper .head-title-box h3.anket-1-3 {
        width: 100%;
        max-width: 100%;
    }

}

@media (max-width: 768px) {
    .footer__wrapper {
        flex-direction: column;
    }
    .hero-section__content {
        padding-left: 0;
    }

    .collapse-box__header {
        padding: 16px;
    }

    .collapse-box__title {
        font-size: 28px;
    }

    .collapse-box__footer {
        padding: 16px;
        flex-wrap: wrap;
    }

    .collapse-box .card {
        padding-left: 16px;
    }

    .stages-section .bird {
        display: none;
    }

    .stages-section .stages-block .stage-box:nth-child(2n):hover a:before {
        display: none;
    }
    .about-section .small-fish {
        display: none;
    }
}

@media (max-width: 576px), (max-height: 576px) {
    .admin-layout__main,
    .user-layout__main {
        height: auto;
    }

    .admin-layout__footer .footer__wrapper,
    .user-layout__footer .footer__wrapper {
        flex-direction: column;
    }
}

@media (max-width: 576px) {
    .hero-section__heading {
        font-size: 30px;
    }

    .hero-section__info {
        flex-direction: column;
    }

    .collapse-box__title {
        font-size: 18px;
        line-height: 22px;
    }

    .collapse-box__lecturer {
        font-size: 16px;
        padding-bottom: 8px;
    }

    .stages-section .stages-block {
        width: 100%;
        padding: 16px 60px;
    }

    .stages-section .stages-block:before {
        left: 36px;
    }

    .stages-section .stages-block .stage-box {
        margin-bottom: 50px;
    }

    .stages-section .stages-block .stage-box__title {
        font-size: 24px;
        line-height: 32px;
    }
    .stages-section .stages-block .stage-box__content {
        font-size: 16px;
    }

    .stages-section .stages-block .stage-box:after {
        content: none !important;
    }

    .footer__wrapper div:first-child {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .heading {
        font-size: 22px;
    }

    .stages-section,
    .modules-section,
    .lecturers-section,
    .about-section{
        padding: 40px 16px;
    }
    .partners-section {
        padding: 40px 0;
    }

    .about-section__info {
        font-size: 16px;
        line-height: 22px;
    }
}
