@font-face {
    font-family: 'Suisse Intl';
    src: url(../fonts/SuisseIntl-Regular.ttf);
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Suisse Intl';
    src: url(../fonts/SuisseIntl-Book.ttf);
    font-weight: 450;
    font-style: normal;
}

@font-face {
    font-family: 'Suisse Intl';
    src: url(../fonts/SuisseIntl-Medium.ttf);
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'Suisse Intl';
    src: url(../fonts/SuisseIntl-Medium.ttf);
    font-weight: 700;
    font-style: normal;
}

:root {
    --text-color: #2E4373;
    --Text-gray-color: rgba(46, 67, 115, 0.40);
    --Orange: #F57233;
    --Color: #4347A7;
    --Gray-fiolet: #E2E4F0;
}

*,
:before,
:after {
    box-sizing: border-box;
    outline: none;
}

::-webkit-scrollbar {
    width: 3px;
    background-color: #4CA5E8;
}

::-webkit-scrollbar-thumb {
    border-radius: 3px;
    background-color: #000;
}

::-webkit-scrollbar-track {
    border-radius: 3px;
    background-color: #4CA5E8;
}

body {
    font-family: 'Suisse Intl', sans-serif;
    font-size: 14px;
    line-height: 1.4;
    font-weight: 450;
    color: var(--text-color);
    background-color: #E2E4F0;
}
.cabinet-pages{
  background: linear-gradient(117deg, #8E8EC0 0%, #E2D7DF 102.01%);
  min-height:100vh;
  display: flex;
  flex-flow: column;
}
.cabinet-pages .wrapper{
    margin-bottom: 32px;
}


img {
    max-width: 100%;
}

a {
    color: inherit;
    text-decoration: underline;
}

a:hover {
    text-decoration: none;
}

a:focus {
    outline: none;
}

.wrapper {
    position: relative;
    display: flex;
}

.container {
    position: relative;
    max-width: 100%;
    padding: 0 16px;
    margin-left: auto;
    margin-right: auto;
    width: 1556px;
}

.logo {
    font-size: 0;
}

main {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 100%;
    min-height: 50vh;
}

.btn {
    border: none;
    text-decoration: none;
    background: none;
    cursor: pointer;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    height: 80px;
    border-radius: 40px;
    font-size: 16px;
    padding: 0 10px;
    transition: all .3s ease;
}

.main-section .btn {
    width: 184px;
}

.btn-blue {
    color: #fff;
    background-color: var(--Color);
}

.btn-blue:hover {
    background-color: var(--Orange);
}

.btn.disabled {
    cursor: default;
    color: #fff;
    background-color: #a1a3a1;
    border: none;
}

.btn-border {
    background-color: #fff;
    color: #4CA5E8;
    border: 1px solid #4CA5E8;
}

.btn-lightblue {
    background-color: #DBEDF7;
    color: #000;
}

.btn-white {
    background-color: #fff;
    color: var(--text-color);
}

.btn-white:hover {
    background-color: var(--Color);
    color: #fff;
}

.btn-orange {
    color: #fff;
    background-color: var(--Orange);
}

.btn-orange:hover {
    background-color: #fff;
    color: var(--text-color);
}


.main-title {
    font-size: 40px;
    margin: 0 0 40px;
}

aside {
    border-radius: 24px;
    background: var(--Gray-fiolet);
    min-width: 450px;
    width: 450px;
    padding: 24px;
}

aside .inner {
    height: 100%;
    display: flex;
    flex-flow: column;
}

aside .logo {
    display: inline-block;
    margin-bottom: 93px;
}

aside p,
aside a.without-theme-category {
    font-size: 24px;
    font-weight: 450;
    line-height: 1.2;
    letter-spacing: -0.96px;
    margin: 0 0 16px;
    text-decoration: none;
    color: var(--Text-gray-color);
}

aside ul {
    list-style-type: none;
    margin: 0 0 24px;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
    font-size: 14px;
}

aside ul li {
    position: relative;
}

aside ul li a.active {
    text-decoration: none;
    color: #4CA5E8;
}

aside ul li ul li {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 14px;
    line-height: 16px;
}
aside ul li ul li input{
    position: absolute;
    display: block;
    width: 16px;
    height: 16px;
    top: 50%;
    left: 0;
    margin-top: -8px;
    z-index: 1;
    opacity: 0;
}
aside ul li ul li input+a{
    padding-left: 25px;
}
aside ul li ul li input+a:before{
    content: '';
    display: block;
    border-radius: 4px;
    border: 1px solid var(--Text-gray-color);
    width: 16px;
    height: 16px;
    position: absolute;
    top: 50%;
    left: 0;
    margin-top: -8px;
}
aside ul li ul li input:checked+a:before{
    background-image: url(../img/check.svg);
    background-repeat: no-repeat;
    background-position: center;
}
aside ul li ul li a[href="#"]{
    padding-left: 0;
    font-size: 24px;
    font-style: normal;
    font-weight: 450;
    line-height: 120%; /* 28.8px */
    letter-spacing: -0.96px;
    color: var(--Text-gray-color);
    margin-bottom: 4px;
    display: block;
}
aside ul li ul li a[href="#"]:before{
    display: none;
}

aside .logout-btn {
    margin-top: auto;
    width: 184px;
}

aside a {
    text-decoration: none;
}

.repeat-list a {
    color: #4CA5E8;
    text-decoration: none;
}

.repeat-list a.delete-repeat {
    position: relative;
    display: inline-block;
    width: 25px;
    height: 25px;
}

.repeat-list a.delete-repeat img {
    width: 25px;
    height: 25px;
    position: absolute;
    top: 5px;
    right: 0;
}

.box {
    background: #fff;
    border-radius: 10px;
    width: 100%;
    display: flex;
    flex-direction: column;
    padding: 30px;
}

.main-secondary {
    padding: 40px 35px;
    width: calc(100% - 450px);
    height: auto;
    min-height: calc(100% - 80px);
    justify-content: flex-start;
}

.box .text {
    text-align: center;
    font-size: 40px;
    margin: 70px 0 60px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.box .text .counter {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    position: relative;
    margin-right: 20px;
    font-size: 0;
}

.box .text .counter span {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 30px;
}

.box .text .counter.fill-6 .step-1,
.box .text .counter.fill-6 .step-2,
.box .text .counter.fill-6 .step-3,
.box .text .counter.fill-6 .step-4,
.box .text .counter.fill-6 .step-5,
.box .text .counter.fill-6 .step-6,
.box .text .counter.fill-5 .step-1,
.box .text .counter.fill-5 .step-2,
.box .text .counter.fill-5 .step-3,
.box .text .counter.fill-5 .step-4,
.box .text .counter.fill-5 .step-5,
.box .text .counter.fill-4 .step-1,
.box .text .counter.fill-4 .step-2,
.box .text .counter.fill-4 .step-3,
.box .text .counter.fill-4 .step-4,
.box .text .counter.fill-3 .step-1,
.box .text .counter.fill-3 .step-2,
.box .text .counter.fill-3 .step-3,
.box .text .counter.fill-2 .step-1,
.box .text .counter.fill-2 .step-2,
.box .text .counter.fill-1 .step-1 {
    fill: #1EFF1E;
}

.box .text .counter.fill-6 {
    color: #1EFF1E;
}

#tasks-list {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.list-view {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.question-img {
    font-size: 0;
    margin-bottom: 30px;
    width: 100%;
}

.question-img img {
    width: 100%;
    height: auto;
}

.question-btns {
    width: 100%;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 30px;
    gap: 10px;
}

.question-btns .btn {
    padding: 0 40px;
}

.question-btns .btn.end {
    margin-left: auto;
}

.question-box {
    position: relative;
}

.question-box .progress {
    position: absolute;
    top: 0;
    left: 0;
    height: 40px;
    width: 100%;
    border-radius: 10px 10px 0 0;
    background: #DBEDF7;
    font-size: 0;
    overflow: hidden;
}

.question-box .progress span {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 0;
    background: #4CA5E8;
    border-radius: 10px 0 0 0;
}

.question-box .progress span.fill-1 {
    width: 33.33%;
}

.question-box .progress span.fill-2 {
    width: 66.66%;
}

.question-box .progress span.fill-3 {
    width: 100%;
}

.last-playthrough {
    text-align: center;
    margin-bottom: 5px;
    width: 1088px;
    max-width: 100%;
    font-size: 16px;
    color: #545353;
}

.question-columns {
    display: flex;
}

.question-columns .form-block {
    flex: 2 0 0;
}

.question-columns .lesson-aside {
    flex: 1 0 0;
    padding: 30px;
    overflow-y: auto;
    max-height: 500px;
}

.question-columns .lesson-aside .inner a {
    color: #4CA5E8;
}

.form-block {
    border-radius: 10px;
    border: 1px solid #FFFDFD;
    background: #E8EAF6;
    width: 1088px;
    max-width: 100%;
    padding: 30px;
    position: relative;
}

.form-block .actions {
    margin-top: 85px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-row-gap: 16px;
    grid-column-gap: 25px;
    max-width: 100%;
    width: 393px;
    margin-right: auto;
    margin-left: auto;
}

.form-block .btn {
    width: 184px;
}

.form-block .label {
    font-size: 16px;
    color: #545353;
    margin: 0 0 3px;
}

.form-block input[type=text] {
    display: block;
    width: 100%;
    border-radius: 10px;
    border: 1px solid #AFADAD;
    background: #FFF;
    padding: 0 15px;
    height: 60px;
    font-size: 18px;
    margin-bottom: 10px;
}

.form-block input[type=text]:focus {
    border: 1px solid #4CA5E8;
}

.form-block input[type=text].error {
    border: 1px solid #FF0000;
}

.form-block input[type=text].success {
    border: 1px solid #1EFF1E;
}

.form-block input[type=text].warning {
    border: 1px solid #FFA500;
}

.form-block .text-error,
.form-wrap .text-error {
    color: #FF0000;
    font-weight: 500;
}

.form-block .answer {
    color: #419D98;
    user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
}

.form-block .transcription,
.form-block .transcription_2 {
    color: #545353;
}

.form-block .audio {
    margin-top: 10px;
}

.form-block .audio button {
    background: none;
    border: none;
    padding: 0;
    width: 35px;
    height: 35px;
    background: url('../img/play.svg') no-repeat center center;
    background-size: 35px 35px;
}

.form-block .audio button img {
    width: 35px;
    height: 35px;
}

.form-block .counter {
    font-size: 16px;
}

.one-more-time {
    text-align: center;
}

.disable-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.5);
    z-index: 11;
}

