@import url("/css/quiz.css");
input[name = "confirm_email"]{
    display: none !important;
}
::selection {
    background-color: var(--color-yellow);
    color: var(--color-blue);
}

section {
    padding-top: var(--section-padding);
    padding-bottom: var(--section-padding);
}

h1 {
    font-weight: 600;
    font-size: 62px;
    line-height: 92%;
    letter-spacing: -0.01em;
    color: var(--color-black);
    margin-bottom: 50px;
}

h2 {
    font-weight: 600;
    font-size: 60px;
    line-height: 58px;
    letter-spacing: -0.01em;
    text-align: center;
    margin: 0 0 45px 0;
}

.bx-pagination-container ul {
    list-style-type: none;
    margin: 30px 0 0;
    padding: 0;
    display: flex;
    align-items: center;
    column-gap: 17px;
    row-gap: 5px;
    justify-content: center;
    font-weight: 500;
    font-size: 16px;
    color: var(--color-yellow);
    line-height: 1;
}

.bx-pagination-container ul a {
    font-weight: 300;
    color: var(--color-black);
    display: block;
    width: 100%;
}

li.bx-pag-prev {
    font-size: 0;
    height: 70px;
    width: 70px;
    flex-shrink: 0;
    border-radius: 50%;
    margin-right: 3px;
    background: url(/images/pagination-prev.svg) center center / 70px 70px no-repeat;
    display: flex;
}

li.bx-pag-prev span {
    display: block;
    width: 100%;
}

li.bx-pag-next {
    font-size: 0;
    height: 70px;
    width: 70px;
    flex-shrink: 0;
    border-radius: 50%;
    transform: rotate(180deg);
    background: url(/images/pagination-prev.svg) center center / 70px 70px no-repeat;
    margin-left: 3px;
    display: flex;
}

.did-not-find-form--dark {
    border-radius: 60px;
    background: var(--color-gray-background);
}

.did-not-find-form--dark .did-not-find-form__image:after {
    background: var(--color-gray-background);
}

.did-not-find-form--dark:last-child {
    margin-bottom: -100px;
    padding-bottom: calc(120px + var(--section-padding));
}

.did-not-find-form--dark form.form {
    background: var(--color-white);
}

li.bx-pag-next:has(a):hover {
    background: url(/images/pagination-next--hover.svg) center center / 70px 70px no-repeat;
    transform: none;
    cursor: pointer;
}

li.bx-pag-prev:has(a):hover {
    background: url(/images/pagination-next--hover.svg) center center / 70px 70px no-repeat;
    transform: rotate(180deg);
    cursor: pointer;
}

.bx-pagination-container a:hover {
    color: var(--color-blue);
}

.did-not-find-form__image {
    position: relative;
}

.did-not-find-form__image:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    transition: height 1s linear;
    height: 100%;
    background: white;
}

.did-not-find-form__image img {
    border-radius: 34px;
}

.did-not-find-form__image.showed:after {
    height: 0;
}

a:not([href]):not([class]) {
    text-decoration: underline !important;
}

form.form {
    background: var(--color-gray-background);
    border-radius: 34px;
    padding: 58px 50px 50px;
}

section.did-not-find-form form {
    min-height: 100%;
}

.form__header {
    font-weight: 600;
    font-size: 37px;
    line-height: 46px;
    margin: 0 0 20px;
    letter-spacing: -0.01em;
}

.form__description {
    font-size: 15px;
    line-height: 20px;
    margin: 0 0 22px;
}

fieldset.form__fields input,
fieldset.form__fields textarea {
    background: rgba(0, 1, 32, 0.05);
    outline: none;
    width: 100%;
    font-weight: 200;
    font-size: 15px;
    line-height: 18px;
    color: var(--color-black);
    border: 1px solid rgba(0, 1, 32, 0.05);
    margin: 0 0 20px;
    background-clip: padding-box;
}

fieldset.form__fields input::placeholder,
fieldset.form__fields textarea::placeholder {
    color: #555;
}

fieldset.form__fields input:focus,
fieldset.form__fields textarea:focus {
    border: 1px solid var(--color-blue);
}

label.pp {
    width: 100%;
    margin-top: -4px;
    margin-bottom: 30px;
    font-weight: 300;
    font-size: 13px;
    line-height: 20px;
    color: #666;
    position: relative;
    cursor: pointer;
}

form.form [type=submit] {
    margin: 0;
    border-radius: 1000px;
    width: 277px;
    height: 59px;
    background: var(--color-yellow);
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 400;
    font-size: 15px;
    line-height: 125%;
    text-align: center;
    color: var(--color-black);
}

form.form [type=submit]:hover {
    background: var(--color-blue);
    color: var(--color-white);
}

fieldset.form__fields textarea {
    resize: none;
    border-radius: 25px;
    height: 160px;
    padding: 25px 30px;
}

fieldset.form__fields input {
    border-radius: 49px;
    padding: 20px 30px;
}

fieldset.form__fields input.half {
    width: calc(50% - 10px);
}

fieldset.form__fields {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

label.pp input {
    position: absolute;
    top: 0;
    left: 0;
    width: 20px;
    height: 20px;
    opacity: 0;
}

label.pp>span {
    display: flex;
    column-gap: 10px;
}

label.pp>span:before {
    content: '';
    flex: 0 0 20px;
    height: 20px;
    border-radius: 50%;
    border: 1px solid #bdc0c7;
}

label.pp input:checked+span:before {
    border-color: transparent;
    background: url(/images/pp.svg) center center / 20px 20px no-repeat;
}

label.pp>span a {
    color: inherit;
}

label.pp+label.pp {
    margin-top: -20px;
}

.text-and-image--dark {
    background: var(--color-gray-background);
    border-radius: 60px;
}

.text-and-image--dark .text-and-image__image:after {
    background: var(--color-gray-background);
}

section.text-and-image.text-and-image--dark:last-child {
    margin-bottom: -100px;
    padding-bottom: calc(120px + var(--section-padding));
}

section.text-and-image h2 {
    line-height: 54px;
}

section.text-and-image p {
    margin-bottom: 20px;
}

section.text-and-image *:not(h2):last-child {
    margin-bottom: 0;
}

section.text-and-image {
    line-height: 25px;
}

section.text-and-image img {
    border-radius: 34px;
}

.text-and-image__image:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    transition: height 1s linear;
    height: 100%;
    background: white;
}

