@charset "UTF-8";

@font-face {
    font-family: 'Circe';
    src: url("/public/fonts/Circe-Regular.woff") format("woff"),
    url("/public/fonts/Circe-Regular.woff2") format("woff2");
    font-weight: normal;
    font-display: swap;
    font-style: normal
}

@font-face {
    font-family: 'Circe';
    src: url("/public/fonts/Circe-ExtraLight.woff") format("woff"),
    url("/public/fonts/Circe-ExtraLight.woff2") format("woff2");
    font-weight: 200;
    font-display: swap;
    font-style: normal
}

@font-face {
    font-family: 'Circe';
    src: url("/public/fonts/Circe-Thin.woff") format("woff"),
    url("/public/fonts/Circe-Thin.woff2") format("woff2");
    font-weight: 100;
    font-display: swap;
    font-style: normal
}

@font-face {
    font-family: 'Circe';
    src: url("/public/fonts/Circe-Light.woff") format("woff"),
    url("/public/fonts/Circe-Light.woff2") format("woff2");
    font-weight: 300;
    font-display: swap;
    font-style: normal
}

@font-face {
    font-family: 'Circe';
    src: url("/public/fonts/Circe-Bold.woff") format("woff"),
    url("/public/fonts/Circe-Bold.woff2") format("woff2");
    font-weight: bold;
    font-display: swap;
    font-style: normal
}

@font-face {
    font-family: 'Circe';
    src: url("/public/fonts/Circe-ExtraBold.woff") format("woff"),
    url("/public/fonts/Circe-ExtraBold.woff2") format("woff2");
    font-weight: 800;
    font-display: swap;
    font-style: normal
}