.question-nav,
ul.pagination {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    /* gap: 90px; */
    position: relative;
    z-index: 12;
}

ul.pagination>li {
    list-style: none;
}

ul.pagination>li.prev {
    margin-right: 60px;
}

ul.pagination>li.next {
    margin-left: 60px;
}

ul.pagination>li.prev,
ul.pagination>li.next {
    border-radius: 32px;
    border: 1px solid #F1F1F1;
    background: #FFF;
    width: 32px;
    height: 32px;
    text-align: center;
    line-height: 34px;
}

ul.pagination>li.prev.disabled,
ul.pagination>li.next.disabled {
    background: #a1a3a1;
    cursor: default;
}

.question-nav .nav-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 32px;
    border: 1px solid #F1F1F1;
    background: #FFF;
    width: 32px;
    height: 32px;
    padding: 0;
}

.question-nav .nav-btn.disabled {
    background: #a1a3a1;
    cursor: default;
}

.section-title {
    font-size: 40px;
    margin: 0 0 25px;
    font-weight: normal;
}

.site-request-password-reset form {
    display: block;
}

.site-request-password-reset form label {
    display: none;
}

.site-request-password-reset form input {
    display: block;
    text-align: center;
    width: 260px;
    height: 60px;
    padding: 0 10px;
    border-radius: 10px;
    border: 1px solid #AFADAD;
    background: #FFF;
    font-size: 16px;
    margin: 0 auto;
}

.site-request-password-reset form input.is-invalid {
    border-color: red;
}

.site-request-password-reset form .btn {
    margin-top: 25px;
}

.invalid-feedback {
    color: red;
}

.cabinet-page .form-wrap {
    margin-bottom: 32px;
}

.cabinet-page .form-wrap form {
    display: flex;
    gap: 25px;
}

.cabinet-page .form-wrap form input {
    min-width: 260px;
    margin-bottom: 0;
}

.cabinet-page .form-wrap .text-custom {
    min-width: 260px;
    margin-bottom: 0;
    height: 56px;
    line-height: 56px;
    text-align: center;
}