.text-and-image__image.showed:after {
    height: 0;
}

footer {
    background: var(--color-blue);
    border-radius: 60px 60px 0 0;
    margin-top: 20px;
    padding-top: 37px;
}

footer .logo {
    column-gap: 18px;
}

footer .logo__description {
    color: var(--color-white);
    row-gap: 8px;
}

footer .logo_company-name {
    font-size: 20px;
    line-height: 25px;
}

footer .logo_company-slogan {
    color: rgba(255, 255, 255, 0.9);
    font-size: 15px;
    line-height: 19px;
}

.footer__top {
    display: flex;
    padding-bottom: 40px;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 50px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.25);
}

button.footer__callback-button {
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 71px;
    width: 238px;
    height: 50px;
    font-weight: 400;
    font-size: 14px;
    color: var(--color-white);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 42px;
}

.footer__callback {
    font-size: 19px;
    color: var(--color-white);
    line-height: 23px;
    display: flex;
    align-items: center;
}

button.footer__callback-button:hover {
    background: var(--color-white);
    color: var(--color-blue);
}

.footer__bottom {
    font-size: 15px;
    line-height: 19px;
    color: var(--color-white);
    padding: 40px 0;
    margin-top: 50px;
    border-top: 1px solid rgba(255, 255, 255, 0.25);
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 15px 0;
}
.bottom__inn{
    width: 100%;
}
footer a:hover {
    text-decoration: underline;
    text-decoration-skip-ink: none;
    text-underline-offset: 3px;
}

footer .col-xl-1 {
    background: linear-gradient(rgba(255, 255, 255, 0.25), rgba(255, 255, 255, 0.25)) center center / 1px 100% no-repeat;
}

ul.footer__menu {
    margin: 0 0 40px;
    padding: 0;
    display: flex;
    flex-direction: column;
    list-style-type: none;
    font-weight: 500;
    font-size: 19px;
    color: var(--color-white);
    row-gap: 12px;
    line-height: 24px;
}

ul.footer__menu li:not(:has(a)) {
    margin-bottom: 5px;
}

ul.footer__menu a {
    font-weight: 300;
    font-size: 15px;
    line-height: 19px;
}

ul.footer__menu:last-child {
    margin: auto 0 0;
}

footer .col-lg-4:has(ul) {
    display: flex;
    flex-direction: column;
}

ul.footer__menu li:has(a) {
    line-height: 19px;
    display: flex;
}

.footer__contacts {
    font-weight: 500;
    font-size: 21px;
    line-height: 26px;
    color: var(--color-white);
    display: flex;
    flex-direction: column;
    row-gap: 10px;
    margin-bottom: 20px;
    align-items: flex-start;
}

.footer__soc {
    margin-bottom: 40px;
    font-size: 21px;
    color: var(--color-white);
    display: flex;
    align-items: center;
    column-gap: 20px;
}

a.footer__ok {
    margin-right: -5px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: url(/images/ok.svg) center center / 100% 100% no-repeat;
}

a.footer__vk {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: url(/images/vk.svg) center center / 100% 100% no-repeat;
}

a.footer__vk:hover {
    background: url(/images/vk--hover.svg) center center / 100% 100% no-repeat;
}

a.footer__ok:hover {
    background: url(/images/ok--hover.svg) center center / 100% 100% no-repeat;
}

img.footer__rating {
    border-radius: 20px;
    margin-bottom: 40px;
}

form.footer__subscribe {
    color: var(--color-white);

}
form.footer__subscribe fieldset{
	margin-bottom:20px
}
.footer__subscribe-description {
    font-weight: 500;
    font-size: 24px;
    line-height: 30px;
    margin-bottom: 30px;
}

.footer__subscribe-pp {
    font-size: 14px;
    line-height: 20px;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 17px;
    margin-bottom: 17px;
}

.footer__subscribe label.pp>span {
    color: #fff;
}

input.footer__subscribe-email {
    padding: 20px 60px 20px 25px;
    font-size: 15px;
    line-height: 18px;
    background: transparent;
    outline: none;
    width: 100%;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    color: var(--color-white);
}

input.footer__subscribe-email::placeholder {
    color: rgba(255, 255, 255, 0.8);
}

form.footer__subscribe fieldset {
    position: relative;
}

input.footer__subscribe-submit {
    padding: 0;
    border: none;
    outline: none;
    font-size: 0;
    line-height: 0;
    width: 52px;
    height: 52px;
    position: absolute;
    top: 4px;
    right: 4px;
    border-radius: 50%;
    background: url(/images/footer-arrow.svg) center center / 100% 100% no-repeat;
}

input.footer__subscribe-submit:hover {
    background: url(/images/footer-arrow--hover.svg) center center / 100% 100% no-repeat;
}

input:hover+input.footer__subscribe-submit,
input:focus+input.footer__subscribe-submit {
    background: url(/images/footer-arrow--hover.svg) center center / 100% 100% no-repeat;
}

body.modal-active {
    overflow: hidden;
    padding-right: var(--scrollbarWidth);
}

.modal-bg.modal-active {
    display: block;
}

