:root {
    --black: #03101E;
    --bg-black: rgba(3, 16, 30, .9);
    --orange: #F1A107;
    --bg-gray: #F9F9F9;
    --blue: #016FB9;
}

.container-fluid {
    max-width: 1920px;
}

.bg-black {
    background: var(--black) !important;
    color: #fff;
}

.bg-dark {
    background: var(--bg-black) !important;
    color: #fff;
}

.bg-grey {
    background: var(--bg-gray) !important;
}

.decor-bg {
    background: #ffffff url("../img/decor.png") no-repeat center top/contain;
}

.course.decor-bg {
    background-position: center bottom;
}

.header {
    position: fixed;
    width: 100%;
    z-index: 9;
}

.lines-right .item-slider:after,
.lines .item-slider:after {
    content: '';
    background: url("/web/img/lines.png") no-repeat bottom left/contain;
    position: absolute;
    left: 0;
    bottom: 0;
    display: block;
    width: 60%;
    height: 50%;
    z-index: 2;
}

.lines-right .item-slider:after {
    left: auto;
    right: 0;
    background-position-x: right;
    height: 80%;
}

.dropdown-menu {
    padding: 0;
    margin: 0;
    border-radius: 0;
}

.navbar-nav .nav-link,
.dropdown-item {
    padding: .75rem 1.5rem;
    font-family: "DM Sans", sans-serif;
    font-style: normal;
    font-weight: normal;
    font-size: clamp(14px, 1.1vw, 16px);
    line-height: 112%;
}

.dropdown-item:not(:last-child) {
    border-bottom: 1px solid #CCCBCB;
}

.dropdown-toggle::after {
    content: '';
    border: none;
    background: url("/web/img/caret.svg") no-repeat center/contain;
    width: 10px;
    height: 6px;
    position: relative;
    top: 2px;
    transition: .4s;
}

.dropdown:hover .dropdown-toggle::after {
    background: url("/web/img/caret-orange.svg") no-repeat center/contain;
    transform: rotate(180deg);
}

.header .container {
    max-width: 95%;
}

.header .navbar-collapse {
    justify-content: flex-end;
}

.fa-key:before {
    content: "";
    background: url(/web/img/key.svg) no-repeat center;
    width: 20px;
    height: 20px;
    display: inline-block;
    margin-right: 5px;
}

.navbar-nav > li > a.login {
    padding: 10px 40px;
    min-width: 150px;
    text-align: center;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--orange);
    border: 1.5px solid #FFFFFF;
    box-sizing: border-box;
    border-radius: 5px;
    color: #fff;
}

h1, .h1 {
    font-weight: 800;
    font-size: clamp(35px, 3.9vw, 60px);
    line-height: 115%;
    text-align: left;
    text-transform: uppercase;
    margin-bottom: 15px;
    overflow: hidden;
    position: relative;
    display: inline-block;
}

h1 > span,
h2 > span {
    display: inline-block;
    position: relative;
    font-weight: bold;
}

.footer_heading h2 > span:before,
h1 > span::before {
    content: '';
    position: absolute;
    z-index: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    opacity: 0.25;
    transform-origin: 0% 50%;
    transition: height 0.5s;
    transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1);
    background: #fff;
}

h1:hover > span::before {
    height: 100%;
}

.footer_heading h2 {
    font-weight: 300;
    line-height: 125%;
}

.description {
    font-weight: 500;
    font-size: clamp(14px, 1.1vw, 17px);
    line-height: 176%;
}

.desc_h1 {
    font-weight: 500;
    font-size: clamp(20px, 1.2vw, 25px);
    line-height: 144%;
    display: block;
    margin: 25px 0;
}

.desc_line {
    position: relative;
    padding-left: 20px;
    display: inline-block;
}

.desc_line p:last-child {
    margin-bottom: 0;
}

h2, .h2 {
    text-transform: uppercase;
    font-size: clamp(35px, 3vw, 60px);
    line-height: 117%;
    font-weight: 300;
}

h2 strong, .h2 strong {
    font-weight: bold;
}

.desc_line:before {
    content: '';
    background: var(--orange);
    position: absolute;
    height: 0;
    left: 0;
    bottom: 0;
    width: 2px;
    display: inline-block;
    transition: height 1.5s ease;
}

.desc_line.is-visible:before {
    height: 100%;
}

.item-slider_layer {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: rgba(3, 16, 30, 0.6);
    z-index: 2;
}

.button {
    background: var(--orange);
    border-radius: 10px;
    font-style: normal;
    font-weight: 800;
    font-size: clamp(14px, 1.2vw, 20px);
    line-height: 1;
    text-align: center;
    text-transform: uppercase;
    color: #FFFFFF;
    display: inline-block;
    padding: 17px 20px;
    min-width: 250px;
    position: relative;
    overflow: hidden;
    transition: cubic-bezier(.17, .67, .83, .67) .5s;
    border: none;
    vertical-align: middle;
    z-index: 3;
}

.contact-page,
.button:hover {
    color: #fff;
}

.button svg {
    width: 31px;
    margin-left: 5px;
    transition: .5s;
}

.button:hover svg {
    transform: translateX(5px);
}

.bg-black .button.button-bordered {
    border: 2px solid #FFFFFF;
    background: var(--black);
}

.box-with-border {
    background: var(--bg-gray);
    border: 1px solid #E5E5E5;
    box-sizing: border-box;
    box-shadow: 0px 0px 40px rgba(0, 0, 0, 0.05);
    border-radius: 10px;
    padding: 20px 25px;
    height: 100%;
    transition: .4s;
    overflow: hidden;
}