.cabinet-page .form-wrap form .btn {
    min-width: 184px;
}

.cabinet-page .actions .btn {
    width: 200px;
}

/*------------------------------------*\
    MODAL
\*------------------------------------*/

.modal,
.modal-box {
    z-index: 900;
}

.modal-sandbox {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: transparent;
}

.modal {
    display: none;
    position: fixed;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: var(--Text-gray-color);
    -webkit-backdrop-filter: blur(18px);
    backdrop-filter: blur(18px);
    overflow: auto;
}

.modal-box {
    position: relative;
    width: 344px;
    max-width: 95%;
    margin: 100px auto;
    animation-name: modalbox;
    animation-duration: .6s;
    animation-timing-function: ease;
}

#modalTextPopupTheme .modal-box {
    width: 80%;
}

.modal-body {
    background: #fff;
    padding: 56px 32px 32px;
    border-radius: 32px
}

.modal-body .text-wrap {
    height: 330px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 16px;
    text-align: center;
}

.modal-body .text-wrap p {
    width: 242px;
}

/* Close Button */
.modal-body>.close-modal {
    text-align: right;
    cursor: pointer;
    font-size: 0;
}

/* Animation */
@-webkit-keyframes modalbox {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes modalbox {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

#overlay-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.7);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
}

#overlay-loader.active {
    display: flex;
}

#overlay-loader .spinner {
    width: 40px;
    height: 40px;
    border: 4px solid #ddd;
    border-top: 4px solid #3498db;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    100% {
        transform: rotate(360deg);
    }
}

.modal-body>.close-modal {
    position: absolute;
    top: 16px;
    right: 16px;
    opacity: 0.5;
}

.modal-body>.close-modal:hover {
    opacity: 1;
}

.modal .title {
    text-align: center;
    font-size: 32px;
    line-height: 120%;
    /* 38.4px */
    letter-spacing: -1.28px;
    margin: 0 0 32px;
}

.modal .form-wrap {
    width: 260px;
    margin-right: auto;
    margin-left: auto;
    text-align: center;
}

.form-wrap input {
    display: block;
    width: 100%;
    border-radius: 28px;
    border: none;
    background: rgba(226, 228, 240, .5);
    height: 56px;
    padding: 0 10px;
    text-align: center;
    font-size: 14px;
    color: var(--text-color);
}

.form-wrap input::-webkit-input-placeholder {
    /* Chrome/Opera/Safari */
    color: #2E4373;
    opacity: 0.3;
}

.form-wrap input::-moz-placeholder {
    /* Firefox 19+ */
    color: #2E4373;
    opacity: 0.3;
}

.form-wrap input:-ms-input-placeholder {
    /* IE 10+ */
    color: #2E4373;
    opacity: 0.3;
}

.form-wrap input:-moz-placeholder {
    /* Firefox 18- */
    color: #2E4373;
    opacity: 0.3;
}

.form-wrap .form-group {
    position: relative;
    padding-bottom: 20px;
}

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

.form-wrap .form-group .error-message {
    position: absolute;
    width: 100%;
    text-align: center;
    font-size: 12px;
    line-height: 1;
    color: red;
    bottom: 5px;
    left: 0;
}

.form-wrap .form-group p {
    margin: 0;
}

.form-wrap .btn {
    width: 100%;
    height: 56px;
    font-size: 14px;
}

.form-wrap .links {
    margin-top: 32px;
    display: flex;
    flex-flow: column;
    gap: 4px;
    align-items: center;
    text-align: center;
}

.form-wrap .links a {
    text-decoration: none;
    font-size: 14px;
}

.form-wrap .links span,
.form-wrap .links .secondary {
    font-size: 12px;
    color: var(--Text-gray-color);
}

.form-wrap .links a:hover {
    color: var(--Color);
}

.reg-by-social p {
    margin: 24px 0 16px;
    color: var(--Text-gray-color);
    font-size: 14px;
}

.reg-by-social ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4px;
}

.reg-by-social ul li a {
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 52px;
    background: rgba(226, 228, 240, 0.50);
    width: 65px;
    height: 50px;
}

.acceptance {
    margin: 16px 0 0;
    font-size: 12px;
    color: var(--Text-gray-color);
}
.acceptance svg{
    vertical-align: bottom;
    margin-right: 5px;
}


.questions-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 30px;
    margin-bottom: 30px;
}

.questions-list .item {
    display: flex;
    align-items: center;
    width: 100%;
    gap: 10px;
}

.questions-list .item .counter {
    position: relative;
    font-size: 0;
}

.questions-list .item .counter span {
    position: absolute;
    top: 0;
    left: 0;
    font-size: 30px;
    font-style: normal;
    font-weight: 400;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.questions-list .item.fill-6 .step-1,
.questions-list .item.fill-6 .step-2,
.questions-list .item.fill-6 .step-3,
.questions-list .item.fill-6 .step-4,
.questions-list .item.fill-6 .step-5,
.questions-list .item.fill-6 .step-6,
.questions-list .item.fill-5 .step-1,
.questions-list .item.fill-5 .step-2,
.questions-list .item.fill-5 .step-3,
.questions-list .item.fill-5 .step-4,
.questions-list .item.fill-5 .step-5,
.questions-list .item.fill-4 .step-1,
.questions-list .item.fill-4 .step-2,
.questions-list .item.fill-4 .step-3,
.questions-list .item.fill-4 .step-4,
.questions-list .item.fill-3 .step-1,
.questions-list .item.fill-3 .step-2,
.questions-list .item.fill-3 .step-3,
.questions-list .item.fill-2 .step-1,
.questions-list .item.fill-2 .step-2,
.questions-list .item.fill-1 .step-1 {
    fill: #1EFF1E;
}

.questions-list .item.fill-6 .counter {
    color: #1EFF1E;
}

.questions-list .item .title {
    font-size: 20px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
}

.pagination {
    margin-top: auto;
}

.pagination ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
}

.pagination ul li a {
    width: 32px;
    height: 32px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid #F1F1F1;
    background: #FFF;
    border-radius: 16px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: all .3s ease;
}

.pagination ul li.active a {
    color: #fff;
    background-color: #4CA5E8;
    border-color: #4CA5E8;
}

.pagination ul li.disabled a {
    pointer-events: none;
    border: none;
}

.pagination ul li a:hover {
    border-color: #4CA5E8;
}


