* {
    margin: 0;
    padding: 0;
    outline: none;
    text-decoration: none;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    border-collapse: collapse;
    font-family: 'Roboto', sans-serif;
}

.align-left {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
}

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

.align-right {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
}

.hidden {
    display: none;
}

textarea {
    resize: vertical;
}

input[type='number']::-webkit-outer-spin-button,
input[type='number']::-webkit-inner-spin-button {
    display: none;
    -webkit-appearance: none;
    margin: 0;
}

input[type='number'] {
    -moz-appearance: textfield;
}

body {
    color: #333;
}

.holder {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

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

.account-page button,
.btn {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    white-space: nowrap;
    background: #03598C;
    text-transform: uppercase;
    cursor: pointer;
    font-weight: bold;
    min-width: 180px;
    display: inline-block;
    border: 0;
    font-size: 17px;
    line-height: 23px;
    color: #fff;
    padding: 20px 10px;
    text-align: center;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
}

.account-page button.dark,
.btn.dark {
    background: #033059;
}

.account-page button:hover,
.btn:hover {
    background: #609ABF;
}

.account-page button.btn-empty,
.btn.btn-empty {
    background: #fff;
    color: #033059;
    outline: 1px solid #033059;
}

header {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    background: #fff;
    padding: 10px 0;
    border-bottom: 1px solid #033059;
    z-index: 999;
}

header .holder {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

header .holder a:first-child {
    display: block;
}

header .holder a:first-child img {
    display: block;
    width: 100%;
}

header .holder nav ul {
    list-style: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

header .holder nav ul li a {
    color: #011240;
    font-weight: bold;
    font-size: 18px;
    padding: 15px 30px;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
}

header .holder nav ul li a:hover {
    color: #03598C;
}

header .holder div:last-child {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

header .holder div:last-child a {
    color: #03598C;
    padding: 10px;
    display: block;
    font-weight: 500;
}

header .holder div:last-child a:last-child {
    padding-right: 0;
}

header .holder div:last-child a:nth-child(2) {
    border: 1px solid #A0CADA;
}

header .burger {
    display: none;
    cursor: pointer;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

header .burger span {
    background: #011240;
    width: 37px;
    height: 2px;
    margin-bottom: 8px;
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}

header .burger span:last-child {
    margin: 0;
}

header .burger.active span:nth-child(1) {
    -webkit-transform: rotate(45deg) translateY(7px) translateX(2px);
    transform: rotate(45deg) translateY(7px) translateX(2px);
}

header .burger.active span:nth-child(2) {
    display: none;
}

header .burger.active span:nth-child(3) {
    -webkit-transform: rotate(-45deg) translateY(-5px);
    transform: rotate(-45deg) translateY(-5px);
}

header.cabinet-header {
    background: #011240;
}

header.cabinet-header .holder {
    background: #011240;
}

header.cabinet-header .holder > div:last-child a[href] {
    color: #A0CADA;
    border: 0;
    padding: 0;
}

header.cabinet-header .holder > div:last-child a:not([href]) {
    color: #fff;
    padding: 7px 0;
    padding-right: 10px;
    margin-right: 10px;
    border-right: 1px solid #fff;
}

@media (max-width: 550px) {
    header.cabinet-header .holder > div:last-child a:not([href]) {
        display: none;
    }
}

header.cabinet-header .holder > div:last-child a:last-child {
    margin-left: 30px;
}

header.cabinet-header .holder img {
    height: 46px;
}

@media (max-width: 1225px) {
    header.cabinet-header .holder .burger {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }
}

header.cabinet-header .holder .burger span {
    background: #fff;
}

.modalq-wrapper {
    position: fixed;
    left: 0;
    top: 0;
    padding: 15px;
    width: 100vw;
    height: 100vh;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    background: #03305973;
    z-index: 9999;
    display: none;
}

.modalq-wrapper .modalq {
    border-radius: 25px;
    display: none;
    position: relative;
    background: #fff;
    padding: 30px;
    width: 100%;
    max-height: calc(var(--vh, 100vh) - 30px);
    min-height: 12.22222em;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    max-width: 25em;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    overflow-x: hidden;
    overflow-y: auto;
    text-align: center;
}

@media (max-width: 1023px) {
    .modalq-wrapper .modalq {
        height: auto;
    }
}

.modalq-wrapper .modalq span[data-modalq-close] {
    position: absolute;
    right: 15px;
    top: 15px;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    padding: 0;
    width: auto;
}

.modalq-wrapper .modalq form {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    max-width: 25.55556em;
    margin: 0 auto;
    width: 100%;
}

.modalq-wrapper .modalq .title {
    font-size: 1.66667em;
    text-align: center;
    font-weight: 500;
    margin: 0 auto 0.5em;
    max-width: 500px;
}

@media (max-width: 767px) {
    .modalq-wrapper .modalq .title {
        font-size: 1.66667em;
    }
}

.modalq-wrapper .modalq > svg {
    width: 100%;
    padding-bottom: 30px;
    display: block;
}

.modalq-wrapper .modalq .btn {
    margin-top: 20px;
    padding: 10px;
}

.modalq-wrapper .modalq#modalq-0 > div {
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    text-align: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: 1.5em;
    font-weight: 500;
    max-width: 15.55556em;
    margin: 0 auto;
    line-height: 130%;
}

section.seo-text {
    font-size: 1em;
    color: #000;
    letter-spacing: 0.05556em;
    font-family: inherit;
}

section.seo-text video,
section.seo-text iframe {
    margin: 0 auto;
    display: block;
}

section.seo-text p {
    margin-bottom: 0.83333em;
    font-size: inherit;
    letter-spacing: inherit;
    font-family: inherit;
    color: inherit;
}

section.seo-text.indent h1 ~ p {
    text-indent: 1.5em;
}

section.seo-text ul,
section.seo-text ol {
    margin-bottom: 0.27778em;
    font-size: inherit;
    font-family: inherit;
    letter-spacing: inherit;
    color: inherit;
}

section.seo-text ul {
    list-style: inside disc;
}

section.seo-text ol {
    list-style: inside decimal;
}

section.seo-text li {
    margin-bottom: 0.27778em;
    font-size: inherit;
    font-family: inherit;
    letter-spacing: inherit;
    color: inherit;
}

section.seo-text p *,
section.seo-text li * {
    font-size: inherit;
    letter-spacing: inherit;
    color: inherit;
    font-family: inherit;
}

section.seo-text a:not(.btn) {
    text-decoration: underline;
}

section.seo-text a:not(.btn):hover {
    text-decoration: none;
}

section.seo-text img {
    max-width: 100%;
    height: auto;
}

section.seo-text h1 {
    font-size: 1.66667em;
    margin-bottom: 0.55556em;
    margin-top: 0.27778em;
}

section.seo-text h2 {
    font-size: 1.55556em;
    margin-bottom: 0.55556em;
    margin-top: 0.27778em;
}

section.seo-text h3 {
    font-size: 1.44444em;
    margin-bottom: 0.55556em;
    margin-top: 0.27778em;
}

section.seo-text h4 {
    font-size: 1.33333em;
    margin-bottom: 0.55556em;
    margin-top: 0.27778em;
}

section.seo-text h5 {
    font-size: 1.22222em;
    margin-bottom: 0.55556em;
    margin-top: 0.27778em;
}

section.seo-text h6 {
    font-size: 1.11111em;
    margin-bottom: 0.55556em;
    margin-top: 0.27778em;
}

main {
    padding-top: 83px;
    min-height: calc(100vh - 158px);
}

section.home-banner {
    background: url(../img/home-banner.jpg) center 100%/cover;
    background-attachment: fixed;
    height: 100vh;
    margin-top: -83px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
}

section.home-banner:after {
    content: '';
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: #00000038;
    position: absolute;
    z-index: 1;
}

section.home-banner .holder {
    position: relative;
    z-index: 2;
    -webkit-transition: all 0.2s cubic-bezier(0.63, 0.7, 0.46, 0.81);
    transition: all 0.2s cubic-bezier(0.63, 0.7, 0.46, 0.81);
}

section.home-banner .title {
    font-family: Montserrat;
    font-style: normal;
    font-weight: bold;
    font-size: 48px;
    line-height: 140%;
    color: #fff;
    max-width: 780px;
}

section.home-banner p {
    font-size: 18px;
    line-height: 170%;
    color: #fff;
    margin: 20px 0 40px;
    max-width: 566px;
}

section.home-about {
    margin: 120px 0 160px;
}

section.home-about .holder {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

section.home-about .holder img {
    margin-right: 60px;
    max-width: 60%;
    -o-object-fit: cover;
    object-fit: cover;
}

section.home-about .holder div .title {
    font-family: Montserrat;
    font-weight: bold;
    font-size: 48px;
    margin-bottom: 60px;
}

section.home-about .holder div p {
    margin-bottom: 30px;
    font-size: 18px;
    line-height: 170%;
}

section.home-about .holder div .btn {
    margin-top: 30px;
}

section.questions {
    padding: 120px 0;
}

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

section.questions .holder .title {
    margin-right: 60px;
    font-family: Montserrat;
    font-weight: bold;
    font-size: 48px;
    line-height: 120%;
    color: #fff;
}

section.questions .holder div p {
    font-weight: 600;
    font-size: 18px;
    line-height: 170%;
    margin-bottom: 40px;
    color: #fff;
}

section.questions .holder div form input {
    border: 1px solid #fff;
    border-radius: 2px;
    padding: 18px 15px;
    width: 180px;
    text-align: center;
    margin-right: 10px;
    background: transparent;
    color: #fff;
    font-weight: 600;
    font-size: 17px;
    line-height: 23px;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
}

section.questions .holder div form input::-webkit-input-placeholder {
    color: #fff;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
}

section.questions .holder div form input:-ms-input-placeholder {
    color: #fff;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
}

section.questions .holder div form input::-ms-input-placeholder {
    color: #fff;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
}

section.questions .holder div form input::placeholder {
    color: #fff;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
}

section.questions .holder div form input:focus {
    background: #fff;
    border-color: #03598C;
    color: #011240;
}

section.questions .holder div form input:focus::-webkit-input-placeholder {
    color: #011240;
}

section.questions .holder div form input:focus:-ms-input-placeholder {
    color: #011240;
}

section.questions .holder div form input:focus::-ms-input-placeholder {
    color: #011240;
}

section.questions .holder div form input:focus::placeholder {
    color: #011240;
}

section.questions.bg1 {
    background: url(../img/q1.jpg) center/cover;
}

section.questions.bg1 .holder .title {
    color: #000;
}

section.questions.bg1 .holder div p {
    color: #011240;
}

section.questions.bg1 .holder div form input {
    border: 1px solid #011240;
    color: #011240;
}

section.questions.bg1 .holder div form input::-webkit-input-placeholder {
    color: #011240;
}

section.questions.bg1 .holder div form input:-ms-input-placeholder {
    color: #011240;
}

section.questions.bg1 .holder div form input::-ms-input-placeholder {
    color: #011240;
}

section.questions.bg1 .holder div form input::placeholder {
    color: #011240;
}

section.questions.bg2 {
    background: url(../img/q2.jpg) center/cover;
}

section.questions.bg3 {
    background: url(../img/q3.jpg) center/cover;
}

section.questions.bg4 {
    background: url(../img/q4.jpg) center/cover;
}

section.questions.bg4 {
    background: url(../img/q4.jpg) center/cover;
}

section.questions.bg5 {
    background: url(../img/q5.jpg) center/cover;
}

section.questions.bg6 {
    background: url(../img/q6.jpg) center/cover;
}

section.questions.bg7 {
    background: url(../img/q7.jpg) center/cover;
}

footer {
    background: #011240;
}

footer .holder:nth-child(1) {
    padding: 20px 15px 35px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

footer .holder:nth-child(1) > div:nth-child(1) {
    width: 155px;
}

footer .holder:nth-child(1) > div:nth-child(1) div {
    margin-top: 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

footer .holder:nth-child(1) > div:nth-child(1) div svg path {
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
}

footer .holder:nth-child(1) > div:nth-child(1) div a:hover svg path[fill="white"] {
    fill: #609ABF;
}

footer .holder:nth-child(1) > div:nth-child(2) {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    margin: 0 15px;
    -ms-flex-pack: distribute;
    justify-content: space-around;
}

footer .holder:nth-child(1) > div:nth-child(2) a {
    color: #fff;
    padding: 21px 15px 0px;
    font-weight: 500;
    font-size: 20px;
    line-height: 23px;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
}

footer .holder:nth-child(1) > div:nth-child(2) a:hover {
    color: #609ABF;
}

footer .holder:nth-child(1) > div:nth-child(3) span {
    font-size: 18px;
    line-height: 130%;
    color: #A0CADA;
    text-align: right;
    display: block;
    white-space: nowrap;
    width: 190px;
    margin-left: -50px;
}

footer .holder:nth-child(1) > div:nth-child(3) span:first-child {
    font-weight: bold;
    margin-bottom: 13px;
    margin-top: 23px;
}

footer .holder:nth-child(2) {
    padding: 10px 15px;
    border-top: 1px solid #A0CADA;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

footer .holder:nth-child(2) svg:first-child {
    margin-right: 20px;
}

footer .holder:nth-child(2) span, footer .holder:nth-child(2) a {
    color: #fff;
    display: block;
    font-weight: 500;
    font-size: 14px;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
}

footer .holder:nth-child(2) a:hover {
    color: #609ABF;
}

section.catalog-banner {
    margin-bottom: 60px;
    min-height: 420px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    background: url(../img/catalog-page-img.jpg) center/cover;
}

section.catalog-banner .holder {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
}

section.catalog-banner .holder .title {
    max-width: 780px;
    font-family: Montserrat;
    font-weight: bold;
    font-size: 48px;
    line-height: 140%;
    color: #fff;
}

.currency {
    margin-bottom: 60px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
}

.currency p {
    font-size: 20px;
    line-height: 140%;
    color: #000;
    margin-right: 8px;
}

.currency a {
    border: 1px solid #BDBDBD;
    width: 40px;
    height: 40px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    font-size: 14px;
    margin-left: 12px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    cursor: pointer;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
    color: #BDBDBD;
}

.currency a:hover {
    color: #03598C;
}

.currency a.active {
    border-color: #03598C;
    color: #03598C;
    font-size: bold;
    cursor: default;
}

h1 + .currency {
    margin-bottom: 15px;
}

section.catalog .products {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 3.33333em;
}

section.catalog .products .item {
    width: calc(100% / 3 - 60px / 3);
    border: 1px solid #E0E0E0;
}

@media (max-width: 1024px) {
    section.catalog .products .item {
        width: calc(50% - 15px);
    }
}

@media (max-width: 650px) {
    section.catalog .products .item {
        width: 100%;
    }
}

section.catalog .products .item > a:nth-child(1) {
    display: block;
}

section.catalog .products .item > a:nth-child(1) img {
    width: 100%;
    height: 100%;
    display: block;
    -o-object-fit: cover;
    object-fit: cover;
}

section.catalog .products .item > a:nth-child(2) {
    font-weight: bold;
    font-size: 24px;
    line-height: 140%;
    color: #000;
    margin: 20px 12px;
    display: block;
    min-height: 67px;
}

section.catalog .products .item p {
    font-size: 14px;
    line-height: 170%;
    color: #333;
    margin: 0 12px 40px;
    min-height: 119px;
}

section.catalog .products .item div {
    padding: 12px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

section.catalog .products .item div span {
    font-weight: bold;
    font-size: 30px;
    line-height: 140%;
}

section.product {
    padding: 60px 0;
}

section.product h1 {
    font-weight: bold;
    font-size: 30px;
    line-height: 140%;
    color: #000;
    margin-bottom: 60px;
}

section.product .gallary {
    margin-bottom: 60px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

section.product .gallary .photos {
    margin-right: 30px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

section.product .gallary .photos .thumbs {
    margin-right: 20px;
}

section.product .gallary .photos .thumbs img {
    display: block;
    -o-object-fit: cover;
    object-fit: cover;
    width: 100px;
    height: 80px;
    margin-bottom: 20px;
    cursor: pointer;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
}

section.product .gallary .photos .thumbs img:hover {
    opacity: .8;
}

section.product .gallary .photos .thumbs img:last-child {
    margin-bottom: 0;
}

section.product .gallary .photos > img {
    display: block;
    width: calc(100% - 120px);
    max-width: 670px;
    -o-object-fit: cover;
    object-fit: cover;
}

section.product .gallary .buy {
    min-width: 295px;
}

section.product .gallary .buy > span {
    font-weight: bold;
    font-size: 48px;
    line-height: 140%;
    color: #000;
    display: block;
    margin-bottom: 20px;
}

section.product .gallary .buy .btn {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: distribute;
    justify-content: space-around;
    min-width: 250px;
}

section.product .gallary .buy .btn span {
    font-weight: bold;
    font-size: 17px;
    line-height: 23px;
    text-align: center;
    text-transform: uppercase;
    margin-right: 15px;
}

section.product .gallary .buy p {
    margin-top: 15px;
    font-size: 14px;
    line-height: 170%;
}

section.product .gallary .buy p a {
    font-size: 14px;
    line-height: 170%;
    font-weight: bold;
    color: #033059;
}

section.product .gallary .buy p a:hover {
    text-decoration: underline;
}

section.product .info h2 {
    font-weight: bold;
    font-size: 24px;
    line-height: 140%;
    color: #000;
    margin-bottom: 40px;
}

section.product .info p {
    font-size: 18px;
    line-height: 170%;
    color: #000;
    margin-bottom: 15px;
}

section.parnters {
    padding: 60px 0 130px;
}

section.parnters h1 {
    font-weight: bold;
    font-size: 72px;
    line-height: 120%;
    color: #000;
    margin-bottom: 30px;
    font-family: Montserrat;
    text-align: center;
}

section.parnters p {
    font-weight: bold;
    font-size: 30px;
    line-height: 140%;
    color: #000;
    margin-bottom: 60px;
}

section.parnters .logos {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (1fr) [ 3 ];
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 3.33333em;
}

section.parnters .logos img {
    display: block;
    width: 100%;
}

section.faq {
    padding: 60px 0 160px;
}

section.faq h1 {
    font-weight: bold;
    font-size: 72px;
    line-height: 120%;
    color: #000;
    margin-bottom: 30px;
    font-family: Montserrat;
    text-align: center;
}

section.faq .faq-container .item {
    border: 1px solid #A0CADA;
    margin-bottom: 10px;
}

section.faq .faq-container .item:last-child {
    margin-bottom: 0;
}

section.faq .faq-container .item .header {
    cursor: pointer;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 23px 40px;
}

section.faq .faq-container .item .header span {
    color: #000;
    margin-right: 40px;
    font-weight: 600;
    font-size: 20px;
    line-height: 170%;
}

section.faq .faq-container .item .header svg path:nth-child(2) {
    display: none;
}

section.faq .faq-container .item .header.active svg path:nth-child(1) {
    display: none;
}

section.faq .faq-container .item .header.active svg path:nth-child(2) {
    display: block;
}

section.faq .faq-container .item > p {
    display: none;
    padding: 40px;
    font-size: 18px;
    line-height: 170%;
}

section.about-banner {
    min-height: 420px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    background: url(../img/about-banner.jpg) center/cover;
}

section.about-banner .holder {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

section.about-banner .holder .title {
    font-family: Montserrat;
    font-weight: bold;
    font-size: 48px;
    line-height: 140%;
    color: #fff;
}

section.about-info {
    padding: 120px 0 160px;
}

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

section.about-info .holder .counts {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-top: -20px;
}

section.about-info .holder .counts .item {
    margin-bottom: 30px;
}

section.about-info .holder .counts .item:last-child {
    margin-bottom: 0;
}

section.about-info .holder .counts .item span {
    font-weight: bold;
    font-size: 72px;
    line-height: 140%;
    color: #033059;
    display: block;
    font-family: Montserrat;
}

section.about-info .holder .counts .item p {
    font-size: 18px;
    line-height: 170%;
    color: #033059;
}

section.about-info .holder .text {
    max-width: 780px;
    margin-left: 30px;
}

section.about-info .holder .text h2 {
    margin-bottom: 60px;
    font-family: Montserrat;
    font-weight: bold;
    font-size: 30px;
    line-height: 140%;
    color: #000000;
}

section.about-info .holder .text p {
    margin-bottom: 30px;
    text-align: justify;
    font-size: 18px;
    line-height: 170%;
}

section.about-info .holder .text p:last-child {
    margin-bottom: 0;
}

section.contacts {
    padding: 60px 0 20px;
}

section.contacts h1 {
    font-weight: bold;
    font-size: 72px;
    line-height: 120%;
    color: #000;
    margin-bottom: 30px;
    font-family: Montserrat;
    text-align: center;
}

section.contacts .flex-container {
    margin-bottom: 40px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

section.contacts .flex-container .list {
    margin-right: 30px;
}

section.contacts .flex-container .list .item {
    margin-bottom: 60px;
}

section.contacts .flex-container .list .item:last-child {
    margin-bottom: 0;
}

section.contacts .flex-container .list .item span {
    margin-bottom: 12px;
    font-family: Montserrat;
    font-weight: bold;
    font-size: 24px;
    line-height: 140%;
    color: #000;
    display: block;
}

section.contacts .flex-container .list .item a {
    font-weight: 500;
    font-size: 20px;
    line-height: 170%;
    display: block;
    color: #03598C;
}

section.contacts .flex-container .form {
    width: 100%;
    max-width: 780px;
}

section.contacts .flex-container .form .title {
    font-family: Montserrat;
    font-weight: bold;
    font-size: 30px;
    line-height: 140%;
    color: #000;
    margin-bottom: 40px;
    text-align: center;
}

section.contacts .flex-container .form form > input, section.contacts .flex-container .form form > textarea {
    margin-bottom: 10px;
    display: block;
    width: 100%;
    border: 1px solid #A0CADA;
    border-radius: 2px;
    padding: 20px 40px;
    font-weight: 600;
    font-size: 17px;
    line-height: 23px;
    color: #03598C;
}

section.contacts .flex-container .form form > label {
    margin-bottom: 10px;
    display: block;
}

section.contacts .flex-container .form form > input::-webkit-input-placeholder, section.contacts .flex-container .form form > textarea::-webkit-input-placeholder {
    font-weight: 600;
    font-size: 17px;
    line-height: 23px;
    color: #609ABF;
}

section.contacts .flex-container .form form > input:-ms-input-placeholder, section.contacts .flex-container .form form > textarea:-ms-input-placeholder {
    font-weight: 600;
    font-size: 17px;
    line-height: 23px;
    color: #609ABF;
}

section.contacts .flex-container .form form > input::-ms-input-placeholder, section.contacts .flex-container .form form > textarea::-ms-input-placeholder {
    font-weight: 600;
    font-size: 17px;
    line-height: 23px;
    color: #609ABF;
}

section.contacts .flex-container .form form > input::placeholder, section.contacts .flex-container .form form > textarea::placeholder {
    font-weight: 600;
    font-size: 17px;
    line-height: 23px;
    color: #609ABF;
}

section.contacts .flex-container .form form div {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
}

section.contacts .flex-container .form form div label {
    cursor: pointer;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

section.contacts .flex-container .form form div label input {
    cursor: pointer;
    margin-right: 20px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border: 1px solid #A0CADA;
    width: 20px;
    height: 20px;
    margin-bottom: 0;
    position: relative;
}

section.contacts .flex-container .form form div label input:checked {
    background: url(../img/check.svg) center/14px no-repeat;
}

section.contacts .flex-container .form form div label span {
    font-size: 14px;
    line-height: 170%;
    color: #000;
}

section.contacts .flex-container .form form div label span a {
    color: #033059;
    font-weight: bold;
}

section.contacts .flex-container .form form div label span a:hover {
    text-decoration: underline;
}

section.contacts .flex-container .form form div .btn {
    width: 100%;
}

section.contacts .messengers {
    background: #033059;
    padding: 33px 0;
}

section.contacts .messengers .holder {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

section.contacts .messengers .holder div {
    font-family: Montserrat;
    font-weight: bold;
    font-size: 24px;
    line-height: 140%;
    color: #fff;
}

section.contacts .messengers .holder div:nth-child(2) {
    width: 450px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

section.contacts .messengers .holder div a {
    font-family: 'Roboto', sans-serif;
    font-weight: bold;
    font-size: 20px;
    line-height: 170%;
    color: #fff;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

section.contacts .messengers .holder div a:hover {
    color: #609ABF;
}

section.policy {
    padding: 20px 0 120px;
    line-height: 28px;
}

section.policy h1 {
    font-weight: 700;
    font-size: 40px;
    line-height: 60px;
    color: #000;
    font-family: Montserrat;
    margin-bottom: 28px;
    margin-top: 28px;
}

section.policy h2 {
    font-weight: 700;
    font-size: 32px;
    line-height: 48px;
    color: #000;
    font-family: Montserrat;
    margin-bottom: 26px;
    margin-top: 26px;
}

section.policy p {
    margin-bottom: 16px;
    margin-top: 16px;
}

section.policy ul {
    list-style: disc;
    padding-left: 40px;
}


section.policy * {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

section.terms {
    padding: 20px 0 120px;
    line-height: 28px;
}

section.terms h1 {
    font-weight: 700;
    font-size: 40px;
    line-height: 60px;
    color: #000;
    font-family: Montserrat;
    margin-bottom: 28px;
    margin-top: 28px;
}

section.terms h2 {
    font-weight: 700;
    font-size: 32px;
    line-height: 48px;
    color: #000;
    font-family: Montserrat;
    margin-bottom: 26px;
    margin-top: 26px;
}

section.terms p {
    margin-bottom: 16px;
    margin-top: 16px;
}

section.terms ul {
    list-style: disc;
    padding-left: 40px;
}


section.terms * {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

section.return {
    padding: 20px 0 120px;
    line-height: 28px;
}

section.return h1 {
    font-weight: 700;
    font-size: 40px;
    line-height: 60px;
    color: #000;
    font-family: Montserrat;
    margin-bottom: 28px;
    margin-top: 28px;
}

section.return h2 {
    font-weight: 700;
    font-size: 32px;
    line-height: 48px;
    color: #000;
    font-family: Montserrat;
    margin-bottom: 26px;
    margin-top: 26px;
}

section.return p {
    margin-bottom: 16px;
    margin-top: 16px;
}

section.return ul {
    list-style: disc;
    padding-left: 40px;
}


section.return * {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

section.news {
    padding: 60px 0 130px;
}

section.news h1 {
    font-weight: bold;
    font-size: 72px;
    line-height: 120%;
    color: #000;
    margin-bottom: 30px;
    font-family: Montserrat;
}

section.news .holder > p {
    font-weight: bold;
    font-size: 30px;
    line-height: 140%;
    color: #000;
    margin-bottom: 60px;
}

section.news .item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 90px;
}

section.news .item:last-child {
    margin-bottom: 0;
}

section.news .item > a:first-child {
    display: block;
    margin-right: 60px;
}

section.news .item > a:first-child img {
    display: block;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    max-width: 330px;
}

section.news .item > div {
    max-width: 780px;
}

section.news .item > div a:first-child {
    font-family: Montserrat;
    font-weight: bold;
    font-size: 24px;
    line-height: 140%;
    color: #000;
    margin-bottom: 20px;
    display: block;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

section.news .item > div a:first-child:hover {
    color: #609ABF;
}

section.news .item > div span {
    font-size: 14px;
    line-height: 140%;
    color: #609ABF;
    display: block;
    margin-bottom: 20px;
}

section.news .item > div p {
    font-size: 18px;
    line-height: 170%;
    color: #333;
    margin-bottom: 40px;
}

section.news .item > div a:last-child {
    font-weight: bold;
    font-size: 17px;
    line-height: 23px;
    text-transform: uppercase;
    color: #03598C;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

section.news .item > div a:last-child:hover {
    color: #609ABF;
}

.news-inner {
    margin-bottom: 120px;
}

.news-inner .holder > img {
    width: 100%;
    display: block;
    -o-object-fit: cover;
    object-fit: cover;
    margin-bottom: 120px;
}

.news-inner .holder > div {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.news-inner .holder > div .title {
    margin-right: 60px;
}

.news-inner .holder > div .title h1 {
    font-family: Montserrat;
    font-style: normal;
    font-weight: bold;
    font-size: 30px;
    line-height: 140%;
    color: #000;
    margin-bottom: 40px;
}

.news-inner .holder > div .title span {
    font-size: 14px;
    line-height: 140%;
    color: #609ABF;
}

.news-inner .holder > div div:last-child {
    max-width: 780px;
}

.news-inner .holder > div div:last-child p {
    font-size: 18px;
    line-height: 170%;
    color: #333;
    margin-bottom: 15px;
}

.account-page {
    padding: 60px 0 130px;
}

.account-page h1 {
    font-weight: bold;
    font-size: 72px;
    line-height: 120%;
    color: #000;
    margin-bottom: 30px;
    font-family: Montserrat;
    text-transform: capitalize;
}

@media (max-width: 1200px) {
    header .holder nav ul li a {
        font-size: 18px;
        padding: 15px 20px;
    }

    .site-main .thim-course-grid#thim-course-archive {
        grid-gap: 30px;
    }

    .catalog-banner ~ .content-area .container .btn {
        min-width: 150px;
    }

    .container {
        max-width: 100%;
        width: 100%;
    }

    .site-main .thim-course-grid#thim-course-archive {
        -ms-grid-columns: (1fr) [ 2 ];
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 1020px) {
    section.questions .holder {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }

    section.questions .holder .title {
        margin-right: 0;
        font-size: 38px;
    }

    section.questions .holder div p {
        margin: 20px 0;
        font-size: 16px;
    }

    section.about-info .holder {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }

    section.about-info .holder .counts {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
        margin-bottom: 30px;
    }

    section.about-info .holder .text {
        margin-left: 0;
        max-width: 100%;
    }

    section.news .item > a:first-child {
        margin-right: 30px;
    }

    section.news .item > div p {
        margin-bottom: 30px;
    }

    section.news .item > div p {
        font-size: 16px;
    }
}

@media (max-width: 948px) {
    section.product .gallary {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }

    section.product .gallary .photos {
        margin-right: 0;
        margin-bottom: 30px;
    }

    section.product .gallary .photos > img {
        max-height: 380px;
    }

    section.product .gallary .buy {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }

    section.home-about .holder img {
        max-width: 50%;
        margin-right: 30px;
    }

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

    header .holder nav {
        position: absolute;
        left: 0;
        top: 83px;
        background: #fff;
        width: 100%;
        display: none;
        border-bottom: 1px solid #033059;
    }

    header .holder nav ul {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }

    header .holder {
        background: #fff;
    }

    section.parnters h1 {
        font-size: 48px;
        margin-bottom: 20px;
    }

    .account-page > h1,
    section.news h1,
    section.faq h1,
    section.contacts h1,
    section.policy h1 {
        font-size: 48px;
    }

    section.faq .faq-container .item > p,
    section.faq .faq-container .item .header {
        padding: 20px;
    }

    section.faq {
        padding: 30px 0 60px;
    }

    section.faq .faq-container .item .header span {
        margin-right: 20px;
        font-size: 16px;
        width: calc(100% - 24px - 20px);
    }

    section.faq .faq-container .item > p {
        font-size: 16px;
        padding-top: 0;
    }

    section.parnters p {
        font-size: 20px;
        margin-bottom: 30px;
    }

    section.parnters .logos {
        grid-gap: 1.11111em;
    }
}

@media (max-width: 767px) {
    footer .holder:nth-child(1) > div:nth-child(3) span {
        width: auto;
        margin-left: 0;
    }

    footer .holder:nth-child(1) > div:nth-child(2) {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }

    section.contacts .messengers .holder div:nth-child(1),
    section.contacts .messengers .holder div:nth-child(3) {
        display: none;
    }

    section.contacts .messengers .holder div:nth-child(2) {
        width: 100%;
        -ms-flex-pack: distribute;
        justify-content: space-around;
    }

    section.contacts .flex-container .form form div {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }

    section.contacts .flex-container .form form div label {
        margin-bottom: 10px;
    }

    section.contacts {
        padding: 60px 0 60px;
    }

    section.contacts .flex-container .form .title {
        margin-bottom: 15px;
    }

    section.contacts .flex-container {
        margin-bottom: 60px;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }

    section.contacts .flex-container .list {
        margin-right: 0;
        margin-bottom: 30px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        text-align: center;
    }

    section.contacts .flex-container .list .item a {
        font-size: 16px;
    }

    section.contacts .flex-container .list .item {
        margin: 0 5px 10px;
    }

    section.contacts .flex-container .form form > input, section.contacts .flex-container .form form > textarea {
        padding: 15px;
    }

    section.contacts .flex-container .list .item span {
        font-size: 20px;
    }

    section.policy p {
        font-size: 16px;
    }

    section.about-info .holder .text p {
        margin-bottom: 15px;
        font-size: 16px;
    }

    section.about-info .holder .text h2 {
        margin-bottom: 30px;
        font-size: 25px;
    }

    section.about-info {
        padding: 60px 0;
    }

    section.about-info .holder .counts .item span {
        font-size: 48px;
    }

    section.about-info .holder .counts .item p {
        font-size: 16px;
    }

    section.product .gallary .photos > img {
        width: 100%;
    }

    section.product .gallary .photos {
        -webkit-box-orient: vertical;
        -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
        flex-direction: column-reverse;
    }

    section.product .gallary .photos .thumbs {
        margin-right: 0;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        width: calc(100% + 10px);
        margin-left: -5px;
    }

    section.product .info p {
        font-size: 16px;
    }

    section.product .info h2 {
        margin-bottom: 15px;
    }

    section.product h1 {
        font-size: 25px;
        margin-bottom: 30px;
    }

    section.product .gallary .photos .thumbs img {
        width: calc(100% / 4 - 10px);
        height: auto;
        margin: 10px 5px 0;
    }

    section.home-about .holder {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }

    section.home-about .holder img {
        max-width: 100%;
        margin-right: 0;
        height: 200px;
    }

    section.home-about .holder div .title {
        margin: 30px 0 15px;
        font-size: 38px;
    }

    section.home-about .holder div p {
        margin-bottom: 15px;
        font-size: 17px;
    }

    section.home-about .holder div .btn {
        margin-top: 10px;
    }

    .account-page button,
    .btn {
        padding: 15px 10px;
        min-width: 140px;
    }

    section.questions .holder div form .btn {
        width: 100%;
    }

    section.questions .holder div form input {
        padding: 14px 15px;
        width: 100%;
        margin: 0 0 10px;
    }

    section.home-about {
        margin: 60px 0 60px;
    }

    section.questions {
        padding: 60px 0;
        /*         margin-bottom: 60px; */
    }

    footer .holder:nth-child(2) {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        flex-direction: column;
    }

    footer .holder:nth-child(2) > div:first-child {
        width: 100%;
        margin-bottom: 10px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }

    footer .holder:nth-child(2) svg {
        margin: 5px !important;
        max-width: 100px;
    }

    footer .holder:nth-child(1) {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }

    footer .holder:nth-child(1) > div:nth-child(2) a {
        padding: 21px 5px 0px;
    }

    footer .holder:nth-child(1) > div:nth-child(3) span {
        text-align: center !important;
    }

    footer .holder:nth-child(1) {
        padding: 20px 15px 20px;
    }

    section.catalog-banner .holder .title {
        font-size: 25px;
    }

    section.parnters {
        padding: 30px 0 50px;
    }

    section.news .item {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        margin-bottom: 50px;
    }

    section.news .item > a:first-child {
        margin-right: 0;
        margin-bottom: 15px;
    }

    section.news .item > div span {
        margin-bottom: 5px;
    }

    section.news .item > div a:first-child {
        font-size: 20px;
        margin-bottom: 5px;
    }

    section.news .item > div p {
        margin-bottom: 15px;
    }

    section.news .holder > p {
        font-size: 18px;
        margin-bottom: 30px;
    }

    .news-inner .holder > img {
        margin-bottom: 60px;
    }

    .news-inner .holder > div {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }

    .news-inner .holder > div .title {
        margin-right: 0;
    }

    .news-inner .holder > div .title h1 {
        margin-bottom: 30px;
    }

    .news-inner .holder > div .title span {
        display: block;
        margin-bottom: 15px;
    }

    .news-inner .holder > div div:last-child p {
        font-size: 16px;
    }

    .news-inner {
        margin-bottom: 60px;
    }
}

@media (max-width: 500px) {
    section.contacts .flex-container .list {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }

    section.about-info .holder .counts .item {
        width: 50%;
        text-align: center;
    }

    section.about-info .holder .counts {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }

    section.contacts .flex-container .list .item {
        margin: 5px 10px 10px;
    }

    section.parnters .logos {
        grid-gap: 1.11111em;
        -ms-grid-columns: (1fr) [ 2 ];
        grid-template-columns: repeat(2, 1fr);
    }

    section.parnters p {
        font-size: 18px;
    }

    header .holder div:last-child a {
        padding: 7px;
    }

    header .holder a:first-child img {
        max-width: 105px;
        padding-right: 5px;
    }

    header .holder nav {
        top: 63px;
    }

    main {
        padding-top: 63px;
    }

    section.home-banner {
        margin-top: -63px;
    }

    section.home-banner .holder {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        text-align: center;
    }

    section.home-banner .title {
        font-size: 30px;
    }

    section.home-banner p {
        font-size: 17px;
    }
}

.title {
    font-weight: bold;
    font-size: 1.66667em;
    line-height: 140%;
    color: #011240;
    margin-bottom: 1em;
    font-family: Montserrat;
    text-transform: capitalize;
}

.certificate-check {
    margin-top: 30px;
}

.center {
    text-align: center;
}

section.auth {
    padding: 60px 0 130px;
    min-height: calc(100vh - 99px - 242px);
}

.cabinet-header .holder, .cabinet-wrapper .holder, .cabinet-wrapper + footer .holder {
    max-width: 75.88889em;
}

main.cabinet-wrapper {
    padding-top: 67px;
    background: -webkit-gradient(linear, left top, right top, from(#F8FCFF), to(#FFFFFF));
    background: linear-gradient(90deg, #F8FCFF 0%, #FFFFFF 100%);
}

@media (max-width: 1225px) {
    main.cabinet-wrapper {
        background: #fff;
    }
}

main.cabinet-wrapper aside {
    background: #F8FCFF;
    border-right: 1px solid #F2F2F2;
    padding: 1.66667em 0;
    width: 255px;
    position: relative;
}

@media (max-width: 1225px) {
    main.cabinet-wrapper aside {
        position: fixed;
        z-index: 99;
        left: -300px;
        -webkit-transition: all .3s ease;
        transition: all .3s ease;
        top: 70px;
        height: 100vh;
    }

    main.cabinet-wrapper aside.active {
        left: 0;
        -webkit-box-shadow: 0 0 17px #01124042;
        box-shadow: 0 0 17px #01124042;
    }
}

main.cabinet-wrapper aside > div {
    position: -webkit-sticky;
    position: sticky;
    top: 71px;
    left: 0;
}

@media (max-width: 1225px) {
    main.cabinet-wrapper aside > div {
        position: unset;
    }
}

main.cabinet-wrapper aside a {
    padding: 0.83333em 1.66667em;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 1.38889em;
    border-left: 3px solid transparent;
    position: relative;
}

main.cabinet-wrapper aside a span {
    display: block;
    white-space: nowrap;
    font-weight: 500;
    color: #011240;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
}

main.cabinet-wrapper aside a svg {
    -ms-flex-negative: 0;
    flex-shrink: 0;
}

main.cabinet-wrapper aside a:hover span {
    color: #609ABF;
}

main.cabinet-wrapper aside a.active span {
    color: #609ABF;
}

main.cabinet-wrapper aside a.active:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.83333em;
    height: 24px;
    width: 2px;
    background: #609ABF;
}

main.cabinet-wrapper aside + .content {
    width: 100%;
    height: 100%;
    background: #fff;
    min-height: calc(100vh - 72px - 242px);
    padding: 0 0 1.66667em 1.66667em;
}

@media (max-width: 1225px) {
    main.cabinet-wrapper aside + .content {
        padding-left: 0;
    }
}

main.cabinet-wrapper aside + .content .btn {
    font-size: 0.8125em;
    padding: 1.15385em 1.38462em;
}

main.cabinet-wrapper aside + .content .breadcrumbs {
    list-style: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin: 0.55556em 0 0.44444em;
    gap: 0.27778em;
}

main.cabinet-wrapper aside + .content .breadcrumbs a {
    font-weight: 300;
    font-size: 14px;
    line-height: 130%;
    color: #033059;
}

main.cabinet-wrapper aside + .content .breadcrumbs li:last-child a {
    color: #828282;
}

main.cabinet-wrapper aside + .content .table-scroll {
    width: 100%;
}

@media (max-width: 860px) {
    main.cabinet-wrapper aside + .content .table-scroll {
        overflow-x: auto;
    }

    main.cabinet-wrapper aside + .content .table-scroll thead {
        position: unset;
    }
}

main.cabinet-wrapper aside + .content table {
    position: relative;
    width: 100%;
    font-size: 0.9375em;
    border: 1px solid #F2F2F2;
}

main.cabinet-wrapper aside + .content table thead {
    position: -webkit-sticky;
    position: sticky;
    top: 65px;
    left: 0;
    background: #F8FCFF;
    border-bottom: 1px solid #F2F2F2;
}

main.cabinet-wrapper aside + .content table thead th {
    font-weight: 500;
    font-size: 1.06667em;
    line-height: 140%;
    text-align: center;
    color: #011240;
    padding: 0.9375em 0.33333em 0.75em;
}

main.cabinet-wrapper aside + .content table thead th.left {
    text-align: left;
}

main.cabinet-wrapper aside + .content table thead th.center {
    text-align: center;
}

main.cabinet-wrapper aside + .content table thead th.right {
    text-align: right;
}

main.cabinet-wrapper aside + .content table tbody .btn {
    font-size: 0.86667em;
    padding: 0.76923em 1.38462em;
    text-transform: uppercase;
    font-weight: bold;
    min-width: unset;
    width: 100%;
    max-width: 180px;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 5px;
}

main.cabinet-wrapper aside + .content table tbody tr {
    border-bottom: 1px solid #E0E0E0;
}

main.cabinet-wrapper aside + .content table tbody tr td {
    padding: 0.4em 0.33333em;
}

main.cabinet-wrapper aside + .content table tbody tr td.left {
    text-align: left;
}

main.cabinet-wrapper aside + .content table tbody tr td.center {
    text-align: center;
}

main.cabinet-wrapper aside + .content table tbody tr td.right {
    text-align: right;
}

main.cabinet-wrapper aside + .content table tbody tr td span.ellipsis {
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    max-width: 100px;
    display: block;
}

main.cabinet-wrapper aside + .content table tfoot tr {
    border-bottom: 1px solid #E0E0E0;
}

main.cabinet-wrapper aside + .content table tfoot tr td {
    padding: 1em 0.33333em;
}

main.cabinet-wrapper aside + .content table tfoot tr td.center {
    text-align: center;
}

main.cabinet-wrapper aside + .content table tfoot tr td.right {
    text-align: right;
}

main.cabinet-wrapper aside + .content .pagination {
    margin-top: 1.25em;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 1.25em;
}

main.cabinet-wrapper aside + .content .pagination a {
    font-weight: 500;
    font-size: 0.875em;
    color: #011240;
}

main.cabinet-wrapper aside + .content .pagination li.active {
    color: #03598C;
}

input[type=file]::-webkit-file-upload-button,
input[type=file]::file-selector-button {
    background: #03598C;
    color: #fff;
    border: 0;
    padding: 5px;
    cursor: pointer;
}

form {
    max-width: 47.77778em;
    margin: 0 auto;
}

form .grid-container {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (1fr) [ 2 ];
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 0 1.66667em;
}

@media (max-width: 700px) {
    form .grid-container {
        -ms-grid-columns: (1fr) [ 1 ];
        grid-template-columns: repeat(1, 1fr);
    }
}

form .input-group {
    position: relative;
    margin-bottom: 20px;
}

form .input-group-country > div.choices {
    width: 300px;
}

form .input-group > span {
    font-size: 0.77778em;
    line-height: 130%;
    display: block;
    color: #609ABF;
    margin-bottom: 0.57143em;
}

form .input-group > input, form .input-group > select, form .input-group > textarea {
    display: block;
    width: 100%;
    background: #fff;
    border: 1px solid #A0CADA;
    padding: 0.625em 0.875em 0.5625em;
    line-height: 130%;
    font-size: 0.88889em;
    color: #000;
    height: 40px;
}

form .input-group > input[type=file]::-webkit-file-upload-button, form .input-group > input[type=file]::file-selector-button, form .input-group > select[type=file]::-webkit-file-upload-button, form .input-group > select[type=file]::file-selector-button, form .input-group > textarea[type=file]::-webkit-file-upload-button, form .input-group > textarea[type=file]::file-selector-button {
    background: #03598C;
    color: #fff;
    border: 0;
    padding: 5px;
    cursor: pointer;
}

form .input-group > textarea {
    min-height: 56px;
}

form .input-group > i {
    position: absolute;
    left: 0;
    bottom: -15px;
    font-size: 12px;
}

form .input-group-privacy {
    position: relative;
    margin-bottom: 20px;
}

form .input-group-privacy span {
    font-size: 0.77778em;
    line-height: 130%;
    color: #609ABF;
    margin-bottom: 0.57143em;
}

form .choices__list--multiple .choices__item {
    background: #03598c !important;
    border-color: #03598c !important;
}

.test-question {
    margin-bottom: 15px;
}

.test-question input {
    background: #fff;
    border: 1px solid #A0CADA;
    padding: 0.625em 0.875em 0.5625em;
    line-height: 130%;
    font-size: .88889em;
    color: #000;
    margin-top: 10px;
}

.fast-panel {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    background: #F8FCFF;
    border: 1px solid #F2F2F2;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    border-radius: 2px;
    padding: 10px 25px;
    margin-left: -25px;
    width: calc(100% + 25px);
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

@media (max-width: 1225px) {
    .fast-panel {
        margin-left: 0;
        width: 100%;
    }
}

@media (max-width: 767px) {
    .fast-panel {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        padding: 10px;
    }
}

.fast-panel a.btn {
    margin-right: 10px;
    padding: 0.6em 1.38462em !important;
}

@media (max-width: 800px) {
    .fast-panel a.btn {
        min-width: unset;
    }
}

@media (max-width: 767px) {
    .fast-panel a.btn {
        margin-bottom: 15px;
    }
}

.fast-panel a.btn:nth-child(2) {
    /* background: #609ABF;*/
    margin-right: 10px;
}

@media (max-width: 767px) {
    .fast-panel a.btn:nth-child(2) {
        margin-right: 10px;
    }
}

.fast-panel form {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin: 0;
}

@media (max-width: 767px) {
    .fast-panel form {
        width: 100%;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }
}

.fast-panel form input {
    border: 1px solid #E0E0E0;
    padding: 10px 15px;
    width: 100%;
}

.fast-panel form .btn {
    background: #033059;
    min-width: 100px;
    max-width: 100px;
    padding: 0.6em 1.38462em !important;
}

form .choices__inner {
    border-radius: 0;
    border-color: #a0cada;
    background: #fff;
    min-height: 39px !important;
}

form .choices__inner .choices__list--single {
    padding: 3px 16px 3px 4px;
}

form.form-center {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    max-width: 400px;
}

form.form-center div {
    width: 100%;
}

form.form-center .input-group {
    margin-bottom: 10px;
    width: 100%;
}

form.form-center .btn {
    width: 100%;
}

.user-info-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    border-bottom: 1px solid #E0E0E0;
    padding-bottom: 30px;
    margin-bottom: 30px;
}

@media (max-width: 550px) {
    .user-info-container {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
}

.user-info-container .btn {
    padding: 10px !important;
}

.user-info-container .align-right {
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
}

.user-info-container > form {
    margin: 0;
    padding-right: 30px;
    margin-right: 30px;
    border-right: 1px solid #F2F2F2;
    max-width: 100%;
    width: 100%;
}

@media (max-width: 550px) {
    .user-info-container > form {
        margin-right: 0;
        margin-bottom: 30px;
        padding-right: 0;
        border: 0;
    }
}

.user-info-container .item img {
    display: block;
    width: 100%;
    max-width: 400px;
    margin: 15px 0 !important;
}

.user-info-container .item .btn {
    width: 100%;
}

.auth-forgot form,
.auth-login form {
    max-width: 450px;
}

.auth-forgot .input-group_checkbox,
.auth-login .input-group_checkbox {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 5px;
}

.auth-forgot .input-group_checkbox input,
.auth-login .input-group_checkbox input {
    width: auto;
}

.auth-forgot .input-group_checkbox span,
.auth-login .input-group_checkbox span {
    margin: 0;
}

.auth-forgot a,
.auth-login a {
    color: #03598c;
    font-size: 15px;
    text-decoration: underline;
}

.user-course-container .item {
    background: #FFFFFF;
    border: 1px solid #E0E0E0;
    padding: 1.11111em;
    margin: 0 auto;
    margin-bottom: 1.11111em;
    max-width: 35.33333em;
    -webkit-box-shadow: 0px 3px 22px rgba(3, 48, 89, 0.09);
    box-shadow: 0px 3px 22px rgba(3, 48, 89, 0.09);
}

.user-course-container .item .info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

@media (max-width: 600px) {
    .user-course-container .item .info {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
}

.user-course-container .item .info img {
    display: block;
    width: 100%;
    max-width: 204px;
}

@media (max-width: 600px) {
    .user-course-container .item .info img {
        -o-object-fit: cover;
        object-fit: cover;
        max-height: 100px;
    }
}

.user-course-container .item .info strong {
    font-size: 18px;
    color: #011240;
    margin-bottom: 0.88889em;
    display: block;
}

.user-course-container .item .info p {
    font-size: 14px;
    line-height: 130%;
    color: #333333;
}

.user-course-container .item .info > div {
    width: 100%;
}

.user-course-container .item .info > div:nth-child(2) {
    min-width: 60%;
}

.user-course-container .item .info .pregress {
    margin-top: 0.55556em;
    width: 100%;
}

.user-course-container .item .info .pregress div:nth-child(1) span {
    display: block;
    font-size: 13px;
    line-height: 170%;
    color: #828282;
}

.user-course-container .item .info .pregress div:nth-child(2) {
    background: #F2F2F2;
    border-radius: 60px;
    height: 8px;
    overflow-x: hidden;
}

.user-course-container .item .info .pregress div:nth-child(2) span {
    display: block;
    height: 100%;
    background: #A0CADA;
}

.user-course-container .item .btn-container {
    margin-top: 1.11111em;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 1.11111em;
}

.user-course-container .item .btn-container a {
    width: 100%;
    padding: 15px;
}

.accordion {
    margin-bottom: 0.66667em;
    max-width: 600px;
}

.accordion .item {
    border: 1px solid #A0CADA;
    margin-bottom: 0.55556em;
}

.accordion .item .header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    cursor: pointer;
    padding: 0.625em;
    font-weight: 500;
    font-size: 1.33333em;
    line-height: 160%;
    color: #011240;
}

@media (max-width: 582px) {
    .accordion .item .header {
        font-size: 1.11111em;
        padding: 0.75em;
    }
}

.accordion .item .header svg {
    -ms-flex-negative: 0;
    flex-shrink: 0;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
    margin-left: 0.83333em;
}

@media (max-width: 582px) {
    .accordion .item .header svg {
        width: 19px;
    }
}

.accordion .item .content {
    padding: 0.9375em;
    display: none;
    -webkit-transition: -webkit-box-shadow .3s ease;
    transition: -webkit-box-shadow .3s ease;
    transition: box-shadow .3s ease;
    transition: box-shadow .3s ease, -webkit-box-shadow .3s ease;
    font-weight: 500;
    font-size: 0.88889em;
    line-height: 160%;
}

.accordion .item .content a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 0.66667em;
    gap: 1.11111em;
}

.accordion .item .content a span {
    color: #011240;
    line-height: 170%;
    display: block;
}

.accordion .item .content a svg {
    -ms-flex-negative: 0;
    flex-shrink: 0;
    opacity: 0;
}

.accordion .item .content a.active svg {
    opacity: 1;
}

.accordion .item .content a.active span {
    color: #b1d4e1;
}

.accordion .item.active .header svg {
    -ms-flex-negative: 0;
    flex-shrink: 0;
    -webkit-transform: rotate(-180deg);
    transform: rotate(-180deg);
}

.accordion .item.active .header svg path {
    -webkit-transform: translateX(4px) translateY(11px);
    transform: translateX(4px) translateY(11px);
    d: path("M24 1L5.36442e-07 0.999999");
}

section.lesson-section .btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background: #fff;
    border: 1px solid #033059;
    color: #033059;
    letter-spacing: 0.5px;
    gap: 15px;
    -ms-flex-pack: distribute;
    justify-content: space-around;
    font-size: 17px;
    padding: 12px;
    margin-left: 20px;
    min-width: 150px;
}

section.lesson-section img.main-img {
    float: left;
    max-width: 400px;
    margin: 0 30px 30px 0;
}

@media (max-width: 900px) {
    section.lesson-section img.main-img {
        max-width: 100%;
        margin: 0;
        margin-bottom: 30px;
        float: none;
    }
}

section.lesson-section table {
    max-width: 100%;
}

.upload-pasrort {
    border: 1px solid #E0E0E0;
    padding: 30px;
    max-width: 630px;
    margin: 0 auto;
    margin-top: 50px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: center;
    gap: 40px;
}

.upload-pasrort .title {
    margin-bottom: 0;
}

td.not_started {
    position: relative;
}

td.not_started:after {
    position: absolute;
    top: 6px;
    left: calc(50% - 40px);
    width: 60px;
    content: 'not started';
    background: #FFFFFF;
    -webkit-box-shadow: 0px 3px 22px rgba(3, 48, 89, 0.09);
    box-shadow: 0px 3px 22px rgba(3, 48, 89, 0.09);
    border-radius: 2px;
    padding: 2px 10px;
    font-size: 12px;
    color: #4F4F4F;
    opacity: 0;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
}
td.not_started:hover:after {
    opacity: 1;
}

td.not_started svg path:nth-child(1) {
    fill: red;
}

td.not_started svg path:nth-child(2) {
    fill: red;
}

td.in_progress {
    position: relative;
}

td.in_progress:after {
    position: absolute;
    top: 6px;
    left: calc(50% - 40px);
    width: 60px;
    content: 'in progress';
    background: #FFFFFF;
    -webkit-box-shadow: 0px 3px 22px rgba(3, 48, 89, 0.09);
    box-shadow: 0px 3px 22px rgba(3, 48, 89, 0.09);
    border-radius: 2px;
    padding: 2px 10px;
    font-size: 12px;
    color: #4F4F4F;
    opacity: 0;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
}

td.in_progress:hover:after {
    opacity: 1;
}

td.in_progress svg path:nth-child(1) {
    fill: #F79E1B;
}

td.in_progress svg path:nth-child(2) {
    fill: #F79E1B;
}

td.progress {
    position: relative;
}

td.progress:after {
    position: absolute;
    top: 6px;
    left: calc(50% - 40px);
    width: 60px;
    content: 'completed';
    background: #FFFFFF;
    -webkit-box-shadow: 0px 3px 22px rgba(3, 48, 89, 0.09);
    box-shadow: 0px 3px 22px rgba(3, 48, 89, 0.09);
    border-radius: 2px;
    padding: 2px 10px;
    font-size: 12px;
    color: #4F4F4F;
    opacity: 0;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
}

td.progress:hover:after {
    opacity: 1;
}
td.progress svg path:nth-child(1) {
    fill: green;
}

td.progress svg path:nth-child(2) {
    fill: green;
}

.attempts-form input {
    width: 50px;
    padding: 5px;
    text-align: center;
    border: 1px solid #c4dee8;
}

.attempts-form button {
    background: #03598c;
    color: #fff;
    border: 0;
    cursor: pointer;
    padding: 3px 5px;
}

.test-page {
    padding-bottom: 25px;
}

.time-wrapper {
    margin: 2.22222em 0 1.66667em;
    gap: 0.66667em;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.time-wrapper > span {
    display: block;
    font-weight: bold;
    font-size: 1.11111em;
    line-height: 140%;
    color: #011240;
}

.time-wrapper .time {
    background: #011240;
    border-radius: 2px;
    padding: 2px 10px;
    font-weight: bold;
    font-size: 1.66667em;
    line-height: 120%;
    color: #FFFFFF;
}

.time-wrapper .time span {
    font-weight: 500;
    font-size: 0.46667em;
    line-height: 140%;
}

.test-progress .progress-line {
    margin-top: 2.22222em;
    width: 100%;
    background: #F2F2F2;
    border-radius: 5px;
    overflow: hidden;
    position: relative;
    height: 8px;
}

.test-progress .progress-line span {
    display: block;
    background: #A0CADA;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
}

.test-progress > span {
    display: block;
    text-align: center;
    font-size: 13px;
    line-height: 170%;
    color: #828282;
    margin-top: 5px;
}

.time-wrapper + .test-wrapper form {
    max-width: 100%;
}

.test-item {
    display: none;
}

.test-item:nth-child(2) {
    display: block;
}

.test-item:nth-child(2) a.btn:first-child {
    display: none;
}

.test-item .title {
    font-weight: 600;
}

.test-item .flex-container {
    margin-bottom: 2.22222em;
    gap: 1.66667em;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

@media (max-width: 900px) {
    .test-item .flex-container {
        -webkit-box-orient: vertical;
        -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
        flex-direction: column-reverse;
    }
}

.test-item .flex-container img {
    display: block;
    /*width: 45%;*/
    max-width: 400px;
    -o-object-fit: cover;
    object-fit: cover;
}

@media (max-width: 900px) {
    .test-item .flex-container img {
        width: 100%;
    }
}

.test-item .flex-container > div {
    width: 100%;
    max-width: 500px;
}

.test-item .flex-container > div .answer {
    display: block;
    cursor: pointer;
    padding: 0.55556em 0;
    margin-bottom: 1.11111em;
    font-size: 18px;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.test-item .flex-container > div .answer input {
    width: 25px;
    height: 25px;
    cursor: pointer;
}

.test-item a.btn {
    margin-left: 20px;
    background: none;
    color: #011240;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    min-width: 150px;
    border: 1px solid #011240;
    padding: 10px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.test-item a.btn:hover {
    background: #011240;
    color: #fff;
}

.test-item a.btn:hover path {
    fill: #fff;
}

.test-item button.btn {
    margin-left: 20px;
    padding: 10px;
}

.test-item p {
    margin-bottom: 15px;
}

.test-result {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-top: 50px;
}

.test-result .title {
    margin-bottom: 20px;
    margin-top: 50px;
}

.test-result > .btn {
    margin-top: 40px;
}

.test-result div {
    background: #F2F2F2;
    padding: 100px 0px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 100%;
}

.test-result div svg {
    margin-bottom: 25px;
}

.test-result div h3 {
    margin-bottom: 2px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 30px;
}

.test-result div h3 strong {
    font-weight: bold;
    font-size: 20px;
    line-height: 140%;
    text-align: right;
    display: block;
    color: #000000;
    min-width: 170px;
}

.test-result div h3 span {
    min-width: 130px;
    font-weight: bold;
    font-size: 20px;
    line-height: 140%;
    color: #033059;
    display: block;
}

select[name="group"] {
    border: 1px solid #E0E0E0;
    background: #fff;
}

.no-couse {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 20px;
    min-height: 300px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

section.check-sert .title {
    text-align: center;
    font-size: 2.77778em !important;
}
section.check-sert {
    min-height: calc(63vh - 166px);
}

@media (max-width: 500px) {
    section.check-sert .title {
        font-size: 1.66667em !important;
    }
}

section.check-sert .flex-container {
    margin-bottom: 0;
}

section.check-sert .flex-container .form {
    max-width: 500px !important;
    margin: 0 auto;
}

section.check-sert table {
    width: 100%;
    font-size: 0.9375em;
    border: 1px solid #F2F2F2;
}

section.check-sert table tbody tr {
    border-bottom: 1px solid #E0E0E0;
}

section.check-sert table tbody tr td {
    padding: 0.4em 0.66667em;
    text-align: left;
}

section.check-sert table tbody tr td:nth-child(1) {
    background: #F8FCFF;
    border-right: 1px solid #F2F2F2;
    font-weight: 500;
    font-size: 1.06667em;
    line-height: 140%;
    text-align: right;
    color: #011240;
}

section.no-sert .title {
    text-align: left;
}

section.no-sert .flex-container .form {
    margin: 0;
    max-width: 100% !important;
}

section.no-sert strong {
    font-size: 1.66667em;
}

@media (max-width: 500px) {
    section.no-sert strong {
        font-size: 1.11111em;
    }
}

section.no-sert form {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 15px;
    margin: 0;
}

@media (max-width: 500px) {
    section.no-sert form {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
}

section.no-sert form input {
    margin-bottom: 0 !important;
    padding: 20px 15px 19px;
    max-width: 180px;
    text-align: center;
}

@media (max-width: 500px) {
    section.no-sert form input {
        max-width: 100%;
    }
}

.quantity-container input {
    vertical-align: top;
    text-align: center;
    width: 45px;
    padding: 2px;
    margin: 0 5px;
    border: 1px solid #9ac3d5;
}

@page {
    margin: 0;
}

@media print {
    header, footer, aside, .fast-panel, .title, .breadcrumbs, table th:last-child, table td:last-child {
        display: none !important;
    }

    .btn {
        opacity: 0;
    }
}

#payment-form {
    margin: 1em 0 0 0;
}

[data-payment-method]:not(.active) {
    display: none;
}

#payment-method {
    padding: 10px 15px;
    border-radius: 3px;
    background: #fff;
    cursor: pointer;
    margin-left: 15px;
    font-weight: 500;
    border: 1px solid #609abf;
}

/*# sourceMappingURL=style.css.map */

.passport-img {
    max-width: 400px;
    max-height: 400px;
}

#order-table tr {
    height: 56px;
}

input#qty {
    text-align: center;
    width: 50px;
}

.red_status {
    color: red;
}

.green_status {
    color: green;
}

h2.exchange {
    margin-bottom: 20px;
}

.payment-method {
    margin-bottom: 15px;
}
