@font-face {
    font-family: "e-Ukraine";
    src: url("../font/e-Ukraine-Thin.eot");
    src: url("../font/e-Ukraine-Thin.eot?#iefix") format("embedded-opentype"), url("../font/e-Ukraine-Thin.ttf") format("truetype"), url("../font/e-Ukraine-Thin.woff2") format("woff2"), url("../font/e-Ukraine-Thin.woff") format("woff");
    font-weight: 100;
    font-style: normal;
}

@font-face {
    font-family: "e-Ukraine";
    src: url("../font/e-Ukraine-UltraLight.eot");
    src: url("../font/e-Ukraine-UltraLight.eot?#iefix") format("embedded-opentype"), url("../font/e-Ukraine-UltraLight.ttf") format("truetype"), url("../font/e-Ukraine-UltraLight.woff2") format("woff2"), url("../font/e-Ukraine-UltraLight.woff") format("woff");
    font-weight: 200;
    font-style: normal;
}

@font-face {
    font-family: "e-Ukraine";
    src: url("../font/e-Ukraine-Light.eot");
    src: url("../font/e-Ukraine-Light.eot?#iefix") format("embedded-opentype"), url("../font/e-Ukraine-Light.ttf") format("truetype"), url("../font/e-Ukraine-Light.woff2") format("woff2"), url("../font/e-Ukraine-Light.woff") format("woff");
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: "e-Ukraine";
    src: url("../font/e-Ukraine-Regular.eot");
    src: url("../font/e-Ukraine-Regular.eot?#iefix") format("embedded-opentype"), url("../font/e-Ukraine-Regular.ttf") format("truetype"), url("../font/e-Ukraine-Regular.woff2") format("woff2"), url("../font/e-Ukraine-Regular.woff") format("woff");
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: "e-Ukraine";
    src: url("../font/e-Ukraine-Medium.eot");
    src: url("../font/e-Ukraine-Medium.eot?#iefix") format("embedded-opentype"), url("../font/e-Ukraine-Medium.ttf") format("truetype"), url("../font/e-Ukraine-Medium.woff2") format("woff2"), url("../font/e-Ukraine-Medium.woff") format("woff");
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: "e-Ukraine";
    src: url("../font/e-Ukraine-Bold.eot");
    src: url("../font/e-Ukraine-Bold.eot?#iefix") format("embedded-opentype"), url("../font/e-Ukraine-Bold.ttf") format("truetype"), url("../font/e-Ukraine-Bold.woff2") format("woff2"), url("../font/e-Ukraine-Bold.woff") format("woff");
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: "e-Ukraine-Head";
    src: url("../font/e-UkraineHead-Regular.eot");
    src: url("../font/e-UkraineHead-Regular.eot?#iefix") format("embedded-opentype"), url("../font/e-UkraineHead-Regular.ttf") format("truetype"), url("../font/e-UkraineHead-Regular.woff2") format("woff2"), url("../font/e-UkraineHead-Regular.woff") format("woff");
    font-weight: normal;
    font-style: normal;
}

* {
    border: 0;
    outline: 0;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --page-background: #F9F6F1;
    --main-background: #6359E9;
    --second-background: #0B033C;
    --third-background: #E8E6FC;
    --fourth-background: #FFFFFF;
    --grad-background: linear-gradient(107deg, #C2E9FB 0%, #A1C4FD 100%);
    --main-text-color: #0B033C;
    --second-text-color: #000000;
    --third-text-color: #FFFFFF;
    --footer-text-color: #ECE9E5;
    --highlighted-text-color: #19BE6F;
    --tag-shadow: 0px 2px 3px 0px rgba(0, 0, 0, 0.10), 0px 6px 6px 0px rgba(0, 0, 0, 0.09), 0px 14px 8px 0px rgba(0, 0, 0, 0.05), 0px 25px 10px 0px rgba(0, 0, 0, 0.01), 0px 38px 11px 0px rgba(0, 0, 0, 0.00);
    --small-shadow: 0px 1px 3px 0px rgba(0, 0, 0, 0.10), 0px 5px 5px 0px rgba(0, 0, 0, 0.09), 0px 12px 7px 0px rgba(0, 0, 0, 0.05), 0px 22px 9px 0px rgba(0, 0, 0, 0.01), 0px 34px 9px 0px rgba(0, 0, 0, 0.00);
    --big-shadow: 0px 27px 58px 0px rgba(0, 0, 0, 0.15);
    --border: #A3A3A3;
    --border-radius-number: 12px;
}

html,
body {
    background: var(--page-background);
    color: var(--main-text-color);
    font-size: 14px;
    min-width: 340px;
    font-family: 'e-Ukraine', sans-serif;
    font-weight: 300;
}

body {
    overflow-x: hidden;
    min-height: 100vh;
}
body.no-scroll {
    overflow: hidden;
}

input,
button,
select {
    font-family: 'e-Ukraine', sans-serif;
    font-weight: 300;
}

input::placeholder,
select::placeholder {
    color: #717171;
}

a {
    text-decoration: none;
    transition: .2s;
}

img {
    max-width: 100%;
    height: auto;
    vertical-align: bottom;
}

.is-mobile-inline,
.is-mobile {
    display: none;
}

.btn {
    font-family: "e-Ukraine-Head", serif;
    height: 56px;
    padding: 0 66px;
    border-radius: 40px;
    color: var(--third-text-color);
    display: inline-flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    font-weight: 400;
    background: var(--main-background);
    max-width: 100%;
    gap: 12px;
}
.btn:hover {
    background: var(--second-background);
    color: var(--third-text-color);
}

.btn-fixed-width {
    width: 366px;
}
.btn-center-position {
    display: flex;
    margin: 0 auto;
}

#main {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

#header,
#footer {
    flex-shrink: 0;
}

#content-wrapper {
    flex-grow: 1;
}

.page-container {
    width: 1400px;
    max-width: 100%;
    margin: 0 auto;
    padding: 0 20px;
}
#menu_button {
    position: relative;
    display: block;
    width: 48px;
    height: 48px;
    cursor: pointer;
}
#menu_button .pix {
    position: absolute;
    width: 12px;
    height: 12px;
    background-color: var(--second-background);
    border-radius: 100%;
    transition: 0.2s ease-in-out;
}
#menu_button .pix:nth-of-type(1) {
    transform: translate(0px, 0px);
}
#menu_button .pix:nth-of-type(2) {
    transform: translate(18px, 0px);
}
#menu_button .pix:nth-of-type(3) {
    transform: translate(36px, 0px);
}
#menu_button .pix:nth-of-type(4) {
    transform: translate(0px, 18px);
}
#menu_button .pix:nth-of-type(5) {
    transform: translate(18px, 18px);
}
#menu_button .pix:nth-of-type(6) {
    transform: translate(36px, 18px);
}
#menu_button .pix:nth-of-type(7) {
    transform: translate(0px, 36px);
}
#menu_button .pix:nth-of-type(8) {
    transform: translate(18px, 36px);
}
#menu_button .pix:nth-of-type(9) {
    transform: translate(36px, 36px);
}