.package {
    max-width: 380px;
    height: auto;
    padding: 0;
    padding-bottom: 50px;
    margin: 0 auto;
}

.package_box {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform .5s;
}

.package_box:hover {
    transform: translateY(-7px);
}

.box-with-border:hover {
    box-shadow: 0px 0px 20px rgba(77, 98, 129, 0.15);
}

.packages .row {
    justify-content: center;
}

.packages .row .col-md-6{
    padding-left: 0.5rem;
    padding-right: 0.5rem;
}

.head_package {
    background: #fff;
    border-top: 1px solid #E6E6E6;
    box-sizing: border-box;
    border-radius: 10px 10px 0 0;
    padding: 0 20px;
}

.title_package {
    font-weight: bold;
    font-size: clamp(1.2rem, 2vw, 2rem);
    line-height: 120%;
    text-align: center;
    padding: 1.25rem 0.5rem;
    text-transform: uppercase;
    background: #F9F9F9;
}

.count_lessons {
    border-top: 2px dashed #03101E;
    border-bottom: 2px dashed #03101E;
    padding: 20px 0;
    font-size: clamp(25px, 2vw, 35px);
    line-height: 80%;
    margin-top: 30px;
    margin-bottom: 15px;

}

.price_block {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px 0;
    color: #fff;
}

.price {
    font-weight: bold;
    font-size: clamp(55px, 3vw, 80px);
    line-height: 137%;
    font-family: "DM Sans", sans-serif;
    color: #1C2734;
    display: flex;
    align-items: center;
}

.old_price {
    font-weight: 500;
    font-size: clamp(25px, 1.2vw, 35px);
    color: #D4DADB;
    text-align: center;
    text-decoration-line: line-through;
    display: flex;
    align-items: center;
}
.grid-courses-preview__item:first-child .desc_line:before,
.basics .button {
    background: #A8A8A8;
}

.basics .learn_more a,
.basics .subtitle strong,
.basics .price_block .price {
    color: #A8A8A8;
}

.basics .learn_more a svg path {
    fill: #A8A8A8;
}

.advanced .desc_line:before,
.grid-courses-preview__item:nth-child(2) .desc_line:before,
.advanced .button {
    background: var(--blue);
}

.advanced .learn_more a,
.advanced .subtitle strong,
.advanced .price_block .price {
    color: var(--blue);
}

.advanced .learn_more a svg path {
    fill: var(--blue);
}

.grid-courses-preview__item:nth-child(3) .desc_line:before,
.experts .button {
    background: var(--orange);
}

.orange,
.experts .learn_more a,
.experts .subtitle strong,
.experts .price_block .price {
    color: var(--orange);
}

.experts .learn_more a svg path {
    fill: var(--orange);
}

.experts .button:hover {
    background: #15315C;
}

.basics_advanced .button{
    background: #1C2734;
}

.advanced .button,
.main-info .button {
    border: 3px solid transparent;
}

button[type="submit"]:hover,
.main-info .button:hover {
    background: transparent;
    border: 3px solid #F1A107;
    color: var(--orange);
}

button[type="submit"] {
    border: 3px solid #fff;
}

.home .main-info__left {
    max-width: 550px;
    margin-left: auto;
    margin-right: 5%;
    overflow: hidden;
}

ul.contacts {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    justify-content: center;
    list-style-type: none;
    margin-bottom: 80px;
    padding-left: 0;
}

ul.contacts > li {
    color: #fff;
    display: flex;
    align-items: center;
    font-size: 14px;
}

ul.contacts > li:before {
    width: 25px;
    height: 45px;
    display: inline-block;
    margin-right: 10px;
    min-width: 20px;
}

ul.contacts > li.phone:before {
    content: '';
    background: url(../img/ic-tel.svg) no-repeat center/contain;
}

ul.contacts > li.address:before {
    content: '';
    background: url(../img/ic-address.svg) no-repeat center/contain;
}

ul.contacts > li.email:before {
    content: '';
    background: url(../img/ic-email.svg) no-repeat center/contain;
}

.main-video iframe {
    height: 500px;
}

.why-item__icon {
    background: var(--black);
    padding: 25px;
    border-radius: 10px;
    display: flex;
    align-items: center;
}

.box-with-shadow {
    background: #FFFFFF;
    border-radius: 10px;
    transition: box-shadow .5s;
    box-shadow: none;
}

.box-with-shadow:hover {
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.05);
}

.d-grid,
.grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 30px;
}

.bg-big-logo {
    right: -5%;
    top: 0;
    height: auto;
    max-width: 100%;
    width: 20%;
}