.modal-bg {
    display: none;
    position: fixed;
    z-index: 1000;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: black;
    opacity: 0.7;
    cursor: pointer;
}

.modal {
    display: none;
}

.modal.modal-active {
    display: block;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1007;
}

.modal__inner {
    border-radius: 40px;
    background: var(--color-white);
    width: 520px;
    max-width: calc(100vw - 20px);
    max-height: calc(100vh - 20px);
    overflow: auto;
    padding: 50px;
}

button.modal__close {
    position: absolute;
    top: 25px;
    right: 35px;
    width: 20px;
    height: 20px;
    background: url(/images/close.svg) center center / 100% 100% no-repeat;
    z-index: 1;
}

.modal__form-header {
    font-weight: 600;
    font-size: 49px;
    line-height: 45px;
    text-align: center;
    margin-bottom: 17px;
}

.modal__form-description {
    font-size: 16px;
    line-height: 22px;
    letter-spacing: -0.01em;
    text-align: center;
    color: #444;
    margin-bottom: 20px;
}

form.modal__form fieldset {
    display: flex;
    flex-direction: column;
    margin-bottom: 15px;
    row-gap: 15px;
}

label.pp.modal__form-pp {
    width: 400px;
    margin: 0 auto 35px;
    display: block;
}

button.modal__form-submit {
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 400;
    font-size: 15px;
    line-height: 125%;
    text-align: center;
    color: var(--color-black);
    background: var(--color-yellow);
    border-radius: 1000px;
    padding: 0;
    width: 277px;
    height: 59px;
}

button.modal__form-submit:hover {
    background: var(--color-blue);
    color: var(--color-white);
}

input.modal__form-input {
    background: rgba(0, 1, 32, 0.05);
    border-radius: 49px;
    width: 100%;
    font-weight: 300;
    font-size: 14px;
    line-height: 18px;
    padding: 21px 30px;
    border: 1px solid rgba(0, 1, 32, 0.05);
    background-clip: padding-box;
    outline: none;
    color: inherit;
}
textarea.modal__form-input{
    background: rgba(0, 1, 32, 0.05);
    outline: none;
    width: 100%;
    font-weight: 200;
    font-size: 15px;
    line-height: 18px;
    color: var(--color-black);
    border: 1px solid rgba(0, 1, 32, 0.05);
    margin: 0 0 20px;
    background-clip: padding-box;
    resize: none;
    border-radius: 25px;
    height: 160px;
    padding: 25px 30px
}
input.modal__form-input::placeholder, textarea.modal__form-input::placeholder {
    color: #555;
}

input.modal__form-input:focus,textarea.modal__form-input:focus {
    border-color: var(--color-blue);
}

section.did-not-find-form.did-not-find-form--program-detail {
    background: var(--color-gray-background);
    border-radius: 60px;
}

section.did-not-find-form.did-not-find-form--program-detail form.form.questions-left {
    background: var(--color-white);
}

section.did-not-find-form.did-not-find-form--program-detail .did-not-find-form__image:after {
    background: var(--color-gray-background);
}

.quiz-wrapper--1 {
    display: none;
}

.quiz-wrapper--1.active {
    display: flex;
}

.quiz-wrapper--1.active {
    position: fixed;
    top: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    left: 0;
    right: 0;
    z-index: 100;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

illuminator-quiz#quiz-1 {
    cursor: auto;
}

body:has(.quiz-wrapper--1.active) {
    overflow: hidden;
    padding-right: var(--scrollbarWidth);
}

.faq-item+.just-dark-text {
    margin-top: 30px;
}

.just-dark-text {
    border-radius: 34px;
    padding: 60px 98px;
    background: var(--color-gray-background);
    font-weight: 300;
    font-size: 16px;
    line-height: 25px;
    color: var(--color-black-dop);
}

.just-dark-text>:last-child {
    margin: 0;
}

.just-dark-text__header {
    font-weight: 500;
    font-size: 30px;
    line-height: 100%;
    color: var(--color-black);
    margin-bottom: 20px;
}

.just-tag {
    font-weight: 300;
    font-size: 16px;
    letter-spacing: -0.01em;
    color: var(--color-blue);
    line-height: 20px;
    border: 1px solid #cfd5e3;
    border-radius: 69px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 45px;
    margin-bottom: 30px;
}

hr.just-hr {
    border: 1px solid var(--color-line-whitebackground);
    border-width: 1px 0 0 0;
    margin: 50px 0;
}

.just-table {
    background: var(--color-gray-background);
    margin-bottom: 30px;
    border-radius: 34px;
    overflow: auto;
    font-weight: 300;
    font-size: 16px;
    line-height: 18px;
    letter-spacing: -0.01em;
    color: var(--color-black);
}

.just-table thead td {
    padding: 30px 40px;
    font-weight: 400;
    font-size: 19px;
    line-height: 17px;
    letter-spacing: -0.01em;
    color: var(--color-blue);
    position: relative;
}

.just-table tbody th {
    font-weight: 300;
    font-size: 16px;
    line-height: 15px;
    letter-spacing: -0.01em;
    color: var(--color-gray-dop);
    padding: 20px 30px 20px 40px;
}

.just-table tbody th:not(:first-child),
.just-table tbody td:not(:first-child) {
    border-left: 1px solid var(--color-line-graybackground);
}

.just-table tbody td {
    padding-top: 30px;
    padding-bottom: 30px;
    padding-right: 30px;
    padding-left: 40px;
}

.just-table thead td:after {
    content: '';
    background: var(--color-line-graybackground);
    position: absolute;
    bottom: 0;
    left: 40px;
    height: 1px;
    right: 40px;
}

td.no-wrap {
    text-wrap: nowrap;
}

.just-table tbody tr:nth-of-type(even) td {
    background: #E5E7EB;
}