#menu_button.active .pix:nth-of-type(1) {
    /*transform: translate(0, 0);*/
    transform: translate(-8px, 21px) rotate(45deg);
    width: 64px;
    height: 6px;
    border-radius: 6px;
}
#menu_button.active .pix:nth-of-type(2) {
    /*transform: translate(9px, 9px);*/
    transform: translate(-8px, 21px) rotate(45deg);
    width: 64px;
    height: 6px;
    border-radius: 6px;
    opacity: 0;
}
#menu_button.active .pix:nth-of-type(3) {
    /*transform: translate(36px, 0);*/
    transform: translate(-8px, 21px) rotate(-45deg);
    width: 64px;
    height: 6px;
    border-radius: 6px;
    opacity: 0;
}
#menu_button.active .pix:nth-of-type(4) {
    /*transform: translate(9px, 27px);*/
    transform: translate(-8px, 21px) rotate(-45deg);
    width: 64px;
    height: 6px;
    border-radius: 6px;
}
#menu_button.active .pix:nth-of-type(5) {
    transform: translate(-8px, 21px) rotate(45deg);
    width: 64px;
    height: 6px;
    border-radius: 6px;
    opacity: 0;
}
#menu_button.active .pix:nth-of-type(6) {
    /*transform: translate(27px, 9px);*/
    transform: translate(-8px, 21px) rotate(-45deg);
    width: 64px;
    height: 6px;
    border-radius: 6px;
    opacity: 0;
}
#menu_button.active .pix:nth-of-type(7) {
    /*transform: translate(0, 36px);*/
    transform: translate(-8px, 21px) rotate(-45deg);
    width: 64px;
    height: 6px;
    border-radius: 6px;
    opacity: 0;
}
#menu_button.active .pix:nth-of-type(8) {
    /*transform: translate(27px, 27px);*/
    transform: translate(-8px, 21px) rotate(45deg);
    width: 64px;
    height: 6px;
    border-radius: 6px;
    opacity: 0;
}
#menu_button.active .pix:nth-of-type(9) {
    /*transform: translate(36px, 36px);*/
    transform: translate(-8px, 21px) rotate(45deg);
    width: 64px;
    height: 6px;
    border-radius: 6px;
    opacity: 0;
}

@media all and (min-width: 1025px) {
    #menu_button:hover .pix:nth-of-type(1) {
        transform: translate(-11px, -11px);
    }
    #menu_button:hover .pix:nth-of-type(3) {
        transform: translate(48px, -11px);
    }
    #menu_button:hover .pix:nth-of-type(7) {
        transform: translate(-11px, 48px);
    }
    #menu_button:hover .pix:nth-of-type(9) {
        transform: translate(48px, 48px);
    }

    #menu_button.active:hover .pix:nth-of-type(1) {
        transform: translate(-11px, -11px);
        width: 12px;
        height: 12px;
        opacity: 1;
    }
    #menu_button.active:hover .pix:nth-of-type(2) {
        transform: translate(4px, 4px);
        width: 12px;
        height: 12px;
        opacity: 1;
    }
    #menu_button.active:hover .pix:nth-of-type(3) {
        transform: translate(48px, -11px);
        width: 12px;
        height: 12px;
        opacity: 1;
    }
    #menu_button.active:hover .pix:nth-of-type(4) {
        transform: translate(4px, 33px);
        width: 12px;
        height: 12px;
        opacity: 1;
    }
    #menu_button.active:hover .pix:nth-of-type(5) {
        transform: translate(18px, 18px);
        width: 12px;
        height: 12px;
        opacity: 1;
    }
    #menu_button.active:hover .pix:nth-of-type(6) {
        transform: translate(33px, 4px);
        width: 12px;
        height: 12px;
        opacity: 1;
    }
    #menu_button.active:hover .pix:nth-of-type(7) {
        transform: translate(-11px, 48px);
        width: 12px;
        height: 12px;
        opacity: 1;
    }
    #menu_button.active:hover .pix:nth-of-type(8) {
        transform: translate(33px, 33px);
        width: 12px;
        height: 12px;
        opacity: 1;
    }
    #menu_button.active:hover .pix:nth-of-type(9) {
        transform: translate(48px, 48px);
        width: 12px;
        height: 12px;
        opacity: 1;
    }
}

#header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: var(--page-background);
    padding: 35px 0 0;
    z-index: 10;
    transition: .3s;
}

#header.scrolling {
    border-bottom: 1px solid var(--border);
    padding: 10px 0;
}

#header .logo {
    transition: .3s;
    font-size: 48px;
    line-height: 48px;
    color: var(--main-text-color);
    display: inline-flex;
    align-items: center;
    vertical-align: middle;
}
#header .logo svg {
    transition: .3s;
    margin-right: 10px;
    fill: var(--main-text-color);
}

#header .logo:hover {
    color: var(--main-background);
}
#header .logo:hover svg {
    fill: var(--main-background);
}

#header form {
    position: relative;
    width: 579px;
}
#header form input {
    width: 100%;
    height: 58px;
    border-radius: 100px;
    border: 1px solid var(--border);
    background: transparent;
    padding: 0 188px 0 43px;
    font-size: 16px;
}
#header form button {
    font-family: "e-Ukraine-Head", serif;
    position: absolute;
    right: 6px;
    top: 50%;
    transform: translateY(-50%);
    width: 172px;
    height: 47px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border-radius: 100px;
    background: var(--second-background);
    font-size: 16px;
    color: var(--third-text-color);
    transition: .2s;
}
#header form button:hover {
    background: var(--main-background);
}
#header form svg {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    fill: #717171;
}

#header .page-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 3;
}

#header .col-side {
    position: relative;
    width: 240px;
    flex-shrink: 0;
    z-index: 3;
}
#header .col-side:last-child {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logout,
.login-button {
    height: 49px;
    display: inline-flex;
    padding: 0 30px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 100px;
    border: 2px solid var(--second-background);
    color: var(--second-background);
    font-size: 18px;
    font-weight: 400;
    transition: .2s;
    font-family: "e-Ukraine-Head", serif;
}
.logout {
    color: var(--third-text-color);
    background: var(--second-background);
}
.logout:hover {
    background: var(--main-background);
    border-color: var(--main-background);
}
.login-button svg {
    fill: var(--second-background);
    transition: .2s;
}
.login-button:hover {
    border-color: var(--main-background);
    color: var(--main-background);
}
.login-button:hover svg {
    fill: var(--main-background);
}