.head_package .icon {
    height: 105px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.head_package .icon img {
    max-height: 40px;
    max-width: 70px;
    /*margin: 25px 0; */
}

.head_package .subtitle {
    min-height: 60px;
}

.head_package .small_desc {
    min-height: 120px;
}

.adv_list {
    padding: 0 20px;
}

.description-course ul,
.adv_list ul {
    padding: 0;
}

.description-course ul li,
.adv_list ul li {
    list-style-type: none;
    position: relative;
    padding: 15px 0 15px 30px;
}

.description-course ul li {
    padding: 5px 0 5px 30px;
}

.adv_list ul li + li {
    border-top: 1px solid rgba(3, 16, 30, .5);
}

.description-course ul li:before,
.adv_list ul li:before {
    content: '';
    background: url("/web/img/grey-vector.svg") no-repeat center left/contain;
    display: inline-block;
    position: absolute;
    left: 0;
    top: 20px;
    width: 12px;
    height: 12px;
}

.youtube-block {
    margin-top: -55px;
}

.youtube-block.bg-grey:before {
    content: '';
    height: 100%;
    width: 300px;
    background: var(--bg-gray);
    display: block;
    position: absolute;
    left: -300px;
    top: 0;
}

.news-item {
    border-bottom: 2px solid #C2C2C2;
    padding-bottom: 1.5rem;
}

.news-item .post_title h5 {
    font-weight: bold;
    font-size: 20px;
    line-height: 150%;
    color: #011C47;
}

.learn_more a {
    font-weight: bold;
    font-size: clamp(16px, 1.1vw, 18px);
    line-height: 100%;
    color: #F1A107;

}

.learn_more svg {
    width: 16px;
}

.why-item__info {
    text-align: left;
}

.why-item__title {
    font-weight: 800;
    font-size: clamp(22px, 1.2vw, 24px);
    line-height: 133%;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(3, 16, 30, .2);
}

.footer-menu a {
    font-size: 16px;
    line-height: 156%;
    color: #fff;
    white-space: pre;
}

.form-control {
    height: 50px;
    -webkit-appearance: none;
}

.justify-self-end {
    justify-self: flex-end;
}

.grid-courses-preview {
    grid-gap: 30px;
}

.grid-courses-preview__item:first-child {
    grid-column: 1;
    grid-row: 1;
}

.grid-courses-preview__item .desc_line:before {
    width: 3px;
}

.grid-courses-preview__item:nth-child(2) {
    grid-column: 2;
    grid-row: 1;
    justify-content: flex-end;
}

.grid-courses-preview__item:nth-child(3) {
    grid-column: 1/3;
    grid-row: 2;
}

.grid-courses-preview__item:nth-child(4) {
    grid-column: 1/3;
    grid-row: 4;
}

.grid-courses-preview__item {
    min-height: 500px;
    align-items: center;
    display: flex;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    border-radius: 10px;
}

.grid-courses-preview__item .package_box {
    height: auto;
    width: 430px;
    max-width: 95%;
    margin-left: 0;
}

.grid-courses-preview__item .price_block {
    justify-content: flex-start;
}

.grid-courses-preview__item .count_lessons {
    margin-top: 15px;
    border-bottom: none;
}

.grid-courses-preview__item .button {
    -moz-border-radius-topleft: 0;
    -moz-border-radius-bottomright: 0;
    border-radius: 0 10px 10px 0;
    text-align: left;
}

.grid-courses-preview__item .button,
.grid-courses-preview__item .count_lessons,
.head_package_preview {
    padding-left: 30px;
}

.grid-courses-preview__item .h2 {
    font-weight: 800;
    font-size: clamp(25px, 2.53vw, 55px);
    line-height: 100%;
    color: var(--black);
}

.title-course {
    position: relative;
    padding-left: 40px;
    font-weight: bold;
    font-size: 22px;
    line-height: 145%;
    border-bottom: 1px solid rgba(3, 16, 30, .2);
    padding-bottom: 10px;
    margin-bottom: 10px;
}

.title-course span > span {
    font-weight: 300;
}

.title-course:before {
    content: '';
    width: 28px;
    height: 28px;
    display: inline-block;
    position: absolute;
    left: 0;
    top: 0;
}

.basics .title-course:before {
    content: '';
    background: url(../img/video.svg) no-repeat center/contain;

}

.advanced .title-course:before {
    content: '';
    background: url(../img/video-adv.svg) no-repeat center/contain;

}

.experts .title-course:before {
    content: '';
    background: url(../img/video-exp.svg) no-repeat center/contain;

}

.banner-course.basics h1:before {
    content: '';
    background: url(../img/1.svg) no-repeat center/contain;
    width: 110px;
    height: 30.61px;
    display: block;
    margin-bottom: 20px;
}

.banner-course.advanced h1:before {
    content: '';
    background: url(../img/2.svg) no-repeat center/contain;
    width: 95px;
    height: 55px;
    display: block;
    margin-bottom: 20px;
}

.banner-course.experts h1:before {
    content: '';
    background: url(../img/3.svg) no-repeat center/contain;
    width: 87.22px;
    height: 68.75px;
    display: block;
    margin-bottom: 20px;
}

.no-js .owl-carousel, .owl-carousel.owl-loaded {
    display: flex;
    align-items: center;
}

.owl-carousel.features .owl-item {
    border: 1px solid #FFFFFF;
    box-sizing: border-box;
    border-radius: 10px;
    overflow: hidden;
}

.owl-carousel.features .owl-item img {
    width: 222px;
    margin-right: 0;
    margin-left: auto;
}

.package_icons ul {
    justify-content: center;
}

.package_icons li:nth-child(odd) {
    min-width: 90px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.package_icons li svg {
    margin-bottom: 10px;
}

@media (min-width: 1098px) {
    .features .owl-dots {
        position: absolute;
        right: -80px;
        transform: rotate(90deg);
    }
}

@media (max-width: 1099px) {
    .owl-carousel.features .owl-nav.disabled + .owl-dots {
        position: absolute;
        bottom: -60px;
        margin: auto;
        left: 0;
        right: 0;
    }
}

.owl-theme .owl-dots .owl-dot.active span, .owl-theme .owl-dots .owl-dot:hover span {
    background: var(--orange);
}

.features-tabs {
    justify-content: center;
    height: 100%;
}

.features-tabs:before {
    content: '';
    position: absolute;
    width: 6px;
    height: 100%;
    background: #FFFFFF;
    opacity: 0.15;
    border-radius: 25px;
    display: block;
}

.features-tabs a {
    color: #ffffff;
    font-size: 18px;
    line-height: 208%;
    padding-bottom: 30px;
    margin-bottom: 30px;
    border-bottom: 1px solid #A8A8A8;
    transition: .4s;
    margin-left: 35px;
}

.features-tabs a svg {
    margin-right: 20px;
}

.features-tabs a,
.features-tabs a:hover svg path {
    transition: .4s;
}

.features-tabs a.active,
.features-tabs a:hover {
    color: var(--orange);
}

.features-tabs a.active svg path,
.features-tabs a:hover svg path {
    fill: var(--orange);
}

.features-info .offer_text h3 {
    font-weight: bold;
    font-size: clamp(25px, 2.5vw, 36px);
    line-height: 111%;
    padding-bottom: 30px;
    margin-bottom: 30px;
    border-bottom: 2px dashed #FFFFFF;
}

.features-info .offer_text {
    padding-left: 45px;
    font-weight: 500;
    font-size: clamp(14px, 1.1vw, 17px);
    line-height: 176%;
    margin-bottom: 33px;
}

.features-info .button {
    border-radius: 0 10px 10px 0;
    text-align: left;
    padding-left: 45px;
}

#features-link div {
    background: #F1A107;
    border-radius: 25px;
    position: absolute;
    width: 6px;
    height: 50px;
    left: 0;
    top: 0;
}

#features-link a:nth-child(1) ~ div {
    transition: all .33s linear;
    -webkit-transition: all .33s linear;
}