.just-table table {
    min-width: 100%;
}

.just-table a[download] {
    display: flex;
    column-gap: 12px;
    align-items: center;
    max-width: 255px;
    justify-content: center;
}

.just-table a[download] svg {
    flex-shrink: 0;
}

.just-table tbody th:first-child,
.just-table tbody td:first-child {
    width: calc(473*100%/1400);
}

.just-table tbody th:nth-child(2),
.just-table tbody td:nth-child(2) {
    width: calc(335*100%/1400);
}

.just-table tbody th:nth-child(3),
.just-table tbody td:nth-child(3) {
    width: calc(236*100%/1400);
}

a.download-file {
    font-family: var(--third-family);
    font-weight: 500;
    font-size: 15px;
    color: var(--color-black);
    line-height: 18px;
    gap: 10px;
    border-radius: 81px;
    background: var(--color-yellow);
    display: flex;
    margin: 35px auto 0;
    padding: 17px 44px;
    align-items: center;
    width: 276px;
    justify-content: center;
    text-decoration: none;
}

a.download-file svg {
    flex-shrink: 0;
}

a.download-file:hover {
    background: var(--color-blue);
    color: white;
}

a.download-file:hover path {
    fill: white;
}

.faq-item+.faq-item+.just-dark-text {
    margin-top: 20px;
}

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

.just-table--1 thead td:after {
    bottom: unset;
    top: 0;
    left: 0;
    right: 0;
}

.just-table--1 tbody tr:nth-of-type(even) td {
    background: transparent;
}

.just-table--1 tbody tr:nth-of-type(odd) td {
    background: #E5E7EB;
}

.just-table--1 tbody th:first-child, .just-table--1 tbody td:first-child {
    width: calc(97* 100% / 1400);
}

.just-table--1 tbody th:nth-child(2), .just-table--1 tbody td:nth-child(2) {
    width: calc(355* 100% / 1400);
}

.just-table--1 tbody th:nth-child(3), .just-table--1 tbody td:nth-child(3) {
    width: calc(140* 100% / 1400);
}

.just-table--1 tbody th:nth-child(4), .just-table--1 tbody td:nth-child(4) {
    width: calc(255* 100% / 1400);
}

.just-table--1 tbody th:nth-child(5), .just-table--1 tbody td:nth-child(5) {
    width: calc(100* 100% / 1400);
}

.just-table--1 tbody th:nth-child(6), .just-table--1 tbody td:nth-child(6) {
    width: calc(117* 100% / 1400);
}

.just-table--1 tbody th,.just-table--1 tbody td {
    padding: 30px 15px 20px;
}

.just-table--1 tbody th {
    font-size: 14px;
}

.just-table--1 tbody td {
    font-size: 15px;
}

.just-table--1 thead td {
    font-size: 18px;
    line-height: 19px;
}

.just-hr--40-60 {
    margin-top: 40px;
    margin-bottom: 60px;
}

.just-dark-text+.just-dark-text {
    margin-top: 20px;
}

.just-table--2 tbody th:first-child, .just-table--2 tbody td:first-child {
    width: calc(473* 100% / 1400);
}

.just-table--2 tbody th:nth-child(2), .just-table--2 tbody td:nth-child(2) {
    width: calc(335* 100% / 1400);
}

.just-table--2 tbody th:nth-child(3), .just-table--2 tbody td:nth-child(3) {
    width: calc(236* 100% / 1400);
}

.just-table--2 tbody th:nth-child(4), .just-table--2 tbody td:nth-child(4) {
    width: calc(356* 100% / 1400);
}

.just-table--2 tbody th, .just-table--2 tbody td {
    padding: 25px 40px;
    font-size: 16px;
}

.just-dark-text+.just-table {
    margin-top: 30px;
}

.just-table--3 tbody th:first-child, .just-table--3 tbody td:first-child {
    width: calc(97* 100% / 1400);
}

.just-table--3 tbody th:nth-child(2), .just-table--3 tbody td:nth-child(2) {
    width: calc(355* 100% / 1400);
}

.just-table--3 tbody th:nth-child(3), .just-table--3 tbody td:nth-child(3) {
    width: calc(140* 100% / 1400);
}

.just-table--3 tbody th:nth-child(4), .just-table--3 tbody td:nth-child(4) {
    width: calc(255* 100% / 1400);
}

.just-table--3 tbody th:nth-child(5), .just-table--3 tbody td:nth-child(5) {
    width: calc(130* 100% / 1400);
}

.just-table--3 tbody th:nth-child(6), .just-table--3 tbody td:nth-child(6) {
    width: calc(130* 100% / 1400);
}

.just-dark-text+script+.just-dark-text {
    margin-top: 30px;
}

.just-table--4 tbody th:first-child, .just-table--4 tbody td:first-child {
    width: calc(216* 100% / 1400);
    font-weight: 500;
    font-size: 15px;
    vertical-align: top;
}

.just-table--4 tbody th:nth-child(2), .just-table--4 tbody td:nth-child(2) {
    width: calc(1184* 100% / 1400);
    font-size: 15px;
}

.just-table--4:last-child {
    margin: 0;
}

.just-table--3 td,
.just-table--3 th {
    vertical-align: top;
}

.just-dark-text ul {
    padding-left: 1rem;
}

.just-dark-text p>a {
    font-weight: 500;
    text-decoration: underline;
    text-decoration-skip-ink: none;
    color: var(--color-blue);
}

[type=submit][disabled] {
    cursor: not-allowed;
}
.text-and-image a{
    color: var(--color-blue);
}
.search_in_programs{
    width: 100%;
    max-width: 450px;
    position: relative;
}
.search_in_programs .prog_list, .search-in-head .prog_list{
    position: absolute;
    left: 0;
    right: 0;
    border: 1px solid  var(--color-gray-background);
    padding: 20px;
    z-index: 2;
    margin-top: 20px;
    background: white;
    border-radius: 20px;
}