#content-wrapper {
    padding-top: 128px;
    padding-bottom: 55px;
}

.main-slider {
    margin-bottom: 110px;
    background: var(--grad-background);
    min-height: 512px;
    border-radius: 24px;
    padding: 90px;
}

.main-slider .carousel-indicators {
    justify-content: flex-start;
    padding: 0 86px;
    margin: 0;
    bottom: 33px;
}
.main-slider .carousel-indicators [data-bs-target] {
    margin: 0 4px;
    padding: 0;
    border: 0;
    height: 6px;
    width: 56px;
    background-color: var(--second-background);
    opacity: .4;
    border-radius: 6px;
    position: relative;
}
.main-slider .carousel-indicators [data-bs-target]:before {
    content: '';
    position: absolute;
    top: -10px;
    bottom: -10px;
    left: 0;
    right: 0;
}
.main-slider .carousel-indicators [data-bs-target].active {
    opacity: 1;
}
.main-slider .carousel-indicators [data-bs-target]:not(.active):hover {
    opacity: .6;
}

.main-slider .carousel-item,
.main-slider .carousel-inner {
    height: 100%;
}
.main-slider .carousel-item {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
}
.carousel-item__title {
    font-family: "e-Ukraine-Head", serif;
    font-size: 56px;
    font-weight: 400;
    line-height: 60px;
    margin-bottom: 23px;
}
.carousel-item__text {
    font-size: 20px;
    font-weight: 300;
    line-height: 28px;
    margin-bottom: 45px;
}
.carousel-item__link {
    flex-shrink: 0;
}

.page-title {
    font-size: 38px;
    font-weight: 400;
    line-height: 40px;
    margin-bottom: 29px;
}
.tags-wrapper {
    margin-bottom: 59px;
}
.tags-wrapper .tags {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 10px;
}
.tags-wrapper .tag {
    border-radius: 100px;
    border: 1px solid #D8D8D8;
    background: var(--third-text-color);
    box-shadow: var(--tag-shadow);
    padding: 11px 20px;
    color: var(--main-text-color);
    text-align: center;
    font-size: 15px;
    transition: .2s;
}
.tags-wrapper .tag:hover {
    border-color: var(--second-background);
}

.specialties-section {
    margin-bottom: 117px;
}

.popular-courses {
    margin-bottom: 161px;
}
#coursesList .carousel-indicators {
    display: none;
}
.courses-list__items {
    display: flex;
    justify-content: flex-start;
    align-items: stretch;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 63px;
}
.courses-list__item {
    width: calc((100% - 60px) / 3);
    min-height: 228px;
    background: var(--grad-background);
    box-shadow: var(--small-shadow);
    border-radius: 16px;
    font-weight: 400;
    color: var(--second-text-color);
    display: inline-flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    position: relative;
}
.courses-list__item.white-bg {
    background: var(--fourth-background);
}
.courses-list__item:hover .courses-list__item-name {
    text-decoration: underline;
}

.courses-list__item-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 19px 12px 17px 32px;
}
.courses-list__item-type {
    font-size: 13px;
    line-height: 15px;
}
.courses-list__item-lesson {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 35px;
    padding: 0 15px;
    border-radius: 100px;
    background: var(--main-background);
    font-size: 13px;
    color: var(--third-text-color);
    font-weight: 200;
}
.courses-list__item-lesson.highlighted {
    background: var(--second-background);
}
.courses-list__item-name {
    padding: 0 32px;
    font-size: 16px;
    line-height: 24px;
    text-transform: uppercase;
}
.courses-list__item-info {
    padding: 18px 32px;
    display: flex;
    align-items: center;
    font-size: 16px;
    line-height: 24px;
    margin-top: auto;
    gap: 5px;
}
.courses-list__item-info .courses-list__item-type {
    display: none;
}

.popular-courses__more {
    width: fit-content;
    display: flex;
    margin: 0 auto;
}

.advantages {
    margin-bottom: 126px;
}

.advantages__title {
    margin-bottom: 15px;
}
.page-description {
    font-size: 18px;
    font-weight: 400;
    line-height: 28px;
    margin-bottom: 22px;
}

.advantages__items {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 50px;
}
.advantages__item {
    width: calc((100% - 90px) / 4);
    display: inline-flex;
    padding: 40px 44px 31px 29px;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    gap: 35px;
    border-radius: 16px;
    border: 1px solid #EEE;
    background: var(--third-text-color);
    box-shadow: var(--small-shadow);
    font-size: 18px;
    font-weight: 400;
    line-height: 28px;
}
a.advantages__item {
    color: var(--main-text-color);
    transition: .2s;
}
a.advantages__item:hover {
    color: var(--main-background);
}
.advantages__link {
    width: fit-content;
    display: flex;
    margin: 0 auto;
}

.official-docs {
    border-radius: 16px;
    background: var(--main-background);
    padding: 84px 80px 53px;
    overflow: hidden;
    position: relative;
    margin-bottom: 124px;
}
.official-docs__title {
    color: var(--third-text-color);
    font-size: 48px;
    font-weight: 400;
    line-height: normal;
    letter-spacing: -0.96px;
    margin-bottom: 33px;
}
.official-docs .btn {
    color: var(--second-text-color);
    background: var(--third-text-color);
}
.official-docs .btn:hover {
    color: var(--third-text-color);
    background: var(--second-background);
}
.official-docs:after {
    content: '';
    position: absolute;
    right: -160px;
    bottom: -338px;
    width: 555px;
    height: 555px;
    border-radius: 555px;
    border: 83px solid var(--third-text-color);
    background: var(--main-background);
}

.scroll-text {
    position: relative;
    overflow: hidden;
}
.scroll-text p {
    max-height: 168px;
    overflow-y: auto;
    font-size: 16px;
    font-weight: 400;
    line-height: 28px;
}
.scroll-text p::-webkit-scrollbar {
    width: 6px;
    border-radius: 6px;
}

.scroll-text p::-webkit-scrollbar-track {
    background: #B4B4B4;
    border-radius: 6px;
    border: 1px solid var(--page-background);
}

