/* start hero */
.hero {
    min-height: 750px;
    height: 100%;
    background: var(--black-navy);
    border-bottom-left-radius: 60px;
    border-bottom-right-radius: 60px;
    overflow: hidden;
    display: flex;
    position: relative;
    z-index: 24;
}
.hero__items {
    padding-top: 130px;
    display: flex;
    justify-content: space-between;
    height: 100%;
}
.hero-left {
    flex-basis: 60%;
    margin-right: 30px;
    padding-bottom: 30px;
}
.title-hero {
    color: var(--white);
    font-family: var(--title-f-f);
    font-size: 52px;
    text-align: left;
    padding-top: 75px;
}
.text-hero {
    color: rgb(196, 242, 255);
    font-family: "Montserrat Medium";
    font-size: 23px;
    text-align: left;
    margin-top: 30px;
}
.button-hero {
    margin-left: 0;
}
.hero-right {
    position: relative;
    display: flex;
    align-items: flex-end;
}
.hero-img {
    position: relative;
    z-index: 1;
}
.hero-elips {
    position: absolute;
}
.hero-elips__big {
    background: rgb(0, 160, 226);
    left: 15%;
    top: 0;
    transform: translateY(-7%);
    width: 542px;
    height: 623px;
    border-radius: 70%;
    filter: blur(280px);
}
.hero-elips__small {
    background: rgba(105, 207, 235);
    right: 50%;
    bottom: 0;
    transform: translateY(24px);
    width: 400px;
    height: 400px;
    border-radius: 50%;
    filter: blur(160px) opacity(0.2);
}
/* end hero */
/* start problem section */
.problem {
    background: linear-gradient(96.93deg, #F8FAFC 0%, #D1EAF1 100%);
    position: relative;
    z-index: 21;
}
.problem-lists {
    margin-top: 50px;
    display: flex;
    justify-content: space-between;
}
.problem-item {
    flex-basis: 50%;
}
.problem-item + .problem-item {
    margin-left: 30px;
}
.title-list {
    color: var(--black-navy);
    font-size: 28px;
    font-family: var(--middle-f-f);
}
.problem__list {
    margin-top: 40px;
    list-style-type: none;
}
.problem-list__item {
    position: relative;
    font-size: var(--middle-s);
    min-height: 44px;
    height: 100%;
    padding-left: 55px;
    display: flex;
    align-items: center;
}
.problem-list__item:after {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    background: url(../img/icon/fire.svg) center / 22px no-repeat,
                var(--white);
    border-radius: 30px;
    height: 44px;
    width: 44px;
}
.problem-list__like:after {
    background: url(../img/icon/like-icon.svg) center / 22px no-repeat,
                var(--white);
}
.problem-list__item + .problem-list__item {
    margin-top: 28px;
}
/* and problem section */
/* start section solution */
.solution {
    background: var(--white);
    position: relative;
    z-index: 20;
}
.solution__items {
    margin-top: 50px;
    display: grid;
    grid-template-columns: 1fr 370px;
    grid-template-rows: auto auto;
    grid-auto-flow: row;
    justify-content: space-between;
    gap: 40px;
}
.solution__item:last-child {
    grid-column: span 2;
}
.solution__item {
    background: var(--blue);
    border-radius: 30px;
    padding: 30px;
}
.solution__item_top {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: wrap;
    position: relative;
}
.solution__item_top:after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    width: 100%;
} 
.solution__item:first-child .solution__item_top:after {
    background: url(../img/icon/loop.svg)top right / auto no-repeat;
}
.solution__item:nth-child(2n) .solution__item_top:after {
    background: url(../img/icon/settings.svg)top right / auto no-repeat;
}
.solution__item:last-child .solution__item_top:after {
    background: url(../img/icon/rocket.svg)top right / auto no-repeat;
}
.solution__stage {
    background: var(--yellow);
    border-radius: 10px;
    padding: 5px 10px;
    font-family: var(--middle-f-f);
    font-size: 22px;
    margin-right: 16px;
}
.solution__item_title {
    font-family: var(--middle-f-f);
    font-size: 28px;
}
.subtitle__solution_item {
    flex-basis: 100%;
    text-align: left;
    font-size: 16px;
    color: rgb(14, 116, 144);
}
.solution-list {
    margin-top: 20px;
    list-style-type: none;
}
.solution__item:first-child .solution-list {
    column-count: 2;
}
.solution__item:last-child .solution-list {
    column-count: 3;
}
.solution-list__item {
    position: relative;
    padding-left: 34px;
}
.solution-list__item:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url(../img/icon/solution-arrow-icon.svg) center left / auto no-repeat;
}
.solution-list__item + .solution-list__item {
    margin-top: 15px;
}
.solution__item:first-child 
.solution-list__item:last-child {
    background: var(--white);
    border-radius: 10px;
    border: 2px solid var(--white);
    padding: 0;
    text-align: left;
}
.solution__item:first-child 
.solution-list__item:last-child:after {
    display: none;
}
.solution-sublist__title {
    background: rgb(216, 231, 237);
    text-align: center;
    padding: 13px 0;
    width: 100%;
    display: block;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    font-family: var(--middle-f-f);
    font-size: var(--middle-s);
}
.solution-sublist {
    list-style-type: none;
    padding: 25px 20px;
}
.solution-sublist__item {
    padding-left: 34px;
    position: relative;
    font-size: 16px;
    font-family: "Montserrat Regular";
}
.solution-sublist__item:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    background: url(../img/icon/solution-check-icon.svg)center left / auto no-repeat;
    width: 100%;
    height: 100%;
}
.solution-sublist__item + .solution-sublist__item {
    margin-top: 22px;
}
.solution-list__item:last-child {
    background: var(--white);
    text-align: center;
    border-radius: 10px;
    padding: 20px;
    font-family: var(--middle-f-f);
    font-size: var(--middle-s);
    margin-top: 15px;
}
.solution-list__item:last-child:after {
    display: none;
}
/* end section solution */
/* start section effect */
.effect {
    background: linear-gradient(0deg, #0E2E3C, #0E2E3C),
                linear-gradient(109.5deg, #0E2E3C 14.76%, #0F4C4B 100%),
                linear-gradient(109.5deg, #122F3C 14.76%, #164458 100%);
    position: relative;
    z-index: 19;
}
.title__effect {
    color: var(--white);
}
.effect__container {
    margin-top: 50px;
}
.effect__items_title {
    color: var(--white);
    font-family: var(--middle-f-f);
    font-size: 28px;
    text-align: center;
}
.effect__items {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-top: 30px;
}
.effect__business {
    margin-bottom: 20px;
}
.effect__item {
    flex-basis: 220px;
    padding-top: 76px;
    position: relative;
    text-align: center;
    color: rgb(229, 241, 252);
}
.effect__business .effect__item:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: url(../img/icon/effect-arrow-blue.svg) top center / auto no-repeat;
}
.effect__business .effect__item:first-child,
.effect__business .effect__item:last-child {
    padding: 146px 0 0 0;
}
.effect__business .effect__item:first-child:after,
.effect__business .effect__item:last-child:after {
    background-position-y: 70px;
}
.effect__business .effect__item:nth-child(even) {
    padding: 96px 0 0 0;
}
.effect__business .effect__item:nth-child(even):after {
    background-position-y: 20px;
}
.effect__team .effect__item:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: url(../img/icon/effect-arrow-orange.svg) top center / auto no-repeat;
}
.effect__item_title {
    font-size: var(--middle-s);
    font-family: var(--title-f-f);
    margin-bottom: 4px;
}
.effect__team .effect__item:first-child,
.effect__team .effect__item:last-child {
    margin-top: -62px;
}
.effect__team .effect__item:nth-child(even) {
    margin-top: -24px;
}
.steps {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    height: 100%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin: 0 auto;
    max-width: 1300px;
    z-index: -1;
}
.step {
    background:linear-gradient(180deg, rgba(105, 207, 235, 0.09) 0%, 
                                       rgba(105, 207, 235, 0) 100%);
    border: 1px solid;
    border-image-source: linear-gradient(180deg, rgba(255, 255, 255, 0.16) 0%, 
                     rgba(37, 215, 255, 0) 9.62%);
    width: 65px;
    border-top-left-radius: 14px;
    border-top-right-radius: 14px;
}
.step:first-child {
    height: 20%;
}
.step:nth-child(2) {
    height: 25%;
}
.step:nth-child(3) {
    height: 30%;
}
.step:nth-child(4) {
    height: 35%;
}
.step:nth-child(5) {
    height: 40%;
}
.step:nth-child(6) {
    height: 45%;
}
.step:nth-child(7) {
    height: 50%;
}
.step:nth-child(8) {
    height: 55%;
}
.step:nth-child(9) {
    height: 60%;
}
.step:last-child {
    height: 67%;
}
/* end section effect */
/* start section about */
.about {
    position: relative;
    z-index: 18;
    background: var(--white);
}
.about__top {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
}
.title__about {
    border-bottom: 8px solid var(--yellow);
    padding-bottom: 20px;
    white-space: nowrap;
    margin-right: 50px;
}
.about__top__text {
    color: rgb(14, 116, 144);
    flex-basis: 40%;
    font-size: var(--middle-s);
}
.about__items {
    margin-top: 50px;
    background: var(--blue);
    padding: 30px 40px;
    border-radius: 30px;
    display: flex;
    justify-content: flex-start;
    gap: 30px;
    position: relative;
    min-height: 400px;
}
.about__item_title {
    color: var(--black-navy);
    font-size: 28px;
    font-family: var(--middle-f-f);
}
.about__item {
    flex-basis: 30%;
}
.about-list {
    margin-top: 30px;
    list-style-type: none;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.about-list__item {
    padding-left: 54px;
    height: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    position: relative;
}
.about-list__item:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    background: url(../img/icon/solution-arrow-icon.svg)center left / 44px no-repeat;
    height: 100%;
    width: 100%;
}
.about__item:nth-child(2) .about-list__item:after {
    background: url(../img/icon/arrow-yellow.svg)center left / 44px no-repeat;
}
.about-list__item + .about-list__item {
    margin-top: 20px;
}
.about__img {
    position: absolute;
    bottom: 0;
    left: 67%;
    transform: translateY(70px);
    width: 450px;
}
/* end section about */
/* start section testimonials */
.testimonials {
    background: linear-gradient(96.93deg, #F8FAFC 0%, #D1EAF1 100%);
    position: relative;
    z-index: 17;
}
.testimonials__slider {
    margin-top: 50px;
    padding-bottom: 100px;
}
.testimonials__slide {
    background: var(--white);
    border-radius: 10px;
    padding: 20px;
    height: auto;
}
.testimonials-how {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}
.testimonials__img {
    width: 60px;
    height: 60px;
    border-radius: 40px;
    padding: 4px;
    border: 2px solid var(--blue);
    margin-right: 20px;
}
.testimonials__name {
    font-size: var(--middle-s);
    color: var(--black-navy);
}
.testimonials__position {
    margin-top: 2px;
    color: rgb(96, 122, 134);
}
.testimonials__text {
    margin-top: 20px;
    color: var(--black-navy);
}
.swiper-button-next, .swiper-button-prev {
    position: absolute;
    top: 90%;
    width: 50px;
    height: 50px;
    margin-top: calc(0px - (var(--swiper-navigation-size) / 2));
    z-index: 20;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--whtie);
    background: rgb(14, 116, 144);
    border-radius: 50px;
    opacity: 1;
}
.swiper-button-next:after, .swiper-button-prev:after {
    font-family: swiper-icons;
    font-size: 10px;
    text-transform: none !important;
    letter-spacing: 0;
    font-variant: initial;
    line-height: 1;
    color: var(--white);
}
.swiper-button-next.swiper-button-disabled, .swiper-button-prev.swiper-button-disabled {
    opacity: 1;
    cursor: pointer;
}
.swiper-button-next, .swiper-rtl .swiper-button-prev {
    left: calc(50% + 10px);
    right: auto;
}
.swiper-button-prev, .swiper-rtl .swiper-button-next {
    right: calc(50% + 10px);
    left: auto;
}
.testimonials .guarantees__day {
    color: var(--black-navy);
}
.testimonials .guarantees__day span {
    color: rgb(56, 158, 186);
}
.testimonials .guarantees__text {
    color: var(--black-navy);
}
/* end section testimonials */
/* start section form */
.consultation {
    background: linear-gradient(0deg, #0E2E3C, #0E2E3C),
                linear-gradient(109.5deg, #122F3C 14.76%, #164458 100%);
    position: relative;
    z-index: 16;
}
.title__consultation {
    color: var(--white);
}
.consultation__subtitle {
    color: rgb(229, 241, 252);
}
.consultation .wpcf7 {
    margin-top: 50px;
}
.consultation form {
    background: var(--white);
    border-radius: 30px;
    padding: 40px;
}
.consultation form h4 {
    display: none;
}
.consultation label {
    color: rgb(30, 64, 93);
    display: block;
}
.consultation-form__top {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}
.consultation-form__top label + label {
    margin-left: 30px;
}
.consultation input {
    width: 100%;
    height: 50px;
    border: 1px solid rgb(155, 177, 186);
    border-radius: 8px;
    padding-left: 16px;
    color: rgb(126, 149, 160);
    margin-top: 4px;
}
.consultation input::placeholder {
    color: rgb(126, 149, 160);
}
input:focus::placeholder {
    opacity: 0;
}
.consultation textarea {
    width: 100%;
    border: 1px solid rgb(155, 177, 186);
    border-radius: 8px;
    margin-top: 4px;
    resize: none;
    padding-left: 16px;
    padding-top: 16px;
}
.consultation textarea::placeholder {
    color: rgb(126, 149, 160);
}
.consultation textarea:focus::placeholder {
    opacity: 0;
}
.consultation .consultation-form__bottom {
    margin-top: 20px;
    display: flex;
    justify-content: space-between;
}
.consultation-form__bottom p {
    margin-right: 40px;
    font-size: 14px;
}
input[type="submit"] {
    color: var(--black-navy);
    border: 2px solid transparent;
    border-radius: 50px;
    width: auto;
    height: auto;
    padding: 14px 32px;
    margin-top: 0;
}
.wpcf7-spinner {
    display: none;
}
.wpcf7-not-valid-tip {
    font-size: 14px;
    margin-top: 4px;
}
form p {
    color: rgb(96, 122, 134);
}
/* end section form */
/* start contact page */
.contact-page {
    min-height: 80vh;
    background: linear-gradient(0deg, #0E2E3C, #0E2E3C),
                linear-gradient(109.5deg, #122F3C 14.76%, #164458 100%);
    position: relative;
    z-index: 20;
    margin-top: 0;
}
.title__contact-page {
    color: var(--white);
}
.contact__items {
    display: flex;
    justify-content: space-between;
    margin-top: 36px;
}
.contact__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    flex-basis: 33%;
}
.contact__item:before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    background-color: rgb(0, 160, 226);
    filter: blur(220px);
    width: 540px;
    height: 620px;
    z-index: -1;
    border-radius: 60%;
}
.contact__item:nth-child(odd) {
    border-radius: 30px;
    padding: 30px;
    background: linear-gradient(180deg, rgba(105, 207, 235, 0.09) 0%, rgba(105, 207, 235, 0) 100%);
    justify-content: space-around;
    border: 1px solid rgba(235, 242, 246, 0.1);
    align-items: flex-start;
}
.contact__item:nth-child(odd):before {
    display: none;
}
.contact-page .contact__wrap {
    display: flex;
    align-items: center;
}
.contact-page .contact__wrap + .contact__wrap {
    margin-top: 20px;
}
.contact-page .icon-wrap {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--black-navy);
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 10px;
}
.contact-page .image-wrap {
    background: rgb(192, 219, 227);
    border-radius: 50%;
    width: 172px;
    height: 172px;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    overflow: hidden;
}
.contact-page .contact__img {
    object-fit: contain;
    object-position: center;
}
.contact-page .contact__phone {
    color: var(--white);
    font-size: var(--middle-s);
    font-family: var(--middle-f-f);
    transition: 0.3s;
}
.contact-page .contact__phone:hover {
    color: var(--yellow);
}
.contact-page .contact__email {
    color: var(--yellow);
    font-size: var(--middle-s);
    text-decoration: underline;
}
.contact-page .contact__email:hover {
    text-decoration: none;
}
.contact-page .contact__name {
    margin-top: 24px;
    color: var(--white);
    font-family: var(--middle-f-f);
    font-size: 28px;
}
.contact-page .contact__skills {
    color: var(--white);
    font-size: 14px;
    margin-top: 12px;
}
.contact-page span {
    display: block;
    color: var(--white);
    font-size: var(--middle-s);
}
.contact-page .social__link {
    color: var(--yellow);
    font-size: 16px;
}
.contact-page .wpcf7 {
    margin-top: 50px;
}
.contact-page form {
    background: var(--white);
    border-radius: 30px;
    padding: 40px;
}
.contact-page form h4 {
    text-align: center;
    font-family: var(--middle-f-f);
    font-size: 28px;
    margin-bottom: 20px;
}
.contact-page label {
    color: rgb(30, 64, 93);
    display: block;
}
.consultation-form__top {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}
.consultation-form__top label + label {
    margin-left: 30px;
}
.contact-page input {
    width: 100%;
    height: 50px;
    border: 1px solid rgb(155, 177, 186);
    border-radius: 8px;
    padding-left: 16px;
    color: rgb(126, 149, 160);
    margin-top: 4px;
}
.contact-page input::placeholder {
    color: rgb(126, 149, 160);
}
input:focus::placeholder {
    opacity: 0;
}
.contact-page textarea {
    width: 100%;
    border: 1px solid rgb(155, 177, 186);
    border-radius: 8px;
    margin-top: 4px;
    resize: none;
    padding-left: 16px;
    padding-top: 16px;
}
.contact-page textarea::placeholder {
    color: rgb(126, 149, 160);
}
.contact-page textarea:focus::placeholder {
    opacity: 0;
}
.contact-page .consultation-form__bottom {
    margin-top: 20px;
    display: flex;
    justify-content: space-between;
}
.consultation-form__bottom p {
    margin-right: 40px;
    font-size: 14px;
}
input[type="submit"] {
    color: var(--black-navy);
    border: 2px solid transparent;
    border-radius: 50px;
    width: auto;
    height: auto;
    padding: 14px 32px;
    margin-top: 0;
}
.wpcf7-spinner {
    display: none;
}
.contact-page .wpcf7-not-valid-tip {
    color: #dc3232;
    font-size: 14px;
    margin-top: 4px;
}
.contact-page .wpcf7-spinner {
    display: none;
}
/* end contect page */
/* star callback form */
.callback-form {
    position: fixed;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 50;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}
.form__background {
    width: 100%;
    height: 100%;
    background: rgba(18, 47, 60, 0.5);
    backdrop-filter: blur(5px);
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}
.form__close {
    align-self: flex-end;
    border: 1px solid var(--black-navy);
    border-radius: 5px;
    position: relative;
    width: 26px;
    height: 26px;
    cursor: pointer;
    margin-bottom: 5px;
}
.close__item {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--black-navy);
    transform: rotate(45deg) translate(8px, 8px);
    border-radius: 5px;
}
.close__item:last-child {
    transform: rotate(-45deg) translate(-8px, 8px);
}
.callback-form  form {
    display: flex;
    flex-direction: column;
    background: var(--white);
    padding: 30px;
    border-radius: 30px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.callback-form label {
    color: rgb(30, 64, 93);
    display: block;
}
label > span {
    display: block;
}
.callback-form label + label {
    margin-top: 30px;
}
.callback-form input {
    width: 100%;
    height: 50px;
    border: 1px solid rgb(155, 177, 186);
    border-radius: 8px;
    padding-left: 16px;
    color: rgb(126, 149, 160);
    margin-top: 4px;
}
.callback-form input::placeholder {
    color: rgb(126, 149, 160);
}
.callback-form input[type="submit"] {
    color: var(--black-navy);
    border: 2px solid transparent;
    border-radius: 50px;
    width: auto;
    height: auto;
    padding: 14px 32px;
    margin-top: 50px;
}
.callback-form input[type="submit"]:hover {
    background: var(--black-navy);
    color: var(--yellow);
    border: 2px solid var(--yellow);
}
.callback-form {
    display: none;
}
/* end callback form */
/* start kursfor */
.kursfor {
    position: relative;
    z-index: 22;
    background: var(--white);
}
.kursfor__items {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 50px;
}
.kursfor__item {
    flex-grow: 1;
    flex-basis: 25%;
    position: relative;
    height: 135px;
    display: flex;
    justify-content: center;
    align-items: flex-end;
}
.kursfor__item + .kursfor__item {
    margin-left: 28px;
}
.kursfor__item:before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    background: url(../img/icon/person-icon.svg) center bottom / 70% no-repeat,
                var(--yellow);
    width: 100px;
    height: 100px;
    border-radius: 50%;
}
.forposition {
    text-align: center;
    display: block;
    margin-top: auto;
    white-space: nowrap;
    color: var(--black-navy);
    font-size: var(--middle-s);
}
.kursfor__text {
    margin: 50px auto 0;
    background: var(--blue);
    border: 2px solid var(--white);
    font-family: "Montserrat Medium";
    font-size: 20px;
    padding: 20px;
    box-shadow: 0px 1px 1px 0px rgba(0, 0, 0, 0.05);
    border-radius: 10px;
    width: fit-content;
    text-align: center;
}
/* end kursfor */
/* start lessons */
.lessons {
    background: var(--white);
    position: relative;
    z-index: 20;
}
.lessons__items {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-top: 50px;
    gap: 40px;
}
.lessons__item {
    background: var(--blue);
    border-radius: 30px;
    padding: 30px;
    flex-basis: 30%;
}
.lessons__item:last-child {
    background: rgb(255, 249, 218);
}
.lessons__item:last-child
.solution-list__item:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url(../img/icon/lessons-arrow-orange.svg) center left / auto no-repeat;
}
.lessons .solution-list__item:last-child {
    background: transparent;
    text-align: left;
    border-radius: 0;
    padding: 0 0 0 34px;
    font-family: "Montserrat Regular";
    font-size: 16px;
    margin-top: 15px;
}
.lessons .solution-list__item:last-child:after {
    display: block;
}
.lessons .solution__item_title {
    margin-top: 8px;
}
.lessons__text {
    margin-top: 16px;
    text-align: center;
    text-transform: uppercase;
    color: var(--black-navy);
    font-family: "Montserrat Medium";
    font-size: 14px;
}
/* end lessons */
/* start package */
.package {
    position: relative;
    z-index: 19;
    background: linear-gradient(0deg, #0E2E3C, #0E2E3C),
                linear-gradient(109.5deg, #0E2E3C 14.76%, #0F4C4B 100%),
                linear-gradient(109.5deg, #122F3C 14.76%, #164458 100%);
}
.package__title {
    color: var(--white);
}
.package__items {
    display: flex;
    justify-content: space-between;
    margin-top: 50px;
    gap: 40px;
}
.package__item {
    flex-basis: 30%;
    flex-grow: 1;
    border: 1px solid rgba(235, 242, 246, 0.1);
    background: linear-gradient(180deg, rgba(105, 207, 235, 0.09) 0%, 
              rgba(105, 207, 235, 0) 100%);
    border-radius: 30px;
    display: flex;
    flex-direction: column;
    position: relative;
    padding: 30px;
}
.package_advice {
    color: var(--white);
    font-family: var(--middle-f-f);
    border-radius: 10px;
    padding: 5px 10px;
    width: fit-content;
    position: absolute;
    top: 0;
    left: 30px;
    transform: translateY(-50%);
}
.package__item:first-child .package_advice {
    background: rgb(96, 122, 134);
}
.package__item:nth-child(2n) .package_advice {
    background: rgb(44, 192, 123);
}
.package__item:last-child .package_advice {
    background: rgb(234, 68, 55);
}
.package__name {
    color: var(--white);
    font-family: var(--middle-f-f);
    font-size: 38px;
    text-transform: uppercase;
    margin-top: 5px;
    position: relative;
    padding-left: 52px;
}
.package__name:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    background: url(../img/icon/rocket-icon.svg) center center / contain no-repeat;
    height: 40px;
    width: 40px;
}
.package__item:nth-child(2n) .package__name:before {
    background: url(../img/icon/star-icon.svg) center center / contain no-repeat;
}
.package__item:last-child .package__name:before {
    background: url(../img/icon/crown-icon.svg) center center / contain no-repeat;
}
.package__interest {
    color: var(--white);
    margin-top: 8px;
    font-size: var(--middle-s);
}
.package__list {
    margin-top: 26px;
    list-style-type: none;
    color: var(--white);
    border-top: 1px solid rgb(65, 95, 107);
    padding: 26px 0 26px 0;
}
.package__paragraph {
    position: relative;
    padding-left: 36px;
}
.package__paragraph + .package__paragraph {
    margin-top: 24px;
}
.package__paragraph:before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    background: url(../img/icon/check-green.svg) center center / contain no-repeat;
    width: 24px;
    height: 24px;
}
.package__paragraph_not-available:before {
    background: url(../img/icon/apsent-icon.svg) center center / contain no-repeat;
}
.package__price {
    color: var(--white);
    margin-top: auto;
    border-top: 1px solid rgb(65, 95, 107);
    padding-top: 26px;
    font-family: var(--middle-f-f);
    font-size: 24px;
}
.package__item .package__button {
    margin-top: 24px;
}
.package__item:last-child .package__button {
    background: rgb(234, 68, 55);
    color: var(--white);
}
.package__item:last-child .package__button:hover {
    background: transparent;
    border-color: rgb(234, 68, 55);
    color: rgb(234, 68, 55);
}
.package__bottom {
    margin-top: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.guarantees__day {
    color: var(--white);
    margin-right: 40px;
    font-size: 24px;
    font-family: var(--title-f-f);
    text-transform: uppercase;
}
.guarantees__day span {
    color: var(--yellow);
}
.guarantees__text {
    color: rgb(229, 241, 252);
    flex-basis: 40%;
}
/* end package */
/* start faq */
.faq {
    position: relative;
    z-index: 16;
    background: var(--white);
}
.faq__items {
    margin-top: 50px;
}
.faq__item {
    background: var(--blue);
    border-radius: 30px;
    padding: 0 20px;
}
.faq__item + .faq__item {
    margin-top: 20px;
}
.faq__question {
    color: var(--black-navy);
    font-size: 28px;
    font-family: var(--middle-f-f);
    height: 80px;
    display: flex;
    align-items: center;
    position: relative;
    cursor: pointer;
}
.faq__question:after {
    content: "\276F";
    position: absolute;
    top: auto;
    right: 0;
    transform: rotate(90deg) translateX(-50%);
    font-size: 20px;
    transition: 0.3s;
}
.faq__answer {
    font-size: 0;
    padding: 0;
    height: 0;
    opacity: 0;
    transition-property: padding, opacity;
    transition-duration: 0.3s, 0.5s;
    transition-delay: 0. 0.5s;
}
.faq__answer_show {
    font-size: var(--middle-s);
    padding: 10px 50px 30px 0;
    height: 100%;
    opacity: 1;
}
.rotate:after {
    transform: rotate(-90deg) translateX(-50%);
}
/* end faq */
/* start important */
.important {
    position: relative;
    z-index: 15;
    background: linear-gradient(96.93deg, #F8FAFC 0%, #D1EAF1 100%);
}
.important span {
    font-family: var(--title-f-f);
}
.important p + p {
    margin-top: 30px;
}
/* end important */
@media screen and (max-width: 1300px) {
    .hero__items {
        padding-top: 110px;
    }
    .title-hero {
        font-size: 41px;
    }
    .text-hero {
        font-size: 19px;
    }
    .hero-elips__big {
        width: 442px;
        height: 523px;
    }
    .hero-elips__small {
        width: 300px;
        height: 300px;
    }
    .title-list {
        font-size: 24px;
    }
    .problem__list {
        margin-top: 30px;
    }
    .problem-lists {
        gap: 20px;
    }
    .solution__items {
        grid-template-columns: 1fr 290px;
        gap: 20px;
    }
    .solution__item {
        padding: 16px;
    }
    .solution__stage {
        font-size: 18px;
        margin-right: 8px;
    }
    .solution__item_title {
        font-size: 24px;
    }
    .solution-list__item {
        padding-left: 26px;
    }
    .solution-sublist {
        padding: 22px 16px;
    }
    .solution-sublist__item {
        padding-left: 26px;
    }
    .effect__items_title {
        font-size: 24px;
    }
    .title__about {
        margin-right: 30px; 
    }
    .about__item_title {
        font-size: 24px;
    }
    .about__img {
        left: 63%;
        transform: translateY(50px);
        width: 350px;
    }
    .about__top__text {
        flex-basis: 35%;
    }
    .about__items {
        padding: 16px;
        gap: 20px;
    }
    .about-list__item {
        padding-left: 48px;
    }
    .consultation-form__top label + label {
        margin-left: 20px;
    }
    .kursfor__item {
        height: 120px;
    }
    .kursfor__item + .kursfor__item {
        margin-left: 10px;
    }
    .kursfor__item:before {
        width: 80px;
        height: 80px;
    }
    .lessons__items {
        gap: 20px;
    }
    .lessons__item {
        flex-grow: 1;
        padding: 16px;
    }
    .lessons .solution__stage {
        font-size: 18px;
        margin-right: 0;
    }
    .lessons .solution-list__item:last-child {
        padding: 0 0 0 26px;
    }
    .package__items {
        gap: 20px;
    }
    .package__item {
        padding: 16px;
    }
    .faq__question {
        font-size: 24px;
        height: 58px;
        padding: 0 16px;
    }
}
@media screen and (max-width: 1024px) {
    .hero {
        height: 80vh;
    }
    .hero-left {
        margin-right: 20px;
        padding-bottom: 40px;
    }
    .title-hero {
        padding-top: 50px;
    }
    .title-hero {
        font-size: 36px;
    }
    .text-hero {
        font-size: 17px;
        margin-top: 20px;
    }
    .title-list {
        font-size: var(--middle-s);
    }
    .problem-list__item {
        font-size: 16px;
        height: 36px;
        padding-left: 38px;
    }
    .problem-list__item:after {
        background: url(../img/icon/fire.svg) center / 16px no-repeat,
                    var(--white);
        height: 30px;
        width: 30px;
    }
    .problem-list__like:after {
    background: url(../img/icon/like-icon.svg) center / 16px no-repeat,
                var(--white);
}
    .solution__items {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto auto;
        gap: 20px 0;
        grid-auto-flow: column;
    }
    .solution__item:first-child .solution__item_top:after {
        background: url(../img/icon/loop.svg) top right / 26px no-repeat;
    }
    .solution__item:nth-child(2n) .solution__item_top:after {
        background: url(../img/icon/settings.svg) top right / 26px no-repeat;
    }
    .solution__item:last-child .solution__item_top:after {
        background: url(../img/icon/rocket.svg) top right / 26px no-repeat;
    }
    .solution-list__item:after {
        background: url(../img/icon/solution-arrow-icon.svg) center left / 18px no-repeat;
    }
    .solution__item:last-child .solution-list {
        column-count: 2;
    }
    .solution-sublist {
        padding: 16px 16px;
    }
    .solution-sublist__item:after {
        background: url(../img/icon/solution-check-icon.svg) center left / 18px no-repeat;
    }
    .solution__item:last-child .solution-list {
        column-count: 1;
    }
    .effect__items {
        gap: 10px;
    }
    .effect__item_title {
        font-size: 16px;
    }
    .effect__item_text {
        font-size: 15px;
    }
    .effect__business .effect__item:after {
        background: url(../img/icon/effect-arrow-blue.svg) top center / 48px no-repeat;
    }
    .effect__team .effect__item:after {
        background: url(../img/icon/effect-arrow-orange.svg) top center / 48px no-repeat;
    }
    .title__about {
        border-bottom: 5px solid var(--yellow);
        padding-bottom: 10px;
    }
    .about__top__text {
        flex-basis: 70%;
        font-size: 16px;
    }
    .about__items {
        gap: 14px;
    }
    .about__item {
        flex-basis: 33%;
    }
    .about-list {
        margin-top: 20px;
    }
    .about-list__item:after {
        background: url(../img/icon/solution-arrow-icon.svg) center left / 18px no-repeat;
    }
    .about-list__item {
        padding-left: 26px;
    }
    .about__item:nth-child(2) .about-list__item:after {
        background: url(../img/icon/arrow-yellow.svg) center left / 18px no-repeat;
    }
    .about__img {
        left: 67%;
        transform: translateY(50px);
        width: auto;
    }
    .testimonials__position {
        font-size: 14px;
    }
    .testimonials__text {
        margin-top: 16px;
    }
    .consultation-form__top {
        flex-wrap: wrap;
    }
    .consultation-form__top label + label {
        margin-left: 0;
    }
    .consultation-form__top label:nth-child(n+3) {
        margin-top: 20px;
    }
    .consultation label {
        flex-basis: 45%;
    }
    .consultation-form__bottom p {
        margin-right: 20px;
    }
    .contact__item:nth-child(odd) {
        padding: 16px;
    }
    .contact-page .icon-wrap {
        width: 40px;
        height: 40px;
    }
    .contact-page .icon-wrap svg {
        width: 20px;
    }
    .contact-page .contact__phone {
        font-size: 16px;
    }
    .contact-page .contact__email {
        font-size: 14px;
    }
    .contact-page .contact__name {
        margin-top: 20px;
        font-size: 18px;
    }
    .contact-page .contact__skills {
        font-size: 12px;
        margin-top: 8px;
    }
    .contact-page span {
        font-size: 16px;
    }
    .contact-page .social__link {
        font-size: 14px;
    }
    .contact-page label {
        flex-basis: 45%;
    }
    .kursfor__items {
        justify-content: center;
        flex-wrap: wrap;
    }
    .kursfor__item {
        flex-grow: 0;
        flex-basis: 30%;
        position: relative;
        height: 120px;
        display: flex;
        justify-content: center;
        align-items: flex-end;
    }
    .kursfor__item + .kursfor__item {
        margin-left: 0;
    }
    .kursfor__item:nth-child(n+4) {
        margin-top: 20px;
    }
    .lessons__item {
        flex-basis: 35%;
    }
    .lessons__item:last-child .solution-list__item:after {
        background: url(../img/icon/lessons-arrow-orange.svg) center left / 18px no-repeat;
    }
    .package__items {
        flex-wrap: wrap;
        justify-content: center;
        gap: 40px 20px;
    }
    .package__item {
        flex-basis: 45%;
        flex-grow: 0;
    }
    .package__name {
        font-size: 34px;
        margin-top: 5px;
        position: relative;
        padding-left: 40px;
    }
    .package__name:before {
        background: url(../img/icon/rocket-icon.svg) center center / 30px no-repeat;
        height: 30px;
        width: 30px;
    }
    .package__interest {
        font-size: 16px;
    }
    .package__list {
        margin-top: 22px;
        padding: 22px 0 22px 0;
    }
    .package__paragraph {
        padding-left: 26px;
    }
    .package__paragraph:before {
        background: url(../img/icon/check-green.svg) center center / 18px no-repeat;
        width: 20px;
        height: 20px;
    }
    .package__paragraph_not-available:before {
        background: url(../img/icon/apsent-icon.svg) center center / 18px no-repeat;
    }
    .package__price {
        padding-top: 22px;
        font-size: 22px;
        text-align: center;
    }
    .guarantees__day {
        margin-right: 30px;
        font-size: 22px;
    }
    .guarantees__text {
        flex-basis: 50%;
    }
}
@media screen and (max-width: 820px) {
    .problem-lists {
        margin-top: 30px;
    }
    .problem-lists {
        gap: 40px;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    .problem-item {
        flex-basis: 100%;
        width: 80%;
    }
    .problem-item + .problem-item {
        margin-left: 0;
    }
    .problem__list {
        margin-top: 18px;
    }
    .solution__items {
        margin-top: 30px;
    }
    .step {
        width: 50px;
        border-top-left-radius: 12px;
        border-top-right-radius: 12px;
    }
    .effect__items {
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px 10px;
    }
    .effect__business {
        margin-bottom: 30px;
    }
    .effect__item {
        flex-basis: 32%;
        padding-top: 60px;
        position: relative;
        text-align: center;
        color: rgb(229, 241, 252);
    }
    .effect__business .effect__item:first-child,
    .effect__business .effect__item:last-child {
        padding: 60px 0 0 0;
    }
    .effect__business .effect__item:first-child:after,
    .effect__business .effect__item:last-child:after {
        background-position-y: 0;
    }
    .effect__business .effect__item:nth-child(even) {
        padding: 60px 0 0 0;
    }
    .effect__business .effect__item:nth-child(even):after {
        background-position-y: 0;
    }
    .effect__team .effect__item:first-child,
    .effect__team .effect__item:last-child {
        margin-top: 0;
    }
    .effect__team .effect__item:nth-child(even) {
        margin-top: 0;
    }
    .about__items {
        flex-direction: column;
        margin-top: 30px;
    }
    .about-list__item {
        height: auto;
    }
    .about__img {
        position: relative;
        left: 50%;
        transform: translate(-50%, 14px);
    }
    .consultation .wpcf7 {
        margin-top: 30px;
    }
    .consultation form {
        padding: 20px;
    }
    .consultation-form__bottom p {
        font-size: 12px;
    }
    .consultation label {
        font-size: 14px;
    }
    .callback-form label {
        font-size: 14px;
    }
    .kursfor__items {
        margin-top: 30px;
    }
    .kursfor__text {
        margin: 30px auto 0;
    }
    .package__item {
        flex-basis: 48%;
    }
    .package__bottom {
        flex-direction: column;
    }
    .guarantees__day {
        margin-right: 0;
        font-size: 22px;
    }
    .guarantees__text {
        margin-top: 10px;
        width: 90%;
        text-align: center;
    }
    .faq__question {
        font-size: 20px;
        height: 48px;
        padding: 0 0;
    }
    .faq__question:after {
        font-size: 15px;
    }
    .faq__answer {
        font-size: 16px;
    }
    .important__text {
        font-size: 14px;
    }
    .important p + p {
        margin-top: 18px;
    }
    }
@media screen and (max-width: 768px) {
    .hero {
        height: 100%;
    }
    .hero__items {
        flex-direction: column;
        border-bottom-left-radius: 30px;
        border-bottom-right-radius: 30px;
    }
    .hero__items {
        padding-top: 80px;
    }
    .hero-left {
        flex-basis: 100%;
        padding-bottom: 10px;
    }
    .title-hero {
        font-size: 30px;
        padding-top: 40px;
    }
    .hero-right picture {
        position: relative;
        bottom: 0;
        right: auto;
        margin: 0 auto;
    }
    .button-hero {
        margin-top: 40px;
        padding: 12px 16px;
    }
    .hero-elips {
        display: none;
    }
    .problem-item {
        width: 100%;
        background: var(--white);
        border-radius: 15px;
        padding: 16px 12px;
    }
    .title-list {
        font-size: 16px;
    }
    .problem__list {
        margin-top: 15px;
    }
    .problem-list__item + .problem-list__item {
        margin-top: 16px;
    }
    .problem-list__item {
        font-size: 16px;
        height: 100%;
        padding-left: 28px;
    }   
    .problem-list__item:after {
        background: url(../img/icon/fire.svg) center / 12px no-repeat,
                    var(--white);
        height: 18px;
        width: 18px;
    }
    .problem-list__like:after {
    background: url(../img/icon/like-icon.svg) center / 12px no-repeat,
                var(--white);
}
    .solution__item {
        border-radius: 15px;
        padding: 16px 12px;
    }
    .solution__item_title {
        font-size: 22px;
    }
    .solution__stage {
        font-size: 16px;
        border-radius: 7px;
        padding: 4px 8px;
    }
    .solution-list {
        margin-top: 16px;
    }
    .solution__item:first-child .solution-list {
        column-count: 1;
    }
    .solution__item:first-child 
    .solution-list__item:last-child {
        border-radius: 7px;
    }
    .solution-sublist__title {
        padding: 8px 0;
        border-top-left-radius: 7px;
        border-top-right-radius: 7px;
        font-size: 16px;
    }
    .solution-sublist {
        padding: 10px 8px;
    }
    .sublist__item {
        margin-top: 14px;
    }
    .subtitle__solution_item {
        font-size: 14px;
    }
    .steps {
        display: none;
    }
    .effect__container {
        margin-top: 30px;
    }
    .effect__items_title {
        font-size: 22px;
    }
    .effect__items {
        margin-top: 20px;
        gap: 20px 14px;
        background: rgba(14, 116, 144, 0.5);
        border-radius: 15px;
        padding: 16px 12px;
    }
    .effect__item {
        flex-basis: 48%;
        padding-top: 38px;
    }
    .effect__business .effect__item:after {
        background: url(../img/icon/effect-arrow-blue.svg) top center / 30px no-repeat;
    }
    .effect__team .effect__item:after {
        background: url(../img/icon/effect-arrow-orange.svg) top center / 30px no-repeat;
    }
    .effect__business .effect__item:first-child,
    .effect__business .effect__item:last-child {
        padding: 38px 0 0 0;
    }
    .effect__business .effect__item:nth-child(even) {
        padding: 38px 0 0 0;
    }
    .effect__item_text {
        width: 90%;
        margin: 0 auto;
    }
    .about__top {
        flex-direction: column;
    }
    .title__about {
        border-bottom: 3px solid var(--yellow);
        padding-bottom: 8px;
        margin-right: 0;
    }
    .about__top__text {
        flex-basis: 100%;
        margin-top: 8px;
    }
    .about__items {
        border-radius: 15px;
    }
    .about-list {
        margin-top: 16px;
    }
    .testimonials__slider {
        margin-top: 30px;
        padding-bottom: 80px;
    }
    .consultation form {
        border-radius: 15px;
    }
    .consultation label {
        flex-basis: 100%;
    }
    .consultation-form__top label:nth-child(n+2) {
        margin-top: 16px;
    }
    .consultation input {
        height: 40px;
        margin-top: 4px;
    }
    .consultation .consultation-form__bottom {
        margin-top: 5px;
        display: flex;
        flex-direction: column;
    }
    input[type="submit"] {
        margin-top: 14px;
        height: auto;
    }
    .contact-page .title__contact-page {
        margin-top: 55px;
    }
    .contact__items {
        flex-direction: column;
    }
    .contact__item + .contact__item {
        margin-top: 20px;
    }
    .contact__item:first-child {
        order: 2;
        margin-top: 20px;
    }
    .contact__item:before {
        width: 290px;
        height: 370px;
    }
    .contact-page .contact__wrap + .contact__wrap {
        display: flex;
        align-items: center;
        margin-top: 14px;
    }
    .contact-page form {
        border-radius: 15px;
    }
    .contact-page label {
        flex-basis: 100%;
    }
    .contact-page input {
        height: 40px;
        margin-top: 4px;
    }
    .contact-page .consultation-form__bottom {
        margin-top: 5px;
        display: flex;
        flex-direction: column;
    }
    .contact-page input[type="submit"] {
        margin-top: 14px;
        height: auto;
    }
    .callback-form form {
        border-radius: 15px;
        padding: 20px;
    }
    .callback-form label {
        flex-basis: 100%;
    }
    .callback-form label + label {
        margin-top: 20px;
    }
    .callback-form input {
        height: 40px;
        margin-top: 4px;
    }
    .callback-form .consultation-form__bottom {
        margin-top: 5px;
        display: flex;
        flex-direction: column;
    }
    .callback-form input[type="submit"] {
        margin-top: 25px;
        height: auto;
    }
    .kursfor__item {
        height: 100px;
        flex-basis: 49%;
    }
    .kursfor__item:before {
        width: 70px;
        height: 70px;
    }
    .kursfor__item:nth-child(n+3) {
        margin-top: 20px;
    }
    .forposition {
        font-size: 16px;
    }
    .kursfor__text {
        font-size: 18px;
        padding: 10px;
    }
    .lessons__items {
        margin-top: 30px;
    }
    .lessons__item {
        flex-basis: 100%;
        border-radius: 15px;
        padding: 16px 12px;
    }
    .lessons__text {
        font-size: 10px;
    }
    .package__item {
        flex-basis: 100%;
        border-radius: 15px;
        padding: 16px 12px;
    }
    .package__items {
        margin-top: 34px;
        gap: 34px 0;
    }
    .package_advice {
        font-size: 14px;
    }
    .package__name:before {
        background: url(../img/icon/rocket-icon.svg) center center / 24px no-repeat;
        height: 24px;
        width: 24px;
        transform: translateY(-50%);
        top: 50%;
    }
    .package__name {
        font-size: 28px;
        padding-left: 30px;
    }
    .package__bottom {
        margin-top: 30px;
    }
    .guarantees__day {
        font-size: 20px;
    }
    .guarantees__text {
        margin-top: 8px;
        width: 100%;
        text-align: center;
        font-size: 14px;
    }
    .faq__items {
        margin-top: 30px;
    }
    .faq__item {
        border-radius: 15px;
        padding: 0 16px;
    }
    .faq__answer {
        padding: 10px 20px 12px 0;
    }
}
@media screen and (max-width: 375px) {
    .hero {
        height: 100%;
    }
    .hero__items {
        flex-direction: column;
    }
    .hero-left {
        padding-bottom: 10px;
    }
    .hero-right picture {
        position: relative;
        bottom: 0;
        right: auto;
        margin: 0 auto;
    }
    .kursfor__item {
        height: 100px;
        flex-basis: 100%;
    }
    .kursfor__item:nth-child(n+2) {
        margin-top: 20px;
    }
}