html {
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

html, body {
    margin: 0;
    padding: 0;
    height: 100%;
}

body {
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
    font-family: 'Circe', Arial, Helvetica, sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1;
    background: #f5f5f5;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: none;
}

body.header-black {
    padding-top: 50px;
}

input, textarea, select {
    font-family: 'Circe', Arial, Helvetica, sans-serif;
    -webkit-text-size-adjust: none;
    margin: 0;
    padding: 0;
}

a, h1, h2, h3, h4, h5, p {
    text-decoration: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    margin: 0;
    padding: 0;
}

* {
    box-sizing: border-box;
}

*, :after, :before {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

*:focus {
    outline: none;
}

img {
    position: relative;
    max-width: 100%;
    max-height: 100%;
}

img:before {
    content: 'ISCI';
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #e9e9e9;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 900;
}

figure {
    margin: 0;
    padding: 0;
}

textarea {
    font-family: 'Circe', Arial, Helvetica, sans-serif;
}

svg {
    max-width: 100%;
    max-height: 100%;
}

ul, ol, li {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

a, a:hover, a:active {
    text-decoration: none;
}

a {
    color: #000;
    transition: color .3s;
}


button, button:hover, button:active, button:focus {
    border: 1px solid transparent;
    outline: none;
}


/* basic classes */
.no-overflow {
    overflow: hidden;
}

.center {
    text-align: center !important;
}

.right {
    text-align: right !important;
}

.left {
    text-align: left !important;
}

.block {
    display: block;
}

.hidden {
    display: none !important;
}

/* basic classes */
/* scroll library*/

.scroll::-webkit-scrollbar {
    width: 5px;
    right: -10px;
    margin-left: -5px;
}

.scroll_black::-webkit-scrollbar-track {
    background: #f1f1f1;
}

.scroll_black::-webkit-scrollbar-thumb {
    background: #333;
}

.scroll_black::-webkit-scrollbar-thumb:hover {
    background: #000;
}

.scroll_gold::-webkit-scrollbar-track {
    background: transparent;
}

.scroll_gold::-webkit-scrollbar-thumb {
    background: #826bef;
}

.scroll_gold::-webkit-scrollbar-thumb:hover {
    background: #826bef;
}

/* scroll library */

/* text colors */

.color-white {
    color: #fff !important;
}

.color-black {
    color: #000 !important;
}

.color-blue {
    color: #4492df !important;
}

.color-red {
    color: red !important;
}

.color-green {
    color: #1fede0 !important;
}


/* text colors*/


/* animation */

.animation-up {
    transform: translateY(50px);
    opacity: 0;
}

.animation-down {
    transform: translateY(-50px);
    opacity: 0;
}

.animation-up.animation-active {
    transition: transform 1s cubic-bezier(0.455, 0.03, 0.515, 0.955), opacity 1s cubic-bezier(0.455, 0.03, 0.515, 0.955);
    opacity: 1;
    transform: translateY(0);
}

.animation-down.animation-active {
    transition: transform 1s cubic-bezier(0.455, 0.03, 0.515, 0.955), opacity 1s cubic-bezier(0.455, 0.03, 0.515, 0.955);
    opacity: 1;
    transform: translateY(0);
}


/* animation */


/* FLEX */

/* flexbox library */

.flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.flex-row {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
}

.flex-row-reverse {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
}

.flex-column {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

.flex-column-reverse {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
}

.justify-content-start {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
}

.justify-content-end {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
}

.justify-content-center {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.justify-content-between {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.justify-content-around {
    -ms-flex-pack: distribute;
    justify-content: space-around;
}

.align-items-start {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
}

.align-items-end {
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
}

.align-items-center {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.align-items-baseline {
    -webkit-box-align: baseline;
    -ms-flex-align: baseline;
    align-items: baseline;
}

.align-items-stretch {
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
}

.align-self-start {
    -ms-flex-item-align: start;
    align-self: flex-start;
}

.align-self-end {
    -ms-flex-item-align: end;
    align-self: flex-end;
}

.align-self-center {
    -ms-flex-item-align: center;
    align-self: center;
}

.align-self-baseline {
    -ms-flex-item-align: baseline;
    align-self: baseline;
}

.align-self-stretch {
    -ms-flex-item-align: stretch;
    align-self: stretch;
}

.flex-nowrap {
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
}

.flex-wrap {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.flex-wrap-reverse {
    -ms-flex-wrap: wrap-reverse;
    flex-wrap: wrap-reverse;
}

.order-1 {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
}

.order-2 {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
}

.order-3 {
    -webkit-box-ordinal-group: 4;
    -ms-flex-order: 3;
    order: 3;
}

.align-content-start {
    -ms-flex-line-pack: start;
    align-content: flex-start;
}

.align-content-end {
    -ms-flex-line-pack: end;
    align-content: flex-end;
}

.align-content-center {
    -ms-flex-line-pack: center;
    align-content: center;
}

.align-content-between {
    -ms-flex-line-pack: justify;
    align-content: space-between;
}

.align-content-around {
    -ms-flex-line-pack: distribute;
    align-content: space-around;
}

.align-content-stretch {
    -ms-flex-line-pack: stretch;
    align-content: stretch;
}

/* flexbox libruary */

/* buttons */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: 'Circe', Arial, Helvetica, sans-serif;
    outline: none;
    box-sizing: border-box;
    transition: color .3s, background-color .3s;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    font-weight: 500;
}

.btn_xl {
    height: 55px;
    border-radius: 6px;
    padding: 0 30px;
    font-size: 14px;
    font-weight: 600;
    gap: 10px;
    text-transform: uppercase;
}

.btn_column {
    flex-direction: column;
    gap: 5px;
}


.btn_column.btn_xl span:last-child {
    font-size: 14px;
    font-weight: 500;
}

.btn_rounded.btn_xl {
    border-radius: 27px;
}

.btn_xl svg {
    height: 24px;
    width: 24px;
}

.btn_md {
    height: 45px;
    padding: 0 20px;
    font-size: 15px;
    font-weight: 600;
    gap: 7px;
    border-radius: 8px;
}

.btn_md svg {
    height: 24px;
    width: 24px;
}

.btn_rounded.btn_md {
    border-radius: 22px;
    padding: 0 20px;
}

.btn_xs {
    height: 38px;
    border-radius: 7px;
    padding: 0 13px;
    font-size: 14px;
    gap: 5px;
}

.btn_rounded.btn_xs {
    border-radius: 19px;
    padding: 0 20px;
}

.btn_xs svg {
    height: 18px;
    width: 18px;
}

.btn_xxs {
    height: 30px;
    line-height: 30px;
    border-radius: 4px;
    padding: 0 13px;
    font-weight: 400;
    gap: 5px;
    font-size: 13px;
}

.btn_rounded.btn_xxs {
    border-radius: 15px;
}

.btn_xxs svg {
    height: 14px;
    width: 14px;
}

.btn_black {
    background-color: #222;
    border-color: #222;
    color: #f6f9fe;
}

.btn_black:hover {
    background-color: #333;
    border-color: #333;
}

.btn_black svg {
    fill: #fff;
}

.btn_blue {
    background-color: #0064E0;
    border-color: #0064E0;
    color: #f6f9fe;
    text-shadow: 0 1px 0 #194cb3;
}

.btn_blue:hover {
    background-color: #015dce;
    border-color: #015dce;
    color: #fff;
}

.btn_blue:disabled, .btn_blue:disabled:hover {
    cursor: not-allowed;
    background-color: rgb(198, 198, 198);
    border-color: transparent;
    color: rgb(244, 244, 244);
    text-shadow: none;
}

.btn_blue svg {
    fill: #fff;
}

.btn_bordered_black {
    background-color: transparent;
    border: 1px solid #cbcbcb;
    color: #000;
}

.btn_bordered_black:hover {
    border-color: #bbb;
    color: #333;
}

.btn_bordered_black svg {
    fill: #000;
}

.btn_bordered_black:hover svg {
    fill: #555;
}


.btn_gray {
    background-color: #eee;
    border-color: #eee;
    color: #666;
}

.btn_gray:hover {
    background-color: #ddd;
    border-color: #ddd;
    color: #555;
}

.btn_gray svg {
    fill: #666;
}


.btn_green {
    background-color: #1fede0;
    border-color: #1fede0;
    color: #000;
}

.btn_green:hover {
    background-color: #03bdb4;
    border-color: #03bdb4;
}

.btn_green svg {
    fill: #000;
}

.buttons-wrap{
    gap: 5px;
}
.btn_burgundy {
    background-color: #dd173a;
    border-color: #dd173a;
    color: #fff;
}

.btn_burgundy:hover {
    background-color: #be364e;
    border-color: #be364e;
}


.btn_burgundy svg {
    fill: #fff;
}

.btn_yellow {
    background-color: #ffb800;
    border-color: #ffb800;
    color: #000;
}

.btn_yellow:hover {
    background-color: #e5a301;
}

.btn_yellow svg {
    fill: #000;
}


.btn_white {
    background-color: #fff;
    border: 1px solid #e5e5e5;
    color: #373737;
}

.btn_white:hover {
    background-color: #f6f9fe;
}

.btn_white svg {
    fill: #373737;
}

.btn_bordered_white {
    background-color: transparent;
    border: 1px solid #fff;
    color: #fff;
}

.btn_bordered_white:hover {
    border-color: #eee;
    background-color: transparent;
}

.btn_bordered_white svg {
    fill: #fff;
}

.btn_bordered_blue {
    border: 1px solid #187ede;
    background: transparent;
    color: #187ede;
}

.btn_bordered_blue:hover {
    border-color: #1260a9;
    color: #1260a9;
}

.btn_bordered_blue svg {
    fill: #2d64d2;
}

.btn_transparent {
    color: #373737;
}

.btn_transparent:hover {
    color: #444;
}

.btn_transparent svg {
    fill: #373737;
}

.btn_pink {
    background-color: #ef5288;
    color: #fff;
}

.btn_pink:hover {
    background-color: #c74773;
}

.btn_pink svg {
    fill: #fff;
}

.btn_wide {
    width: 100%;
}

/* buttons */

.container {
    padding-left: 10px;
    padding-right: 10px;
    margin: 0 auto;
    max-width: 100%;
}

.container-fluid {
    padding-left: 10px;
    padding-right: 10px;
}

/* flickity */
.flickity-enabled {
    position: relative
}

.flickity-enabled:focus {
    outline: 0
}

.flickity-viewport {
    overflow: hidden;
    position: relative;
    height: 100%
}

.flickity-slider {
    position: absolute;
    width: 100%;
    height: 100%
}

.flickity-enabled.is-draggable {
    -webkit-tap-highlight-color: transparent;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none
}

.flickity-enabled.is-draggable .flickity-viewport {
    cursor: move;
    cursor: -webkit-grab;
    cursor: grab;
    width: 100%;
}

.flickity-enabled.is-draggable .flickity-viewport.is-pointer-down {
    cursor: -webkit-grabbing;
    cursor: grabbing
}

.flickity-button {
    position: absolute;
    background: #f5f5f5;
    transition: background-color .3s;
    cursor: pointer;
}

.flickity-button:hover {
    background: #ddd;
}

.flickity-button:disabled {
    display: none;
}

.flickity-prev-next-button {
    display: flex;
    top: 50%;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    transform: translateY(-50%);
}

.flickity-prev-next-button.previous {
    left: 10px
}

.flickity-prev-next-button.next {
    right: 10px
}

.flickity-prev-next-button .flickity-button-icon {
    margin: auto;
    width: 16px;
    height: 16px;
    fill: #1fede0;
    transition: fill .3s;
}

.flickity-page-dots {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 10px;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    padding: 5px 10px;
    border-radius: 10px;
    background: #545454;
}

.flickity-page-dots .dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    background: #ccc;
    border-radius: 50%;
    cursor: pointer
}

.flickity-page-dots .dot.is-selected {
    background-color: #fff;
}

.flickity-page-dots:has(.dot:only-child) {
    display: none;
}

/* flickity */


.overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .5);
    z-index: 10;
}

/* MODALS */

.modal {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 9999;
    max-height: 100vh;
    opacity: 0;
    transition: opacity .3s linear;
}

.modal.active {
    opacity: 1;
}

.modal__overlay {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: rgba(0, 0, 0, .5);
    z-index: 1;
}

.modal__container {
    position: relative;
    display: flex;
    flex-direction: column;
    height: auto;
    max-height: 100%;
    max-width: 100%;
    margin: 0 auto;
    overflow: hidden;
    background: #f5f5f5;
    z-index: 2;
    width: 400px;
}

.modal__container_xs {
    width: 450px;
}

.modal__container_md {
    width: 600px;
}

.modal__container_xl {
    width: 960px;
}

.modal__close {
    position: absolute;
    right: 0;
    top: 0;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    z-index: 1;
}

.modal__close svg {
    height: 24px;
    width: 24px;
    margin: auto;
    fill: #666;
}

.modal__title {
    font-size: 25px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 15px;
}

.modal__header {
    height: 60px;
    border-bottom: 1px solid #eee;
}

.modal__container_xs .modal__header {
    border-bottom: none;
}

.modal__error {
    line-height: 1.4;
}

.modal__content {
    padding-right: 10px;
    margin: 40px 15px 20px 25px;
    max-height: 100%;
    overflow-y: auto;
    box-sizing: border-box;
    padding-bottom: 10px;
}

.modal__content p {
    color: #151515;
    margin-bottom: 15px;
    line-height: 1.3;
}

.modal-cols {
    display: flex;
}

.modal-col--left {
    flex: 1;
}

.modal-col--right {
    width: 50%;
}

.modal-contact {
    margin-bottom: 20px;
    text-align: center;
}

.modal-contact h3 {
    margin-bottom: 15px;
}

.modal-contact a {
    font-size: 22px;
    display: block;
    margin-bottom: 15px;
    font-weight: 700;
}

.modal iframe {
    aspect-ratio: 16 / 9;
}

.modal-buttons {
    display: flex;
    position: sticky;
    bottom: -15px;
    padding: 15px 0;
}

.modal-buttons .btn{
    margin: auto;
    width: 100%;
    max-width: 500px;
}
/* END MODALS */

#loader {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-color: rgba(255, 255, 255, 0.7);
    z-index: 10001;
    opacity: 0;
    pointer-events: none;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s;
}

#loader.active {
    opacity: 1;
    pointer-events: auto;
}

#loader svg {
    width: 40px;
    height: 40px;
}

#loader path {
    fill: #1fede0;
}