.scroll-text p::-webkit-scrollbar-thumb {
    width: 6px;
    border-radius: 8px;
    background: var(--second-background);
}
.scroll-text:after {
    content: '';
    position: absolute;
    height: 20px;
    bottom: 0;
    left: 0;
    right: 0;
    box-shadow: 1px -30px 30px 30px rgba(249, 246, 241, 0.8);
    background: rgba(249, 246, 241, 0.8);
    pointer-events: none;
}

.footer-container {
    border-radius: 16px 16px 0 0;
    background: #0B033C;
    padding: 74px 82px 26px;
    color: var(--footer-text-color);
}
.footer-container a {
    color: var(--footer-text-color);
    transition: .2s;
}
.footer-container a:hover {
    opacity: .6;
}

.footer-head {
    display: flex;
    padding-bottom: 133px;
    border-bottom: 2px solid rgba(255, 255, 255, .3);
    margin-bottom: 45px;
}

.footer-head__col {
    width: 50%;
}

.footer-head__title {
    font-size: 16px;
    margin-bottom: 23px;
}

.footer-head__link-wrapper {
    display: flex;
}

.footer-head__links {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-head__links:not(:last-child) {
    margin-right: 58px;
}

.footer-head__links a {
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 32px;
    color: var(--third-text-color);
    opacity: 0.7;
}
.footer-head__links a:hover {
    color: var(--footer-text-color);
    opacity: 1;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
}

.footer-bottom__col {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    width: 25%;
}
.footer-bottom__col:last-child {
    color: var(--third-text-color);
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 33px;
    display: block;
}

.footer-bottom__nav-small,
.footer-bottom__nav {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.footer-bottom__nav a {
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: -0.32px;
}
.footer-bottom__nav a:not(:last-child) {
    margin-bottom: 18px;
}

.footer-container .logo {
    color: var(--third-text-color);
    font-size: 48px;
    line-height: 48px;
    display: inline-flex;
    align-items: center;
    margin-bottom: 20px;
}
.footer-container .logo svg {
    fill: var(--third-text-color);
    margin-right: 10px;
}
.footer-bottom__copyright {
    color: var(--third-text-color);
    opacity: 0.7;
    font-size: 12px;
    line-height: 16px;
    letter-spacing: -0.24px;
    margin-bottom: 80px;
}
.master-visa,
.footer-bottom__medias {
    margin-top: auto;
}
.footer-bottom__media-title {
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: -0.32px;
    margin-bottom: 12px;
}
.footer-bottom__media-items {
    display: flex;
    gap: 12px;
}
.footer-bottom__nav-small {
    margin-top: auto;
    padding-bottom: 8px;
}

.footer-bottom__nav-small a {
    font-size: 12px;
    font-weight: 400;
    line-height: 16px;
    letter-spacing: -0.24px;color: var(--third-text-color);
    opacity: 0.7;
}
.footer-bottom__nav-small a:hover {
    color: var(--footer-text-color);
    opacity: 1;
}

.footer-bottom__nav-small a:not(:last-child) {
    margin-bottom: 18px;
}

#menu_list {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--grad-background);
    padding-top: 136px;
    z-index: 2;
    display: none;
}

#menu_list .page-container {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: flex-start;
    gap: 50px;
    overflow-y: auto;
    height: 100%;
    padding-bottom: 60px;
}
#menu_list .page-container::-webkit-scrollbar {
    width: 0;
}
#menu_list .page-container a {
    font-family: "e-Ukraine-Head", serif;
    color: var(--main-text-color);
    font-size: 56px;
    font-weight: 400;
    line-height: 60px;
    letter-spacing: -1.12px;
    display: inline-flex;
    align-items: center;
    gap: 32px;
    position: relative;
}
#menu_list .page-container a:before {
    content: '';
    position: absolute;
    right: 0;
    bottom: -22px;
    width: 0;
    height: 3px;
    background: linear-gradient(to left, #0B033C, transparent);
    transition: .3s;
}
#menu_list .page-container a:hover:before,
#menu_list .page-container a.active:before {
    width: 678px;
}

.menu-is-open #menu_list {
    display: block;
}
.menu-is-open  #header .col-side:last-child {
    justify-content: flex-end;
}
.menu-is-open  .login-button {
    display: none;
}

.form-section__form {
    background: var(--grad-background);
    border-radius: var(--border-radius-number);
    box-shadow: var(--big-shadow);
    width: 665px;
    max-width: 100%;
    padding: 77px 43px 39px;
    margin: 14px auto 159px;
}
.form-section__form-title {
    font-size: 46px;
    font-weight: 400;
    line-height: 60px;
    letter-spacing: -0.92px;
    margin-bottom: 72px;
    font-family: "e-Ukraine-Head", serif;
}
.form-input-wrapper {
    position: relative;
}
.form-input-wrapper:not(:last-child) {
    margin-bottom: 22px;
}
.form-input-wrapper.small-field:not(:last-child) {
    margin-bottom: 20px;
}

.form-section__form-input-wrapper:not(:last-child) {
    margin-bottom: 46px;
}
.form-input-wrapper label {
    font-size: 20px;
    line-height: 28px;
    letter-spacing: -0.4px;
    padding-left: 20px;
    margin-bottom: 7px;
}
.form-input-wrapper.small-field label {
    font-family: 'e-Ukraine Head', serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 17px;
    letter-spacing: 0;
    margin-bottom: 6px;
    padding-left: 11px;
}
.form-field {
    background: var(--third-text-color);
    border: 0;
    outline: 0;
    border-radius: 100px;
    height: 59px;
    padding: 0 20px;
    font-size: 16px;
    font-weight: 300;
    color: #1D1D1D;
}
textarea.form-field {
    border-radius: 25px;
    padding: 15px 20px;
    height: 119px;
    resize: none;
}
.form-input-wrapper.small-field .form-field {
    padding: 0 30px;
    height: 47px;
}
.form-input-wrapper.small-field textarea.form-field {
    padding: 15px 30px;
    height: 119px;
}
.form-field::placeholder {
    color: #85819D;
}

.form-section__form-link {
    color: var(--main-text-color);
    font-size: 20px;
    line-height: 28px;
    letter-spacing: -0.4px;
    text-decoration-line: underline;
}
.form-section__form-link:hover {
    color: var(--main-background);
}
.form-section__form-inputs {
    margin-bottom: 17px;
}
.form-validation {
    position: absolute;
    bottom: -19px;
    left: 20px;
    font-size: 10px;
    color: red;
}

.form-section__form .btn {
    display: flex;
    width: 366px;
    max-width: 100%;
    margin: 38px auto 45px;
}
.form-section__form .text-decoration-none {
    margin-bottom: 18px;
    display: inline-block;
}
.text-decoration-none {
    text-decoration: none;
}