.search_in_programs ul, .search-in-head  ul{
    display: flex;
    flex-direction: column;
    gap: 15px;
    overflow: auto;
    max-height: 400px;
    list-style: none;
    padding: 0;
}

.search_in_programs ul::-webkit-scrollbar,.search-in-head ul::-webkit-scrollbar{width:10px}
.search_in_programs ul::-webkit-scrollbar-button,.search-in-head ul::-webkit-scrollbar-button{height:0}
.search_in_programs ul::-webkit-scrollbar-thumb,.search-in-head ul::-webkit-scrollbar-thumb{background:var(--color-white);border-radius:20px}
.search_in_programs ul::-webkit-scrollbar-track,.search_in_programs ul::-webkit-scrollbar-track-piece,.search-in-head ul::-webkit-scrollbar-track-piece{background:#e1e4eb;border-radius:20px}
.search_in_programs form input[type="text"],.search-in-head form input[type="text"]  {
    border-color: var(--color-gray-background);
}



.cookie-accept-block{
    background: #fff;
    border-radius: 8px;
    padding: 12px;
    position: fixed;
    bottom: 0;
    width: 100%;
    z-index: 20000000000;
}
.cookie-accept-block__top{
    margin-bottom: 16px;
}
.cookie-accept-block__title{
    font-weight: 600;
    font-size: 14px;
    line-height: 129%;
    color: #344054;
    margin-bottom: 8px;
}
.cookie-accept-block__description{
    font-weight: 400;
    font-size: 12px;
    line-height: 150%;
    color: #475467;
    max-width: 1490px;
}
.cookie-accept-block__bottom{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;

}
.cookie-accept-block__bottom-right{
    display: flex;
    align-items: center;
    gap: 12px;
}
.cookie-btn{
    background: #001689;
    border: 1px solid #001689;
    font-weight: 400;
    font-size: 14px;
    line-height: 200%;
    color: #fff;
    padding: 6px 23px;
    min-width: 150px;
    width: 100%;
    border-radius: 8px;
}
.cookie-btn:hover{
    background-color: transparent;
    color: #001689;
}
.cookie-accept-block label.pp{
    margin-bottom: 9px;
}
.cookie-accept-block  label.pp>span a{
    color: #0086c9;
    display: inline-block;
}
.cookie-accept-block label.pp>span:before,.cookie-accept-block label.pp input{
    cursor: pointer;
}
.cookie-accept-block__error{
    border-radius: 12px;
    border: 1px solid #f28888;
    background: #fdeded;
    padding: 8px 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 19px;
    max-width: 850px;
    display: none;
}
.cookie-accept-block__error.show{
    display: flex;
}
.cookie-accept-block__error svg{
    min-width: 20px;
}
.cookie-accept-block__error p{
    font-weight: 400;
    font-size: 13px;
    line-height: 1.2;
    color: #b42318;
    margin-bottom: 0;
}

@media (min-width: 1440px) {

    .text-and-image__image,
    .text-and-image__image img {
        /* height: 100%; */
        object-fit: cover;
        position: sticky;
        top: 10px;
    }
}

@media (max-width: 1439px) {
    .just-table thead td {
        padding: 30px;
    }
    
    .just-table tbody th {
        padding: 20px 30px 20px 30px;
    }
    
    .just-table tbody td {
        padding: 30px;
    }
    
    .just-table thead td:after {
        left: 30px;
        right: 30px;
    }
    
    .just-table tbody th:first-child, .just-table tbody td:first-child {
        width: calc(400*100%/1400);
    }
    
    .just-table tbody th:nth-child(2), .just-table tbody td:nth-child(2) {
        width: calc(380* 100% / 1400);
    }
    
    .just-table tbody th:nth-child(3), .just-table tbody td:nth-child(3) {
        width: calc(290* 100% / 1400);
    }

    .just-table--1 thead td:after {
        left: 0;
        right: 0;
    }

    .just-table--2 tbody th:first-child, .just-table--2 tbody td:first-child {
        width: calc(473* 100% / 1400);
    }
    
    .just-table--2 tbody th:nth-child(2), .just-table--2 tbody td:nth-child(2) {
        width: calc(335* 100% / 1400);
    }
    
    .just-table--2 tbody th:nth-child(3), .just-table--2 tbody td:nth-child(3) {
        width: calc(236* 100% / 1400);
    }
    
    .just-table--2 tbody th:nth-child(4), .just-table--2 tbody td:nth-child(4) {
        width: calc(356* 100% / 1400);
    }

    .just-table--4 tbody th:first-child, .just-table--4 tbody td:first-child {
        width: calc(216* 100% / 1400);
    }

    .just-table--4 tbody th:nth-child(2), .just-table--4 tbody td:nth-child(2) {
        width: calc(1184* 100% / 1400);
    }
}

@media (max-width: 1439px) and (min-width: 1200px) {
    h1 {
        font-size: 50px;
        line-height: 1;
        margin-bottom: 50px;
    }

    h2 {
        font-size: 45px;
        line-height: 43px;
    }

    .form__header {
        font-size: 30px;
        line-height: 40px;
    }

    form.form {
        padding: 30px;
    }

    .form__description {
        margin-bottom: 20px;
    }

    fieldset.form__fields input,
    fieldset.form__fields textarea {
        margin-bottom: 10px;
        font-size: 14px;
    }

    fieldset.form__fields input.half {
        width: calc(50% - 5px);
    }

    label.pp {
        margin-top: 0;
        margin-bottom: 15px;
    }

    fieldset.form__fields input {
        padding: 15px 20px;
    }

    fieldset.form__fields textarea {
        padding: 15px 20px;
        height: 128px;
    }

    form.form [type=submit] {
        height: 50px;
    }

    label.pp+label.pp {
        margin-top: -10px;
        white-space: normal;
    }

    section.text-and-image .col-lg-6:has(img) {
        position: sticky;
        top: 0;
        align-self: flex-start;
    }

    footer .logo_company-slogan br {
        display: block;
    }

    footer .logo__description {
        row-gap: 8px;
    }

    .just-table--1 tbody th:first-child, .just-table--1 tbody td:first-child {
        width: calc(110* 100% / 1400);
    }
    
    .just-table--1 tbody th:nth-child(2), .just-table--1 tbody td:nth-child(2) {
        width: calc(355* 100% / 1400);
    }
    
    .just-table--1 tbody th:nth-child(3), .just-table--1 tbody td:nth-child(3) {
        width: calc(140* 100% / 1400);
    }
    
    .just-table--1 tbody th:nth-child(4), .just-table--1 tbody td:nth-child(4) {
        width: calc(255* 100% / 1400);
    }
    
    .just-table--1 tbody th:nth-child(5), .just-table--1 tbody td:nth-child(5) {
        width: calc(100* 100% / 1400);
    }
    
    .just-table--1 tbody th:nth-child(6), .just-table--1 tbody td:nth-child(6) {
        width: calc(145* 100% / 1400);
    }

    .just-table--1 table {
        width: 1400px;
    }

    .just-table--2 tbody th:first-child, .just-table--2 tbody td:first-child {
        width: calc(473* 100% / 1400);
    }
    
    .just-table--2 tbody th:nth-child(2), .just-table--2 tbody td:nth-child(2) {
        width: calc(335* 100% / 1400);
    }
    
    .just-table--2 tbody th:nth-child(3), .just-table--2 tbody td:nth-child(3) {
        width: calc(236* 100% / 1400);
    }
    
    .just-table--2 tbody th:nth-child(4), .just-table--2 tbody td:nth-child(4) {
        width: calc(356* 100% / 1400);
    }

    .just-table--2 table {
        width: unset;
    }

    .just-table--2 tbody th, .just-table--2 tbody td {
        padding: 25px;
    }

    .just-table--3 tbody th:first-child, .just-table--3 tbody td:first-child {
        width: calc(110* 100% / 1400);
    }
    
    .just-table--3 tbody th:nth-child(2), .just-table--3 tbody td:nth-child(2) {
        width: calc(355* 100% / 1400);
    }
    
    .just-table--3 tbody th:nth-child(3), .just-table--3 tbody td:nth-child(3) {
        width: calc(140* 100% / 1400);
    }
    
    .just-table--3 tbody th:nth-child(4), .just-table--3 tbody td:nth-child(4) {
        width: calc(255* 100% / 1400);
    }
    
    .just-table--3 tbody th:nth-child(5), .just-table--3 tbody td:nth-child(5) {
        width: calc(150* 100% / 1400);
    }
    
    .just-table--3 tbody th:nth-child(6), .just-table--3 tbody td:nth-child(6) {
        width: calc(160* 100% / 1400);
    }
    
    .just-table--3 tbody th:nth-child(7), .just-table--3 tbody td:nth-child(7) {
        width: calc(335* 100% / 1400);
    }
}

@media (max-width: 1199px) and (min-width: 992px) {
    h1 {
        font-size: 45px;
        line-height: 1;
        margin-bottom: 50px;
    }

    h2 {
        font-size: 40px;
        line-height: 1;
        margin-bottom: 30px;
    }

    form.form {
        padding: 30px;
        border-radius: 15px;
    }

    .did-not-find-form__image img {
        border-radius: 15px;
    }

    .form__header {
        font-size: 25px;
        line-height: 32px;
    }

    fieldset.form__fields input {
        padding: 18px 15px;
        font-size: 13px;
        border-radius: 49px;
        margin-bottom: 10px;
    }

    fieldset.form__fields input.half {
        width: calc(50% - 5px);
    }

    fieldset.form__fields textarea {
        padding: 18px 15px;
        font-size: 13px;
        border-radius: 25px;
        height: 100px;
    }

    label.pp {
        margin-bottom: 20px;
    }

    .form__description {
        margin-bottom: 15px;
        font-size: 14px;
        line-height: 18px;
    }

    section.text-and-image img {
        border-radius: 15px;
    }

    section.text-and-image .col-lg-6:has(img) {
        position: sticky;
        top: 0;
        align-self: flex-start;
    }

    label.pp+label.pp {
        white-space: normal;
        margin-top: -10px;
        margin-bottom: 11px;
    }

    footer {
        border-radius: 30px 30px 0 0;
    }

    button.footer__callback-button {
        margin-left: 0;
        margin-top: 10px;
    }

    .footer__callback {
        flex-direction: column;
        font-size: 16px;
        line-height: 20px;
    }

    footer .order-xl-1.col-lg-4.col-xl-4.order-lg-1.order-md-1 {
        padding: 0 20px;
    }

    .footer__top {
        padding-bottom: 20px;
    }

    ul.footer__menu a {
        font-size: 14px;
    }

    ul.footer__menu {
        row-gap: 10px;
    }

    .footer__subscribe-description {
        margin-bottom: 15px;
        font-size: 21px;
        line-height: 24px;
    }

    .footer__contacts {
        font-size: 20px;
        line-height: 24px;
    }

    .footer__soc {
        margin-bottom: 30px;
        font-size: 20px;
    }

    .footer__subscribe-pp {
        font-size: 12px;
    }

    input.footer__subscribe-email {
        font-size: 14px;
    }

    .footer__bottom {
        padding-top: 20px;
        padding-bottom: 20px;
        font-size: 14px;
    }

    section.did-not-find-form.did-not-find-form--program-detail {
        border-radius: 30px;
    }

    .text-and-image--dark {
        border-radius: 30px;
    }

    footer .logo_company-slogan {
        max-width: 470px;
    }

    .footer__callback {
        width: 300px;
        align-items: flex-start;
    }

    button.footer__callback-button {
        width: 300px;
    }

    .just-dark-text {
        padding: 60px;
    }
}

@media (max-width: 1199px) {
    .did-not-find-form--dark {
        border-radius: 30px;
    }

    .just-table--1 table {
        width: 1120px;
    }

    .just-table tbody th,
    .just-table tbody td {
        padding: 20px 15px 20px 15px;
    }

    .just-table--1 tbody th:first-child, .just-table--1 tbody td:first-child {
        width: calc(110* 100% / 1400);
    }
    
    .just-table--1 tbody th:nth-child(2), .just-table--1 tbody td:nth-child(2) {
        width: calc(290* 100% / 1400);
    }
    
    .just-table--1 tbody th:nth-child(3), .just-table--1 tbody td:nth-child(3) {
        width: calc(180* 100% / 1400);
    }
    
    .just-table--1 tbody th:nth-child(4), .just-table--1 tbody td:nth-child(4) {
        width: calc(255* 100% / 1400);
    }
    
    .just-table--1 tbody th:nth-child(5), .just-table--1 tbody td:nth-child(5) {
        width: calc(155* 100% / 1400);
    }
    
    .just-table--1 tbody th:nth-child(6), .just-table--1 tbody td:nth-child(6) {
        width: calc(145* 100% / 1400);
    }

    .just-table--2 tbody th:first-child, .just-table--2 tbody td:first-child {
        width: calc(473* 100% / 1400);
    }
    
    .just-table--2 tbody th:nth-child(2), .just-table--2 tbody td:nth-child(2) {
        width: calc(335* 100% / 1400);
    }
    
    .just-table--2 tbody th:nth-child(3), .just-table--2 tbody td:nth-child(3) {
        width: calc(236* 100% / 1400);
    }
    
    .just-table--2 tbody th:nth-child(4), .just-table--2 tbody td:nth-child(4) {
        width: calc(356* 100% / 1400);
    }

    .just-table--3 tbody th:first-child, .just-table--3 tbody td:first-child {
        width: calc(110* 100% / 1400);
    }
    
    .just-table--3 tbody th:nth-child(2), .just-table--3 tbody td:nth-child(2) {
        width: calc(355* 100% / 1400);
    }
    
    .just-table--3 tbody th:nth-child(3), .just-table--3 tbody td:nth-child(3) {
        width: calc(140* 100% / 1400);
    }
    
    .just-table--3 tbody th:nth-child(4), .just-table--3 tbody td:nth-child(4) {
        width: calc(220* 100% / 1400);
    }
    
    .just-table--3 tbody th:nth-child(5), .just-table--3 tbody td:nth-child(5) {
        width: calc(150* 100% / 1400);
    }
    
    .just-table--3 tbody th:nth-child(6), .just-table--3 tbody td:nth-child(6) {
        width: calc(160* 100% / 1400);
    }
    
    .just-table--3 tbody th:nth-child(7), .just-table--3 tbody td:nth-child(7) {
        width: calc(335* 100% / 1400);
    }

    .just-table--3 table {
        width: 1400px;
    }
}

@media (max-width: 991px) {
    h1 {
        font-size: 45px;
        line-height: 1;
        margin-bottom: 50px;
    }

    h2 {
        font-size: 40px;
        line-height: 1;
        margin-bottom: 30px;
    }

    .did-not-find-form__image {
        margin-top: 30px;
    }

    .did-not-find-form__image img {
        width: 100%;
        max-height: 90vh;
        object-fit: cover;
    }

    .text-and-image__image {
        margin-bottom: 30px !important;
    }

    section.text-and-image h2 br {
        display: none;
    }

    section.did-not-find-form.did-not-find-form--program-detail {
        border-radius: 30px;
    }

    .just-dark-text {
        padding: 30px;
    }

    .just-dark-text__header {
        font-size: 22px;
        line-height: 26px;
    }

    .just-table table {
        width: 1120px;
    }
    .search_in_programs{
        order: 1;
        margin-top: 20px;
    }
    .programs__controls{
        flex-wrap: wrap;
    }
}

@media (max-width: 991px) and (min-width: 768px) {
    .footer__top {
        flex-direction: column;
        row-gap: 40px;
    }

    /*img.footer__rating {
         margin-bottom: 20px; 
    }

    .footer__soc {
        margin-bottom: 20px;
        font-size: 20px;
    }

    .footer__contacts {
        font-size: 20px;
        line-height: 22px;
    }*/

    .footer__subscribe-description {
        font-size: 20px;
        /* margin-bottom: 15px; */
        /* line-height: 26px; */
        /* text-wrap: balance; */
        margin-bottom: 25px;
    }

    footer .order-md-1 {
        margin-top: 80px;
        display: flex;
        column-gap: 40px;
        flex-direction: row-reverse !important;
    }

    footer .order-md-1 ul.footer__menu {
        margin: 0;
        flex: 0 0 calc(50% - 20px);
    }

    ul.footer__menu:last-child {
        margin-top: 0;
    }

    ul.footer__menu {
        margin-bottom: 20px;
    }

    .footer__subscribe-pp {
        padding-bottom: 40px;
        margin-bottom: -40px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.25);
    }

    footer .order-md-1 ul.footer__menu:first-child {
        /* margin-top: -193px; */
        margin-top: -165px;
    }

    .footer__bottom {
        margin-top: 0;
        padding: 0;
        border-top: 0;
        position: absolute;
        bottom: 30px;
        left: 10px;
        flex-direction: column;
        row-gap: 12px;
        align-items: start;
    }

    footer .row {
        margin: 0 -20px;
    }

    footer [class*="col"] {
        padding: 0 20px;
    }

    footer .container {
        position: relative;
        padding-bottom: 30px;
    }

    footer {
        border-radius: 30px 30px 0 0;
    }

    .text-and-image--dark {
        border-radius: 30px;
    }

    button.footer__callback-button {
        margin-left: 20px;
    }

    footer .row {
        background: linear-gradient(rgba(255, 255, 255, 0.25), rgba(255, 255, 255, 0.25)) center center / 1px 100% no-repeat;
    }

    .footer__contacts {
        font-size: 20px;
    }
}