/* mobile menu */

.mobile-menu {
    position: fixed;
    right: 0;
    top: 0;
    bottom: 0;
    opacity: 0;
    transition: opacity 0.3s;
    z-index: 99999;
}

.mobile-menu.active {
    opacity: 1;
    left: 0;
}

.mobile-menu__overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, .5);
}

.mobile-menu__container {
    display: flex;
    flex-direction: column;
    right: -300px;
    background: #fff;
    width: 300px;
    position: absolute;
    top: 0;
    bottom: 0;
    padding: 0;
    transition: right 0.3s linear;
    overflow: auto;
}

.mobile-menu__container.active {
    right: 0;
}

.mobile-menu__content {
    display: flex;
    flex-direction: column;
    position: relative;
    overflow-x: auto;
    padding-top: 60px;
    z-index: 1;
    flex: 1;
}

.mobile-menu__top {
    display: flex;
    justify-content: space-between;
    height: 50px;
    z-index: 2;
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
}

.mobile-menu__logo {
    display: flex;
}

.mobile-menu__logo a {
    display: flex;
}

.mobile-menu__logo img {
    width: 50px;
    margin: auto 20px;
}

.mobile-menu__close {
    display: flex;
    cursor: pointer;
    width: 50px;
    height: 50px;
    margin-left: auto;
}

.mobile-menu__close svg {
    width: 24px;
    height: 24px;
    margin: auto;
    fill: #000;
}

.mobile-menu__menu {
    flex: 1;
}

.mobile-menu__bottom {
    z-index: 2;
    padding: 20px;
    border-top: 1px solid #eee;
}

.mobile-menu__bottom .btn {
    width: 100%;
}

.mobile-menu__bottom-title {
    margin-bottom: 5px;
    font-size: 14px;
}


.mobile-menu__bottom-phone a {
    font-weight: 600;
}

.mobile-menu--social ul {
    justify-content: center;
}

.mobile-menu--address {
    font-size: 16px;
    margin-bottom: 15px;
    line-height: 1.3;
}

.mobile-menu__menu-link {
    display: block;
    padding-right: 20px;
    padding-left: 20px;
    color: #000;
    font-weight: 500;
    line-height: 50px;
    font-size: 24px;
    transition: opacity .3s;
    text-align: right;
}

.mobile-menu__lang {
    padding-left: 20px;
}

.mobile-menu__lang ul {
    display: flex;
    gap: 15px;
}

.mobile-menu__lang a, .mobile-menu__lang p {
    display: flex;
    align-items: center;
    font-weight: 600;
    height: 50px;
    color: #000;
}

.mobile-menu__lang a {

}

.mobile-menu__lang p {
    color: #1fede0;
}

/* mobile menu */


.input-checkbox {
    display: flex;
    align-items: center;
    position: relative;
    width: 100%;
    margin-bottom: 12px;
}

.input-checkbox label {
    display: flex;
    align-items: center;
    position: relative;
    width: 100%;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    font-size: 16px;
    transition: background-color .3s;
}

.input-checkbox input {
    opacity: 0;
    cursor: pointer;
    height: 1px;
    width: 1px;
}

.input-checkbox .checkmark {
    display: block;
    position: relative;
    height: 25px;
    width: 25px;
    background-color: #fff;
    border: 1px solid #ddd;
    transition: .3s;
    border-radius: 3px;
    overflow: hidden;
}

.input-checkbox input:checked ~ .checkmark {
    border: 1px solid #1fede0;
    background: #1fede0;
}

.input-checkbox:hover .checkmark {
    border-color: #1fede0;
}

.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

.checkbox_name {
    padding-left: 10px;
}


.input-checkbox .checkmark:after {
    left: 50%;
    top: calc(50% - 2px);
    transform: translate(-50%, -50%) rotate(45deg);
    width: 6px;
    height: 10px;
    border: solid #fff;
    border-width: 0 2.1px 2.1px 0;
    transition: .3s;
}


.input-checkbox input:checked ~ .checkmark:after {
    display: block;
    opacity: 1;
}

.input-checkbox a {
    font-size: 14px;
    font-weight: 500;
    line-height: 22px;
    color: #000;
}


/* Slick Slider */
.slick-loading .slick-list {
    background: #fff url('//cdn.isci.academy/images/loaders/loading.gif') center center no-repeat;
}

.slick-arrow {
    display: flex;
    position: absolute;
    top: 50%;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 0 6px 2px rgba(0, 0, 0, 0.06);
    transform: translate(0, -50%);
    cursor: pointer;
    color: transparent;
    z-index: 1;
    transition: background-color .3s;
}

.slick-arrow:hover {
    background: #f8f8f8;
}

.slick-prev {
    left: 10px;
}

.slick-next {
    right: 10px;
}

.slick-arrow svg {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 24px;
    height: 24px;
    margin: auto;
    fill: #666;
    transition: fill .3s;

}

.slick-arrow:hover svg {
    fill: #1fede0;
}

.slick-slider {
    position: relative;
    display: block;
    box-sizing: border-box;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-touch-callout: none;
    -khtml-user-select: none;
    -ms-touch-action: pan-y;
    touch-action: pan-y;
    -webkit-tap-highlight-color: transparent;
}

.slick-list {
    position: relative;
    display: block;
    overflow: hidden;
    margin: 0;
    padding: 0;
}

.slick-list:focus {
    outline: none;
}