.page-head {
    background: var(--grad-background);
    padding: 30px 25px;
    border-radius: var(--border-radius-number);
    margin-bottom: 15px;
}
.main-page-title {
    font-size: 38px;
    font-weight: 400;
    line-height: 40px;
    letter-spacing: -0.76px;
    margin-bottom: 20px;
}
.breadcrumbs {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    font-size: 20px;
    font-weight: 300;
    line-height: 28px;
    letter-spacing: -0.4px;
    gap: 6px;
}
.breadcrumbs span {
    font-weight: 500;
}
.breadcrumbs span,
.breadcrumbs a {
    display: inline-flex;;
    align-items: center;
}
.breadcrumbs a {
    color: var(--main-text-color);
}
.breadcrumbs a:hover {
    color: var(--main-background);
}
.breadcrumbs svg {
    fill: var(--main-text-color);
    margin-right: 8px;
    transform: translateY(-1px);
    transition: .2s;
}
.breadcrumbs a:hover svg {
    fill: var(--main-background);
}

.page-nav {
    width: 318px;
    max-width: 100%;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 57px 38px;
}
.page-nav a {
    display: inline-flex;
    align-items: center;
    font-size: 18px;
    line-height: 32px;
    letter-spacing: -0.56px;
    color: var(--main-text-color);
    transition: .2s;
}
.page-nav a:not(:last-child) {
    margin-bottom: 43px;
}
.page-nav .icon {
    width: 26px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-right: 20px;
}
.page-nav svg {
    transition: .2s;
    fill: var(--main-text-color);
    stroke: var(--main-text-color);
}

.page-nav a.highlighted {
    color: var(--highlighted-text-color);
}
.page-nav a.highlighted svg {
    fill: var(--highlighted-text-color);
    stroke: var(--highlighted-text-color);
}

.page-nav a.active {
    font-weight: 700;
    color: var(--main-background);
}
.page-nav a.active svg {
    fill: var(--main-background);
    stroke: var(--main-background);
}

.page-nav a:hover {
    color: var(--main-background);
}
.page-nav a:hover svg {
    fill: var(--main-background);
    stroke: var(--main-background);
}

.page-content__right {
    width: calc(100% - 318px);
    padding: 0 0 0 30px;
    position: relative;
}
.content-white-bg {
    border-radius: var(--border-radius-number);
    background: var(--fourth-background);
    box-shadow: var(--big-shadow);
}
.my-office__top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 20px;
    font-weight: 400;
    line-height: 26px;
    letter-spacing: -0.56px;
    margin-bottom: 15px;
    position: relative;
}

.my-office__top-documents {
    border-radius: var(--border-radius-number);
    background: var(--fourth-background);
    box-shadow: var(--big-shadow);
    display: inline-flex;
    padding: 30px 26px 29px 45px;
    justify-content: flex-end;
    align-items: flex-start;
    gap: 47px;
    font-weight: 700;
    color: var(--main-text-color);
}
.my-office__top-documents__title {
    font-size: 20px;
    border-bottom: 2px solid;
}
.my-office__top-documents__count {
    font-size: 26px;
}
.my-office__top-theme {
    color: var(--main-text-color);
}
.my-office__top-theme span {
    border-bottom: 2px solid;
}
.my-office__top-theme svg {
    fill: var(--main-text-color);
    stroke: var(--main-text-color);
}
.my-office__top-theme:hover,
.my-office__top-documents:hover {
    color: var(--main-background);
}
.my-office__top-theme:hover svg {
    fill: var(--main-background);
    stroke: var(--main-background);
}

.certificates {
    border-radius: var(--border-radius-number);
    background: var(--fourth-background);
    box-shadow: var(--big-shadow);
    position: relative;
    overflow: hidden;
    margin-bottom: 57px;
}
.certificates__title {
    padding: 25px 25px 27px;
    font-size: 20px;
    font-weight: 400;
    line-height: 32px;
    letter-spacing: -0.56px;
}
.certificates__title svg {

}
.certificates__item:not(:last-child) {
    border-bottom: 2px solid #b1adba;
}
.certificates__item:nth-child(2n + 1) {
    background: var(--third-background);
}
.certificates__item-head.collapsed {
    padding: 46px 46px 46px 25px;
}
.certificates__item-head:not(.collapsed) rect:first-child {
    visibility: hidden;
}
.certificates__item-head {
    padding: 18px 46px 0 25px;
    transition: .35s ease;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}
.certificates__item-head.collapsed + .certificates__item-description {
    padding: 0 25px;
    transition: .35s ease;
}
.certificates__item-description {
    padding: 9px 25px 22px;
}
.certificates__item-head span {
    font-size: 20px;
    font-weight: 400;
    line-height: 32px;
    letter-spacing: -0.56px;
    padding-right: 20px;
    transition: .2s;
}
.certificates__item-head:hover span {
    color: var(--main-background);
}
.certificates__item-head svg {
    flex-shrink: 0;
    fill: var(--main-text-color);
    transition: .2s;
}
.certificates__item-head:hover svg {
    fill: var(--main-background);
}

.certificates__item-description {
    display: flex;
    justify-content: space-between;
}
.certificates__item-description-info {
    font-size: 16px;
    font-weight: 300;
    line-height: 32px;
    letter-spacing: -0.56px;
}
.certificates__item-description-info span {
    font-weight: 500;
}

.certificates__item-description-info > div:not(:last-child) {
    margin-bottom: 4px;
}

.certificates__item-description-recipient a {
    display: inline-block;
}
.certificates__item-description-recipient .name {
    text-decoration: underline;
    color: var(--main-text-color);
    margin-right: 8px;
}
.certificates__item-description-recipient .name:hover {
    color: var(--main-background);
}
.certificates__item-description-recipient svg {
    fill: var(--main-text-color)
}
.certificates__item-description-recipient a:hover svg {
    fill: var(--main-background)
}
.certificates__item-description-buttons {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: flex-start;
    gap: 20px;
    width: 266px;
    flex-shrink: 0;
}
.certificates__item-description-button {
    border-radius: 25px;
    border: 2px solid var(--main-text-color);
    display: inline-flex;
    padding: 8px 15px;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    font-weight: 400;
    line-height: 32px;
    letter-spacing: -0.56px;
    color: var(--main-text-color);
}
.certificates__item-description-button svg {
    fill: var(--main-text-color);
    stroke: var(--main-text-color);
    transition: .2s;
}
.certificates__item-description-button:hover {
    border-color: var(--main-background);
    color: var(--main-background);
}
.certificates__item-description-button:hover svg {
    fill: var(--main-background);
    stroke: var(--main-background);
}