#features-link a.active:nth-child(1) ~ div {
    transform: translateY(15px);
    -webkit-transform: translateY(15px);
}

#features-link a.active:nth-child(2) ~ div,
#features-link a:nth-child(2):hover ~ div {
    transform: translateY(115px);
    -webkit-transform: translateY(115px);
    transition: all .33s linear;
    -webkit-transition: all .33s linear;
}

#features-link a.active:nth-child(3) ~ div,
#features-link a:nth-child(3):hover ~ div {
    transform: translateY(215px);
    -webkit-transform: translateY(215px);
    transition: all .33s linear;
    -webkit-transition: all .33s linear;
}

#features-link a.active:nth-child(4) ~ div,
#features-link a:nth-child(4):hover ~ div {
    transform: translateY(315px);
    -webkit-transform: translateY(315px);
    transition: all .33s linear;
    -webkit-transition: all .33s linear;
}

.program-page__slider--quote .quote-wrapper {
    position: relative;
    margin: 0 15px;
}

.program-page__slider--quote .quote-wrapper .box-with-border {
    min-height: 460px;
}

.program-page__slider--quote .quote-wrapper.slick-slide:before {
    content: '';
    position: absolute;
    height: 100%;
    width: 100%;
    left: 0;
    top: 0;
    background: rgba(3, 16, 30, 0.3);
    backdrop-filter: blur(4px);
    z-index: 2;
    border-radius: 10px;
}

.program-page__slider--quote .quote-wrapper.slick-slide.slick-current:before {
    content: none;
}

.program-page__slider--quote .slick-slide img {
    display: block;
    width: 380px;
    height: 214px;
    object-fit: cover;
    object-position: top;
    margin-bottom: -10px;
    border-radius: 10px 10px 0 0;
}

.program-page__slider--quote .slick-dots {
    max-width: 1190px;
    margin: auto;
    left: 0;
    right: 0;
    text-align: left;
    bottom: -40px;
}

.program-page__slider--quote .slick-next {
    right: auto;
    top: -40px;
    background: #fff;
    left: calc(17% + 100px + 25px);
    border-radius: 10px;
    padding: 10px;
    width: 100px;
    height: 37px;
    transition: .4s;
    color: var(--black);
}

.program-page__slider--quote .slick-prev {
    left: 17%;
    top: -40px;
    background: #fff;
    border-radius: 10px;
    padding: 10px;
    width: 100px;
    height: 37px;
    transition: .4s;
    color: var(--black);
}

.program-page__slider--quote .slick-next:hover,
.program-page__slider--quote .slick-prev:hover {
    background: var(--black);
    color: #fff;
}

.program-page__slider--quote .slick-prev:before,
.program-page__slider--quote .slick-next:before {
    content: '';
    background: url("/web/img/arrow-slider.svg") no-repeat center/contain;
    width: 19px;
    height: 11px;
    display: inline-block;
}

.program-page__slider--quote .slick-prev:before {
    transform: rotate(180deg);
}

.program-page__slider--quote .slick-next:hover:before,
.program-page__slider--quote .slick-prev:hover:before {
    filter: invert(1);
}

.slick-dots li button:before {
    font-size: 12px;
    color: #CCCBCB;
    opacity: 1;
}

.slick-dots li.slick-active button:before {
    color: var(--orange);
    opacity: 1;
}

.testi-position {
    font-size: 24px;
    font-weight: bold;
}

.testi-position span {
    font-size: 16px;
    display: block;
    color: grey;
}

.blog-post-container {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    position: relative;
    max-height: 380px;
    background: #C4C4C4;
    border-radius: 10px;
    overflow: hidden;
}

.blog-post-container::-webkit-scrollbar {
    width: 8px;
    height: 8px;
    -webkit-appearance: none;
}

.blog-post-container::-webkit-scrollbar-track {
    box-shadow: inset 0 0 6px #CBD1DA;
    -webkit-box-shadow: inset 0 0 6px #CBD1DA;
    border-radius: 5px;
}

.blog-post-container::-webkit-scrollbar-thumb {
    background-color: rgba(1, 28, 71, .2);
    border-radius: 25px;
}

.youtube-block__video-title {
    font-size: 12px;
    line-height: 125%;
    color: #283242;
    display: block;
    margin: 10px 0 20px;
}

.play:before {
    content: '';
    background: url(../img/play.svg) no-repeat center;
    display: block;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: 2;
    transition: all .5s;
}