.dropdown-toggle {
    display: block;
    position: relative;
    padding-right: 30px;
    margin: 0;
}

.dropdown-toggle:hover,
.dropdown-toggle.open {
    text-decoration: none;
    color: #4CA5E8;
}

.dropdown-toggle svg {
    position: absolute;
    right: 0;
    top: 50%;
    object-fit: contain;
    transform: translateY(-50%);
    display: none;
}

.dropdown-toggle:hover svg path,
.dropdown-toggle.open svg path {
    fill: #4CA5E8;
}

.dropdown {
    display: none;
}

.dropdown .btn {
    font-size: 14px;
    height: 32px;
    width: 184px;
    margin-bottom: 20px;
}

.dropdown .btn-blue{
    display: inline;
    background: none;
    color: var(--Color);
    font-size: 14px;
    font-weight: 450;
    line-height: 110%; /* 15.4px */
    text-decoration-line: underline;
    text-decoration-style: dotted;
    text-decoration-skip-ink: auto;
    text-decoration-thickness: 10%; /* 1.4px */
    text-underline-offset: 25%; /* 3.5px */
    text-underline-position: from-font;
    width: auto;
    height: auto;
    margin-bottom: 12px;
    padding: 0;
}
.dropdown .btn-blue:after{
    content: '';
    display: table;
    width: 100%;
    height: 0;
    margin-bottom: 12px;
}
.dropdown .btn-blue+.btn-blue{
    margin-top: 12px;
}

.dialog-wrap {
    padding-top: 40px;
    min-height: 330px;
    display: flex;
    flex-flow: column;
    text-align: center;
    align-items: center;
}

.dialog-wrap p {
    margin: 0 0 10px;
    width: 100%;
}

.dialog-wrap .btns {
    display: flex;
    justify-content: center;
    width: calc(100% + 40px);
    margin-top: 15px;
    margin-bottom: 15px;
    margin-right: -20px;
    margin-left: -20px;
    flex-wrap: wrap;
}

.dialog-wrap .btns .btn {
    width: calc(50% - 16px);
    margin: 0 8px 13px;
}

.dialog-wrap .btns.two .btn {
    flex: 1 0 0;
}

.datepicker {
    border-radius: 16px;
    border: 1px solid #FFF;
    background: #F5F5F5;
    box-shadow: 0 1px 2px 0 rgba(0, 14, 51, 0.25);
}

.datepicker--cell.-selected-.-focus-,
.datepicker--cell.-selected-,
.datepicker--cell.-selected-.-current- {
    background: #4CA5E8;
}

.datepicker--day-name {
    color: #000;
    font-weight: bold;
}

.datepicker--time-row input[type=range] {
    border: none;
}

.box.question-box .cover_outside {
    display: flex;
}

.box.question-box .lesson-aside {
    display: none;
    width: 400px;
    margin-left: 30px;
}

.box.question-box .lesson-aside .inner {
    max-height: 400px;
    overflow-y: visible;
    overflow-x: hidden;
}

.input-wrapper {
    position: relative;
}

.phrase-input {
    display: block;
    width: 100%;
    border-radius: 10px;
    border: 1px solid #AFADAD;
    background: #FFF;
    padding: 15px;
    font-size: 18px;
    margin-bottom: 10px;
}

.phrase-input .correct-word {
    color: #FF0000;
    font-weight: 700;
}

.phrase-input:focus {
    border: 1px solid #4CA5E8;
}

.phrase-input.error {
    border: 1px solid #FF0000;
}

.phrase-input.success {
    border: 1px solid #1EFF1E;
}

.phrase-input.warning {
    border: 1px solid #FFA500;
}

.phrase-input.is-empty::before {
    content: attr(data-placeholder);
    color: #aaa;
    pointer-events: none;
    position: absolute;
}

.phrase-input {
    position: relative;
}

.questions-check label {
    display: flex;
    align-items: center;
    justify-content: start;
    cursor: pointer;
    font-size: .8rem;
}

.questions-check label input {
    width: 20px;
    height: 15px;
    margin-right: 10px;
}

@media screen and (min-width: 1200px) {
    .dropdown {
        position: absolute;
        top: 0;
        left: calc(100% + 42px);
        padding: 24px;
        border-radius: 24px;
        background: #fff;
        box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.30), 0 1px 3px 1px rgba(0, 0, 0, 0.15);
        width: 400px;
        z-index: 14;
    }

    .dropdown ul {
        margin: 0;
        overflow-y: auto;
        max-height: 390px;
        display: block;
    }

    .dropdown ul li {
        margin-top: 12px;
    }

    .dropdown>ul>li>a[href="#"]{
        margin-top: 40px;
    }
    .dropdown>ul>li:first-child>a[href="#"]{
        margin-top: 0;
    }
}