@media (max-width: 767px) {
    label.pp+label.pp {
        white-space: normal;
    }

    h1 {
        font-size: 34px;
        line-height: 1;
        margin-bottom: 30px;
    }

    h2 {
        font-size: 30px;
    }

    form.form {
        border-radius: 30px;
        padding: 30px;
    }

    .form__header {
        font-size: 29px;
    }


    section.text-and-image h2 {
        line-height: 1.2;
    }

    .footer__top {
        flex-direction: column;
        row-gap: 20px;
        align-items: stretch;
        padding-bottom: 30px;
        margin-bottom: 30px;
    }

    .footer__callback {
        font-size: 16px;
        justify-content: space-between;
    }

    button.footer__callback-button {
        margin-left: auto;
    }

    footer .logo {
        justify-content: center;
    }

    .footer__bottom {
        padding: 30px 0;
        margin-top: 30px;
        flex-direction: column;
        row-gap: 10px;
        align-items: start;
    }

    footer .row {
        row-gap: 30px;
    }

    ul.footer__menu {
        margin-bottom: 30px;
    }

    .footer__contacts {
        flex-direction: row;
        justify-content: space-between;
    }

    .footer__soc {
        justify-content: flex-end;
    }

    a.footer__ok {
        margin-left: auto;
        margin-right: 0;
    }

    img.footer__rating {
        margin-left: auto;
        margin-right: auto;
    }

    footer {
        padding-top: 30px;
        border-radius: 30px 30px 0 0;
    }

    .did-not-find-form__image img {
        border-radius: 30px;
    }

    section {
        --section-padding: 50px;
        padding-top: var(--section-padding);
        padding-bottom: var(--section-padding);
    }

    .modal__form-header {
        font-size: 30px;
        line-height: 1;
    }

    .modal__form-header br {
        display: none;
    }

    .modal__inner {
        padding: 30px;
        border-radius: 30px;
    }

    .text-and-image--dark {
        border-radius: 30px;
    }

    .footer__soc {
        column-gap: 17px;
        justify-content: flex-start;
    }

    a.footer__ok {
        margin-left: 0;
    }

    img.footer__rating {
        width: 100%;
        height: 141px;
        background: var(--color-gray-background);
        object-fit: contain;
    }

    .footer__subscribe-description {
        margin-bottom: 20px;
    }

    @media (min-width: 576px) {
        .just-dark-text__header {
            margin-bottom: 5px;
        }
        fieldset.form__fields input,
        fieldset.form__fields textarea {
            padding: 20px;
            font-size: 14px;
        }
    }
}