.slider-nav-youtube .slick-current {
    display: none;
}

.post_img img {
    margin-top: 10px;
}

.post_title a {
    font-weight: bold;
    font-size: clamp(18px, 1.1vw, 24px);
    line-height: 33px;
    color: #011C47;
    transition: .4s;
}

.post_title a:hover {
    color: var(--orange);
}

.post_preview p {
    font-weight: 500;
    font-size: 15px;
    line-height: 180%;
    color: #011C47;
}

.youtube-block__title {
    text-transform: none;
    font-size: clamp(25px, 3vw, 40px);
    line-height: 117%;
}

.youtube-block__desc a,
.youtube-block__desc {
    font-size: clamp(18px, 1.1vw, 20px);
    line-height: 117%;
    color: #283242;
}

.youtube-block__desc a {
    text-decoration: underline;
    font-weight: bold;
}

.package_preview_subtitle {
    font-size: clamp(18px, 1.2vw, 20px);
    line-height: 120%;
    text-align: left;
    text-transform: uppercase;
    color: #03101E;
    margin-bottom: 0;
}

.page.contact-page .item-slider {
    min-height: 100vh;
    align-items: flex-start;
    padding-top: 14vh;
    max-height: none;
}

.page.contact-page > .container {
    position: absolute;
    top: 20vh;
    left: 0;
    bottom: 0;
    margin: auto;
    z-index: 2;
    width: 100%;
    right: 0;
}

.form-group {
    margin-bottom: 25px;
}

.invalid-feedback {
    position: absolute;
}

.form-control {
    background: #FFFFFF;
    border: 1px solid #A8A8A8;
    box-sizing: border-box;
    border-radius: 10px;
    -webkit-appearance: none;
    appearance: none;
    padding: 15px;
    height: 55px;
    box-shadow: none;
}

textarea.form-control {
    height: 140px;
    border-radius: 10px;
    resize: none;
}

#membership {
    background-position-y: bottom;
}

#membership:after {
    content: '';
    position: absolute;
    width: 884px;
    max-width: 45%;
    height: 1104px;
    max-height: 80%;
    right: 0;
    top: 0;
    background: #F9F9F9;
    display: block;
    z-index: 0;
}

.membership_box {
    position: relative;
    z-index: 2;
    box-shadow: 0px 0px 40px rgba(0, 0, 0, 0.05);
    border-radius: 10px;
    background: #fff;
}

.membership_box .box-with-border {
    position: relative;
    top: -7px;
    padding-bottom: 40px;
}

.membership_box .button {
    background: var(--black);
    padding: 20px;
}

.membership_box .adv_list ul li:before {
    content: '';
    background: url(/web/img/yellow-vector.svg) no-repeat center left/contain;
}

.membership_box .old_price {
    font-weight: 600;
    font-size: 40px;
    line-height: 90%;
    text-align: center;
    color: #A7A7A7;
    padding: 20px 0 40px 0;
    border-bottom: 2px dashed #03101E;
    margin-bottom: 35px;
}

.membership_box .title_package {
    font-weight: bold;
    font-size: clamp(25px, 2vw, 46px);
    line-height: 120%;
    color: #fff;
    background: #03101E;
    display: flex;
    padding: 0;
    text-transform: none;
    border-radius: 10px 10px 0 0;
}

.membership_box .title_package p {
    padding: 20px;
}

.membership_box .free-label {
    background: #F1A107;
    border-radius: 10px 50% 50% 0;
    padding: 40px 30px;
    font-weight: 800;
    font-size: clamp(30px, 3vw, 60px);
    line-height: 100%;
    text-transform: uppercase;
    color: #FFFFFF;
    display: flex;
    align-items: center;
}

.get_more_grid {
    column-count: 2;
    column-gap: 2em;
    overflow: hidden;
}

.get_more-item {
    display: inline-block;
    margin: 1.5em 0 1.5em;
    width: 100%;
}

.get_more-item:first-child,
.get_more-item:nth-child(2) {
    max-width: 660px;
}

.get_more-item:nth-child(3),
.get_more-item:nth-child(4) {
    max-width: 505px;
}

.get_more-item__title {
    font-weight: 800;
    font-size: clamp(20px, 2vw, 24px);
    line-height: 133%;
    color: #FFFFFF;
    position: absolute;
    right: 20px;
    bottom: 20px;
}

.get_more-item__info {

}

.square-flip {
    -webkit-perspective: 1000;
    -moz-perspective: 1000;
    -ms-perspective: 1000;
    perspective: 1000;

    -webkit-transform: perspective(1000px);
    -moz-transform: perspective(1000px);
    -ms-transform: perspective(1000px);
    transform: perspective(1000px);

    -webkit-transform-style: preserve-3d;
    -moz-transform-style: preserve-3d;
    -ms-transform-style: preserve-3d;
    transform-style: preserve-3d;
    border-radius: 10px;
    position: relative;
    display: inline-block;
    margin: 1em 0 1em;
    width: 100%;
}

.square-flip-big {
    max-width: 669px;
    height: 305px;
    /*max-width: 60%;*/
}

.square-flip-small {
    max-width: 505px;
    height: 355px;
    /*max-width: 40%; */
}

@media (min-width: 768px) {
    .square-flip:nth-child(3) {
        margin-top: 3rem;
    }
}

@media (min-width: 1400px) {
    .square-flip:nth-child(3) {
        margin-top: 5rem;
    }
}

.square, .square2 {
    width: 100%;
    height: 100%;
}