.slick-list.dragging {
    cursor: pointer;
    cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    -o-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

.slick-track {
    position: relative;
    top: 0;
    left: 0;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.slick-track:before,
.slick-track:after {
    display: table;
    content: '';
}

.slick-track:after {
    clear: both;
}

.slick-loading .slick-track {
    visibility: hidden;
}

.slick-slide {
    float: left;
    height: 100%;
    min-height: 1px;
}

.slick-slide img {
    display: block;
}

.slick-slide.slick-loading img {
    display: none;
}

.slick-slide.dragging img {
    pointer-events: none;
}

.slick-loading .slick-slide {
    visibility: hidden;
}

.slick-arrow.slick-hidden {
    display: none;
}

.slick-disabled {
    display: none !important;
}

/* SELECT2 */

span.msg,
span.choose {
    color: #555;
    padding: 5px 0 10px;
    display: inherit
}

.select2-search {
    display: block;
}

.select2-container {
    box-sizing: border-box;
    display: inline-block;
    margin: 0;
    position: relative;
    vertical-align: middle;
    max-width: 100% !important;
}

.modal .select2-container {
    width: 100% !important;
}

.select2-container .select2-selection--single {
    box-sizing: border-box;
    cursor: pointer;
    display: block;
    height: 46px;
    user-select: none;
    -webkit-user-select: none
}

.select2-container .select2-selection--single .select2-selection__rendered {
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: 14px;
}

.select2-container .select2-selection--single .select2-selection__clear {
    position: relative
}

.select2-container[dir="rtl"] .select2-selection--single .select2-selection__rendered {
    padding-right: 8px;
    padding-left: 20px
}

.select2-container .select2-selection--multiple {
    box-sizing: border-box;
    cursor: pointer;
    display: block;
    min-height: 32px;
    user-select: none;
    -webkit-user-select: none
}

.select2-container .select2-selection--multiple .select2-selection__rendered {
    display: inline-block;
    overflow: hidden;
    padding-left: 8px;
    text-overflow: ellipsis;
    white-space: nowrap
}

.select2-container .select2-search--inline {
    float: left
}

.select2-container .select2-search--inline .select2-search__field {
    box-sizing: border-box;
    border: none;
    font-size: 100%;
    margin-top: 5px;
    padding: 0
}

.select2-container .select2-search--inline .select2-search__field::-webkit-search-cancel-button {
    -webkit-appearance: none
}

.select2-dropdown {
    background-color: white;
    border: 1px solid #cbd5e1;
    box-sizing: border-box;
    display: block;
    position: absolute;
    left: -100000px;
    width: 100%;
    z-index: 1051
}

.select2-results {
    display: block
}

.select2-results__options {
    list-style: none;
    margin: 0;
    padding: 0
}

.select2-results__option {
    text-align: left;
    padding: 15px;
    font-size: 14px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.select2-results__option[aria-selected] {
    cursor: pointer
}

.select2-container--open .select2-dropdown {
    left: 0;
}

.select2-container--open .select2-dropdown--above {
    border-bottom: none;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0
}

.select2-container--open .select2-dropdown--below {
    border-top: none;
    border-top-left-radius: 0;
    border-top-right-radius: 0
}

.select2-search--dropdown .select2-search__field {
    width: 100%;
    box-sizing: border-box;
    font-size: 14px;
    border: none;
    border-radius: 0;
    border-bottom: 1px solid #cbd5e1 !important;
}

.select2-search--dropdown .select2-search__field::-webkit-search-cancel-button {
    -webkit-appearance: none
}

.select2-search--dropdown.select2-search--hide {
    display: none
}

.select2-close-mask {
    border: 0;
    margin: 0;
    padding: 0;
    display: block;
    position: fixed;
    left: 0;
    top: 0;
    min-height: 100%;
    min-width: 100%;
    height: auto;
    width: auto;
    opacity: 0;
    z-index: 99;
    background-color: #fff;
    filter: alpha(opacity=0)
}

.select2-hidden-accessible {
    border: 0 !important;
    clip: rect(0 0 0 0) !important;
    -webkit-clip-path: inset(50%) !important;
    clip-path: inset(50%) !important;
    height: 1px !important;
    overflow: hidden !important;
    padding: 0 !important;
    position: absolute !important;
    width: 1px !important;
    white-space: nowrap !important
}

.select2-container--default .select2-selection--single {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 14px;
    height: 55px;
    padding: 15px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.select2-container--default .select2-selection--single .select2-selection__clear {
    cursor: pointer;
    float: right;
    font-weight: bold
}

.select2-container--default .select2-selection--single .select2-selection__placeholder {
    color: #999
}

.select2-container--default .select2-selection--single .select2-selection__arrow svg {
    height: 16px;
    width: 16px;
    cursor: pointer;
    transition: transform .3s ease-in-out;
    transform: rotate(-90deg);
    margin: auto;
}

.select2-container--open .select2-selection__arrow svg {
    transform: rotate(90deg) !important;
}

.select2-container--default .select2-selection--single .select2-selection__arrow b {
    display: block;
    -moz-appearance: none;
    -webkit-appearance: none;
    appearance: none;
    background: url(/image/design/arrow-down.svg) right center no-repeat;
    background-size: 20px;
    width: 20px;
    height: 53px;
    margin-right: -15px;
}

.select2-container--default[dir="rtl"] .select2-selection--single .select2-selection__clear {
    float: left
}


.select2-container--default.select2-container--disabled .select2-selection--single {
    background-color: #eee;
    cursor: not-allowed;
}

.select2-container--default.select2-container--disabled .select2-selection--single .select2-selection__clear {
    display: none
}

.select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b {
    border-color: transparent transparent #888 transparent;
    border-width: 0 4px 5px 4px
}


.select2-container--default .select2-selection--multiple {
    background-color: white;
    border: 1px solid #aaa;
    border-radius: 4px;
    cursor: text
}

.select2-container--default .select2-selection--multiple .select2-selection__rendered {
    box-sizing: border-box;
    list-style: none;
    margin: 0;
    padding: 0 5px;
    width: 100%
}

.select2-container--default .select2-selection--multiple .select2-selection__rendered li {
    list-style: none
}

.select2-container--default .select2-selection--multiple .select2-selection__clear {
    cursor: pointer;
    float: right;
    font-weight: bold;
    margin-top: 5px;
    margin-right: 10px;
    padding: 1px
}

.select2-container--default .select2-selection--multiple .select2-selection__choice {
    background-color: #e4e4e4;
    border: 1px solid #aaa;
    border-radius: 4px;
    cursor: default;
    float: left;
    margin-right: 5px;
    margin-top: 5px;
    padding: 0 5px
}

.select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
    color: #999;
    cursor: pointer;
    display: inline-block;
    font-weight: bold;
    margin-right: 2px
}

.select2-container--default .select2-selection--multiple .select2-selection__choice__remove:hover {
    color: #333
}

.select2-container--default[dir="rtl"] .select2-selection--multiple .select2-selection__choice, .select2-container--default[dir="rtl"] .select2-selection--multiple .select2-search--inline {
    float: right
}

.select2-container--default[dir="rtl"] .select2-selection--multiple .select2-selection__choice {
    margin-left: 5px;
    margin-right: auto
}

.select2-container--default[dir="rtl"] .select2-selection--multiple .select2-selection__choice__remove {
    margin-left: 2px;
    margin-right: auto
}

.select2-container--default.select2-container--focus .select2-selection--multiple {
    border: solid black 1px;
    outline: 0
}

.select2-container--default.select2-container--disabled .select2-selection--multiple {
    background-color: #eee;
    cursor: default
}

.select2-container--default.select2-container--disabled .select2-selection__choice__remove {
    display: none
}

.select2-container--default.select2-container--open.select2-container--above .select2-selection--single, .select2-container--default.select2-container--open.select2-container--above .select2-selection--multiple {
    border-top-left-radius: 0;
    border-top-right-radius: 0
}

.select2-container--default.select2-container--open.select2-container--below .select2-selection--single, .select2-container--default.select2-container--open.select2-container--below .select2-selection--multiple {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0
}

.select2-container--default .select2-search--inline .select2-search__field {
    background: transparent;
    border: none;
    outline: 0;
    box-shadow: none;
    -webkit-appearance: textfield
}

.select2-container--default .select2-results > .select2-results__options {
    max-height: 200px;
    overflow-y: auto
}

.select2-container--default .select2-results__option[role=group] {
    padding: 0
}

.select2-container--default .select2-results__option[aria-disabled=true] {
    color: #999
}

.select2-container--default .select2-results__option[aria-selected=true] {
    background-color: #ddd
}

.select2-container--default .select2-results__option .select2-results__option {
    padding-left: 1em
}

.select2-container--default .select2-results__option .select2-results__option .select2-results__group {
    padding-left: 0
}

.select2-container--default .select2-results__option .select2-results__option .select2-results__option {
    margin-left: -1em;
    padding-left: 2em
}

.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
    margin-left: -2em;
    padding-left: 3em
}

.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
    margin-left: -3em;
    padding-left: 4em
}

.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
    margin-left: -4em;
    padding-left: 5em
}