.certificates__item-description-check {
    position: relative;
    display: flex;
    align-items: center;
}
.certificates__item-description-check input {
    display: none;
}
.certificates__item-description-check label {
    margin-right: 9px;
    cursor: pointer;
}
.certificates__item-description-check label path {
    visibility: hidden;
}
.certificates__item-description-check input:checked + label path {
    visibility: visible;
}
.certificates__item-description-check a {
    font-size: 12px;
    font-weight: 400;
    line-height: 16px;
    letter-spacing: -0.24px;
    text-decoration-line: underline;
    color: var(--main-text-color);
}
.certificates__item-description-check a:hover {
    color: var(--main-background);
}
.page-content {
    margin-bottom: 45px;
}
.page-content .official-docs,
.page-content + .official-docs {
    margin-bottom: 0;
}

.page-left-side {
    width: 314px;
    max-width: 100%;
    flex-shrink: 0;
}

.filter-btn {
    display: none;
}

.page-left-side .tag {
    font-size: 13px;
    line-height: 15px;
    padding: 14px 20px;
}
.tags-title {
    font-size: 30px;
    font-weight: 300;
    line-height: 28px;
    letter-spacing: -0.4px;
    margin-bottom: 22px;
}
.page-left-side .tags-wrapper {
    margin-bottom: 48px;
}
.page-left-side .btn {
    padding: 0;
    width: 100%;
    gap: 12px;
}

.courses-page {
    padding: 54px 0 75px;
}

.courses-content {
    width: calc(100% - 314px);
    padding-left: 30px;
}
.courses-content__head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 28px;
}
.courses-content__head-sort {
    display: flex;
    align-items: center;
    font-size: 20px;
    font-weight: 300;
    line-height: 28px;
    letter-spacing: -0.4px;
}
.courses-content__head-sort span {
    margin-right: 28px;
}
.courses-content__head-sort select {
    width: auto;
    border-radius: 100px;
    border: 1px solid #D8D8D8;
    background: var(--fourth-background);
    box-shadow: var(--tag-shadow);
    padding: 18px 52px 18px 20px;
    font-size: 15px;
    font-weight: 300;
    line-height: 16px;
}

.courses-content__head-sort select::-webkit-inner-spin-button,
.courses-content__head-sort select::-ms-expand {
    display: none;
}
.courses-content__head-sort .sort-select {
    position: relative;
}
.courses-content__head-sort .sort-select:after {
    content: '';
    width: 24px;
    height: 24px;
    background: url(../images/arrow.svg) center no-repeat;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 20px;
    pointer-events: none;
}
.courses-content__head-sort .sort-select:not(:last-child) {
    margin-right: 25px;
}

.pagination {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 32px;
    letter-spacing: -0.36px;
}
.pagination__button {
    display: inline-flex;
}
.pagination__button svg {
    fill: #A3C6FD;
    transition: .2s;
}
.pagination__button:hover svg {
    fill: var(--second-background);
}
.pagination__button.disabled {
    pointer-events: none;
    opacity: .4;
}

.pagination__page {
    border-radius: 4px;
    background: #DEEFFF;
    width: 32px;
    height: 32px;
    text-align: center;
}

.courses-content__items {
    display: flex;
    justify-content: flex-start;
    align-items: stretch;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 58px;
    position: relative;
}
.courses-content__item {
    width: calc((100% - 60px) / 3);
    min-height: 304px;
    background: var(--fourth-background);
    box-shadow: var(--small-shadow);
    border-radius: 16px;
    font-weight: 400;
    color: var(--second-text-color);
    display: inline-flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    padding: 15px 0 29px;
    position: relative;
}

.courses-content__item-lesson {
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 35px;
    padding: 0 15px;
    border-radius: 100px;
    background: var(--main-background);
    font-size: 13px;
    color: var(--third-text-color);
    font-weight: 200;
}
.courses-content__item-lesson.highlighted {
    background: var(--second-background);
}
.courses-content__item-name {
    padding: 20px;
    line-height: 24px;
    text-transform: uppercase;
    font-size: 16px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    flex-grow: 1;
}
.courses-content__item-bottom {
    padding: 0 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 16px;
    line-height: 24px;
    margin-top: auto;
}
.courses-content__item-info {
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.course-info {
    display: flex;
    justify-content: space-between;
    margin-bottom: 90px;
}
.course-info__theme,
.course-info__list {
    border-radius: var(--border-radius-number);
    background: var(--fourth-background);
    box-shadow: var(--big-shadow);
    position: relative;
}
.course-info__theme {
    width: calc(100% - 415px - 18px);
    padding: 28px 26px 45px;
}
.course-info__list {
    width: 415px;
    max-width: 100%;
    flex-shrink: 0;
    padding: 32px 20px 32px 26px;
}
.course-info__theme-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 21px;
}

.course-info__theme-head__title {
    font-size: 20px;
    line-height: 28px;
    letter-spacing: -0.4px;
}
.course-info__theme-head__badges {
    display: flex;
    align-items: center;
    gap: 12px;
    position: absolute;
    top: 28px;
    right: 30px;
}
.course-info__theme-head__badge {
    width: 114px;
    height: 35px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 100px;
    background: #19BE6F;
    color: var(--third-text-color);
    font-size: 13px;
    line-height: 15px;
}
.course-info__theme-head__badge.available {
    background: #FFD600;
    color: var(--second-text-color);
}
.course-info__theme-title {
    font-size: 56px;
    font-weight: 400;
    line-height: 60px;
    letter-spacing: -1.12px;
    margin-bottom: 26px;
    color: var(--second-text-color);
}
.course-info__theme-description {
    font-size: 18px;
    line-height: 28px;
    letter-spacing: -0.36px;
    color: var(--second-text-color);
    margin-bottom: 41px;
}
.course-info__theme-buttons {
    display: flex;
    align-items: center;
    gap: 34px;
}
.course-info__theme-buttons .btn {
    height: 66px;
    padding: 0 26px;
    gap: 11px;
}
.course-info__theme-buttons .btn:last-child {
    gap: 15px;
    background: var(--second-background);
}
.course-info__theme-buttons .btn:last-child:hover {
    background: var(--second-text-color);
}

.course-info__list-item {
    display: flex;
    align-items: flex-start;
}
.course-info__list-item:not(:last-child) {
    margin-bottom: 26px;
}
.course-info__list-item__icon {
    width: 24px;
    flex-shrink: 0;
    margin-right: 11px;
    transform: translateY(3px);
}
.course-info__list-item__text {
    font-size: 20px;
    line-height: 28px;
    letter-spacing: -0.4px;
}
.course-info__list-item__text span {
    font-weight: 700;
}
.course-info__list-item__text.underline {
    text-decoration: underline;
    cursor: pointer;
    transition: .2s;
}
.course-info__list-item__text.underline:hover {
    color: var(--main-background);
}