.square {

    background-size: cover;
    background-position: center center;

    -ms-transition: transform 0.60s cubic-bezier(.5, .3, .3, 1);
    transition: transform 0.60s cubic-bezier(.5, .3, .3, 1);
    -webkit-transition: transform 0.60s cubic-bezier(.5, .3, .3, 1);
    overflow: hidden;
    border-radius: 10px;
    position: absolute;
    top: 0;


    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.square-flip .square {
    -webkit-transform: rotateY(0deg);
    -moz-transform: rotateY(0deg);
    -o-transform: rotateY(0deg);
    -ms-transform: rotateY(0deg);
    transform: rotateY(0deg);
    transform-style: preserve-3d;
    z-index: 1;
}

.square-flip:hover .square {
    -webkit-transform: rotateY(-180deg);
    -moz-transform: rotateY(-180deg);
    -o-transform: rotateY(-180deg);
    -ms-transform: rotateY(-180deg);
    transform: rotateY(-180deg);
    transform-style: preserve-3d;
}


.square2 {

    background-size: cover;
    background-position: center center;

    -ms-transition: transform 0.60s cubic-bezier(.5, .3, .3, 1);
    transition: transform 0.60s cubic-bezier(.5, .3, .3, 1);
    -webkit-transition: transform 0.60s cubic-bezier(.5, .3, .3, 1);
    overflow: hidden;
    border-radius: 10px;
    position: absolute;
    top: 0;

    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.square-flip .square2 {
    -webkit-transform: rotateY(180deg);
    -moz-transform: rotateY(180deg);
    -o-transform: rotateY(180deg);
    -ms-transform: rotateY(180deg);
    transform: rotateY(180deg);
    transform-style: preserve-3d;
    z-index: 1;
}

.square-flip:hover .square2 {
    -webkit-transform: rotateY(0deg);
    -moz-transform: rotateY(0deg);
    -o-transform: rotateY(0deg);
    -ms-transform: rotateY(0deg);
    transform: rotateY(0deg);
    transform-style: preserve-3d;
}

/*Square content*/
.square-container {
    padding: 40px;
    text-align: center;
    position: relative;
    top: 95%;

    -ms-transition: transform 0.60s cubic-bezier(.5, .3, .3, 1);
    transition: transform 0.60s cubic-bezier(.5, .3, .3, 1);
    -webkit-transition: transform 0.60s cubic-bezier(.5, .3, .3, 1);


    -webkit-transform: translateY(-50%) translateX(0px) scale(1);
    -ms-transform: translateY(-50%) translateX(0px) scale(1);
    transform: translateY(-50%) translateX(0px) scale(1);
    transform-style: preserve-3d;
    z-index: 2;
}

.square-flip:hover .square-container {

    -webkit-transform: translateY(-50%) translateX(-650px) scale(.88);
    -ms-transform: translateY(-50%) translateX(-650px) scale(.88);
    transform: translateY(-50%) translateX(-650px) scale(.88);
    transform-style: preserve-3d;

}

.square-container2 {
    padding: 40px;
    position: relative;
    top: 0;
    background: rgba(255, 255, 255, 0.9);
    -ms-transition: transform 0.60s cubic-bezier(.5, .3, .3, 1);
    transition: transform 0.60s cubic-bezier(.5, .3, .3, 1);
    -webkit-transition: transform 0.60s cubic-bezier(.5, .3, .3, 1);
    max-width: 80%;
    -webkit-transform: translateY(-50%) translateX(650px) translateZ(60px) scale(.88);
    -ms-transform: translateY(-50%) translateX(650px) translateZ(60px) scale(.88);
    transform: translateY(-50%) translateX(650px) translateZ(60px) scale(.88);
    color: #000;
    transform-style: preserve-3d;
    z-index: 2;
    border-radius: 10px;
    text-align: left;
}

.square-flip:hover .square-container2 {

    -webkit-transform: translateY(0%) translateX(0px) translateZ(0px) scale(1);
    -ms-transform: translateY(0%) translateX(0px) translateZ(0px) scale(1);
    transform: translateY(0%) translateX(0px) translateZ(0px) scale(1);
    transform-style: preserve-3d;
}


/*Style text*/

/*Elements*/
.flip-overlay {
    display: block;
    background: rgba(3, 16, 30, .3);
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
}

.flip-overlay-back {
    display: block;
    background: rgba(3, 16, 30, .35);
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
}

.align-center {
    margin: 0 auto;
}

/*ADD SHADOWS OPTIONAL*/
.square-flip .square .boxshadow, .square-flip .square .textshadow, .square-flip .square2 .boxshadow, .square-flip .square2 .textshadow {
    -ms-transition: 0.60s;
    transition: 0.60s;
    -webkit-transition: 0.60s;
}

.square-flip .square .boxshadow {
    -webkit-box-shadow: 24px 42px 58px -8px rgba(0, 0, 0, 0.3);
    -moz-box-shadow: 24px 42px 58px -8px rgba(0, 0, 0, 0.3);
    box-shadow: 24px 42px 58px -8px rgba(0, 0, 0, 0.3);
}

.square-flip .square .textshadow {
    -webkit-text-shadow: 24px 42px 58px -8px rgba(0, 0, 0, 0.3);
    -moz-text-shadow: 24px 42px 58px -8px rgba(0, 0, 0, 0.3);
    text-shadow: 24px 42px 58px -8px rgba(0, 0, 0, 0.3);
}

.square-flip:hover .square .boxshadow, .square-flip:hover .square .textshadow {
    -webkit-box-shadow: 240px 42px 58px -8px rgba(0, 0, 0, 0.0);
    -moz-box-shadow: 240px 42px 58px -8px rgba(0, 0, 0, 0.0);
    box-shadow: 240px 42px 58px -8px rgba(0, 0, 0, 0.0);
}


.square-flip .square2 .boxshadow {
    -webkit-box-shadow: 240px 42px 58px -8px rgba(0, 0, 0, 0.0);
    -moz-box-shadow: 240px 42px 58px -8px rgba(0, 0, 0, 0.0);
    box-shadow: 240px 42px 58px -8px rgba(0, 0, 0, 0.0);
}

.square-flip .square2 .textshadow {
    -webkit-text-shadow: 240px 42px 58px -8px rgba(0, 0, 0, 0.0);
    -moz-text-shadow: 240px 42px 58px -8px rgba(0, 0, 0, 0.0);
    text-shadow: 240px 42px 58px -8px rgba(0, 0, 0, 0.0);
}

.square-flip:hover .square2 .boxshadow, .square-flip:hover .square2 .textshadow {
    -webkit-box-shadow: 24px 42px 58px -8px rgba(0, 0, 0, 0.3);
    -moz-box-shadow: 24px 42px 58px -8px rgba(0, 0, 0, 0.3);
    box-shadow: 24px 42px 58px -8px rgba(0, 0, 0, 0.3);
}

.home_list ul {
    list-style: none;
    padding-left: 20px;
}

.home_list ul li {
    padding: 5px 0;
}

.package_box .adv_list svg {
    display: none;
}

.footer a.button:hover {
    background: #fff;
}

.payment-icons img {
    width: 70px;
    height: auto;
}

.footer .payment-icons li {
    margin-right: 15px;
}

.genius-pack_title__border {
    position: relative;
    height: 100%;
}

.mentoring .decor-bg {
    background-position: top;
}

.modal-backdrop {
    background: #0A1C37;
}

.modal-backdrop.in {
    opacity: 0.8;
}

.modal-dialog {
    margin: 30px auto;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    height: 100%;
}

.genius-packs-grid__item__btn .button,
.buy-pack-btn .button {
    min-width: 250px;
    font-family: "Roboto", sans-serif;
    font-style: normal;
    font-weight: bold;
    font-size: 24px;
    color: #FFFFFF;
    text-align: center;
}

.genius-modal .modal-header .genius-packs-back {
    object-fit: cover;
    height: 100%;
}

.genius-modal .modal-header {
    border-radius: 0;
    position: relative;
}

.packs-block button.close {
    font-weight: 400;
    background: #f1a107;
    border-radius: 50%;
    min-width: 22px;
    height: 22px;
    top: 20px;
    right: 20px;
    color: #000;
    font-size: 20px;
    text-shadow: none;
    opacity: 1;
}

.modal-header-row {
    top: 0;
    text-align: center;
    color: #fff;
    bottom: 0;
    padding: 43px 40px;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.65));
    border: 2px solid #fff;
}