.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
    margin-left: -5em;
    padding-left: 6em
}

.select2-container--default .select2-results__option--highlighted[aria-selected] {
    background-color: #5897fb;
    color: white
}

.select2-container--default .select2-results__group {
    cursor: default;
    display: block;
    padding: 6px
}

/* SELECT2 END */

/* INPUTS */

.input-wrap__group {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 12px;
    align-items: flex-end;
}

.input-wrap__group-3 {
    gap: 10px;
}

.input-wrap__group-2 {
    gap: 10px;
}

.input-wrap__group:last-child {
    margin-bottom: 0;
}

.input-wrap__group > div {
    margin-bottom: 0;
}

.input-wrap__group-2 > div {
    width: 100%
}

.input-wrap__group-3 > div {
    width: 100%;
}

.input-wrap__group .button-wrap .btn {
    width: 100%;
}

.input-wrap {
    position: relative;
    margin-bottom: 15px;
}

.input-wrap input {
    display: block;
    background: #fff;
    border: 1px solid #ddd;
    font-size: 16px;
    padding: 20px 15px 10px 15px;
    width: 100%;
    height: 55px;
    border-radius: 5px;
    outline: none;
    color: #000;
    line-height: 1.5;
    transition: border-color .3s;
}

.input-wrap input:disabled {
    background: #eee;
}

.input-wrap input:disabled:hover {
    cursor: not-allowed;
}

.input-wrap input::placeholder {
    opacity: 0;
}

.input-wrap label {
    position: absolute;
    display: flex;
    align-items: center;
    top: 1px;
    left: 10px;
    line-height: 54px;
    padding: 0 5px;
    color: #444;
    background: transparent;
    transition: top .3s, font-size .3s, line-height .3s, background-color 0.3s;
    cursor: text;
    font-size: 15px;
}

.input-wrap input:focus {
    border-color: #1fede0;
}

.input-wrap input:focus + label, .input-wrap input:not(:placeholder-shown) + label {
    display: inline-block;
    line-height: 14px;
    top: 7px;
    font-size: 12px;
    color: #9d9d9d;
}

.input-wrap_small input {
    height: 40px;
    font-size: 14px;
    padding: 10px 15px;
}

.input-wrap_small label {
    font-size: 14px;
    line-height: 39px;
}

.input-wrap_small input:focus + label, .input-wrap_small input:not(:placeholder-shown) + label {
    font-size: 12px;
    top: -7px;
}

.input-wrap input:focus + label {
    color: #1fede0;
}

.input-wrap.error-wrap input {
    border-color: red;
}

.input-wrap.error-wrap input:focus + label, .input-wrap.error-wrap input:not(:placeholder-shown) + label {
    color: red;
}

.input-wrap__text {
    font-size: 14px;
    color: #666;
    text-align: left;
    line-height: 1.3;
}

.error-wrap__error {
    display: none;
}

.error-wrap .error-wrap__error {
    display: block;
    font-size: 14px;
    margin-top: 5px;
    color: red;
}

.select-wrap {
    position: relative;
    margin-bottom: 15px;
}

.select-wrap select {
    display: block;
    background: #fff;
    border: 1px solid #ddd;
    font-size: 15px;
    padding: 10px 15px;
    width: 100%;
    height: 55px;
    border-radius: 5px;
    outline: none;
    color: #444;
    line-height: 1.5;
    transition: border-color .3s;
}

.select-wrap.error-wrap select {
    border-color: red;
}

.select-wrap.error-wrap .error-wrap__error {
    font-size: 14px;
    margin-top: 5px;
    color: red;
}

.select-wrap_small select {
    height: 40px;
    font-size: 14px;
    padding: 10px;
}

.textarea-wrap {
    position: relative;
    margin-bottom: 15px;
}

.textarea-wrap textarea {
    display: block;
    background: #fff;
    border: 1px solid #ddd;
    font-size: 16px;
    padding: 20px 15px 10px 15px;
    width: 100%;
    height: 110px;
    max-height: 200px;
    border-radius: 5px;
    outline: none;
    color: #000;
    line-height: 20px;
    transition: border-color .3s;
    resize: none;
}

.textarea-wrap textarea:focus {
    border-color: #1fede0;
}

.textarea-wrap textarea::placeholder {
    opacity: 0;
}


.textarea-wrap label {
    position: absolute;
    display: flex;
    align-items: center;
    top: 1px;
    left: 10px;
    line-height: 51px;
    padding: 0 5px;
    color: #444;
    background: transparent;
    transition: top .3s, font-size .3s, line-height .3s, background-color 0.3s;
    cursor: text;
}

.textarea-wrap textarea:focus + label, .textarea-wrap textarea:not(:placeholder-shown) + label {
    display: inline-block;
    line-height: 14px;
    top: 7px;
    font-size: 12px;
    color: #1fede0;
}

.textarea-wrap.error-wrap textarea {
    border-color: red;
}

.textarea-wrap.error-wrap .error-wrap__error {
    font-size: 14px;
    margin-top: 5px;
    color: red;
}

.textarea-wrap_small textarea {
    height: 40px;
    font-size: 14px;
    padding: 10px;
}


.form-response, .form-success, .form-error {
    margin-bottom: 15px;
    font-size: 15px;
    line-height: 1.3;
}

.form-success {
    color: green;
}

.form-error {
    color: red;
}

/* INPUTS */


.social ul {
    display: flex;
    align-items: center;
    gap: 20px;
}

.social ul li a {
    display: flex;
}

.social svg {
    fill: #1fede0;
    width: 20px;
    height: 20px;
    transition: fill .3s;
}

.social a:hover svg {
    fill: #1fede0;
}

/* header */

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9;
    background: #2a2a2a;
    transition: background-color .3s;
}

.header-transparent .header {
    background: transparent;
    border-bottom: 1px solid #6c6b6b;
}

.header .container {
    padding-right: 0;
}

.header .inner {
    display: flex;
    align-items: center;
    height: 50px;
}

.header-logo {
    margin-top: 5px;
}

.header-logo img {
    height: 40px;
    margin: auto 0;
}

.header-menu {
    display: none;
}

.header-phone {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 100%;
    margin-left: auto;
}

.header-phone a {
    display: flex;
    align-items: flex-end;
    color: #fff;
}

.header-phone svg {
    height: 24px;
    width: 24px;
    fill: #1fede0;
}

.header-phone--main {
    display: none;
    flex: 1;
    margin-left: 5px;
}