.profile__form {
    padding: 37px 30px 29px;
}

.profile__form-row {
    display: flex;
    gap: 32px;
    margin-bottom: 40px;
}
.profile__form-col {
    width: 42.23%;
}
.profile__form-input-wrapper {
    position: relative;
}
.profile__form-input-wrapper:not(:last-child) {
    margin-bottom: 28px;
}
.profile__form-input-wrapper input:focus {
    outline: 0;
    box-shadow: none;
    border-color: var(--main-background);
}
.profile__form-input-wrapper input,
.profile__form-input-wrapper label {
    padding-left: 30px;
    font-family: 'e-Ukraine Head', serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 19px
}
.profile__form-input-wrapper label {
    margin-bottom: 8px;
}
.profile__form-input-wrapper input {
    height: 49px;
    border-radius: 25px;
    border: 2px solid var(--second-text-color);
    background: var(--fourth-background);
}
.profile-page {
    margin-bottom: 154px;
}

.certificate-register__title {
    text-align: center;
    font-size: 38px;
    font-weight: 400;
    line-height: 40px;
    letter-spacing: -0.76px;
    margin: 40px 0 30px;
}
.certificate-register__form {
    position: relative;
    width: 666px;
    max-width: 100%;
    margin: 0 auto 40px;
}
.certificate-register__form input {
    width: 100%;
    height: 58px;
    border-radius: 100px;
    border: 1px solid var(--border);
    background: transparent;
    padding: 0 188px 0 43px;
    font-size: 16px;
}
.certificate-register__form button {
    position: absolute;
    right: 6px;
    top: 50%;
    transform: translateY(-50%);
    width: 124px;
    height: 47px;
    padding: 0;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border-radius: 100px;
    font-size: 16px;
    transition: .2s;
}
.certificate-register__form button:hover {
    background: var(--main-background);
}
.certificate-register__form svg {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    fill: #717171;
}

.certificate-register__table {
    font-size: 20px;
    line-height: 32px;
    letter-spacing: -0.56px;
    margin-bottom: 42px;
}
.certificate-register__table .table {
    overflow: hidden;
    margin: 0;
}
.certificate-register__table th {
    background: var(--main-background);
    color: var(--third-text-color);
    padding: 30px;
    border: 0;
}
.certificate-register__table td {
    color: var(--second-text-color);
    padding: 36px 30px;
    border: 0;
}
.certificate-register__table-row:nth-child(2n) td {
    background: var(--third-background);
}
td.certificate-register__table-id {
    text-decoration: underline;
    cursor: pointer;
    transition: .2s;
}
td.certificate-register__table-id:hover {
    color: var(--main-background);
}

.certificate-register__table-name {}
.certificate-register__table-status img {
    display: none;
}
.certificate-register__table-date {}

.certificate-register__save-data {
    color: var(--second-text-color);
    font-size: 23px;
    font-weight: 500;
    line-height: 32px;
    letter-spacing: -0.56px;
    margin-bottom: 159px;
}

.order-page {
    margin: 34px auto 170px;
}
.order-page__form {
    width: 896px;
    max-width: 100%;
    background: var(--grad-background);
    border-radius: 25px;
    margin: 0 auto 106px;
    padding: 24px 82px 26px;
}
.order-page__form-small-title {
    text-align: center;
    font-family: 'e-Ukraine Head', serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 17px;
    margin-bottom: 8px;
}
.order-page__form-title {
    text-align: center;
    font-size: 25px;
    font-weight: 400;
    line-height: 44px;
    letter-spacing: -0.5px;
    margin-bottom: 36px;
}
.order-page__form-row {
    display: flex;
    gap: 27px;
    margin-bottom: 37px;
}
.order-page__form-col {
    width: calc((100% - 27px) / 2);
}

.order-page__form-time {
    font-size: 16px;
    font-weight: 400;
    line-height: 28px;
    letter-spacing: -0.4px;
    margin-bottom: 12px;
}
.order-page__form-time-row {
    display: flex;
    gap: 18px;
    margin-bottom: 33px;
}

.order-page__form-time-radio {
    width: calc((100% - (12px * 3)) / 4);
    box-shadow: var(--tag-shadow);
    border-radius: var(--border-radius-number);
    background: var(--fourth-background);
}
.order-page__form-time-radio input {
    display: none;
}
.order-page__form-time-radio label {
    display: flex;
    padding: 12px 0;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 8px;
    text-align: center;
    line-height: 28px;
    letter-spacing: -0.4px;
    cursor: pointer;
}
.order-page__form-time-price {
    font-size: 20px;
    font-weight: 700;
}
.order-page__form-time-count {
    font-size: 16px;
    font-weight: 300;
}
.order-page__form-time-radio .center-element {
    opacity: 0;
}
.order-page__form-time-radio input:checked + label .center-element {
    opacity: 1;
}

.order-page__how-get__title {
    font-size: 38px;
    font-weight: 400;
    line-height: 45px;
    letter-spacing: -0.76px;
    margin-bottom: 14px;
}
.order-page__how-get__title + .order-page__how-get__description {
    margin-top: -14px;
}
.order-page__how-get__description {
    color: var(--second-text-color);
    font-size: 18px;
    font-weight: 400;
    line-height: 28px;
    letter-spacing: -0.36px;
    margin-bottom: 26px;
}
.order-page__how-get__list {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 50px;
}
.order-page__how-get__item {
    width: calc((100% - 90px) / 4);
    display: inline-flex;
    padding: 40px 23px 31px 29px;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 35px;
    border-radius: 16px;
    border: 1px solid #EEE;
    background: var(--third-text-color);
    box-shadow: var(--small-shadow);
}

.order-page__how-get__item-text {
    font-size: 18px;
    font-weight: 400;
    line-height: 28px;
    letter-spacing: -0.36px;
}
.order-page__how-get__item-text a {
    color: var(--main-text-color);
    font-weight: 700;
    text-decoration-line: underline;
}
.order-page__how-get__item-text a:hover {
    color: var(--main-background);
}