.modal-header-row .genius-pack_title {
    text-align: center;
    color: #fff;
    font-size: 34px;
    font-weight: bold;
}

.genius-modal .modal-body {
    padding: 35px 15px 45px;
    border-radius: 0;
    justify-content: center;
}

.genius-modal select[name="hours"] ~ .nice-select {
    min-width: 250px;
    margin-left: 10px;
    margin-right: 10px;
    margin-bottom: 0px;
}

.genius-modal label {
    font-weight: bold;
    font-size: 1.2rem;
}

.container-middle{
    max-width: 1680px;
    margin: 0 auto;
}

@media (min-width: 791px) {
    .mentoring_packs ~ .modal .modal-dialog {
        max-width: 760px;
    }
}

@media (min-width: 992px) {
    .news_section .post_info {
        flex-basis: 50%;
    }
    .genius-modal label {
        margin-right: 1rem;
    }
}

@media (min-width: 1400px) {
    .header .container {
        max-width: 1300px;
    }

    .container, .container-sm, .container-md, .container-lg, .container-xl {
        max-width: 1200px;
    }
}

@media (min-width: 768px) and (max-width: 1400px) {
    .navbar-brand > img {
        max-width: 200px !important;
    }

    .navbar-nav > li > a.login {
        padding: 7px 30px 9px;
        font-size: 16px;
    }

    .main-video iframe {
        height: 400px;
    }

    .banner-course .item-slider,
    .home .item-slider {
        min-height: 660px;
    }

    .box {
        padding-top: 40px;
        padding-bottom: 40px;
    }

    .program-page__slider--quote .quote-wrapper .box-with-border {
        min-height: 350px;
    }

    .program-page__slider--quote .slick-dots {
        max-width: 1130px;
    }

    h6, .h6 {
        font-size: 16px;
    }

    .description-course ul li:before {
        top: 10px;
    }

    .description-course ul li,
    .contact-page h3,
    .package_box,
    p {
        font-size: 14px;
    }

    .form-control {
        height: 45px;
    }

    .invalid-feedback {
        font-size: 12px;
    }

    .form-control,
    .form-control::placeholder {
        font-size: 13px;
    }

    .form-group label {
        display: none;
    }

    .square-flip-big {
        height: 200px;
    }

    .square-flip-small {
        height: 225px;
    }

    .footer a.button {
        min-width: 180px;
        margin-left: auto;
        margin-right: auto;
    }

    .footer-brand #logo {
        width: 250px;
    }

    .fa-2x {
        font-size: 1em;
    }

    .grid-courses-preview__item:nth-child(3), .grid-courses-preview__item:first-child, .grid-courses-preview__item:nth-child(2) {
        min-height: 350px;
    }

    .grid-courses-preview__item .price_block {
        padding-bottom: 10px;
    }

    .footer-menu a {
        font-size: 12px;
    }
}