.header-phone--title {
    font-size: 12px;
    margin-bottom: 3px;
}

.header-phone--value {
    font-size: 16px;
    font-weight: 600;
}

.header-contact {
    display: none;
    margin-left: 40px;
}

.header-lang {
    margin-left: 27px;
    margin-left: auto;
}

.header-lang ul {
    display: flex;
    gap: 15px;
}

.header-lang a {
    color: #fff;
    font-weight: 600;
}

.header-lang a:hover {
    color: #1fede0;
}

.header-lang p {
    font-weight: 600;
    color: #1fede0;
}

.header-burger {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    flex-direction: column;
    gap: 6px;
    height: 50px;
    width: 50px;
    cursor: pointer;
    padding-right: 10px;
    margin-left: 20px;
}

.header-burger span {
    display: block;
    height: 2px;
    background: #fff;
    width: 30px;
}

.header-burger span:nth-child(2) {
    width: 20px;
}

/* header */

/* footer */
.footer {
    padding: 50px 0;
    background: #2a2a2a;
}

.footer .inner {
    display: flex;
    flex-direction: column;
}

.footer-left {
    order: 2;
    text-align: center;
}

.footer-right {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
    order: 1;
    margin-bottom: 40px;
}

.footer-logo {
    height: 35px;
    margin-bottom: 10px;
}

.footer-copy {
    font-size: 12px;
    color: #bbb;
    margin-bottom: 20px;
}

.footer-social ul {
    justify-content: flex-end;
}

.footer-social {
    margin-bottom: 20px;
}

.footer-right--bottom {
    display: flex;
    align-items: flex-start;
    gap: 80px;
    margin-top: auto;
}

.footer-menu a {
    color: #fff;
    font-weight: 600;
}

.footer-menu ul {
    display: flex;
    justify-content: center;
    gap: 30px;
}

.footer-contacts {
    margin-left: auto;
}

.footer-contacts ul {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
    justify-content: center;
}

.footer-contacts li {
    text-align: right;
}

.footer-contact--title {
    color: #bbb;
    margin-bottom: 10px;
    font-size: 15px;
    text-align: center;
}

.footer-contact--item a {
    font-weight: 600;
    color: #fff;
    font-size: 18px;
}


/* footer */

/* Home */
.section-title {
    font-size: 30px;
    line-height: 1.2;
    font-weight: 600;
    margin-bottom: 15px;
}

.section-sub-title {
    line-height: 1.5;
    margin-bottom: 20px;
    max-width: 450px;
}

.section-sub-title--center {
    margin-left: auto;
    margin-right: auto;
}

.home-banner {
    position: relative;
    color: #fff;
}

.home-banner .inner {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 800px;
    min-height: 600px;
    max-height: 80vh;
}

.home-banner h1 {
    font-size: 40px;
    margin-bottom: 30px;
    margin-top: auto;
    text-align: center;
}

.home-banner h2 {
    font-weight: 300;
    margin-bottom: 30px;
    text-align: center;
    line-height: 1.2;
}

.home-banner .btn {
    width: 240px;
}

.home-banner--bg {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.home-banner--bg:before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background: rgb(0 0 0 / 60%);
}

.home-banner--bg video {
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center;
}

.home-banner--content {
    position: relative;
    z-index: 2;
    padding-top: 80px;
}

.home-stats {
    position: relative;
    margin-top: auto;
    transform: translateY(50%);
    color: #fff;
    background: #333;
    border-radius: 20px;
    min-height: 160px;
    width: 100%;
    z-index: 2;
}

.home-stats.animation-down {
    transform: translateY(calc(50% - 50px));
}

.home-stats.animation-down.animation-active {
    transform: translateY(50%);
}

.home-stats ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.home-stats--item {
    width: calc(50% - 1px);
    padding: 20px 10px;
}

.home-stats--divider {
    border-right: 1px solid #666;
}

.home-stats ul li:nth-child(4) {
    display: none;
}

.home-stats ul li:nth-child(1) {
    border-bottom: 1px solid #666;
}

.home-stats ul li:nth-child(3) {
    border-bottom: 1px solid #666;
}

.home-stats--value {
    font-size: 40px;
    margin-bottom: 5px;
    color: #1fede0;
}

.home-courses {
    padding-top: 140px;
    padding-bottom: 30px;
}