@media screen and (max-width: 1439px) {
    .questions-list {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media screen and (max-width: 1199px) {
    .box.question-box .lesson-aside .inner {
        max-height: none;
    }

    .box.question-box .lesson-aside {
        margin-left: 0;
        margin-top: 30px;
        width: auto;
    }

    .box.question-box .cover_outside {
        flex-flow: column;
    }

    .wrapper {
        flex-direction: column;
    }

    main {
        height: auto;
    }

    .main-secondary,
    aside {
        width: 100%;
        min-width: 0;
    }

    .aside-title {
        margin-bottom: 30px;
    }

    .box .text {
        margin: 15px 0 30px;
        font-size: 24px;
    }

    .question-box .progress {
        height: 15px;
    }

    aside .logo {
        position: absolute;
        right: 30px;
        top: 30px;
        width: 50px;
    }

    aside p,
    aside a.without-theme-category {
        font-size: 20px;
    }

    aside ul li ul li {
        font-size: 14px;
    }

    aside ul {
        font-size: 20px;
    }

    aside ul ul {
        margin-bottom: 0;
        padding-top: 15px;
    }

    .question-columns .lesson-aside,
    .main-secondary,
    .form-block,
    .box {
        padding: 15px;
    }

    .form-block .label {
        font-size: 12px;
    }

    .form-block input[type=text] {
        font-size: 14px;
    }

    .form-block .actions {
        gap: 10px;
        margin-top: 30px;
    }

    .form-block .btn {
        width: auto;
        flex: 1 0 0;
        font-size: 14px;
    }

    .main-title {
        font-size: 36px;
    }

    .questions-list {
        grid-template-columns: repeat(2, 1fr);
    }

    .dropdown-toggle svg {
        transform: rotate(90deg) translateX(-50%);
        height: 15px;
    }

    .dropdown-toggle.open svg {
        transform: rotate(270deg) translateX(100%);
    }

    .question-btns,
    .question-img {
        margin-bottom: 15px;
    }

    .question-btns .btn {
        padding: 0 15px;
    }
}

@media screen and (max-width: 767px) {
    main {
        padding-bottom: 30px;
    }

    .questions-list {
        grid-template-columns: repeat(1, 1fr);
    }

    .cabinet-page .form-wrap form {
        flex-flow: column;
        align-items: center;
        gap: 10px;
    }

    .question-columns {
        flex-direction: column;
    }

    .question-columns .lesson-aside,
    .question-columns .form-block {
        flex: auto;
    }

    .question-columns .lesson-aside {
        padding: 0;
    }
}




/*-----------landing page-------------*/
.header {
    padding: 32px 0;
}

.header-flex {
    display: flex;
    align-items: center;
}

.header-btns {
    display: flex;
    margin-left: auto;
    gap: 8px;
}

.header-btns .btn {
    font-size: 14px;
    height: 48px;
    padding: 0 24px;
}

.header-menu {
    list-style-type: none;
    display: flex;
    padding: 0;
    margin: 0 0 0 70px;
    gap: 24px;
}

.header-menu a {
    text-decoration: none;
    transition: color .3s ease;
}

.header-menu a:hover {
    color: var(--Text-gray-color);
}

.footer{
    margin-top: auto;
    border-radius: 32px 32px 0 0;
    background: rgba(46, 67, 115, 0.16);
}
.footer-flex {
    display: flex;
    align-items: flex-start;
    flex-wrap: wrap;
    padding: 48px 0;
    color: var(--Text-gray-color);
    gap: 90px;
    color: #fff;
}
.footer-flex .col:first-child{
    width: 240px;
}
.footer-flex .col.full{
    width: 100%;
    display: flex;
    align-items: center;
    gap:90px;
}
.footer-flex .col .label{
    font-size: 12px;
    line-height: 110%;
    margin: 0 0 16px;
    opacity: 0.5;
}
.pay-syst{
    display: flex;
    font-size: 0;
    align-items: center;
    gap:18px;
}
.copyright {
    font-size: 10px;
    text-align: center;
    width: 240px;
    opacity: 0.5;
}
.footer-primary-menu{
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-flow: column;
    gap:16px;
}
.footer-primary-menu a{
    text-decoration: none;
    font-size: 24px;
    font-weight: 450;
    line-height: 120%; /* 28.8px */
    letter-spacing: -0.96px;
}
.social-links{
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 8px;
    font-size: 0;
}
.footer-menu {
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-flow: column;
    gap: 16px;
    font-size: 14px;
}

.footer-menu a {
    text-decoration: none;
}

.d-flex {
    display: flex;
}

.a-center {
    align-items: center;
}

.j-between {
    justify-content: space-between;
}

.home {
    display: block;
    overflow: hidden;
}

.home section {
    margin-bottom: 104px;
}

.section-title {
    font-size: 56px;
    font-style: normal;
    font-weight: 500;
    line-height: 90%;
    /* 50.4px */
    letter-spacing: -1.68px;
    margin: 0 0 64px;
}

.main-section {
    padding-top: 74px;
}

.main-section .col:first-child {
    width: 600px;
}

.main-section .col:last-child {
    width: calc(100% - 600px);
    display: flex;
    flex-direction: column;
}

.main-section .col:last-child>img {
    width: 669px;
    max-width: none;
    border-radius: 13.104px;
    box-shadow: -8.64px 12.96px 47.519px 0 rgba(46, 67, 115, 0.30);
}

.main-section .section-title {
    margin-bottom: 32px;
    font-weight: 500;
    line-height: 110%;
    /* 61.6px */
    letter-spacing: -2.24px;
}

.main-section .col:first-child p {
    font-size: 16px;
    line-height: 130%;
    color: var(--Text-gray-color);
}

.main-section .btns {
    display: flex;
    margin-top: 173px;
    gap: 8px;
}

.main-section .btns .btn {
    width: 214px;
}

.infographic {
    display: flex;
    justify-content: center;
    width: 669px;
    gap: 6px;
    margin-top: 31px;
}

.infographic .item {
    padding: 8px;
    height: 70px;
    border-radius: 8px
}

.infographic .item p {
    font-size: 12px;
    opacity: 0.7;
    margin: 0;
}

.infographic .item .bigger {
    font-size: 30px;
    line-height: 1.1;
    font-weight: 500;
    opacity: 1;
    margin: 0 0 5px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.infographic .item.item-1 {
    color: #fff;
    background: radial-gradient(464.78% 152.38% at 104.62% 85.2%, #E39A56 0%, #F57233 100%);
    filter: drop-shadow(0 15.493px 27.887px rgba(245, 114, 51, 0.30));
    width: 154px;
}

.infographic .item.item-2 {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #000;
    background: radial-gradient(464.78% 152.38% at 104.62% 85.2%, #FFF 0%, #E6E6E6 100%);
    filter: drop-shadow(0 15.493px 27.887px rgba(114, 114, 114, 0.30));
    width: 139px;
    font-size: 12px;
    line-height: 1.3;
}

.infographic .item.item-3 {
    color: #fff;
    background: radial-gradient(464.78% 152.38% at 104.62% 85.2%, #3A9157 0%, #2ED465 100%);
    filter: drop-shadow(0 15.493px 27.887px rgba(30, 107, 56, 0.60));
    width: 134px;
}

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

.divider {
    margin-top: 104px;
    height: 1px;
    width: 100%;
    max-width: 100%;
    opacity: 0.1;
    background-color: #2E4373;
}

.how-items {
    gap: 16px;
}

.how-items .item {
    padding: 24px;
    flex: 1 0 0;
    border-radius: 48px;
    background: #F5F6FF;
    display: flex;
    align-items: flex-end;
    position: relative;
    height: 100%;
    aspect-ratio: 1;
    filter: drop-shadow(0 32px 56px rgba(46, 67, 115, 0.16));
}

.how-items .item .d-flex {
    align-items: center;
    background-color: #fff;
    padding: 0 40px;
    height: 106px;
    gap: 24px;
    border-radius: 48px;
    font-size: 24px;
    line-height: 120%;
    /* 28.8px */
    letter-spacing: -0.96px;
}

.how-items .item .d-flex img {
    width: 48px;
    height: 48px;
}

.how-items .item.item-1 {
    background-image: url(../img/home/h1_bg.png);
    background-repeat: no-repeat;
    background-size: 100%;
}

.how-items .item.item-2 {
    background-image: url(../img/home/h2_bg.svg);
    background-position: center;
    background-repeat: no-repeat;
    z-index: 2;
}

.how-items .item.item-2>img {
    position: absolute;
    max-width: none;
    left: -20px;
    top: -60px;
    z-index: 2;
    filter: drop-shadow(0 0 45.804px rgba(46, 67, 115, 0.15));
}

.how-items .item.item-3 {
    background-image: url(../img/home/h3_bg.png);
    background-repeat: no-repeat;
    background-position: 0 -33px;
}

.why-items {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 16px;
}

.why-items .item {
    border-radius: 32px;
    background: linear-gradient(102deg, #F5F6FF 23.7%, #FFF 107.41%);
    filter: drop-shadow(0 32px 56px rgba(46, 67, 115, 0.16));
    width: 100%;
    display: flex;
    padding: 40px;
    gap: 32px;
}

.why-items .item img {
    width: 72px;
    height: 72px;
}

.why-items .item p {
    font-size: 14px;
    line-height: 110%;
    color: var(--Text-gray-color);
    margin: 0;
}

.why-items .item p span {
    display: block;
    color: var(--text-color);
    font-size: 24px;
    font-weight: 450;
    line-height: 120%;
    /* 28.8px */
    letter-spacing: -0.96px;
    margin-bottom: 8px;
}

.gradient-box {
    border-radius: 48px;
    background: radial-gradient(58.38% 58.38% at 30.42% 45%, rgba(255, 255, 255, 0.20) 0%, rgba(255, 255, 255, 0.00) 100%), linear-gradient(0deg, #ABB4EA 0%, #ABB4EA 100%), #FFF;
    padding: 40px;
    color: #fff;
}

.live-form {
    width: 476px;
    border-radius: 40px;
    background: rgba(46, 67, 115, 0.20);
    padding: 24px 48px 48px;
    margin-left: 82px;
}

.live-form .flags {
    display: flex;
    gap: 4px;
    margin-bottom: 24px;
}

.live-form .flags span {
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 20px;
    border: 1px solid rgba(191, 197, 195, 0.10);
    width: 40px;
    height: 40px;
}

.live-form .flags span img {
    width: 20px;
    height: 20px;
    border-radius: 10px;
}

.section-try .live {
    display: inline-flex;
    align-items: center;
    border-radius: 38px;
    background: rgba(255, 255, 255, 0.10);
    padding: 10px 16px;
    font-size: 14px;
    color: #fff;
    margin-bottom: 24px;
}

.section-try .live:before {
    content: '';
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 4px;
    background: #55DB6A;
    margin-right: 8px;
}

.section-try .section-title {
    margin-bottom: 24px;
}

.section-try .col:first-child p {
    font-size: 14px;
    opacity: 0.5;
}

.live-form .key {
    margin: 0 0 16px;
    font-size: 14px;
    opacity: 0.4;
}

.live-form .val {
    font-size: 24px;
    margin: 0 0 53px;
    line-height: 120%;
    /* 28.8px */
    letter-spacing: -0.96px;
}

.live-form textarea {
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.10);
    padding: 24px;
    font-size: 14px;
    height: 146px;
    resize: none;
    border: none;
    display: block;
    width: 100%;
    color: #fff;
}

.live-form textarea::-webkit-input-placeholder {
    /* Chrome/Opera/Safari */
    color: rgba(255, 255, 255, 0.30);
}

.live-form textarea::-moz-placeholder {
    /* Firefox 19+ */
    color: rgba(255, 255, 255, 0.30);
}

.live-form textarea:-ms-input-placeholder {
    /* IE 10+ */
    color: rgba(255, 255, 255, 0.30);
}

.live-form textarea:-moz-placeholder {
    /* Firefox 18- */
    color: rgba(255, 255, 255, 0.30);
}

.live-form .input-wrap {
    margin-bottom: 16px;
}

.live-form .btn {
    width: 100%;
    font-size: 14px;
}

.steps-items {
    position: relative;
    height: 315px;
    width: 100%;
}

.steps-items .item {
    position: absolute;
    border-radius: 50px;
    text-align: center;
    padding: 30px;
}

.steps-items .item-1 {
    background-color: #fff;
    width: 354px;
    left: 35px;
    top: 50px;
    transform: rotate(-14deg);
}

.steps-items .item-1 .item-progress {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    font-size: 12px;
    border-radius: 40px;
    background: #55DB6A;
    margin-bottom: 30px;
    width: 93px;
    height: 38px;
    color: #fff;
}

.steps-items .item-1 img {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: -46px;
}

.steps-items .item.item-1 p {
    color: var(--Text-gray-color);
    width: 256px;
    margin-right: auto;
    margin-left: auto;
}

.steps-items .item .title {
    font-size: 30px;
    line-height: 120%;
    /* 35.409px */
    letter-spacing: -1.18px;
    margin: 0 0 11px;
}

.steps-items .item p {
    font-size: 14px;
    margin: 0 0 30px;
}

.steps-items .item .res {
    font-size: 14px;
}

.steps-items .item-2 {
    border-radius: 50px;
    background: var(--text-color);
    left: 350px;
    color: #fff;
    padding-top: 58px;
    width: 339px;
    z-index: 2;
}

.steps-items .item-2 .item-progress {
    display: inline-flex;
    align-items: center;
    position: relative;
    border-radius: 40px;
    background: rgba(255, 255, 255, 0.10);
    margin-bottom: 30px;
    padding: 5px 5px 5px 20px;
    color: #fff;
    font-size: 12px;
}

.steps-items .item-2 .item-progress span {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.10);
    width: 44px;
    height: 44px;
    border-radius: 22px;
    margin-left: 10px;
}

.steps-items .item-2 img {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
}

.steps-items .item-4 p,
.steps-items .item-3 p,
.steps-items .item-2 p {
    color: var(--Gray-fiolet);
}

.steps-items .item-3 {
    background: var(--Text-gray-color);
    color: #fff;
    width: 298px;
    transform: rotate(-9.78deg);
    left: 680px;
    top: 25px;
    padding-top: 50px;
}

.steps-items .item-4 .item-progress,
.steps-items .item-3 .item-progress {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 101px;
    height: 38px;
    border-radius: 39.344px;
    background: rgba(255, 255, 255, 0.30);
    color: #fff;
    margin-bottom: 30px;
    font-size: 12px;
}

.steps-items .item-3 img {
    position: absolute;
    left: 50%;
    transform: translateX(-50%) rotate(10deg);
    top: -28px;
}

.steps-items .item-4 {
    background: #A0A9DF;
    color: #fff;
    padding-top: 50px;
    width: 298px;
    transform: rotate(11.401deg);
    left: 958px;
    top: 30px;
}

.steps-items .item-4 img {
    position: absolute;
    bottom: -10px;
    right: -10px;
}

.gradient-box-2 {
    border-radius: 48px;
    background: linear-gradient(102deg, #E9EFF5 1.1%, #C5C9E5 84.8%);
    padding: 88px 80px 80px;
    position: relative;
    height: 630px;
    display: flex;
    flex-direction: column;
}

.gradient-box-2 img {
    position: absolute;
    bottom: 0;
    right: 87px;
}

.gradient-box-2 .btn {
    margin-top: auto;
    width: 214px;
}

.section-adaptive .section-title {
    margin-bottom: 24px;
}

.section-adaptive p {
    margin: 0;
    color: var(--Text-gray-color);
}

.reviews .slick-list {
    overflow: visible;
}

.reviews {
    margin-right: -8px;
    margin-left: -8px;
}

.reviews .item .inner {
    margin-right: 8px;
    margin-left: 8px;
    border-radius: 40px;
    background: linear-gradient(102deg, #F5F6FF 23.7%, #FFF 107.41%), rgba(0, 0, 0, 0.05);
    padding: 40px;
    min-height: 340px;
    display: flex;
    flex-direction: column;
}

.reviews .item .inner p {
    margin: auto 0 0;
}

.reviews .item .inner .item-header {
    position: relative;
    padding-left: 94px;
}

.reviews .item .inner .item-header img {
    position: absolute;
    left: 0;
    top: 0;
    width: 78px;
    height: 78px;
    object-fit: cover;
    border-radius: 16px;
}

.reviews .item .inner .item-header .name {
    font-size: 24px;
    line-height: 120%;
    /* 28.8px */
    letter-spacing: -0.96px;
    margin: 0 0 4px;
}

.reviews .item .inner .item-header .pos {
    font-size: 12px;
    color: #B3B3B3;
}

/*page prices*/
.section-prices{
    padding: 90px 0 50px;
    width: 100%;
}
.page-title{
    font-size: 56px;
    font-weight: 500;
    line-height: 110%; /* 61.6px */
    letter-spacing: -2.24px;
    margin: 0 0 16px;
}
.page-subtitle{
    font-size: 24px;
    font-weight: 450;
    line-height: 120%; /* 28.8px */
    letter-spacing: -0.96px;
    margin: 0;
}
.cabinet-pages .page-subtitle,
.cabinet-pages .page-title{
    color: #fff;
}
.price-list{
    margin-top: 72px;
    display: grid;
    grid-template-columns: repeat(4,1fr);
    grid-gap: 16px;
}
.price-list .item{
    width: 100%;
    border-radius: 32px;
    background: #FFF;
    padding: 32px;
    text-align: center;
    display: flex;
    flex-flow: column;
    justify-content: space-between;
    height: 486px;
}
.price-list .item .period{
    display: flex;
    flex-flow: column;
    justify-content: center;
    align-items: center;
    height: 76px;
    gap: 8px;
}
.price-list .item .period .name{
     font-size: 32px;
    font-weight: 450;
    line-height: 120%; /* 38.4px */
    letter-spacing: -1.28px;
}
.price-list .item .period .desc{
    border-radius: 24px;
    color: var(--Text-gray-color);
    border: 1px solid var(--Text-gray-color);
    padding: 8px;
    font-size: 12px;
    font-weight: 450;
    line-height: 110%; 
}
.price-list .item .price{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}
.price-list .item .price .current{
    width: 100%;
    font-size: 56px;
    font-weight: 500;
    line-height: 110%; /* 61.6px */
    letter-spacing: -2.24px;
    margin-bottom: 8px;
}
.price-list .item .price .old{
    font-size: 24px;
    font-weight: 450;
    line-height: 120%; /* 28.8px */
    letter-spacing: -0.96px;
    text-decoration-line: line-through;
    color: var(--Text-gray-color);
}
.price-list .item .price .per-month{
    font-size: 12px;
    font-weight: 450;
    line-height: 110%;
    color: var(--Text-gray-color);
    margin-left: 16px;
}
.price-list .item .btn{
    width: 100%;
    height: 64px;
    padding: 0 24px;
    font-size: 16px;
    font-weight: 450;
    line-height: 120%; /* 19.2px */
    letter-spacing: -0.64px;
}
.price-list .item .btn-justify{
    justify-content: space-between;
}
.price-list .item .btn-justify span{
    border-radius: 24px;
    background: #FFF;
    padding: 8px;
    font-size: 12px;
    font-style: normal;
    font-weight: 450;
    line-height: 110%; 
    color: #000;
}
@media screen and (max-width: 1439px) {
    .price-list .item .price .current{
        font-size: 46px;
    }
}
/*end page prices*/
/*faq page*/
.faq-page section{
    width: 100%;
    padding: 90px 0;
}
.faq-items{
    margin-top: 90px;
    color: #fff;
}
.faq-items .item{
    border-bottom: 1px solid var(--Text-gray-color);
}
.acc-btn{
    position: relative;
    cursor: pointer;
    padding: 17px 0;
    font-size: 20px;
    line-height: 38px;
}
.acc-btn:after{
    content: '';
    display: block;
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    width: 40px;
    background-image: url(../img/dropdown.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}
.acc-btn.open:after{
    transform: rotate(180deg);
}
.acc-content{
    display: none;
}
.acc-content .inner{
    padding: 0 0 30px;
}
/*end faq page*/
/*blog*/
.page-blog{
    padding: 90px 0;
    color: #fff;
}
.page-blog section{
    width: 100%;
}
.blog-list{
    margin-top: 30px;
    display: grid;
    grid-template-columns: repeat(4,1fr);
    grid-column-gap: 16px;
    grid-row-gap: 32px;
}
.blog-list .item{
    width: 100%;
}
.blog-list .item .thumb{
    position: relative;
    font-size: 0;
    background: rgba(46, 67, 115, 0.16);
    height: 260px;
    border-radius: 24px;
    overflow: hidden;
    margin: 0 0 16px;
}
.blog-list .item .thumb img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.blog-list .item a{
    text-decoration: none;
}
.page-blog .categories{
    list-style-type: none;
    padding: 0;
    margin: 0;
    margin-top: 90px;
    display: flex;
    flex-wrap: wrap;
    gap:8px;
}
.page-blog .categories a{
    display: inline-flex;
    justify-content: center;
    align-items: center;
    background: rgba(46, 67, 115, 0.16);
    padding: 0 24px;
    height: 56px;
    color: #fff;
    text-decoration: none;
    border-radius: 12px;
}
.page-blog .categories .active a{
    background-color: #fff;
    color: var(--Color);
}
/*end blog*/
.static-pages{
    padding: 90px 0;
    color: #fff;
}
.static-pages section{
    width: 100%;
}


.cookies-accept{
    position: fixed;
    left: 0;
    bottom: 0;
    padding: 20px;
    display: none;
    align-items: center;
    justify-content: center;
    height: 55px;
    background: rgba(46, 67, 115, 0.70);
    z-index: 99;
    color: #fff;
    font-size: 12px;
    font-weight: 400;
    width: 100%;
}
.cookies-accept p{
    margin: 0;
    line-height: 1.2;
}
.cookies-accept .btn{
    padding: 0 8px;
    height: 30px;
    font-size: 12px;
    line-height: 1;
    margin-left: 36px;
}

@media screen and (max-width: 1199px) {
    .blog-list{
        grid-template-columns: repeat(2,1fr);
    }
    .infographic {
        width: auto;
    }

    .section-title {
        font-size: 32px;
        margin-bottom: 32px;
    }

    .main-section .col:first-child {
        width: 500px;
    }

    .main-section .col:last-child {
        width: calc(100% - 500px)
    }

    .steps-items {
        height: auto;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        grid-row-gap: 32px;
        grid-column-gap: 16px;
        width: 680px;
        margin-right: auto;
        margin-left: auto;
        max-width: 100%;
    }

    .steps-items .item {
        position: relative;
        top: 0;
        left: 0;
        transform: none;
        width: 100% !important;
    }

    .why-items {
        grid-template-columns: repeat(2, 1fr);
    }

    .how-items {
        flex-direction: column;
        width: 400px;
        max-width: 100%;
        margin-right: auto;
        margin-left: auto;
    }

    .home section {
        margin-bottom: 50px;
    }

    .divider {
        margin-top: 50px;
    }

    .main-section {
        padding-top: 48px;
    }

    .reviews .item .inner {
        padding: 24px;
        border-radius: 24px;
    }
    .price-list{
        width: 720px;
        max-width: 100%;
        margin-right: auto;
        margin-left: auto;
        grid-template-columns: repeat(2,1fr);
    }
}

@media screen and (max-width: 1023px) {
    .header {
        padding: 24px 0;
    }

    .header-menu {
        position: fixed;
        z-index: 99;
        left: 50%;
        transform: translateX(-50%);
        bottom: 30px;
        border-radius: 32px;
        background: rgba(255, 255, 255, 0.05);
        -webkit-backdrop-filter: blur(16px);
        backdrop-filter: blur(16px);
        justify-content: center;
        padding: 0 50px;
        margin: 0;
    }

    .header-menu a {
        display: flex;
        align-items: center;
        color: #fff;
        height: 48px;
    }

    .main-section .d-flex {
        flex-direction: column;
    }

    .main-section .col:last-child {
        width: 100%;
        position: relative;
        z-index: -1;
        margin-top: -430px;
    }

    .main-section .col:first-child {
        width: 100%;
        text-align: center;
    }

    .main-section .btns {
        margin-top: 284px;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .main-section .btns .btn {
        width: 240px;
    }

    .main-section .section-title {
        margin-bottom: 24px;
    }

    .main-section .col:last-child>img {
        display: block;
        margin-right: auto;
        margin-left: auto;
        filter: blur(3px);
    }

    .why-items .item p span {
        font-size: 18px;
    }

    .gradient-box .d-flex {
        flex-direction: column;
    }

    .live-form {
        width: 100%;
        margin: 16px 0 0;
    }

    .gradient-box-2 {
        text-align: center;
        align-items: center;
        padding: 50px 30px 430px;
        height: auto;
    }

    .gradient-box-2 img {
        left: 50%;
        transform: translateX(-50%);
        height: 400px;
    }

    .gradient-box-2 .btn {
        margin-top: 32px;
    }
}

@media screen and (max-width: 767px) {
    .blog-list{
        grid-template-columns: repeat(1,1fr);
    }
    .infographic .item {
        height: 54px;
    }

    .infographic .item .bigger {
        font-size: 22px;
        margin-bottom: 3px;
    }

    .infographic .item.item-2,
    .infographic .item p {
        font-size: 10px;
    }

    .how-items .item .d-flex {
        font-size: 20px;
        width: 100%;
    }

    .how-items .item .d-flex svg {
        margin: 0 3px;
    }

    .why-items {
        grid-template-columns: repeat(1, 1fr);
    }

    .why-items .item {
        padding: 32px;
    }

    .live-form,
    .gradient-box {
        padding: 16px;
        border-radius: 16px
    }

    .live-form .val {
        margin-bottom: 24px;
    }

    .steps-items {
        grid-template-columns: repeat(1, 1fr);
    }

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

    .footer-flex>* {
        flex: auto;
    }

    .copyright {
        order: 2;
        width: 100%;
    }

    .footer-menu a {
        font-size: 12px;
    }

    .home {
        padding-bottom: 0;
    }
    .section-prices{
        padding: 30px 0 0;
    }
    .page-title{
        font-size: 36px;
    }
    .page-subtitle{
        font-size: 18px;
    }
    .price-list{
        grid-template-columns: 1fr;
        margin-top: 30px;
    }
    .price-list .item{
        height: auto;
        gap:30px;
        padding: 16px;
        border-radius: 16px
    }
}