@media (min-width: 992px) and (max-width: 1099px) {

    .navbar-nav > li > a.login {
        display: none;
    }
}
@media (min-width: 768px) and (max-width: 1099px) {
    .features-tabs a {
        font-size: 15px;
    }

    .program-page__slider--quote .slick-dots {
        max-width: 940px;
    }

}

@media (max-width: 1366px) {
    .features-tabs a {
        padding-bottom: 20px;
        margin-bottom: 20px;
    }

    #features-link a.active:nth-child(1) ~ div {
        transform: translateY(0);
        -webkit-transform: translateY(0);
    }

    #features-link a.active:nth-child(2) ~ div, #features-link a:nth-child(2):hover ~ div {
        transform: translateY(75px);
        -webkit-transform: translateY(75px);
    }

    #features-link a.active:nth-child(3) ~ div, #features-link a:nth-child(3):hover ~ div {
        transform: translateY(150px);
        -webkit-transform: translateY(150px);
    }

    #features-link a.active:nth-child(4) ~ div, #features-link a:nth-child(4):hover ~ div {
        transform: translateY(230px);
        -webkit-transform: translateY(230px);
    }
}

@media (max-width: 991px) {
    .page.contact-page .item-slider {
        min-height: 1000px;
    }

    .container {
        max-width: 100%;
    }

    .grid-courses-preview__item:first-child {
        grid-column: 1/3;
        grid-row: 1;
    }

    .grid-courses-preview__item:nth-child(2) {
        grid-column: 1/3;
        grid-row: 2;
    }

    .grid-courses-preview__item:nth-child(2) .package_box {
        margin-left: auto;
        margin-right: 0;
    }

    .grid-courses-preview__item:nth-child(3) {
        grid-column: 1/3;
        grid-row: 3;
    }

    .navbar-expand-lg.opened {
        background-color: var(--black);
        height: 100vh;
        align-items: flex-start;
    }

    .navbar-expand-lg.opened .nav-funcs,
    .navbar-expand-lg.opened .navbar-collapse {
        margin: 30px 0;
    }

    .navbar-nav .nav-link, .dropdown-item {
        padding: 1rem;
        color: #fff;
        font-weight: 500;
        font-size: 16px;
        line-height: 18px;
    }

    .navbar-nav .dropdown-item:not(:last-child) {
        border-bottom: none;
    }

    .navbar-nav .dropdown-menu {
        background-color: transparent;
        border: none;
        border-top: 1px solid var(--orange);
        border-bottom: 1px solid var(--orange);
    }

    .navbar-collapse .flex-wrap {
        flex-direction: column !important;
    }

    .main-nav {
        border-bottom: 2px dashed #FFFFFF;
        padding-bottom: 40px;
        margin-bottom: 40px;
    }

    .navbar-nav > li > a.login {
        width: 100%;
        max-width: 320px;
    }
}

@media (max-width: 768px) {
    .program-page__slider--quote .slick-dots {
        text-align: center;
    }

}

@media (max-width: 767px) {
    .box {
        padding-top: 40px;
        padding-bottom: 40px;
    }

    .item-slider {
        padding-top: 60px;
    }

    .grid,
    .d-grid,
    .why_grid,
    ul.contacts {
        grid-template-columns: 1fr;
    }

    .button {
        width: 100%;
    }

    .footer {
        padding-top: 50px;
    }

    .page.contact-page .item-slider {
        min-height: 991px;
    }

    #membership {
        padding-bottom: 60px;
    }

    #membership:after {
        max-height: 40%;
        right: 0;
        top: auto;
        bottom: 0;
        left: 0;
        max-width: 100%;
    }

    .approach {
        padding-bottom: 350px;
        background-size: 50% !important;
        background-position-y: bottom !important;
    }

    .features-info .offer_text {
        padding-left: 25px;
        padding-top: 40px;
    }

    .features-info .button {
        max-width: 90%;
    }

    .owl-carousel.features .owl-item img {
        width: 100%;
        margin-right: 0;
        margin-left: auto;
        height: 200px;
        margin-top: 40px;
        object-fit: cover;
    }

    .square-container2 {
        padding: 20px;
    }

    .get_more_grid {
        column-count: 1;
    }

    .service {
        background-position-y: top !important;
        background-size: 150% !important;
    }

    .service .box-with-shadow {
        margin-top: 150px;
    }

    .packages.box,
    .packages.box > div {
        background: none !important;
    }

    .bg-img-our-courses {
        background-position: center bottom !important;
        background-size: 150% !important;
    }

    .bg-img-our-courses .box-with-border {
        margin-top: -150px;
        margin-bottom: 150px;
    }

    .syllabus {
        background-size: 95% !important;
    }
}

@media (max-width: 575px) {
    .packages .row {
        gap: 25px;
    }

    .package_box {
        margin: auto;
    }

    .bg-why-img,
    .approach {
        padding-bottom: 300px;
        background-size: 95% !important;
    }

    .bg-why-img {
        padding-bottom: 350px;
        background-position: bottom right !important;
    }

    .main-video iframe {
        height: 250px;
    }

    .why-item__icon {
        padding: 15px;
    }

    .why-item__icon img {
        width: 40px;
    }
}

@media (max-width: 414px) {
    #education.bg-img {
        background: #F9F9F9 url(../img/bg-home.jpg) no-repeat center bottom/100% !important;
        min-height: 600px;
        padding-bottom: 400px;
        padding-top: 0;
    }

    #education.bg-img .box-with-shadow {
        padding: 0 !important;
        background: transparent;
    }

    #education .bg-big-logo {
        right: 0;
        top: 7%;
        height: auto;
        max-width: 100%;
        width: 27%;
    }
}