.home-courses .inner {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.home-courses--left {
    text-align: center;
}

.course-card {
    width: 100%;
}

.course-card:not(:last-child) {
    margin-bottom: 20px;
}

.course-card a {
    display: flex;
    flex-direction: column;
    gap: 25px;
    padding: 15px;
    background: #fff;
    border-radius: 15px;
}

.course-card--image {
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 10px;
    overflow: hidden;
}

.course-card--image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.course-card--info {
    display: flex;
    flex-direction: column;
    flex: 1;
    order: 2;
}

.course-card--title {
    font-size: 26px;
    margin-bottom: 20px;
    font-weight: 600;
}

.course-card--buttons {

}

.course-card--button {
    display: flex;
    align-items: center;
    gap: 20px;
    font-weight: 600;
}

.course-card--button svg {
    fill: #00c3b6;
}

.course-card--description {
    font-size: 15px;
    line-height: 1.4;
    font-weight: 400;
    margin-bottom: 20px;
}
.course-card--data-title{
    margin-bottom: 15px;
}
.course-card--data-location{
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 15px;
    color: #00c3b6;

}
.course-card--data-location svg {
    width: 20px;
    height: 20px;
}
.course-card--data {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 15px;
}

.course-card--data span {
    display: flex;
    align-items: baseline;
    gap: 5px;
}

.course-card--data span span {
    color: #00c3b6;
}

.home-about {
    position: relative;
    padding: 30px 0;
    background: #fff;
    color: #000;
}

.about-founder {
    background: #fff;
    padding: 40px 0;
}

.about-founder--cols {
    position: relative;
    border-radius: 30px;
    background: #d6f8f6;
    overflow: hidden;
}

.about-founder--image {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
}

.about-founder--image img {
    filter: drop-shadow(0 0 12px #000);
}

.about-founder--info {
    padding: 400px 10px 10px;
    position: relative;
}

.about-founder--description {
    padding: 15px;
    background: #fff;
    border-radius: 15px;
}

.about-founder--info p {
    line-height: 1.5;
    font-size: 16px;
}

.about-values p {
    line-height: 1.5;
}

.about-values p:not(:last-child) {
    margin-bottom: 20px;
}

.about-founder--info p:not(:last-child) {
    margin-bottom: 20px;
}

.home-about .inner {
    display: flex;
    flex-direction: column;
}

.home-about--left {
    margin-bottom: 20px;
}

.home-about--description {
    margin-bottom: 30px;
}

.home-about--description p {
    line-height: 1.5;
    margin-bottom: 20px;
}

.home-about--card {
    display: inline-block;
    padding: 20px;
    border-radius: 15px;
    background: #333;
    color: #fff;
}

.home-about--card:not(:last-child) {
    margin-bottom: 15px;
}

.home-about--button {
    text-align: center;
}

.home-about--card-title {
    display: flex;
    align-items: center;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
}

.home-about--card-title span {
    font-size: 30px;
    margin-right: 5px;
}

.home-about--card-description {
    line-height: 1.4;
}

.values {
    padding-top: 40px;
    padding-bottom: 40px;
    background: #d6f8f6;
}

.values--list {
    display: flex;
    flex-wrap: wrap;
    position: relative;
}

.values--list:before {
    content: '';
    display: block;
    position: absolute;
    height: 100%;
    width: 1px;
    background: #d6f8f6;
    right: 0;
}

.values--list:after {
    content: '';
    display: block;
    position: absolute;
    height: 1px;
    width: 100%;
    background: #d6f8f6;
    bottom: 0;
}

.value {
    width: 100%;
    padding: 15px 10px;
    border-bottom: 1px solid #000;
}

.value--icon {
    font-size: 60px;
    margin-bottom: 15px;
}

.value--name {
    font-weight: 600;
    font-size: 22px;
    margin-bottom: 15px;
    line-height: 1.3;
}

.value--description {
    line-height: 1.5;
}

.home-testimonials {
    padding: 40px 0;
}

.testimonials {
    position: relative;
    width: 100%;
    overflow: hidden;
    margin-left: -5px;
    margin-right: -5px;
}

.testimonial {
    height: 300px;
    width: 350px;
}

.testimonial-inner {
    display: flex;
    flex-direction: column;
    background-color: #fff;
    box-shadow: 0 1px 2px rgb(0 0 0 / 20%);
    border-radius: 4px;
    height: 100%;
    margin: 0 5px;
}

.testimonial-header {
    display: flex;
    align-items: center;
    padding: 15px 20px;
    border-bottom: 1px solid rgba(11, 31, 53, .1);
    justify-content: space-between;
}

.testimonial-left {
    display: flex;
    align-items: center;
}

.testimonial-right {
    color: rgba(11, 31, 53, .3);
    font-size: 13px;
}

.testimonial-left--name {
    font-weight: 600;
    color: #0b1f35;
    font-size: 14px;
    margin-right: 10px;
    line-height: 17px;
}

.testimonial-body {
    color: #0b1f35;
    font-size: 14px;
    padding: 15px 20px;
    line-height: 1.5;
    flex: 1;
}

.testimonial-course--name {
    font-size: 14px;
    color: #1fede0;
    font-weight: 600;
}

.testimonial-course--name span {
    font-weight: 400;
    color: #000;
}

.testimonial-footer {
    padding: 15px 20px;
    border-top: 1px solid #eee;
}

.home-partners {
    padding: 40px 0;
    background: #fff;
}

.home-partners .section-sub-title {
    margin-bottom: 0;
}

.home-partners--list {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
}

.home-partner {
    width: calc(50% - 8px);
}

.home-partners--left {
    margin-bottom: 15px;
}

.home-partner--image {
    display: flex;
    padding: 25px;
    border: 1px solid #eee;
    background: #f9f9f9;
    border-radius: 10px;
}

.home-partner img {
    margin: auto;
    transition: filter .3s, transform .3s;
    max-height: 70px;
}

.home-partner:hover img {
    -webkit-filter: grayscale(100%);
    filter: grayscale(100%);
    -webkit-transform: scale(.9) translateZ(0);
    transform: scale(.9) translateZ(0);
}

/* Home */

.contact-section {
    padding: 80px 0;
    text-align: center;
    background: #1fede0;
}

.contact-section h4 {
    font-weight: 400;
    font-size: 16px;
    margin-bottom: 20px;
}

.contact-section--phone {
    margin: 40px 0;
    font-size: 40px;
    font-weight: 500;
}

.faq {
    padding: 40px 0;
}

.faq-left {
    margin-bottom: 15px;
}

.accordion {
    padding: 15px;
    background: #fff;
    border-radius: 15px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.accordion:not(:last-child) {
    margin-bottom: 15px;
}

.accordion--title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    font-size: 20px;
    line-height: 1.2;
    cursor: pointer;
    margin: 10px 0;
}

.accordion--title span {
    flex: 1;
}

.accordion--title svg {
    margin-left: 30px;
    width: 30px;
    height: 30px;
    fill: #1fede0;
}

.accordion.active svg {
    transform: rotate(45deg);
}

.accordion--description {
    line-height: 1.3;
    font-size: 17px;
    height: 0;
    overflow: hidden;
}

.accordion--description h4 {
    margin-bottom: 15px;
}

.accordion--description h4 span {
    font-weight: 400;
}

.accordion.active .accordion--description {
    height: unset;
}

.accordion--description:before {
    content: '';
    display: block;
    height: 15px;
    width: 100%;
}

.faq-left--description {
    margin-bottom: 30px;
}

.faq-left--description p {
    line-height: 1.5;
    margin-bottom: 20px;
}

.not-found {
    padding: 80px 0;
    background: #fff;
    flex: 1;
}

.not-found h1 {
    font-size: 50px;
    margin-bottom: 15px;
}

.not-found h2 {
    margin-bottom: 15px;
}

.courses {
    flex: 1;
    padding: 40px 0;
}

.courses-contact {
    padding: 40px 0;
    background: #1fede0;
}


.courses-contact h2 {
    margin-bottom: 15px;
}

.course {
    flex: 1;
    min-height: 300px;
}


.course-banner {
    position: relative;
    padding-bottom: 20px;
}

.course-banner h1 {
    font-size: 26px;
    margin-bottom: 30px;
    line-height: 1.3;
    color: #fff;
}

.course-banner h2 {
    font-weight: 300;
    margin-bottom: 30px;
    line-height: 1.2;
    color: #fff;
}

.course-banner--bg {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.course-banner--bg:before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background: rgb(0 0 0 / 60%);
    z-index: 2;
}

.course-banner--bg video, .course-banner--bg img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center;
}

.course-banner--content {
    position: relative;
    z-index: 2;
    padding-top: 70px;
}

.course-banner--info {
    padding: 30px 0;
}
.course-main {
    padding: 40px 0;
    background: #1fede0;
}
.course-main--data{
    font-size: 22px;
    font-weight: 500;
    line-height: 1.2;
}
.course-main--data-title{
    margin-bottom: 10px;
}
.course-menu {
    display: none;
    position: sticky;
    top: 70px;
    z-index: 4;
    background: #fff;
}

.course-menu .inner {
    padding: 15px 0;
}

.course-menu ul {
    display: flex;
    gap: 30px;

}

.course-menu li {
    cursor: pointer;
    transition: color .3s;
}

.course-menu li:hover {
    color: #00c3b6;
}

.course-banner--cols {
    max-width: 600px;
    margin: 0 auto;
}

.course-request--form {
    max-width: 100%;
    padding: 15px;
    background: #fff;
    border-radius: 15px;
}

.course-banner--start {
    width: 200px;
    margin-bottom: 30px;
}

.course-banner--type {
    margin-bottom: 10px;
    color: #00c3b6;
}

.course-banner--author {
    margin-bottom: 30px;
    color: #fff;
}

.course-banner--author b {
    color: #00c3b6;
}

.course-banner--data {
    display: flex;
    align-items: center;
    gap: 10px;
}

.course-banner--data span {
    display: flex;
    align-items: baseline;
    gap: 5px;
    color: #fff;

}

.course-banner--data span span {
    font-size: 28px;
    color: #00c3b6;
    font-weight: 700;
}

.course-request--form h3 {
    color: #000;
    font-size: 22px;
    margin-bottom: 15px;
}
.course-request--form-prices p {
    margin-bottom: 10px;
}

.course-request--form-price {
    font-size: 30px;
    font-weight: 800;
    margin-bottom: 20px;
}

.course-request--form-price span {
    font-size: 16px;
    font-weight: 400;
    margin-right: 5px;
}
.course-package--prices p {
    margin-bottom: 10px;
}

.course-package--price {
    font-size: 30px;
    font-weight: 800;
    margin-bottom: 20px;
}

.course-package--price-old {
    font-size: 18px;
    font-weight: 400;
    margin-right: 5px;

}
.course-author {
    background: #060709;
    color: #fff;
    position: relative;
}


.course-author--info {
    position: relative;
    padding: 40px 0;
    z-index: 1;
}

.course-author--info .section-sub-title {
    margin-bottom: 10px;
}

.course-author--info .section-title {
    color: #1fede0;
    margin-bottom: 40px;
}

.course-author--image {
    display: none;
}

.course-author--image img {
    object-fit: cover;
    object-position: center;
    width: 100%;
    height: 100%;
}

.course-author--achievement {
    margin-bottom: 20px;
}

.course-author--achievements {
    margin-bottom: 40px;
}

.course-author--achievement-name {
    font-size: 14px;
}

.course-author--achievement-val {
    color: #1fede0;
    font-weight: 800;
    font-size: 18px;
    margin-bottom: 5px;
}

.course-author--about {
    line-height: 1.5;
    margin-bottom: 20px;
    font-size: 18px;
}

.course-author--more {
    display: none;
}

.course-about {
    padding: 40px 0;
    background: #d6f8f6;
    margin-bottom: 40px;
}

.course-about--left {
    margin-bottom: 20px;
}

.course-about--left .section-sub-title {
    font-weight: 700;
}

.course-about--right {
    flex: 1;
}

.course-about--right p {
    line-height: 1.5;
    font-size: 18px;
}

.course-about--right p:not(:last-child) {
    margin-bottom: 20px;
}

.course-about--video {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
}

.course-about--video-bg {
    display: flex;
    position: relative;
    z-index: 1;
}

.course-about--video-bg:before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    z-index: 1;
    background: #0000003d;
}