@media (max-width: 575px) {
    h2 {
        text-wrap: balance;
    }

    .form__header {
        font-size: 24px;
        line-height: 1.2;
    }

    fieldset.form__fields input.half {
        width: 100%;
    }

    section.text-and-image h2 {
        font-size: 25px;
    }

    label.pp.modal__form-pp {
        width: auto;
    }

    .modal__form-description {
        font-size: 15px;
    }

    footer .logo_company-name {
        font-size: 19px;
    }

    footer .logo_company-slogan {
        font-size: 15px;
    }

    .footer__contacts {
        flex-direction: column;
        font-size: 18px;
        line-height: 22px;
    }

    .footer__soc {
        font-size: 18px;
        justify-content: flex-start;
    }

    a.footer__ok {
        margin-left: 0;
    }

    img.footer__rating {
        margin-left: 0;
    }

    .footer__subscribe-description {
        font-size: 20px;
        margin-bottom: 10px;
    }

    .footer__callback {
        text-wrap: balance;
        column-gap: 5px;
    }

    .pop-over-container, .interactive-map__number {
        display: none;
    }

    .interactive-map__inner{
        overflow: hidden;
        aspect-ratio: 414/315;
    }
}
.footer__wa{
    background: url(/images/wa.svg) center center / 100% 100% no-repeat;
    margin-right: -5px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
}
.footer__tg{
    background: url(/images/telegramm.svg) center center / 100% 100% no-repeat;
    margin-right: -5px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
}
@media (max-width: 575px) {
    .footer__soc{
        flex-wrap: wrap;
    }
    .footer__soc span{
        width: 100%;
        margin-bottom: 15px;
    }
}
section.licenses{
    max-width: 100%;
    overflow: hidden;
}


/*.why-item-wrapper:nth-child(2), .why-item-wrapper:nth-child(6),
.why-item-wrapper:nth-child(2) .why-item::before, .why-item-wrapper:nth-child(6) .why-item::before{
    color: #fff;
}*/

.white-why.why-item-wrapper, .white-why.why-item-wrapper .why-item::before{
    color: var(--color-black);
}

.bvi-active jdiv{
    display: none;
}

.view_block .program__category, .view_block a.program__name, .view_block .program__image{
    opacity: 1!important;
}

.view_block{
    margin: 50px 0;
}

.faq-item__answer a{
    text-decoration: underline;
}

.faq-item__answer a:hover{
    text-decoration: none;
}