:root {
    --min-height-header: clamp(76px, 10vw, 130px);
}

* {
    -webkit-tap-highlight-color: transparent;
}

html,body,div,span,applet,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,a,abbr,acronym,address,big,cite,code,del,dfn,em,img,ins,kbd,q,s,samp,small,strike,strong,sub,sup,tt,var,b,u,i,center,dl,dt,dd,ol,ul,li,fieldset,form,label,legend,table,caption,tbody,tfoot,thead,tr,th,td,article,aside,canvas,details,embed,figure,figcaption,footer,header,hgroup,menu,nav,output,ruby,section,summary,time,mark,audio,video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
    font-family: 'Poppins';
    text-decoration: none;
    box-sizing: border-box;
    color: inherit;
    color: #0A122F;
}

a {
    color: #0A122F;
    transition: color .3s ease;
}

/* HTML5 display-role reset for older browsers */
article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section {
    display: block;
}

body {
    line-height: 1;
}

ol,ul {
    list-style: none;
}

blockquote,q {
    quotes: none;
}

blockquote:before,blockquote:after,q:before,q:after {
    content: "";
    content: none;
}

i, em {
    font-style: italic;
}

table {
    max-width: 100%;
    border-collapse: separate;
    border-spacing: 0 2px;
}

body:after {
    background-color: rgb(0 0 0 / 42%);
    position: fixed;
    z-index: 999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    content: "";
    display: block;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

body.overlay:after {
    opacity: 1;
    visibility: visible;
}

b.loading_screen {
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: 999999;
    background-color: #fff;
    visibility: hidden;
    opacity: 0;
    transition: all 0.3s ease;
}

b.loading_screen.active {
    visibility: visible;
    opacity: 1;
}

strong {
    font-weight: 600;
}

b {
    font-weight: 700;
}

i {
    font-style: italic;
}

input:not([type="file"]):not([type="submit"]), select, textarea {
    font-family: 'Poppins';
    transition: all .3s ease;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 0.14px;
    border: none;
    background-color: #ffffff;
    border-radius: 20px;
    padding: 10px 20px;
    min-height: 42px;
    box-sizing: border-box;
    width: 100%;
    outline: none;
}

select {
    background-image: url('assets/icons/arrow-select.svg');
    -webkit-appearance: none;
    -moz-appearance: none;
    background-size: 18px auto;
    background-repeat: no-repeat;
    background-position: calc(100% - 20px) center;
    cursor: pointer;
    padding-right: 58px;
}

select.no-selected {
    color: #898989;
}

select.no-selected:active, select.no-selected:focus {
    color: #000000;
}

input.error, select.error, textarea.error {
    box-shadow: inset 0px 0px 13px rgb(252 56 56 / 30%);
}

textarea::placeholder {
    color: #a5a5a5;
}

.clearfix::after {
    content: "";
    display: table;
    clear: both;
}

::-webkit-input-placeholder {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    color: #a4a6a7;
    transition: color .3s ease;
}

::-moz-placeholder {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    color: #a4a6a7;
    transition: color .3s ease;
}

:-ms-input-placeholder {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    color: #a4a6a7;
    transition: color .3s ease;
}

:-moz-placeholder {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    color: #a4a6a7;
    transition: color .3s ease;
}

*:hover::-webkit-input-placeholder {
    color: #d6d6d6;
}

*:hover::-moz-placeholder {
    color: #d6d6d6;
}

*:hover:-ms-input-placeholder {
    color: #d6d6d6;
}

*:hover:-moz-placeholder {
    color: #d6d6d6;
}

ul:not([class]) {
    margin: 25px 0 25px;
}

ul:not([class]) li {
    position: relative;
    padding-left: 26px;
}

ul:not([class]) li:before {
    content: "\2714";
    width: 16px;
    height: 16px;
    display: block;
    position: absolute;
    top: 0px;
    left: 0px;
    border: 0;
    border-radius: 50%;
    box-sizing: border-box;
    color: #3949f5;
    font-weight: 700;
}

ul:not([class]) li:not(:last-child) {
    margin-bottom: 16px;
}

ol:not([class]) {
    margin: 15px 0;
    counter-reset: item;
}

ol:not([class]) li {
    position: relative;
}

ol:not([class]) li:before {
    content: counter(item) ") ";
    counter-increment: item;
    font-weight: 500;
    color: #a5352d;
}

ol:not([class]) li:not(:last-child) {
    margin-bottom: 16px;
}

.container {
    width: calc(100% - 32px);
    max-width: 1280px;
    margin: 0 auto;
}

.inner-container {
    width: calc(100% - 32px);
    max-width: 1080px;
    margin: 0 auto;
}

svg:not(.native) {
    fill: inherit;
    stroke: inherit;
    width: inherit;
    height: inherit;
    display: block;
}

svg:not(.native) path {
    fill: inherit;
    stroke: inherit;
    transition: fill 0.3s ease, stroke 0.3s ease;
}

.modal-window {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10;
}

.modal-wrap {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-block {
    width: 92%;
    max-width: 578px;
    top: -100px;
    opacity: 0;
    z-index: 1;
    position: relative;
    background-color: #F1F2FF;
    border-radius: 20px;
    padding: 50px 50px 40px;
    overflow-y: auto;
    max-height: calc(100vh - 48px);
    min-height: 200px;
}

.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    opacity: 0;
    transition: opacity .3s ease;
}

.modal-window--open .modal-overlay {
    opacity: 1;
}

img {
    display: block;
    max-width: 100%;
    max-height: 100%;
}

video {
    display: block;
    max-width: 100%;
    max-height: 100%;
}

.modal-close--icon {
    width: 14px;
    height: 14px;
    display: block;
    position: relative;
}

.modal-close {
    width: 24px;
    height: 24px;
    position: absolute;
    top: 25px;
    right: 25px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    fill: #1C1B1F;
}

.wrapper {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 100vh;
}

main {
    flex: 1;
    padding-bottom: 0;
}

section.banner {
    background: linear-gradient(257deg, rgba(146, 205, 218, 0.40) -41.3%, rgba(193, 197, 247, 0.40) 111.47%), #FFF;
    min-height: calc(245px + var(--min-height-header));
    margin-top: calc(0px - var(--min-height-header));
    padding-top: var(--min-height-header);
}

header {
    min-height: var(--min-height-header);
    display: flex;
    align-items: center;
    position: relative;
    top: 0;
    z-index: 2;
    background: linear-gradient(257deg, rgba(146, 205, 218, 0.40) -41.3%, rgba(193, 197, 247, 0.40) 111.47%), #FFF;
}

.header-wrap {
    display: flex;
    align-items: center;
    column-gap: clamp(10px, 2vw, 30px);
}

.button {
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    display: inline-flex;
    align-items: center;
    border-radius: 50px;
    min-height: 42px;
    padding: 8px 20px;
    min-width: 94px;
    justify-content: center;
    transition: all .3s ease;
    cursor: pointer;
    border: none;
}

.button .icon-svg {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    max-height: 15px;
    max-width: 15px;
    margin-left: 16px;
}

.button.button-white {
    background-color: #ffffff;
    color: #0A122F;
    fill: #0A122F;
}

.button.button-white:hover {
    background-color: #0A122F;
    color: #ffffff;
    fill: #ffffff;
}

.button.button-blue {
    background-color: #3949F5;
    color: #ffffff;
}

.button.button-blue:hover {
    background-color: #0A122F;
}
.lessons-links .button.button-link {
	color: #ffffff;
	background:#5775CD;
}
.lessons-links .button.button-link svg{
	stroke: #ffffff;
}
.button.button-link {
    border: 2px solid #5775CD;
    color: #5775CD;
}
.button.button-link:hover {
    background-color: #5775CD;
    color: #ffffff;
}

.button.button-purple {
    background-color: #5775CD;
    color: #ffffff;
}

.button.button-purple:hover {
    background-color: #0A122F;
}

.header-menu ul.menu li a, .header-menu ul.menu li span {
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    letter-spacing: 0.14px;
    display: inline-block;
    padding: 6px 6px;
    cursor: pointer;
    transition: all .3s ease;
}

.header-menu ul.menu li a:hover, .header-menu ul.menu li span:hover {
    color: #3949f5;
}

.header-menu {
    border-radius: 50px;
    background-color: rgba(255, 255, 255, 0.40);
    display: flex;
    align-items: center;
    min-height: 42px;
    padding: 4px 30px;
}

.header-menu ul.menu {
    display: flex;
    align-items: center;
    column-gap: clamp(12px, 2vw, 50px);
}

.header-buttons {
    margin-left: auto;
    display: flex;
    column-gap: 10px;
}

.header-logo {
    height: clamp(24px, 4vw, 34px);
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.banner-title * {
    color: #0A122F;
    font-size: clamp(36px, 5vw, 80px);
    font-style: normal;
    font-weight: 500;
    line-height: 112%;
}

.banner-title * mark {
    background: none;
    color: #5775CD;
    display: block;
}

.banner-title {
    max-width: 780px;
}

.banner-wrap {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    padding-top: clamp(20px, 8vw, 90px);
    padding-bottom: clamp(20px, 8vw, 90px);
    column-gap: 30px;
}

.advantage-item {
    display: flex;
    align-items: center;
    column-gap: clamp(20px, 5vw, 130px);
    position: relative;
    border-bottom: 6px solid transparent;
    border-image-slice: 0 0 6 0;
    border-image-width: 0 0 6px 0;
}

.advantage-item:nth-child(6n+1) {
    border-image: url('../images/advantage-line-1.svg') 0 0 6 0 round stretch;
    --image-margin-top: -60px;
    --image-margin-bottom: -10px;
    --image-margin-left: 0;
    --image-margin-right: 0;
}

.advantage-item:nth-child(6n+2) {
    border-image: url('../images/advantage-line-2.svg') 0 0 6 0 stretch;
    --image-margin-top: -30px;
    --image-margin-bottom: -8px;
    --image-margin-left: 0;
    --image-margin-right: 0;
}

.advantage-item:nth-child(6n+3) {
    border-image: url('../images/advantage-line-3.svg') 0 0 6 0 stretch;
    --image-margin-top: 0;
    --image-margin-bottom: -30px;
    --image-margin-left: 0;
    --image-margin-right: 0;
    padding-top: 80px;
}

.advantage-item:nth-child(6n+4) {
    border-image: url('../images/advantage-line-4.svg') 0 0 6 0 stretch;
    --image-margin-top: -30px;
    --image-margin-bottom: -10px;
    --image-margin-left: 0;
    --image-margin-right: 0;
}

.advantage-item:nth-child(6n+5) {
    border-image: url('../images/advantage-line-5.svg') 0 0 6 0 stretch;
    --image-margin-top: -60px;
    --image-margin-bottom: -6px;
    --image-margin-left: 0;
    --image-margin-right: 0;
}

.advantage-item:nth-child(6n) {
    border-image: url('../images/advantage-line-6.svg') 0 0 6 0 stretch;
    --image-margin-top: -30px;
    --image-margin-bottom: -8px;
    --image-margin-left: 0;
    --image-margin-right: 0;
}

.advantage-item:nth-child(odd) .advantage-content {
    order: 2;
}

.advantage-item:nth-child(even) .advantage-content {
    margin-left: auto;
}

.advantage-item:nth-child(even) .advantage-image {
    justify-content: center;
}

.advantage-item:nth-child(6n+5) .advantage-image {
    justify-content: center;
}

.advantage-item:nth-child(6n+3) .advantage-image {
    padding-left: 34px;
}

.advantage-content {
    max-width: 375px;
}

.advantage-content * {
    color: #0A122F;
    font-size: clamp(16px, 3vw, 18px);
    font-style: normal;
    font-weight: 500;
    line-height: 130%;
}

.advantage-content * mark {
    background: none;
    color: #5775CD;
    font-weight: 600;
}

.advantage-item:nth-child(6n+3) .advantage-content {
    max-width: 340px;
    padding-bottom: 60px;
}

.advantage-image {
    width: 100%;
    max-width: 420px;
    display: flex;
    margin-top: var(--image-margin-top);
    margin-bottom: var(--image-margin-bottom);
    margin-left: var(--image-margin-left);
    margin-right: var(--image-margin-right);
}

section.lessons {
    margin-top: clamp(80px, 6vw, 120px);
    margin-bottom: clamp(80px, 6vw, 120px);
}

.lessons-items {
    display: flex;
    flex-wrap: wrap;
    column-gap: 36px;
    row-gap: clamp(20px, 2vw, 36px);
}

.lessons-item {
    border-image-slice: 27 27 27 27 fill;
    border-image-width: 20px 20px 20px 20px;
    border-image-outset: 0px 0px 0px 0px;
    border-image-repeat: stretch stretch;
    border-style: solid;
    display: flex;
    flex-direction: column;
    row-gap: 30px;
    min-height: clamp(120px, 18vw, 230px);
    flex: 1 0 calc(50% - 32px);
    min-width: 320px;
    padding: clamp(20px, 3vw, 30px) clamp(15px, 3vw, 30px);
}

.lessons-item:nth-child(5n+1) {
    border-image-source: url("../images/border-lesson-1.svg");
}

.lessons-item:nth-child(5n+2) {
    border-image-source: url("../images/border-lesson-2.svg");
}

.lessons-item:nth-child(5n+3) {
    border-image-source: url("../images/border-lesson-3.svg");
}

.lessons-item:nth-child(5n+4) {
    border-image-source: url("../images/border-lesson-4.svg");
}

.lessons-item:nth-child(5n) {
    border-image-source: url("../images/border-lesson-5.svg");
}

.lessons-item-content * {
    color: #0A122F;
    font-size: clamp(16px, 3vw, 18px);
    font-style: normal;
    font-weight: 500;
    line-height: 130%;
}

.lessons-item-content * mark {
    background: none;
    color: #5775CD;
    font-weight: 600;
}

.lessons-title * {
    text-align: center;
    font-size: clamp(36px, 4vw, 56px);
    font-style: normal;
    font-weight: 500;
    line-height: 110%;
}

.lessons-title {
    width: 100%;
    max-width: 650px;
    margin: 0 auto clamp(40px, 3vw, 60px);
}

@media (max-width: 999px) {
    .lessons-title word:first-child letter:first-child {
        position: relative;
    }

    .lessons-title word:first-child letter:first-child:after {
        content: "";
        background-image: url('../images/letter-man.svg');
        background-size: contain;
        background-repeat: no-repeat;
        background-position: center;
        transform: scaleX(-1);
        width: clamp(48px, 6vw, 56px);
        height: clamp(55px, 6vw, 65px);
        display: block;
        position: absolute;
        top: -27px;
        left: -21px;
    }
}

@media (min-width: 999px) {
    .lessons-title word:last-child letter:last-child {
        position: relative;
    }

    .lessons-title word:last-child letter:last-child:after {
        content: "";
        background-image: url('../images/letter-man.svg');
        background-size: contain;
        background-repeat: no-repeat;
        background-position: center;
        width: clamp(48px, 6vw, 56px);
        height: clamp(55px, 6vw, 65px);
        width: 56px;
        height: 65px;
        display: block;
        position: absolute;
        top: -18px;
        left: 6px;
    }
}

.lessons-links {
    display: flex;
    flex-wrap: wrap;
    column-gap: 20px;
    row-gap: 20px;
    margin-top: clamp(40px, 3vw, 60px);
	justify-content:center;
}

.lessons-links .button.button-link {
    stroke: #5775CD;
    fill: none;
    min-height: 62px;
    flex: 1 1 auto;
    white-space: nowrap;
	max-width:351px;
}

.lessons-links .button.button-link:nth-child(2n) {
    flex: 1.45 1 auto;
}

.lessons-links .button.button-link:hover {
    stroke: #ffffff;
}

.lessons-links .button.button-link .icon-svg {
    transition: transform .3s ease;
}

.lessons-links .button.button-link:hover .icon-svg {
    transform: translate(4px, -2px);
}

.sandwich {
    position: relative;
    width: 36px;
    color: #0A122F;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 10px;
}

.sandwich:before, .sandwich:after {
    content: "";
    width: 100%;
    height: 2px;
    position: absolute;
    left: 50%;
    top: 50%;
    background-color: currentColor;
    transition: all .3s ease;
}

.sandwich:before {transform: translate(-50%, calc(-50% - 5px));}

.sandwich:after {
    transform: translate(-50%, calc(-50% + 5px));
}

.sandwich.active:before {
    transform: translate(-50%, -50%) rotate(225deg);
    width: calc(100% - 10px);
}

.sandwich.active:after {
    transform: translate(-50%, -50%) rotate(315deg);
    width: calc(100% - 10px);
}

.slider-wrap {
    border-radius: 20px;
    background-color: #F0F3FF;
    padding-top: 30px;
    padding-bottom: 30px;
    min-height: clamp(260px, 8vw, 460px);
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
}

.slider-title * {
    color: #0A122F;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 130%;
    letter-spacing: 0.16px;
    text-transform: uppercase;
}

.slider-title {
    margin-bottom: clamp(20px, 3vw, 30px);
}

section.slider {
    margin-top: clamp(80px, 6vw, 120px);
    margin-bottom: clamp(80px, 6vw, 120px);
}

.slide-title * {
    color: #0A122F;
    font-size: clamp(22px, 4vw, 34px);
    font-style: normal;
    font-weight: 500;
    line-height: 120%;
}

.slide-block {
    display: flex;
    align-items: center;
    column-gap: 30px;
    justify-content: space-between;
}

.slide-media {
    max-width: 644px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.slide-title {
    max-width: 380px;
}

.slide-media video {
    border-radius: 18px;
    background: #FFF;
    box-shadow: 0px 0px 1.268px 0px #A7AEFF, 0px 2.536px 19.022px 0px rgba(167, 174, 255, 0.20);
    max-width: calc(100% - 40px);
}

.slider-item {
    display: none;
}

.slider-buttons {
    display: flex;
    column-gap: 10px;
    flex-wrap: wrap;
    row-gap: 10px;
    justify-content: center;
    margin-top: 20px;
}

.slider-wrap .cloudlet {
    position: absolute;
    z-index: -1;
}

.slider-wrap .cloudlet.cloudlet-1 {
    top: 20%;
    right: 52%;
    max-width: 86px;
}

.slider-wrap .cloudlet.cloudlet-2 {
    max-width: 110px;
    right: 8%;
    top: 6%;
}

.slider-wrap .cloudlet.cloudlet-3 {
    max-width: 54px;
    right: 3%;
    top: 46%;
}

.slider-wrap .cloudlet.cloudlet-4 {
    max-width: 100px;
    top: 66%;
    right: 42%;
}

.slider-button.button.button-purple.active {
    background-color: transparent;
    box-shadow: 0px 0px 1px 0px #A7AEFF, 0px 2px 15px 0px rgba(167, 174, 255, 0.20);
    color: #5775CD;
    pointer-events: none;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
    display: flex;
    align-items: center;
}

section.faq {
    padding-top: clamp(20px, 6vw, 70px);
    padding-bottom: clamp(50px, 6vw, 100px);
    background-color: #F9FBFE;
}

.faq-title, .faq-links {
    align-self: flex-start;
}

.faq-title * {
    color: #0A122F;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 130%;
    letter-spacing: 0.16px;
    text-transform: uppercase;
}

.faq-links {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    column-gap: 20px;
    row-gap: 20px;
    align-self: flex-end;
}

.faq-links .button.button-link {
    stroke: #5775CD;
    fill: none;
    white-space: nowrap;
}

.faq-links .button.button-link:hover {
    stroke: #ffffff;
}

.faq-links .button.button-link .icon-svg {
    transition: transform .3s ease;
}

.faq-links .button.button-link:hover .icon-svg {
    transform: translate(4px, -2px);
}

.faq-head {
    font-size: clamp(16px, 3vw, 20px);
    font-style: normal;
    font-weight: 500;
    line-height: 110%;
    stroke: #0A122F;
    fill: #0A122F;
    display: flex;
    align-items: center;
    column-gap: 20px;
    padding-top: clamp(20px, 3vw, 30px);
    padding-bottom: clamp(20px, 3vw, 30px);
    cursor: pointer;
}

.faq-body {
    font-size: clamp(14px, 3vw, 16px);
    font-style: normal;
    font-weight: 500;
    line-height: 135%;
    padding-bottom: 30px;
    display: none;
}

.faq-item {
    border-bottom: solid 1px #C8CDFF;
}

.faq-head .icon-svg {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 12px;
    height: 8px;
    margin-left: auto;
    transition: all .3s ease;
}

.faq-items {
    grid-row: 1/3;
    grid-column: 2/2;
}

.faq-wrap {
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    column-gap: 30px;
    grid-template-rows: max-content;
}

.faq-title {
    margin-top: 30px;
}

.faq-head.active .icon-svg {
    transform: rotateX(180deg);
}

section.contact {
    padding-top: 0;
    padding-bottom: clamp(50px, 6vw, 100px);
    background-color: #F9FBFE;
}

.contact-title * {
    color: #0A122F;
    font-size: clamp(36px, 3vw, 56px);
    font-style: normal;
    font-weight: 500;
    line-height: 110%;
}

.contact-wrap {
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    column-gap: 30px;
    grid-template-rows: max-content;
}

.contact-form {
    grid-row: 1 / 3;
    grid-column: 2 / 2;
    border-radius: 20px;
    background-color: #E5E8FF;
    padding: 24px 24px;
}

.contact-phone a .icon-svg {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background-color: #E5E8FF;
    border-radius: 50%;
    padding: 12px;
}

.contact-phone a {
    color: #0A122F;
    fill: #5775CD;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 110%;
    display: inline-flex;
    align-items: center;
    column-gap: 12px;
}

.contact-phone a:hover {
    color: #5775CD;
}

.contact-title, .contact-phone {
    align-self: flex-start;
}

.contact-phone {
    align-self: flex-end;
}

.contact-form .acceptance {
    display: block;
    color: #0A122F;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 135%;
    opacity: .5;
    align-self: center;
}

.contact-form .wpcf7-form-control-wrap {
    display: flex;
    flex-direction: column;
    min-width: 260px;
}

.contact-form .wpcf7-form {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
    column-gap: 10px;
    row-gap: 15px;
}

.contact-form .wpcf7-form-control-wrap[data-name="fio"],
.contact-form .wpcf7-form-control-wrap[data-name="phone"] {
    flex: 1 0 calc(50% - 10px);
}

.contact-form .iti input:not([type="file"]):not([type="submit"]) {
    background-color: #ffffff;
    border-radius: 0 20px 20px 0;
}

.contact-form .wpcf7-form .iti__selected-flag {
    border: none;
    background-color: #ffffff;
    border-radius: 20px 0 0 20px;
}

.contact-form .wpcf7-form .iti {
    column-gap: 0;
}

.contact-form .wpcf7-form-control-wrap[data-name="message"] {
    flex: 1 0 100%;
}

.contact-form .wpcf7-spinner {
    display: none!important;
}

.contact-form .wpcf7-form .button {
    min-width: 130px;
}

.contact-form .acceptance a {
    text-decoration: underline;
}

.contact-form .acceptance a:hover {
    text-decoration: none;
}

.contact-form .wpcf7-not-valid-tip {
    font-size: 12px;
    margin-top: 8px;
}

.contact-form .wpcf7 form .wpcf7-response-output {
    width: 100%;
    display: flex;
    justify-content: center;
    text-align: center;
    padding: 10px 10px;
    font-size: 14px;
    margin: 0;
    border-radius: 20px;
}

.copyright {
    color: #878CA1;
    text-align: center;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
    padding-top: 18px;
    padding-bottom: 18px;
    border-top: solid 1px #DDDFE4;
}

footer {
    background-color: #F9FBFE;
}