.course-about--video-bg img, .course-about--video-bg video {
    width: 100%;
    aspect-ratio: 16/9;
}

.course-about--video-btn {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    z-index: 2;
    display: flex;
    cursor: pointer;
}

.course-about--video-btn svg {
    margin: auto;
    width: 66px;
    height: 42px;
    fill: #DF3C3C;
    transition: transform .3s;
}

.course-about--video-btn svg path {
    background: #fff;
}

.course-about--video-btn:hover svg {
    transform: scale(1.2);
}

.course-weeks{
    background-color: #f5f5f5;
    margin-bottom: 15px;
}
.course-week:not(:last-child) {
    margin-bottom: 15px;
}

.course-week--content {
    flex: 1;
}

.course-week--title {
    margin-top: 25px;
}

.course-week--title h3 {
    font-size: 26px;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 10px;
}

.course-week--title p {
    line-height: 1.5;
}

.course-week .accordion--title {
    position: relative;
    flex-wrap: wrap;
    gap: 10px 0;
}

.course-week .accordion--title span {
    min-width: 300px;
    padding-right: 30px;
}

.course-week .accordion--title svg {
    position: absolute;
    right: 0;
    top: 0;
}

.course-week--content .accordion--title .btn {
    width: 150px;
    margin-right: 30px;
}


.course-module--lessons {
    margin-bottom: 20px;
}

.course-module--lessons li {
    margin-bottom: 10px;
}


.course-request {
    background: #fff;
    padding: 40px 0;
}

.course-program .inner {
    padding: 15px;
    border-radius: 20px;
    background: #1fede0;
}

.course-request--price-title {
    margin-bottom: 10px;
}

.course-request--price {
    font-size: 30px;
    font-weight: 800;
    margin-bottom: 20px;
}

.course-request--data {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.course-request--data span {
    display: flex;
    align-items: baseline;
    gap: 5px;
    color: #000;
}

.course-request--data span span {
    font-size: 28px;
    font-weight: 700;
}

.seo {
    padding: 40px 0;
    line-height: 1.5;
}

.seo p {
    margin-bottom: 20px;
}

.seo h3 {
    margin-bottom: 20px;
}

.seo h4 {
    margin-bottom: 20px;
}
.course-values{
    margin-top: 40px;
}

.course-values .section-title {
    text-align: center;
}

.course-values .section-sub-title {
    text-align: center;
    max-width: 600px;
}

.value {
    width: 100%;
    text-align: center;
}

.course-values .value:last-child {
    border-right: unset;
}

.about-main {
    background: #fff;
    padding-top: 40px;
    padding-bottom: 40px;
}

.about-main h1 {
    font-size: 38px;
    margin-bottom: 20px;
}

.about-main p {
    line-height: 1.5;

}

.about-main p:not(:last-child) {
    margin-bottom: 20px;
}

.about-founder--description-btn {
    display: flex;
    align-items: center;
    padding-top: 10px;
    font-weight: 700;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    font-size: 17px;
}

.about-founder--description-btn svg {
    height: 22px;
    width: 22px;
}

.about-founder--description-btn.active svg {
    transform: rotate(-180deg);
}

.about-founder--less {
    display: none;
}

.about-founder--description-btn.active .about-founder--more {
    display: none;
}

.about-founder--description-btn.active .about-founder--less {
    display: block;
}

.about-founder--description:not(.active) p:nth-child(3) {
    display: none;
}

.about-founder--description:not(.active) p:nth-child(4) {
    display: none;
}

.contact {
    padding: 40px 0;
}

.contact h1 {
    font-size: 38px;
    margin-bottom: 20px;
}

.contact h3 {
    font-size: 20px;
    margin-bottom: 20px;
    line-height: 1.3;
}

.contact-cols {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-contacts {
    background: #fff;
    padding: 20px;
    border-radius: 20px;
}

.contact-contacts--item {
    margin-top: 20px;
}

.contact-contacts--item a {
    text-decoration: underline;
}

.contact-contacts--item-title {
    font-size: 16px;
    margin-bottom: 20px;
    color: #869199;
}

.contact-contacts--item-value {
    font-size: 18px;
    font-weight: 500;
}

.contact-social svg {
    fill: #000;
}

.contact-contacts--locations {
    display: flex;
    flex-wrap: wrap;
}

.contact-contacts--location {
    margin-bottom: 50px;
}

.contact-contacts--location-name {
    font-weight: 600;
    text-transform: uppercase;
}

.contact-form {
    padding: 20px;
    background: #d6f8f6;
    border-radius: 20px;
}

.contact-form input, .contact-form textarea {
    border-color: transparent;
}



.course-packages--list {
    display: flex;
    flex-wrap: wrap;
    gap: 20px 0;
}
.course-package{
    width: 100%;
}
.course-package--inner {
    display: flex;
    flex-direction: column;
    background-color: #fff;
    border-radius: 15px;
    height: 100%;
    padding: 15px;
}

.course-package--title{
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.2;
}
.course-package--description{
    margin-bottom: 15px;
    line-height: 1.3;
    flex: 1;
}
.course-package--data {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
}

.course-package--data span {
    display: flex;
    align-items: baseline;
    gap: 5px;

}

.course-package--data span span {
    font-size: 22px;
    color: #00c3b6;
}
.course-package--button {
    display: flex;
    gap: 5px;
}

.course-package--button .btn {
    width: calc(50% - 3px);
    text-align: center;
}

.course-author--cols {
    display: flex;
}
.course-author--info-image{
    height: 300px;
    text-align: center;
    margin-bottom: 20px;
    margin-top: -20px;
}