.how-it-work-page {
    margin: 54px 0 145px;
}
.how-it-work-page .order-page__how-get__list {
    margin-bottom: 153px;
}
.how-it-work-page__faq-title {
    font-size: 38px;
    font-weight: 700;
    line-height: 45px;
    letter-spacing: -0.76px;
    margin-bottom: 39px;
}
.how-it-work-page__faq-list {}
.how-it-work-page__faq-item {
    padding: 0 22px 30px 15px;
}
.how-it-work-page__faq-item:not(:last-child) {
    border-bottom: 2px solid #B2ADBB;
    margin-bottom: 40px;
}
.how-it-work-page__faq-item-head {
    font-size: 28px;
    font-weight: 400;
    line-height: 34px;
    letter-spacing: -0.56px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    padding-bottom: 30px;
    transition: .35s ease;
    gap: 20px;
}
.how-it-work-page__faq-item-head.collapsed {
    padding-bottom: 0;
}
.how-it-work-page__faq-item-head:not(.collapsed) rect:first-child {
    visibility: hidden;
}
.how-it-work-page__faq-item-head svg {
    flex-shrink: 0;
}
.how-it-work-page__faq-item-description {
    font-size: 18px;
}

.partners-page {
    gap: 34px;
    margin: 34px 0 94px;
}
.partners-page__form,
.partners-page .order-page__how-get {
    width: calc((100% - 34px) / 2);
}

.partners-page .order-page__how-get__item {
    width: calc((100% - 30px) / 2);
}
.partners-page__form {
    background: var(--grad-background);
    border-radius: var(--border-radius-number);
    box-shadow: var(--big-shadow);
    padding: 28px 43px;
}
.partners-page__form-title {
    text-align: center;
    font-family: 'e-Ukraine Head', serif;
    font-size: 38px;
    font-weight: 400;
    line-height: 60px;
    letter-spacing: -0.76px;
    margin-bottom: 27px;
}
.partners-page__form-row {
    margin-bottom: 27px;
}
.partners-page__form-input-wrapper {}

.contacts-page {
    margin: 34px 0 107px;
    gap: 50px;
}
.contacts-page__info {
    width: calc(100% - 483px);
    padding-top: 52px;
}
.contacts-page__info-title {
    font-size: 38px;
    font-weight: 700;
    line-height: 40px;
    letter-spacing: -0.76px;
    margin-bottom: 18px;
}
.contacts-page__info-text {
    color: var(--second-text-color);
    font-size: 34px;
    line-height: 71px;
}
.contacts-page__form {
    width: 433px;
    background: var(--grad-background);
    border-radius: var(--border-radius-number);
    box-shadow: var(--big-shadow);
    padding: 20px 43px 42px;

}
.contacts-page__form-title {
    text-align: center;
    font-family: 'e-Ukraine Head', serif;
    font-size: 28px;
    font-style: normal;
    font-weight: 400;
    line-height: 60px;
    letter-spacing: -0.56px;
    margin-bottom: 15px;
}
.contacts-page__form-row {
    margin-bottom: 58px;
}
.contacts-page__form .btn {
    width: 318px;
    max-width: 100%;
}

.modal-dialog {
    min-width: 896px;
}
.modal-content {
    border-radius: 25px;
    background: var(--fourth-background);
}
.available .modal-content {
    background: #19BE6F;
}
.not-available .modal-content {
    background: #FF6174;
}

.modal-close {
    position: absolute;
    right: 35px;
    top: 27px;
    cursor: pointer;
    z-index: 3;
}
.modal-close svg {
    stroke: var(--main-text-color);
}
.modal-body {
    padding: 72px 68px 80px 86px;
    color: var(--second-text-color);
}

#documentInfoModal .modal-close svg {
    stroke: var(--third-text-color);
}
#documentInfoModal .modal-body {
    color: var(--third-text-color);
}
#certificateModal .modal-body {
    padding: 92px 94px;
}
#certificateModal .modal-body img {
    width: 100%;
    border-radius: 12px;
}
.modal-body__title {
    font-size: 38px;
    font-weight: 400;
    line-height: 43px;
    letter-spacing: -0.76px;
    margin-bottom: 16px;
}
.modal-body__description {
    font-size: 18px;
    line-height: 28px;
    letter-spacing: -0.36px;
    position: relative;
    z-index: 2;
}
.modal-body__description a {
    color: var(--second-text-color);
    text-decoration-line: underline;
}
.modal-body__description a:hover {
    color: var(--main-background);
}
#documentsModal .modal-body {
    overflow: hidden;
}
#documentsModal .modal-body:after {
    content: '';
    position: absolute;
    right: -242px;
    bottom: -327px;
    width: 555px;
    height: 555px;
    border-radius: 555px;
    border: 83px solid var(--main-background);
    background: var(--third-text-color);
}

#documentInfoModal .modal-body__title {
    line-height: 50px;
    letter-spacing: -0.76px;
}
.modal-body__description-list-item {
    font-size: 26px;
    font-weight: 400;
    line-height: 32px;
    letter-spacing: -0.56px;
}
.modal-body__description-list-item:not(:last-child) {
    margin-bottom: 30px;
}
.text-right {
    text-align: right;
}
#respinfo {
    text-align: center;
    padding-bottom: 20px;
    color: #dc0000;
    font-size: 16px;
}
#errorraport {
    font-size: 18px;
    color: #f00000;
}
.certificates__item-description-button{
    position: relative;
    background: none;
}
.certificates__item-description-button:disabled {
    border-color: #dbdbdb;
    background-color: #dbdbdb;
}

.ddcertsbtn:disabled::after {
    content: "Спочатку підтвердіть, що пройшли курс";
    visibility: hidden;
    width: 200px;
    background-color: #555;
    color: #fff;
    text-align: center;
    padding: 5px 0;
    border-radius: 6px;

    position: absolute;
    z-index: 1;
    bottom: 125%;
    left: 50%;
    margin-left: -100px;

    opacity: 0;
    transition: opacity 0.3s;
}

.ddcertsbtn:disabled:hover::after {
    visibility: visible;
    opacity: 1;
}

#respinfo.success {
    text-align: center;
    color: #074003;
    font-size: 16px;
    background-color: #f6fff9;
    border-radius: 10px;
    padding: 10px;
    border-color: #138e09;
    border-style: dashed;
    border-width: 3px;
}


#inforecpass{
    text-align: center;
    color: #074003;
    font-size: 16px;
    background-color: #f6fff9;
    border-radius: 10px;
    padding: 10px;
    border-color: #138e09;
    border-style: dashed;
    border-width: 3px;
}

#filt {
    padding: 10px;
}

#tr_form label {
    display: block;
    margin-top: 10px;
    font-size: 16px;
    font-weight: bold;
}
#tr_form textarea {
    width: 100%;
    border: solid 1px #b3adfd;
    padding: 5px;
    height: max-content;
}

#tr_form .form-section {
    border-bottom: dashed 2px #bbb;
    padding-bottom: 15px;
}