@font-face {
    font-family: 'montserrat';
    src: url('../font/montserrat-bold-webfont.woff2') format('woff2'), url('../font/montserrat-bold-webfont.woff') format('woff'), url('../font/montserrat-bold-webfont.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'montserrat';
    src: url('/wp-content/themes/twentytwentyone/assets/font/montserrat-medium-webfont.woff2') format('woff2'), url('/wp-content/themes/twentytwentyone/assets/font/montserrat-medium-webfont.woff') format('woff'), url('/wp-content/themes/twentytwentyone/assets/font/montserrat-medium-webfont.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'montserrat';
    src: url('/wp-content/themes/twentytwentyone/assets/font/montserrat-regular-webfont.woff2') format('woff2'), url('/wp-content/themes/twentytwentyone/assets/font/montserrat-regular-webfont.woff') format('woff'), url('/wp-content/themes/twentytwentyone/assets/font/montserrat-regular-webfont.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'montserrat';
    src: url('/wp-content/themes/twentytwentyone/assets/font/montserrat-semibold-webfont.woff2') format('woff2'), url('/wp-content/themes/twentytwentyone/assets/font/montserrat-semibold-webfont.woff') format('woff'), url('/wp-content/themes/twentytwentyone/assets/font/montserrat-semibold-webfont.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
}

:root {
    --assets: '/wp-content/themes/twentytwentyone/assets';
    --media-large: 1921px;
    --media-tablet: 1024px;
    --media-mobile: 850px;
    --color-violet: #9B00E5;
    --color-dark-violet: #380A4E;
    --color-text-grey: #303030;
    --color-text-black: #000;
    --color-text-white: #fff;
    --transition-delay: 0.3s;
    --width-logo: 165px;
    --height-mobile-nav: 55px;
}

body {
    font-family: Montserrat, sans-serif;
    font-size: 16px;
}

.btn_d {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 20px 11px 20px;
    cursor: pointer;
    transition: all var(--transition-delay);
    color: var(--color-text-white);
    border: 1px solid var(--color-violet);
    border-radius: 3px;
    background-color: var(--color-violet);
    font-family: Montserrat, sans-serif;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.4;
}

.btn_d:hover {
    transition: all var(--transition-delay);
    color: var(--color-violet);
    background-color: #fff;
}

@-webkit-keyframes autofill {
    to {
        color: inherit;
        background: transparent;
    }
}

input:-webkit-autofill {
    -webkit-animation-name: autofill;
    -webkit-animation-fill-mode: both;
}

#feedback input:-webkit-autofill {
    -webkit-box-shadow: 0 0 0px 1000px #b702e2bd inset;
}

@font-face {
    font-family: "IBMPlexSans-Regular";
    src: url("/fonts/IBM_Plex/IBMPlexSans-Regular.ttf");
}

.animated {
    -webkit-animation-duration: 5s;
    animation-duration: 5s;
    -webkit-animation-delay: 1.2s;
    animation-delay: 1.2s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

.anim-video {
    -webkit-animation-duration: 5s;
    animation-duration: 5s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

.anim-header {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation-delay: 0.8s;
    animation-delay: 0.8s;
}

.anim-topheader {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation-delay: 1.2s;
    animation-delay: 1.2s;
}

@-webkit-keyframes fadeInLeft {
    0% {
        opacity: 0;
        -webkit-transform: translateX(-20px);
    }
    100% {
        opacity: 1;
        -webkit-transform: translateX(0);
    }
}

@keyframes fadeInLeft {
    0% {
        opacity: 0;
        -webkit-transform: translateX(-20px);
        transform: translateX(-20px);
    }
    100% {
        opacity: 1;
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}

@-webkit-keyframes fadeInRight {
    0% {
        opacity: 0;
        -webkit-transform: translateX(20px);
    }
    100% {
        opacity: 1;
        -webkit-transform: translateX(0);
    }
}

@keyframes fadeInRight {
    0% {
        opacity: 0;
        -webkit-transform: translateX(20px);
        transform: translateX(20px);
    }
    100% {
        opacity: 1;
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}

@-webkit-keyframes fadeInUp {
    0% {
        opacity: 0;
        -webkit-transform: translateY(-20px);
    }
    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
    }
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        -webkit-transform: translateY(-20px);
        transform: translateY(-20px);
    }
    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

@-webkit-keyframes fadeInDown {
    0% {
        opacity: 0;
        -webkit-transform: translateY(50px);
    }
    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
    }
}

@keyframes fadeInDown {
    0% {
        opacity: 0;
        -webkit-transform: translateY(50px);
        transform: translateY(50px);
    }
    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

.fadeInLeft {
    -webkit-animation-name: fadeInLeft;
    animation-name: fadeInLeft;
}

.fadeInRight {
    -webkit-animation-name: fadeInRight;
    animation-name: fadeInRight;
}

.fadeInDown {
    -webkit-animation-name: fadeInDown;
    animation-name: fadeInDown;
}

.opacity1 {
    opacity: 1;
}

.fadeInUp {
    opacity: 0;
    -webkit-transform: translateY(110%);
    -ms-transform: translateY(110%);
    transform: translateY(110%);
    -webkit-transition: all 0.8s ease 0s;
    -o-transition: all 0.8s ease 0s;
    transition: all 0.8s ease 0s;
}

.fadeInFromTop._active {
    opacity: 1;
    -webkit-transform: unset;
    -ms-transform: unset;
    transform: unset;
}

.fadeInFromLeft {
    opacity: 0;
    -webkit-transform: translateX(-110%);
    -ms-transform: translateX(-110%);
    transform: translateX(-110%);
    -webkit-transition: all 0.8s ease 0s;
    -o-transition: all 0.8s ease 0s;
    transition: all 0.8s ease 0s;
}

.fadeInFromLeft._active {
    opacity: 1;
    -webkit-transform: unset;
    -ms-transform: unset;
    transform: unset;
}

.fadeInFromRight {
    opacity: 0;
    -webkit-transform: translateX(110%);
    -ms-transform: translateX(110%);
    transform: translateX(110%);
    -webkit-transition: all 0.8s ease 0s;
    -o-transition: all 0.8s ease 0s;
    transition: all 0.8s ease 0s;
}

.fadeInFromRight._active {
    opacity: 1;
    -webkit-transform: unset;
    -ms-transform: unset;
    transform: unset;
}

.fadeInFromBottom {
    opacity: 0;
    -webkit-transform: translateY(110%);
    -ms-transform: translateY(110%);
    transform: translateY(110%);
    -webkit-transition: all 0.8s ease 0s;
    -o-transition: all 0.8s ease 0s;
    transition: all 0.8s ease 0s;
}

.fadeInFromBottom._active {
    opacity: 1;
    -webkit-transform: unset;
    -ms-transform: unset;
    transform: unset;
}

.fadeIn {
/ / opacity: 0;
    opacity: 1;
    -webkit-transition: all 1.2s ease 0s;
    -o-transition: all 1.2s ease 0s;
    transition: all 1.2s ease 0s;
}

.fadeIn._active {
    opacity: 1;
    -webkit-transform: unset;
    -ms-transform: unset;
    transform: unset;
}

.footer {
    border-top: 1px solid rgba(239, 239, 239, 0.3);
    background-color: #1B1918;
}

.footer__wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    max-width: 1530px;
    padding: 70px;
    margin: 0 auto;
}

@media (max-width: 1024px) {
    .footer__wrap {
        padding: 25px 30px;
        margin: unset;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
}

.footer .col1 {
    width: 120px;
}

@media (max-width: 1024px) {
    .footer .col1 {
        display: none;
    }
}

.footer .menu_item {
    margin-bottom: 20px;
}

.footer .menu_item a {
    font-weight: 300;
    font-size: 18px;
    line-height: 20px;
    color: white;
}

.footer .col2 {
    width: 300px;
}

@media (max-width: 1024px) {
    .footer .col2 {
        margin-bottom: 20px;
    }
}

.footer .title {
    font-weight: 500;
    font-size: 24px;
    line-height: 120%;
}

@media (max-width: 1024px) {
    .footer .title {
        margin-bottom: 5px;
    }
}

.footer .link {
    font-weight: 300;
    font-size: 18px;
    line-height: 150%;
}

.footer .col3 {
    width: 210px;
}

@media (max-width: 1024px) {
    .footer .col3 {
        margin-bottom: 20px;
    }
}

.footer .col4 {
    width: 230px;
}

@media (max-width: 1024px) {
    .footer .col4 {
        margin-bottom: 20px;
        width: 100%;
    }
}

.footer .col5 {
    width: 40px;
}

@media (max-width: 1024px) {
    .footer .col5 {
        width: 100%;
    }
}

.footer .social_icons {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

@media (max-width: 1024px) {
    .footer .social_icons {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
        justify-content: space-between;
    }
}

.footer .social_icons img {
    margin-bottom: 23px;
    width: 30px;
    height: 30px;
}

@media (max-width: 1024px) {
    .footer .social_icons img {
        margin-bottom: 10px;
    }
}

.copyrights {
    width: 100%;
    text-align: center;
    background-color: #1B1918;
}

@media (max-width: 1024px) {
    .copyrights {
        margin-top: 20px;
    }
}

.copyrights .line {
    width: 1px;
    height: 35px;
    margin: 5px auto;
    background-color: rgba(161, 161, 161, 0.3);
}

@media (max-width: 1024px) {
    .copyrights .line {
        height: 25px;
    }
}

.copyrights .agency {
    font-weight: 300;
    font-size: 10px;
    padding-bottom: 20px;
}

.modal {
    display: none;
    position: fixed;
    z-index: 9;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
}

.modal .modal_conteiner {
    background-color: #fefefe;
    background-color: #191919;
    margin: auto;
    padding: 24px;
    border-radius: 8px;
    margin: 10% auto;
    width: 80%;
    max-width: 500px;
}

.modal .close {
    color: #fff;
    float: right;
    font-size: 28px;
    font-weight: bold;
    width: 100%;
    text-align: end;
    padding: 10px;
    padding-bottom: 0;
    position: relative;
    z-index: 10;
}

.modal:hover,
.modal:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

.modal .modal_title {
    text-align: center;
    color: #cbc7bc;
    font-size: 24px;
}

.modal .input_wrapper {
    background-color: #1d1d1d;
    border-radius: 8px;
    margin-bottom: 20px;
}

.modal .manyinput_wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-bottom: 20px;
    width: 100%;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.modal .manyinput_wrapper input,
.modal .manyinput_wrapper select {
    background-color: #1d1d1d;
    border-radius: 8px;
    margin-right: 30px;
}

.modal .manyinput_wrapper input:last-child,
.modal .manyinput_wrapper select:last-child {
    margin-right: 0px;
}

.modal input,
.modal select {
    width: 100%;
    height: 55px;
    padding-left: 40px;
    color: #cbc7bc;
    background-color: transparent;
}

.modal input::-webkit-input-placeholder,
.modal select::-webkit-input-placeholder {
    color: #cbc7bc;
}

.modal input::-moz-placeholder,
.modal select::-moz-placeholder {
    color: #cbc7bc;
}

.modal input:-ms-input-placeholder,
.modal select:-ms-input-placeholder {
    color: #cbc7bc;
}

.modal input::-ms-input-placeholder,
.modal select::-ms-input-placeholder {
    color: #cbc7bc;
}

.modal input::placeholder,
.modal select::placeholder {
    color: #cbc7bc;
}

.modal .phone_wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    background-color: #1d1d1d;
    border-radius: 8px;
    margin-bottom: 30px;
    padding-left: 7px;
}

.modal .phone_code {
    width: 50%;
    min-width: 100px;
    background: transparent;
    padding-left: 7px;
    border: 1px solid grey;
    border-radius: 10px;
    padding-right: 4px;
    margin: 7.5px;
    height: 40px;
}

.modal #login {
    background: url(./../../../img/icons/email.svg) no-repeat scroll 7px 15px;
}

.modal #password {
    background: url(./../../../img/icons/lock.svg) no-repeat scroll 7px 15px;
}

.modal #phone_number {
    background: transparent;
    padding-left: 4px;
    width: 60%;
}

.modal .login_links {
    text-align: center;
    color: #cbc7bc;
}

.modal .login_links div {
    margin-bottom: 10px;
}

.modal .btn_auth {
    width: 70%;
    margin: 30px auto;
    color: white;
    font-size: 18px;
    font-weight: bold;
}

.modal .reset_password_text {
    color: #cbc7bc;
    font-size: 15px;
}

.modal .auth_conteiner {
    background-color: #fefefe;
    background-color: #191919;
    margin: auto;
    padding: 10px 24px;
    width: 80%;
    max-height: calc(100vh - 30px);
    overflow-y: scroll;
    position: fixed;
    top: 15px;
    left: calc(50% - 250px);
}

@media (max-width: 1024px) {
    .modal .auth_conteiner {
        width: 90%;
        padding: 10px 10px;
    }
}

.modal .auth_conteiner input,
.modal .auth_conteiner select {
    height: 45px;
    padding-left: 20px;
}

.modal #step1 input {
    padding-left: 40px;
    background-position-y: 10px;
}

.modal #step2 {
    display: none;
}

.modal .label {
    color: #c9c6c0;
    font-size: 16px;
    font-weight: 600;
    line-height: 30px;
}

.modal .birthday input,
.modal select {
    height: 35px !important;
}

.modal .gender {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    height: 90px;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-bottom: 20px;
}

.modal .sms_text {
    color: #c9c6c0;
    font-size: 13px;
    margin-bottom: 6px;
}

.modal .sms_img {
    padding-right: 25px;
}

.modal .sms_code {
    width: 50%;
    height: 35px !important;
}

.modal .resend_sms {
    color: #CD620F;
    text-transform: uppercase;
    font-size: 13px;
    text-decoration: underline;
}

.modal .tickbox {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    color: #cbc7bc;
}

.modal .tickbox input {
    width: 20px;
    height: 20px;
    margin-right: 15px;
}

.modal .agreements_container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 12px;
    padding-left: 15px;
}

.modal .agreements_container input {
    width: 23px;
    height: 23px;
    margin-right: 15px;
}

.modal .agreements_container p {
    color: #cbc7bc;
    font-size: 12px;
    margin: 0;
}

.modal .bottom_bttns {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: distribute;
    justify-content: space-around;
    padding: 10px;
}

.modal .bottom_bttns div {
    margin: 0;
    color: #CD620F;
    text-transform: uppercase;
    font-size: 14px;
}

.modal .bottom_bttns div:last-child {
    color: white;
    text-transform: unset;
    font-size: unset;
}

.swiper-container {
    width: 100%;
    height: 100%;
}

@media (max-width: 1024px) {
    .swiper-container {
        overflow: unset !important;
    }
}

.swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.swiper-pagination {
    position: static !important;
    width: 100% !important;
}

.swiper-pagination-bullet-active {
    background: #1E692B !important;
}

.slider-arrow-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    max-width: 750px;
    margin-top: 25px;
    margin-right: auto;
    margin-left: auto;
}

.slider-arrow-box .slider-arrow {
    display: none;
    width: 67px;
    height: 24px;
    padding-top: 10px;
    padding-bottom: 10px;
    cursor: pointer;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    border: none;
    background-color: transparent;
    background-repeat: no-repeat;
}

@media (max-width: 1024px) {
    .slider-arrow-box .slider-arrow {
        display: block;
    }
}

.slider-arrow-box .slider-arrow-prev {
    margin-right: 20px;
    background-image: url("http://zelengrad.kiev.ua/wp-content/themes/twentytwentyone/img/slider-arrow-left.png");
}

.slider-arrow-box .slider-arrow-next {
    margin-left: 10px;
    background-image: url("http://zelengrad.kiev.ua/wp-content/themes/twentytwentyone/img/slider-arrow-right.png");
}

.slider-arrow-box .slider-arrow:hover {
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    opacity: 0.7;
}

.hystmodal__opened,
.hystmodal__shadow {
    position: fixed;
    right: 0;
    left: 0;
    overflow: hidden;
}

.hystmodal__shadow {
    border: none;
    display: block;
    width: 100%;
    top: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 99999;
    opacity: 0;
    -webkit-transition: opacity 0.15s ease;
    -o-transition: opacity 0.15s ease;
    transition: opacity 0.15s ease;
    background-color: #000;
}

.hystmodal__shadow--show {
    pointer-events: auto;
    opacity: 0.6;
}

.hystmodal {
    position: fixed;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    overflow: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    opacity: 1;
    pointer-events: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-flow: column nowrap;
    flex-flow: column nowrap;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    z-index: 999999;
    visibility: hidden;
}

.hystmodal--active {
    opacity: 1;
}

.hystmodal--active,
.hystmodal--moved {
    pointer-events: auto;
    visibility: visible;
}

.hystmodal__wrap {
    -ms-flex-negative: 0;
    flex-shrink: 0;
    -webkit-box-flex: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    width: 100%;
    min-height: 100%;
    margin: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-flow: column nowrap;
    flex-flow: column nowrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.hystmodal__window {
    margin: 50px 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    -webkit-box-flex: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    background: #fff;
    border-radius: 6px;
    min-width: 300px;
    width: 100%;
    max-width: 1000px;
    padding: 30px;
    overflow: visible;
    -webkit-transition: opacity 0.2s ease 0s, -webkit-transform 0.2s ease 0s;
    transition: opacity 0.2s ease 0s, -webkit-transform 0.2s ease 0s;
    -o-transition: transform 0.2s ease 0s, opacity 0.2s ease 0s;
    transition: transform 0.2s ease 0s, opacity 0.2s ease 0s;
    transition: transform 0.2s ease 0s, opacity 0.2s ease 0s, -webkit-transform 0.2s ease 0s;
    -webkit-transform: scale(0.9);
    -ms-transform: scale(0.9);
    transform: scale(0.9);
    opacity: 0;
}

@media (max-width: 767px) {
    .hystmodal__window {
        max-width: 340px;
        padding: 0px;
    }
}

.hystmodal--active .hystmodal__window {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    opacity: 1;
}

.hystmodal__close {
    position: absolute;
    z-index: 10;
    top: 0;
    right: -40px;
    display: block;
    width: 30px;
    height: 30px;
    background-color: transparent;
    background-position: 50%;
    background-repeat: no-repeat;
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23fff' stroke='%23fff' stroke-linecap='square' stroke-miterlimit='50' stroke-width='2' d='M22 2L2 22'/%3E%3Cpath fill='none' stroke='%23fff' stroke-linecap='square' stroke-miterlimit='50' stroke-width='2' d='M2 2l20 20'/%3E%3C/svg%3E");
    background-size: 100% 100%;
    border: none;
    font-size: 0;
    cursor: pointer;
    outline: none;
}

.hystmodal__close:focus {
    outline: 2px dotted #afb3b9;
    outline-offset: 2px;
}

@media (max-width: 767px) {
    .hystmodal__close {
        top: 10px;
        right: 10px;
        width: 24px;
        height: 24px;
        background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23fff' stroke='%23111' stroke-linecap='square' stroke-miterlimit='50' stroke-width='2' d='M22 2L2 22'/%3E%3Cpath fill='none' stroke='%23111' stroke-linecap='square' stroke-miterlimit='50' stroke-width='2' d='M2 2l20 20'/%3E%3C/svg%3E");
    }

    .hystmodal__window {
        margin: 0;
    }
}


/* Header/Blog Title */

.blocks-gallery-item {
    height: 400px;
    border-radius: 10px;
    margin: 10px;
    cursor: pointer;
    color: #fff;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    -webkit-transition: all 500ms ease-in-out;
    -o-transition: all 500ms ease-in-out;
    transition: all 500ms ease-in-out;
}

.blocks-gallery-item {
    margin: 0 !important;
}

.blocks-gallery-item.active {
    -webkit-box-flex: 10;
    -ms-flex: 10;
    flex: 10;
}

.main_screen .main_screen_container {
    width: 90%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

@media only screen and (max-width: 1024px) {
    .main_screen .main_screen_container {
        width: 100%;
    }
}

.main_screen .main_screen_container .main_screen_key_desc {
    width: 50%;
    background-color: #1B1918;
    padding: 70px 35px;
}

@media only screen and (max-width: 1024px) {
    .main_screen .main_screen_container .main_screen_key_desc {
        display: none;
    }
}

.main_screen .main_screen_container .main_screen_key_desc .title {
    font-size: 2.55vw;
    font-weight: 700;
    margin-top: 0;
}

.main_screen .main_screen_container .main_screen_key_desc .btn_consult {
    float: left;
    margin-right: 30px;
}

.main_screen .main_screen_container .main_screen_key_desc .btn_bonus {
    background-color: transparent;
    border-color: #CD620F;
    color: white;
    font-weight: bold;
    font-size: 16px;
    line-height: 21px;
    width: 289px;
}

.main_screen .main_screen_container .main_screen_key_desc .btn_bonus:hover {
    border-color: #1E692B;
    -webkit-transition: border-color 0.2s;
    -o-transition: border-color 0.2s;
    transition: border-color 0.2s;
}

.main_screen .main_screen_container .main_screen_portfolio {
    width: 50%;
    margin-left: 50%;
}

@media only screen and (max-width: 1024px) {
    .main_screen .main_screen_container .main_screen_portfolio {
        width: 89%;
        margin: 0 auto;
        margin-top: 60px;
    }
}

.video_container {
    position: relative;
    height: calc(85vh - 102px);
    overflow: hidden;
}

.myVideo {
    width: 100%;
    overflow: hidden;
}

.myVideo_mob {
    width: 100%;
    overflow: hidden;
    min-height: 400px;
    display: none;
    backdrop-filter: blur(5px);
}

@media (max-width: 1024px) {
    .myVideo {
        display: none;
    }
}

@media only screen and (max-width: 1024px) {
    .video_container {
        height: unset;
        overflow: unset;
    }

    .myVideo {
        display: none;
    }

    .myVideo_mob {
        display: block;
    }
}

.content2 {
    position: absolute;
    top: 0;
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(5px);
    color: #f1f1f1;
    width: 100%;
    height: calc(85vh - 99px);
}

.numbers {
    z-index: 2;
    position: relative;
    margin: 0 auto;
    top: -100px;
    width: 100%;
    max-width: 1200px;
    border-radius: 10px;
    bottom: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: space-evenly;
    -ms-flex-pack: space-evenly;
    justify-content: space-evenly;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    font-weight: 700;
    padding: 0;
}

@media only screen and (max-width: 1024px) {
    .numbers {
        height: 100%;
        padding: 30px;
        top: 0;
        padding-top: 72px;
        padding: 0;
        z-index: 0;
        background: unset;
        border-radius: 0;
        position: absolute;
        background: rgba(0, 0, 0, 0.25);
        backdrop-filter: blur(3px);
        -webkit-backdrop-filter: blur(3px);
    }
}

@media only screen and (max-width: 1024px) {
    .numbers_mob {
        padding: 5px 0;
        position: static;
        background: linear-gradient(0deg, rgb(0 0 0 / 0%), rgb(0 0 0 / 0%)), linear-gradient(180deg, #9B00E5 0%, #9B00E5 100%);
    }
}

.numbers .numbers_mobile {
    display: none;
}

@media only screen and (max-width: 1024px) {
    .numbers .numbers_mobile {
        display: block;
        text-align: center;
        width: 100%;
        margin: 0 auto;
        padding: 0 30%;
    }
}

@media only screen and (max-width: 850px) {
    .numbers .numbers_mobile {
        padding: 0;
    }
}

@media only screen and (max-width: 1024px) {
    .numbers .numbers_mobile .title {
        font-size: 30px;
        color: white;
        text-align: center;
    }
}

.numbers .numbers_mobile .btn_bonus {
    background-color: #d300de;
    border-color: white;
    max-width: 300px;
    color: white;
    font-weight: bold;
    font-size: 16px;
    line-height: 21px;
    margin: 0 auto;
    margin-top: 30px;
    border-width: 1px;
    height: 45px;
}

@media only screen and (max-width: 1024px) {
    .numbers .numbers_mobile .btn_bonus {
        max-width: 250px;
    }
}

.numbers .numbers_mobile .btn_bonus:active {
    border-color: #1E692B;
    -webkit-transition: border-color 0.2s;
    -o-transition: border-color 0.2s;
    transition: border-color 0.2s;
}

.numbers .subtitle {
    margin-bottom: 25px;
    color: white;
}

@media (max-width: 1024px) {
    .numbers .subtitle {
        text-align: center;
        margin: 0 auto 15px;
        font-weight: 400;
        font-size: 18px;
        padding: 0 10px;
    }
}

.numbers_item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding: 20px;
    min-width: calc(25% - 35px);
    max-width: 25%;
    background: linear-gradient(0deg, rgb(0 0 0/0%), rgba(0, 0, 0, 0)), linear-gradient(180deg, #9c00e4 0%, #3f065b 100%);
    height: 180px;
    border-radius: 10px;
/ / padding-right: 30 px;
}

@media only screen and (max-width: 1024px) {
    .about .numbers_item {
        padding: 0;
    }

    .about .numbers_item .value {
        font-size: 36px;
        margin-bottom: 0;
        line-height: 55px;
    }
}

@media (max-width: 1024px) {
    .numbers_item {
        width: 50%;
        max-width: unset;
        height: unset;
        padding-bottom: 0px;
        min-width: unset;
        padding: 0 5px;
        min-width: unset;
        background: unset;
    }
}

.numbers_item .value {
    font-family: Montserrat;
    font-style: normal;
    font-weight: 600;
    font-size: 50px;
    line-height: 80px;
    text-align: center;
    font-feature-settings: 'pnum' on, 'lnum' on;
    color: #fff;
    text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}

.about .numbers_item .value {
    margin-bottom: 0;
}

@media (max-width: 1024px) {
    .numbers_item .value {
        font-size: 40px;
        line-height: 1.4;
        margin-bottom: 0px;
    }
}

.numbers_item .descr {
    font-weight: 600;
    font-size: 20px;
    text-align: center;
    text-transform: uppercase;
    color: #f5f5f5;
    opacity: .7;
}

.about .numbers_item .descr {
    color: #fff;
    opacity: 1;
    text-shadow: 0px 4px 4px rgb(0 0 0 / 35%);
}

@media (max-width: 1024px) {
    .numbers_item .descr {
        font-size: 12px;
    }
}

.slider {
    position: relative;
}

.slider__container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    -webkit-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}

.slider__slide {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    color: white;
    font-size: 72px;
    position: relative;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    width: 100%;
    height: 250px;
}

.slider__dots {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: absolute;
    bottom: -25px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
}

.slider__dots__dot {
    height: 2px;
    width: 16px;
    margin: 0 6px;
    border-radius: 0;
    background: #000;
    opacity: 0.3;
    -webkit-transform: scaleX(1);
    -ms-transform: scaleX(1);
    transform: scaleX(1);
    -webkit-transition: background-color 0.4s cubic-bezier(0.19, 1, 0.22, 1), opacity 0.4s cubic-bezier(0.19, 1, 0.22, 1), -webkit-transform 0.6s cubic-bezier(0.19, 1, 0.22, 1);
    transition: background-color 0.4s cubic-bezier(0.19, 1, 0.22, 1), opacity 0.4s cubic-bezier(0.19, 1, 0.22, 1), -webkit-transform 0.6s cubic-bezier(0.19, 1, 0.22, 1);
    -o-transition: transform 0.6s cubic-bezier(0.19, 1, 0.22, 1), background-color 0.4s cubic-bezier(0.19, 1, 0.22, 1), opacity 0.4s cubic-bezier(0.19, 1, 0.22, 1);
    transition: transform 0.6s cubic-bezier(0.19, 1, 0.22, 1), background-color 0.4s cubic-bezier(0.19, 1, 0.22, 1), opacity 0.4s cubic-bezier(0.19, 1, 0.22, 1);
    transition: transform 0.6s cubic-bezier(0.19, 1, 0.22, 1), background-color 0.4s cubic-bezier(0.19, 1, 0.22, 1), opacity 0.4s cubic-bezier(0.19, 1, 0.22, 1), -webkit-transform 0.6s cubic-bezier(0.19, 1, 0.22, 1);
    cursor: pointer;
}

.slider__dots__dot.is-active {
    -webkit-transform: scaleX(2);
    -ms-transform: scaleX(2);
    transform: scaleX(2);
    background: #accbe1;
    opacity: 1;
}

.test {
    height: 500px;
    width: 100%;
    background-color: purple;
}

.control-pc {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.portfolio-desc .title {
    margin-top: 50px;
    margin-bottom: 50px;
}

.mainpc_slider {
    width: calc(100vw - 210px);
}

.mainpc_slider .swiper-slide {
    width: 100% !important;
}

.mainpc_slider .swiper-wrapper {
    width: 100%;
    max-width: calc(100vw - 210px);
}

.prev:hover {
    opacity: 0.7;
}

.next:hover {
    opacity: 0.7;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.portfolio-mob .mainmob_slider .swiper-slide {
    padding-left: 0px;
    padding-right: 0px;
}

.portfolio-mob .slider-arrow-box {
    margin-top: 5px;
}

@media (max-width: 1024px) {
    .title {
        font-size: 20px;
    }
}

/*@media (max-width: 850px) {*/
/*    .contacts {*/
/*        margin-top: 75px;*/
/*    }*/
/*}*/

.contacts_title {
    text-align: center;
    text-transform: uppercase;
    color: #EFEFEF;
    font-size: 48px;
    font-weight: 700;
    line-height: 120%;
}

@media (max-width: 850px) {
    .contacts_title {
        font-size: 20px;
    }
}

.contacts .contacts_items {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    max-width: 1320px;
    margin: 88px auto 0 auto;
}

@media (max-width: 850px) {
    .contacts .contacts_items {
        margin-top: 47px;
        padding-left: 30px;
    }
}

.contacts .contacts_items ul,
.contacts .contacts_items li {
    margin: 0;
    padding: 0;
}

.contacts .contacts_items_col {
    margin: 0 30px 30px 30px;
}

@media (max-width: 850px) {
    .contacts .contacts_items_col {
        -webkit-box-flex: 1;
        -ms-flex-positive: 1;
        flex-grow: 1;
        margin: 0 0 30px 0;
        padding-right: 30px;
    }
}

.contacts .contacts_items_title {
    margin-bottom: 20px;
    color: #EFEFEF;
    font-size: 26px;
    font-weight: 700;
    line-height: 119%;
}

@media (max-width: 850px) {
    .contacts .contacts_items_title {
        margin-bottom: 10px;
        font-size: 20px;
        font-weight: 500;
    }
}

.contacts .contacts_items_text,
.contacts .contacts_items a {
    color: white;
    font-size: 20px;
    font-weight: 300;
    line-height: 30px;
}

@media (max-width: 850px) {
    .contacts .contacts_items_text,
    .contacts .contacts_items a {
        color: #EFEFEF;
        font-size: 12px;
        line-height: 180%;
    }
}

.contacts .contacts_items a {
    margin: 0;
}

.contacts .contacts_items a:hover {
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    opacity: 0.7;
}

.contacts .contacts_map {
    margin-top: 44px;
}

.contacts .contacts_map_title {
    margin-bottom: 45px;
    text-align: center;
    color: rgba(239, 239, 239, 0.5);
    font-size: 36px;
    font-weight: 300;
    line-height: 124%;
}

@media (max-width: 850px) {
    .contacts .contacts_map_title {
        display: none;
    }
}

.contacts .contacts_map iframe {
    height: 1011px;
}

@media (max-width: 850px) {
    .contacts .contacts_map iframe {
        height: 363px;
    }
}

.price {
    padding-top: 75px;
    overflow: hidden;
    position: relative;
    min-height: 750px;
}

@media (max-width: 1024px) {
    .price {
        padding-bottom: 40px;
        padding-top: 0;
        min-height: unset;
    }
}

.price:before {
    display: none;
    content: "";
    position: absolute;
    left: -194px;
    background: url("http://pro.medical-massage.kiev.ua/wp-content/uploads/2021/10/kisspng-day-spa-beauty-parlour-waxing-hair-care-spa-5abd6c271561e9.2043308915223634310876.png");
    background-repeat: no-repeat;
    mix-blend-mode: overlay;
    width: 100%;
    max-width: 814px;
    height: 827px;
    top: 41%;
}

@media (max-width: 1024px) {
    .price:before {
        display: none;
    }
}

.price:after {
    content: "";
    position: absolute;
    right: 0;
    background: url("http://pro.medical-massage.kiev.ua/wp-content/uploads/2021/10/kisspng-stone-massage-stellar-fitness-spa-pedicure-skull-5b0852115d5542.9237466715272719533823.png");
    background-repeat: no-repeat;
    background-size: cover;
    mix-blend-mode: overlay;
    width: 314px;
    height: 215px;
    bottom: -14px;
}

@media (max-width: 1024px) {
    .price:after {
        display: none;
    }
}

.price .title {
    text-align: center;
    font-weight: 700;
    font-style: normal;
    font-weight: bold;
    font-size: 36px;
    line-height: 49px;
    color: #380A4E;
}

@media (max-width: 1024px) {
    .price .title {
        font-size: 30px;
        line-height: unset;
        padding-top: 40px;
    }
}

.price .subtitle {
    font-style: normal;
    font-weight: 300;
    font-size: 16px;
    line-height: 20px;
    text-align: center;
    text-transform: uppercase;
    color: #EFEFEF;
}

@media (max-width: 1024px) {
    .price .subtitle {
        font-size: 14px;
    }
}

.price__wrap {
    max-width: 1363px;
    padding: 0 15px;
    position: relative;
    margin: 0 auto;
    margin-top: 35px;
    z-index: 1;
}

.price__content {
    background: #FAF9FF;
    border: 1px solid #9B00E5;
    border-bottom: unset;
    border-radius: 10px;
    margin-top: 37px;
    max-width: 1288px;
}

@media (max-width: 1024px) {
    .price__content {
        margin-top: 20px;
    }
}

.price__item {
    color: #1B1918;
    font-weight: normal;
    font-size: 22px;
    width: 100%;
    padding: 15px 5% 15px 5%;
    border-bottom: 1px solid #9B00E5;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.price__content:last-child {
    margin-bottom: 10px;
}

@media (max-width: 1024px) {
    .price__item {
        padding: 10px 0px 10px 10px;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
}

.price__item_text {
    width: 60%;
    padding-right: 20px;
}

@media (max-width: 1024px) {
    .price__item_text {
        width: 100%;
        font-size: 16px;
    }
}

.price__amount {
    width: 15%;
    text-align: center;
}

@media (max-width: 1024px) {
    .price__amount {
        font-size: 12px;
        width: 100%;
        text-align: left;
        margin-top: 10px;
        font-weight: bold;
    }
}

.price__sum {
    width: 25%;
    color: #1B1918;
    font-style: normal;
    font-weight: bold;
    font-size: 28px;
}

@media (max-width: 1024px) {
    .price__sum {
        width: 100%;
        font-size: 15px;
        margin-top: 10px;
    }
}

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

@media (max-width: 1024px) {
    .tab {
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -ms-flex-pack: distribute;
        justify-content: space-around;
    }
}

.tab .selected_service {
    border: 1px solid #9B00E5;
    background: #9B00E5;
    border-radius: 3px;
    color: #fff;
}

.tab__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    max-width: 310px;
    padding: 5px 15px;
    font-style: normal;
    text-align: center;
    font-size: 20px;
    color: #000;
    line-height: 23px;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    border: 1px solid #9B00E5;
    border-radius: 3px;
    margin-right: 16px;
    cursor: pointer;
    margin-top: 15px;
    background-color: #8c00e40d;
}

@media (max-width: 1024px) {
    .tab__item {
        font-size: 14px;
        line-height: 14px;
        margin-top: 3px;
        margin-bottom: 3px;
        width: calc(50% - 6px);
        margin-right: 0;
        min-height: 40px;
        text-transform: uppercase;
        font-weight: 700;
        font-size: 12px;
    }
}

.tab__item:hover {
    border: 1px solid #1E692B;
}

.tab__item:last-child {
    margin-left: 0;
}

.tab__wrap {
    background: #D1D0B2;
}

.price_btn {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

.button {
    font-weight: bold;
    font-size: 16px;
    text-transform: uppercase;
    color: #fff;
    line-height: 21px;
    background: #CD620F;
    border-radius: 4px;
    padding: 20px 35px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin: 0 auto;
    margin-top: 51px;
    max-width: 289px;
    cursor: pointer;
}

.project {
    padding-top: 76px;
}

@media only screen and (max-width: 1024px) {
    .project .blog-slider__container {
        margin-bottom: 45px;
    }
}

.project .title {
    text-align: center;
    font-weight: 700;
}

@media only screen and (max-width: 1024px) {
    .project .title {
        font-size: 20px;
    }
}

.project .button {
    max-width: 285px;
    margin-top: 34px;
    padding: 0;
}

@media only screen and (max-width: 1024px) {
    .project .button {
        margin-bottom: 45px;
        max-width: 311px;
    }
}

.project .subtitle {
    max-width: 350px;
    margin: 0 auto;
    font-family: "IBM Plex Sans";
    font-style: normal;
    font-weight: 300;
    font-size: 16px;
    line-height: 20px;
    text-align: center;
    color: #EFEFEF;
}

@media only screen and (max-width: 1024px) {
    .project .subtitle {
        font-size: 16px;
        max-width: 315px;
    }
}

.project__wrap {
    background: #D1D0B2;
    margin-top: 101px;
    padding-bottom: 102px;
}

.project__inner {
    max-width: 1333px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin: 0 auto;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    padding-top: 94px;
    padding-right: 45px;
}

@media only screen and (max-width: 1024px) {
    .project__inner {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        padding-right: 0;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }
}

.project__item {
    max-width: 586px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding: 0 30px;
}

@media only screen and (max-width: 1024px) {
    .project__item {
        padding: 0 0px;
    }
}

.project__item_reverse {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
}

@media only screen and (max-width: 1024px) {
    .project__item_reverse {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        margin: 0 auto;
    }
}

.project__item_reverse .project__img {
    margin-top: 43px;
}

@media only screen and (max-width: 1024px) {
    .project__item_reverse .project__img {
        margin-top: 23px;
    }
}

.project__item_reverse .project__content {
    margin-top: 9px;
}

.project__img {
    position: relative;
    cursor: pointer;
}

@media only screen and (max-width: 1024px) {
    .project__img {
        margin-top: 23px;
    }
}

.project__img img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.project__img::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    background: rgba(27, 25, 24, 0.5);
    width: 100%;
    height: 100%;
    opacity: 0;
    -webkit-transition: opacity 0.3s ease;
    -o-transition: opacity 0.3s ease;
    transition: opacity 0.3s ease;
}

.project__img:hover::before {
    opacity: 1;
}

.project__img:hover .project__sublink {
    opacity: 1;
}

.project__content {
    margin-top: 19px;
}

@media only screen and (max-width: 1024px) {
    .project__content {
        margin: 20px 0;
    }
}

.project__content p {
    max-width: 412px;
    font-weight: 300;
    font-size: 16px;
    font-family: "IBM Plex Sans";
    line-height: 20px;
    color: #1B1918;
    margin-top: 13px;
}

@media only screen and (max-width: 1024px) {
    .project__content p {
        font-size: 12px;
        margin-bottom: 0;
    }
}

.project__content h3 {
    font-weight: bold;
    font-size: 36px;
    font-family: "IBM Plex Sans";
    color: #1B1918;
}

@media only screen and (max-width: 1024px) {
    .project__content h3 {
        font-size: 22px;
    }
}

.project__link {
    font-family: "IBM Plex Sans";
    color: #D17100;
    font-style: italic;
    font-weight: 600;
    font-size: 16px;
    line-height: 20px;
    position: relative;
    padding-right: 54px;
    margin-bottom: 0px;
    display: none;
}

@media only screen and (max-width: 1024px) {
    .project__link {
        margin-bottom: 0px;
        display: none;
    }
}

.project__link::after {
    content: "";
    position: absolute;
    right: 0;
    background-image: url("http://zelengrad.kiev.ua/wp-content/themes/twentytwentyone/img/icons/arrowsmall.svg");
    width: 45px;
    height: 15px;
    background-repeat: no-repeat;
    top: 7px;
}

.project__sublink {
    opacity: 0;
    cursor: pointer;
    -webkit-writing-mode: vertical-rl;
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
    color: #F5F5F5;
    font-weight: bold;
    font-size: 30px;
    position: absolute;
    left: 0;
    right: 0;
    margin: 0 auto;
    max-width: 31px;
    -webkit-transform: rotate(-180deg);
    -ms-transform: rotate(-180deg);
    transform: rotate(-180deg);
    padding-top: 100px;
    margin-top: -100px;
    bottom: 0;
    -webkit-transition: opacity 0.3s ease;
    -o-transition: opacity 0.3s ease;
    transition: opacity 0.3s ease;
}

.project__sublink::before {
    content: "";
    position: absolute;
    width: 1px;
    height: 84px;
    top: 4px;
    background: #fff;
    left: 0;
    right: 0;
    margin: 0 auto;
}

@media (max-width: 1024px) {
    .page.page-servise {
        margin-top: 0;
    }
}

.servises {
    padding-top: 76px;
    overflow: hidden;
}

@media (max-width: 1024px) {
    .servises {
        padding-top: 0;
    }
}

.servises .title {
    text-align: center;
    text-transform: uppercase;
    font-weight: 700;
}

@media (max-width: 1024px) {
    .servises .title {
        display: none;
    }
}

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

@media (max-width: 1024px) {
    .servises .subtitle {
        display: none;
    }
}

.servises__title {
    color: #EFEFEF;
    font-weight: bold;
    font-size: 36px;
    font-family: "IBM Plex Sans";
    padding-left: 36px;
    margin-top: 94px;
}

@media (max-width: 1024px) {
    .servises__title {
        display: none;
    }
}

.servises__wrap {
    margin-top: 43px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

@media (max-width: 1024px) {
    .servises__wrap {
        -webkit-box-orient: vertical;
        -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
        flex-direction: column-reverse;
        margin-top: 0;
    }
}

.servises__list {
    width: 45%;
}

@media (max-width: 1024px) {
    .servises__list {
        width: 100%;
    }
}

.servises__item {
    border-top: 1px solid rgba(245, 245, 245, 0.25);
    padding-left: 30px;
    padding-top: 30px;
    padding-bottom: 30px;
    padding-right: 20px;
    cursor: pointer;
}

.servises__item-title {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: baseline;
    -ms-flex-align: baseline;
    align-items: baseline;
}

.servises__text {
    color: #EFEFEF;
    font-weight: 300;
    font-size: 24px;
    position: relative;
    display: inline-block;
    padding-right: 73px;
    max-width: 469px;
}

@media (max-width: 1024px) {
    .servises__text {
        font-size: 20px;
    }
}

.servises__text::before {
    content: "";
    position: absolute;
    width: 15px;
    height: 15px;
    background: url("http://zelengrad.kiev.ua/wp-content/themes/twentytwentyone/img/icons/serv_arrow.png");
    right: 0;
    background-repeat: no-repeat;
    top: 5px;
}

.servises__number {
    font-family: "IBM Plex Sans";
    font-style: normal;
    font-weight: 200;
    font-size: 36px;
    color: #EFEFEF;
    padding-right: 32px;
}

@media (max-width: 1024px) {
    .servises__number {
        font-size: 22px;
    }
}

.servises__inner {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    padding-left: 86px;
}

@media only screen and (max-width: 1444px) {
    .servises__inner {
        padding-left: 0;
    }
}

@media (max-width: 1024px) {
    .servises__inner {
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start;
        padding-left: 0px;
    }
}

.servises__content {
    font-size: 16px;
    display: none;
    max-width: 636px;
    position: relative;
    color: #EFEFEF;
    font-weight: 300;
    margin-top: 20px;
}

@media (max-width: 1024px) {
    .servises__content {
        max-width: 100%;
    }
}

@media (max-width: 1024px) {
    .servises__content {
        font-size: 12px;
    }
}

.servises__content ul {
    padding-left: 26px;
    margin-bottom: 15px;
}

.servises__content ul li {
    list-style: disc;
}

.servises__content p {
    font-size: 16px;
}

@media (max-width: 1024px) {
    .servises__content p {
        font-size: 12px;
    }
}

.servises__content h4 {
    margin-bottom: 15px;
}

.servises__image {
    width: 55%;
    background: url("http://zelengrad.kiev.ua/wp-content/themes/twentytwentyone/img/servises.png");
    padding: 0 15px;
    padding-top: 260px;
    max-height: 800px;
    background-repeat: no-repeat;
    background-size: cover;
}

@media (max-width: 1024px) {
    .servises__image {
        width: 100%;
        padding: 110px 0 100px;
        background-position-x: center;
    }
}

.servises .subtitle-block {
    font-style: normal;
    font-weight: normal;
    font-size: 24px;
    color: #EFEFEF;
    text-align: left;
}

.servises .subtitle-block span {
    font-size: 36px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
}

@media (max-width: 1024px) {
    .servises .subtitle-block span {
        font-size: 24px;
    }
}

.servises .subtitle-block .title_number {
    font-size: 70px;
}

@media (max-width: 1024px) {
    .servises .subtitle-block .title_number {
        font-size: 48px;
    }
}

.servises .subtitle-block p {
    font-size: 24px;
    margin-top: 8px;
}

@media (max-width: 1024px) {
    .servises .subtitle-block p {
        font-size: 18px;
    }
}

.servises__link {
    color: #D17100;
    font-weight: bold;
    font-size: 16px;
    line-height: 21px;
    border: 2px solid #CD620F;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    border-radius: 4px;
    padding: 20px 35px;
    display: inline-block;
    margin-top: 25px;
    text-transform: uppercase;
}

.servises__link:hover {
    color: #1E692B;
    border: 2px solid #1E692B;
    -webkit-transition: all 0.2s;
    -o-transition: all 0.2s;
    transition: all 0.2s;
}

@media (max-width: 1024px) {
    .servises__link {
        margin-top: 0px;
        padding: 10px 25px;
    }
}

.servises__absolut {
    position: absolute;
    width: 1315px;
    right: 0;
    top: 111%;
    z-index: -1;
    opacity: 0;
    -webkit-transition: opacity 0.5s;
    -o-transition: opacity 0.5s;
    transition: opacity 0.5s;
    mix-blend-mode: screen;
}

@media (max-width: 1024px) {
    .servises__absolut {
        display: none !important;
    }
}

.active {
    display: block;
    opacity: 1;
}

.active .servises__content {
    display: block;
}

@media (max-width: 1024px) {
    .active .servises__number {
        font-size: 36px;
    }
}

.hystmodal__shadow--show {
    opacity: 0.8 !important;
}

@media all and (max-width: 850px) {
    .hystmodal__close {
        top: 10px;
        right: 10px;
        width: 24px;
        height: 24px;
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23fff' stroke='%23111' stroke-linecap='square' stroke-miterlimit='50' stroke-width='2' d='M22 2L2 22'/%3E%3Cpath fill='none' stroke='%23111' stroke-linecap='square' stroke-miterlimit='50' stroke-width='2' d='M2 2l20 20'/%3E%3C/svg%3E");
    }

    .hystmodal__window {
        margin: 0;
    }
}

.blog {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding: 100px 30px 65px 30px;
    text-align: center;
    background: #d1d0b2;
}

@media (max-width: 850px) {
    .blog {
        padding: 30px;
        padding-top: 100px;
    }
}

.blog_single {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding: 100px 30px 65px 30px;
    background: #fff;
}

@media (max-width: 850px) {
    .blog_single {
        padding: 15px;
        padding-top: 50px
    }
}

.blog_single p,
.blog_single h1 {
    color: #1b1918;
}

.blog_title {
    margin: 0;
    text-transform: uppercase;
    color: #1b1918;
    font-size: 48px;
    font-weight: 700;
    line-height: 124%;
}

@media (max-width: 850px) {
    .blog_title {
        font-size: 22px;
    }
}

.blog_title_sub {
    margin-top: 9px;
    text-align: center;
    text-transform: uppercase;
    color: #1b1918;
    font-size: 16px;
    font-weight: 300;
    line-height: 20px;
}

.blog_btn_consultation.btn {
    margin-top: 24px;
    padding: 0px 32px 0 32px;
    text-transform: uppercase;
    color: #fff;
    font-size: 16px;
    font-weight: 700;
}

.blog_items {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: auto;
    max-width: 1288px;
    margin-top: 35px;
}

.blog_items_row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin: 0 -16px 0 -16px;
}

.blog_items_col {
    -webkit-box-flex: 0;
    -ms-flex: 0 1 408px;
    flex: 0 1 408px;
    margin: 11px 16px;
}

.blog_i {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    max-width: 100%;
    min-height: 100%;
    justify-content: space-between;
    padding-bottom: 20px;
    text-align: left;
    border-radius: 10px;
    -webkit-box-shadow: 2px 2px 41px 0 rgba(0, 0, 0, 0.25);
    box-shadow: 2px 2px 41px 0 rgba(0, 0, 0, 0.25);
}

.blog_i_row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 0px 30px 0 30px;
}

.blog_i_img {
    margin: 0;
}

.blog_i_img img {
    width: 100%;
    border-radius: 10px;
}

.blog_i_title {
    color: #242424;
    font-size: 26px;
    font-weight: 700;
    line-height: 119%;
}

.blog_i_title_sub {
    margin-top: 10px;
    color: #242424;
    font-size: 14px;
    line-height: 119%;
}

.blog_i_tag {
    padding-left: 30px;
    margin-top: 7px;
    margin-bottom: 0;
    color: #242424 !important;
    font-size: 14px;
    line-height: 119%;
    font-weight: 300;
}

.blog_i_tag a {
    margin-top: 7px;
    margin-bottom: 0;
    color: #242424 !important;
    font-size: 14px;
    font-weight: 300;
}

.blog_i_date {
    display: block;
    margin-top: 22px;
    margin-bottom: 0;
    padding: 0;
    padding-right: 30px;
    color: rgba(36, 36, 36, 0.5);
    font-size: 14px;
    line-height: 119%;
}

.blog_i_date h2 {
    font-size: 14px;
}

.blog_i_link {
    margin-top: auto;
    margin-bottom: 0;
    padding: 10px 32px 0 32px;
    color: #d17100;
    font-size: 16px;
    font-weight: 600;
    font-style: italic;
    line-height: 20px;
}

.blog_i_link:after {
    display: inline-block;
    margin-left: 5px;
    content: url("http://zelengrad.kiev.ua/wp-content/themes/twentytwentyone/img/blog_i_link.png");
}

.blog_i_link:hover {
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    color: #1e692b;
}

.blog_i_link:hover:after {
    content: url("http://zelengrad.kiev.ua/wp-content/themes/twentytwentyone/img/blog_i_link_hover.png");
}

.blog_i_link:active {
    color: #14431c;
}

.blog_i_link:active:after {
    content: url("http://zelengrad.kiev.ua/wp-content/themes/twentytwentyone/img/blog_i_link_active.png");
}

.about {
    overflow: hidden;
}

.about .about_box {
}

@media (max-width: 1024px) {
    .about .about_box {
        padding-right: 0;
    }
}

.about .about_fact {
    min-height: 700px;
    padding: 123px 60px 0 60px;
    background: no-repeat center url("/wp-content/themes/twentytwentyone/img/aboutspa.jpeg");
    background-size: cover;
}

@media (max-width: 1024px) {
    .about .about_fact {
        min-height: auto;
        padding: 0px 10px 0px 10px;
    }
}

.about .about_fact_title {
    text-align: center;
    text-transform: uppercase;
    color: #9b00e5;
    font-size: 48px;
    font-weight: 700;
    line-height: 124%;
}

@media (max-width: 1024px) {
    .about .about_fact_title {
        display: none;
    }
}

.about .about_fact_items {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: distribute;
    justify-content: space-around;
    padding: 120px 0 0 0;
}

@media (max-width: 850px) {
    .about .about_fact_items {
        padding: 60px 0;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }
}

.about .about_fact_i {
    max-width: 350px;
    padding: 20px 10px;
    text-align: center;
}

@media (max-width: 1024px) {
    .about .about_fact_i {
        width: 50%;
    }
}

.about .about_fact_i_title {
    margin-top: 31px;
    text-transform: uppercase;
    color: #f5f5f5;
    font-size: 24px;
    line-height: 119%;
}

@media (max-width: 1024px) {
    .about .about_fact_i_title {
        margin-top: 3px;
        font-size: 12px;
    }
}

.about .about_fact_i_value {
    color: #f2fff4;
    font-size: 7vw;
    line-height: 119%;
}

@media (max-width: 1024px) {
    .about .about_fact_i_value {
        color: #fff;
        font-size: 48px;
    }
}

.about .about_article p {
    margin-bottom: 28px;
    color: #000;
    font-size: 20px;
    font-weight: 300;
    line-height: 30px;
}

@media (max-width: 1024px) {
    .about .about_article p {
        font-size: 16px;
        line-height: 130%;
    }
}

.about .about_article_1 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-top: 100px;
    align-items: center;
}

@media (max-width: 1024px) {
    .about .about_article_1 {
        margin-top: 30px;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
}

.about .about_article_1 .about_article_body {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 700px;
    padding-right: 30px;
    padding-left: 10.9%;
    width: 50%;
}

@media (max-width: 1024px) {
    .about .about_article_1 .about_article_body {
        width: auto;
        padding: 0 5%;
    }
}

.about .about_article_1 .about_article_img {
    -webkit-box-flex: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    width: 50%;
}

@media (max-width: 1024px) {
    .about .about_article_1 .about_article_img {
        width: 100%;
    }
}

.about .about_article_1 .about_article_img img {
    width: 100%;
}

.about .about_article_2 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-top: 100px;
    align-items: center;
}

@media (max-width: 1024px) {
    .about .about_article_2 {
        margin-top: 30px;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
}

.about .about_article_2 .about_article_body {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding-right: 0;
    padding-left: 30px;
    width: 50%;
    padding-right: 10.9%;
}

@media (max-width: 1024px) {
    .about .about_article_2 .about_article_body {
        width: auto;
        padding: 0 5%;
        padding-bottom: 20px;
    }
}

.about .about_article_2 .about_article_img {
    -webkit-box-flex: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    width: 50%;
    display: flex;
    max-height: 650px;
    overflow: hidden;
}

@media (max-width: 1500px) {
    .about .about_article_2 .about_article_img {
        width: 50%;
    }
}

@media (max-width: 1024px) {
    .about .about_article_2 .about_article_img {
        -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
        order: 2;
        width: 100%;
    }
}

.about .about_article_2 .about_article_img img {
    width: 100%;
}

.about .about_article_title {
    text-transform: uppercase;
    color: #1B1918;
    font-size: 48px;
    font-weight: 700;
    line-height: 124%;
    margin-bottom: 19px;
}

@media (max-width: 850px) {
    .about .about_article_title {
        font-size: 30px;
    }
}

.about .about_article .about_why_we {
    margin-top: 20px;
    text-align: left;
    color: var(--color-dark-violet);
    font-size: 36px;
    font-weight: 700;
}

.about_review {
    margin-top: 100px;
    margin-bottom: 100px;
    background-color: white;
}

.about_review_title {
    text-transform: uppercase;
    color: #1B1918;
    font-size: 48px;
    font-weight: 700;
    line-height: 124%;
    text-align: center;
    margin-bottom: 10px;
}

@media (max-width: 850px) {
    .about_review_title {
        font-size: 20px;
    }
}

.about_review_items {
    margin-top: 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

@media (max-width: 1024px) {
    .about_review_items {
        display: none;
    }
}

.about_review_i_inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    -webkit-box-shadow: 4px 4px 11px 0 rgba(0, 0, 0, 0.3);
    box-shadow: 4px 4px 11px 0 rgba(0, 0, 0, 0.3);
}

.about_review_i_name {
    color: #242424;
    font-size: 26px;
    font-weight: 700;
    line-height: 119%;
    text-align: center;
}

@media (max-width: 1024px) {
    .about_review_i_name {
        font-weight: bold;
        font-size: 20px;
        line-height: 125%;
        text-transform: uppercase;
    }
}

.about_review_i_profession {
    margin-top: 4px;
    color: rgba(36, 36, 36, 0.5);
    font-size: 12px;
    line-height: 119%;
}

.about_review_i_read_more {
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    white-space: nowrap;
    color: #CD620F;
    font-size: 18px;
    font-weight: 600;
    font-style: italic;
    line-height: 119%;
}

@media (max-width: 1024px) {
    .about_review_i_read_more {
        font-weight: normal;
        font-size: 12px;
        line-height: 150%;
    }
}

.about_review_i_read_more:hover {
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    color: #1e692b;
}

.about_review_i_read_more:active {
    color: #14431c;
}

.about_review_i_date {
    display: block;
    padding: 0 0 0 0;
    text-align: right;
    color: rgba(36, 36, 36, 0.5);
    font-size: 14px;
    line-height: 119%;
}

@media (max-width: 1024px) {
    .about_review_i_date {
        display: none;
    }
}

.about_review {
    overflow: hidden;
}

@media (max-width: 1024px) {
    .about_review {
        margin: 0;
        padding: 50px 30px;
        width: 100%;
    }
}

.about_review .about_review_i {
    max-width: 750px;
    margin: 15px auto;
}

@media (max-width: 1024px) {
    .about_review .about_review_i {
        margin: 0;
        margin-top: 15px;
        width: 100%;
    }
}

.about_review .about_review_i_body {
    padding: 20px;
    min-height: 275px;
}

@media (max-width: 1024px) {
    .about_review .about_review_i_body {
        padding: 10px;
        min-height: 250px;
    }
}

.stars_container {
    color: var(--color-violet);
    text-align: center;
    margin-top: 12px;
    font-size: 22px;
}

.about_review .about_review_i_text {
    font-size: 26px;
    margin-top: 10px;
    margin-bottom: 0;
    font-weight: 300;
    font-family: Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

@media (max-width: 1024px) {
    .about_review .about_review_i_text {
        margin-top: 10px;
    }
}

.about_review .about_review_i_text p {
    color: #242424;
    font-size: 22px;
    text-align: center;
    line-height: 129%;
}

@media (max-width: 1024px) {
    .about_review .about_review_i_text p {
        margin-top: 10px;
        font-size: 16px;
        line-height: 150%;
        margin-bottom: 0px;
    }
}

.about_review .about_review_i_img {
    width: 41%;
    max-width: 150px;
    height: 100%;
    float: left;
    padding-right: 10px;
}

@media (max-width: 1024px) {
    .about_review .about_review_i_img {
        width: 40%;
        margin-left: 3px;
    }
}

.about_review .about_review_i_img img {
    width: 100%;
}

@media (max-width: 1024px) {
    .about_review .about_review_i_img img {
        width: 100%;
    }
}

.tree_icon_wrapper {
    display: flex;
    justify-content: center;
}

.tree_icon_wrapper img {
    width: 200px;
}

.tutor_icon_wrapper {
    display: flex;
    justify-content: center;
}

.tutor_icon_wrapper img {
    border-radius: 22px;
    width: 100px;
    margin-bottom: 20px;
    box-shadow: 0 0 0 0 #d002de;
    transform: scale(1);
    animation: 2s ease-in 0s infinite alternate pulse;
}

.slogan {
    color: grey;
    text-align: center;
    font-family: Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

.swiper-pagination {
    text-align: center;
    margin-top: 15px;
    width: 100%;
    text-align: center;
}

.swiper-pagination-bullet {
    margin: 0 5px !important;
    width: 12px !important;
    height: 12px !important;
    transition: all .3s ease;
}

.swiper-pagination-bullet-active {
    background-color: var(--color-violet) !important;
}

.tutor_list li {
    list-style: disc;
    font-size: 20px;
    line-height: 30px;
    color: #000;
    font-weight: 500;
    margin-left: 2rem;
}

@media (max-width: 1024px) {
    .tutor_list li {
        font-size: 16px;
    }
}

.tutor_list li::marker {
    color: #d002de;
    /* Change the color */
    font-weight: bold;
    /* If you want it to be bold */
    font-weight: bold;
    font-size: 30px;
}

@media (max-width: 1024px) {
    .tutor_list li::marker {
        font-size: 20px;
    }
}

.tutor_title {
    max-width: 1000px;
    margin: 0 auto;
}

@media (max-width: 1024px) {
    .tutor_title {
        max-width: 100%;
        padding: 0 15px;
        font-size: 20px;
    }
}

.tutor_subtitle {
    max-width: 1000px;
    color: #000000c2;
    margin: 0 auto;
    margin-top: 20px;
    line-height: 1.4;
    text-align: center;
    font-size: 16px;
}

@media (max-width: 1024px) {
    .tutor_subtitle {
        max-width: 100%;
        padding: 0 15px;
        text-align: left;
    }
}

.tutor_seo_texts {
    max-width: 1200px;
    margin: 75px auto;
}

@media (max-width: 1024px) {
    .tutor_seo_texts {
        max-width: 100%;
        padding: 0 15px;
    }
}

.tutor_seo_texts p {
    color: #191919;
}

.about .about_charity {
    margin-top: 70px;
}

@media (max-width: 1024px) {
    .about .about_charity {
        margin-top: 10px;
    }
}

.about .about_charity_row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    padding-left: 10.9%;
    margin-bottom: 120px;
}

@media (max-width: 1024px) {
    .about .about_charity_row {
        margin-bottom: 40px;
        padding-left: 0;
        display: block;
    }
}

.about .about_charity_col_1 {
    -ms-flex-item-align: center;
    -ms-grid-row-align: center;
    align-self: center;
    -ms-flex-negative: 1;
    flex-shrink: 1;
    width: 50%;
    padding: 30px;
}

@media (max-width: 1024px) {
    .about .about_charity_col_1 {
        padding: 5px 30px;
        width: unset;
    }
}

.about .about_charity_title {
    text-transform: uppercase;
    color: #1B1918;
    font-size: 48px;
    font-weight: 700;
    line-height: 124%;
}

@media (max-width: 850px) {
    .about .about_charity_title {
        font-size: 20px;
    }
}

.about .about_charity_text {
    margin-top: 10px;
}

.about .about_charity_text p {
    color: #000;
    font-size: 20px;
    font-weight: 300;
    line-height: 30px;
}

@media (max-width: 1024px) {
    .about .about_charity_text p {
        font-size: 12px;
        line-height: 150%;
    }
}

@media (max-width: 1024px) {
    .about .about_charity_col_2 {
        width: 100% !important;
    }
}

.about .about_charity_col_2 {
    max-height: 500px;
    width: 50%;
    overflow: hidden;
}

.about .about_charity_nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin: 0;
    padding: 0;
}

.about .about_charity_nav li {
    display: block;
    margin: 0;
    padding: 20px 25px;
    cursor: pointer;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.about .about_charity_nav li:before {
    display: block;
    width: 26px;
    height: 26px;
    content: "";
    border-radius: 100%;
    background: #b0b095;
}

.about .about_charity_nav li:hover {
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    opacity: 0.7;
}

.about .about_charity_nav li.swiper-pagination-bullet-active:before {
    background: #1e692b;
}

html {
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    -webkit-text-size-adjust: 100%;
}

body {
    font-size: 16px;
    line-height: 1;
    margin: 0;
    overflow-x: hidden;
    color: #000;
    font-family: "IBM Plex Sans";
}

h1 {
    font-size: 22px;
    color: #8d7eff;
    line-height: 120%;
    margin: 25px 0;
}

p,
a {
    font-size: 16px;
    color: #EFEFEF;
    line-height: 120%;
    margin-bottom: 16px;
    text-decoration: unset;
}

hr {
    width: 100%;
    height: 3px;
    border-width: 0;
    background-color: #b615ff;
    margin: 15px 0;
}

.btn {
    background-color: #CD620F;
    color: white;
    border: 4px solid #CD620F;
    border-radius: 5px;
    height: 60px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    cursor: pointer;
    font-weight: bold;
    font-size: 16px;
    line-height: 21px;
    text-transform: uppercase;
}

@media (min-width: 1024px) {
    .btn:hover {
        background-color: #1E692B;
        border: 4px solid #1E692B;
        -webkit-transition: all 0.3s;
        -o-transition: all 0.3s;
        transition: all 0.3s;
    }
}

.btn:active {
    background-color: #14431C;
    border: 4px solid #14431C;
}

.btn_consult {
    color: white;
    font-weight: bold;
    font-size: 16px;
    line-height: 21px;
    width: 289px;
}

@media only screen and (max-width: 1024px) {
    .btn_consult {
        margin: 0 auto;
        width: 100%;
    }
}

.btn_more {
    color: #8d7eff;
    text-align: center;
    cursor: pointer;
}

.form_error {
    border-bottom: 2px solid red !important;
}

.content {
    width: calc(100vw - 210px);
}

@media (max-width: 1024px) {
    .content {
        overflow: hidden;
        width: unset;
        margin-top: 55px;
    }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

@media (max-width: 1439px) {
    .container {
        margin: 0 5%;
    }
}

.title {
    color: #EFEFEF;
    font-size: 48px;
    line-height: 123.5%;
}

.article {
    color: #fff;
    font-size: 16px;
}

.article-title {
    color: #fff;
    font-size: 20px;
}

.article-subtitle {
    color: #fff;
    font-size: 18px;
    font-weight: 600;
}

* {
    padding: 0;
    margin: 0;
    border: 0;
}

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

:focus,
:active {
    outline: none;
}

a:focus,
a:active {
    outline: none;
}

nav,
footer,
header,
aside {
    display: block;
}

header {
    position: sticky;
    width: 100%;
    z-index: 99999;
    top: 0;
}

html,
body {
    height: 100%;
    width: 100%;
    line-height: 1;
    font-size: 14px;
    -ms-text-size-adjust: 100%;
    -moz-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
}

input,
button,
textarea {
    font-family: inherit;
}

input::-ms-clear {
    display: none;
}

button {
    cursor: pointer;
}

button::-moz-focus-inner {
    padding: 0;
    border: 0;
}

a,
a:visited {
    text-decoration: none;
}

a:hover {
    text-decoration: none;
}

ul li {
    list-style: none;
}

img {
    vertical-align: top;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-size: inherit;
    font-weight: inherit;
}

html {
    /*background: #1B1918;*/
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    -webkit-text-size-adjust: 100%;
}

body {
    font-size: 16px;
    line-height: 1;
    margin: 0;
    overflow-x: hidden;
    color: #3d286d;
    /*font-family: "IBM Plex Sans";*/
}

h1 {
    font-size: 22px;
    color: #8d7eff;
    line-height: 120%;
    margin: 25px 0;
}

p,
a {
    font-size: 16px;
    color: #EFEFEF;
    line-height: 120%;
    margin-bottom: 16px;
}

hr {
    width: 100%;
    height: 3px;
    border-width: 0;
    background-color: #b615ff;
    margin: 15px 0;
}

.btn {
    background: #CD620F;
    color: #1d0541;
    border: 4px solid #CD620F;
    border-radius: 5px;
    height: 61px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    cursor: pointer;
}

.btn_more {
    color: #8d7eff;
    text-align: center;
    cursor: pointer;
}


/*.page {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
}
@media (max-width: 1024px) {
.page {
  margin-top: 60px;
}
}*/

.content {
    width: 100%;
}

@media (max-width: 1024px) {
    .content {
        overflow: hidden;
    }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

@media (max-width: 1439px) {
    .container {
        margin: 0 5%;
    }
}

.title {
    color: #EFEFEF;
    font-size: 48px;
    line-height: 123.5%;
}

.article {
    color: #fff;
    font-size: 16px;
}

.article-title {
    color: #fff;
    font-size: 20px;
}

.article-subtitle {
    color: #fff;
    font-size: 18px;
    font-weight: 600;
}

@media (max-width: 1024px) {
    header {
        display: none;
    }
}

.logo {
    position: absolute;
    top: 0;
    z-index: 10;
    left: 50%;
    display: flex;
    align-items: center;
    flex-direction: column;
    width: 165px;
    padding: 22px 5px 14px 5px;
    transform: translateX(-50%);
    border-radius: 0 0 10px 10px;
    background: linear-gradient(180deg, #d900de 0%, #9b00e5 100%);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
}

.logo img {
    width: 59px;
}

.logo span {
    margin-top: 11px;
    text-align: center;
    text-transform: uppercase;
    color: #fff;
    font-size: 20px;
    font-weight: 500;
    line-height: 1.2;
}

.header_row_1,
.header_row_2 {
    display: flex;
    justify-content: center;
    color: #9d0be6;
    font-size: 16px;
    line-height: 1.4;
}

.header_row_1 {
    height: 47px;
    overflow-y: hidden;
    padding: 0 10px;
    background: #f7f7f7;
}

.header_row_2 {
    background: #fff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
    padding: 13px 0;
}

.header_col_1,
.header_col_2 {
    display: flex;
    align-items: center;
    width: 50%;
    padding: 5px 0;
}

.header_col_1 {
    flex-direction: row-reverse;
    margin-right: calc(var(--width-logo) / 2);
}

.header_col_2 {
    flex-wrap: wrap;
    margin-left: calc(var(--width-logo) / 2);
}

.header_address {
    display: flex;
    flex-wrap: wrap;
    margin-right: 25px;
}

.header_address_i {
    display: flex;
    align-items: center;
    margin: 0;
    transition: all var(--transition-delay);
    white-space: nowrap;
    color: var(--color-text-grey);
    font-size: 14px;
    line-height: 1.4;
}

.header_address_i:hover img {
    transition: all var(--transition-delay);
    filter: saturate(2000%);
}

.header_address_i img {
    position: relative;
    top: -3px;
    margin-right: 7px;
    transition: all var(--transition-delay);
    line-height: 1.4;
}

.header_address_i:not(:first-child) {
    margin-left: 1vw;
}

.header_contacts {
    display: flex;
    margin-left: 76px;
}

.header_contacts a {
    margin-bottom: 0;
    transition: all var(--transition-delay);
}

.header_contacts a:hover {
    transition: all var(--transition-delay);
    opacity: 0.7;
}

.header_contacts a:not(:first-child) {
    margin-left: 1.7vw;
}

.header_tel {
    margin-left: 5vw;
}

.header_tel a {
    margin-bottom: 0;
    transition: all var(--transition-delay);
    white-space: nowrap;
    color: var(--color-text-grey);
    font-size: 16px;
}

.header_tel a:hover {
    transition: all var(--transition-delay);
    opacity: 0.7;
}

.header_tel img {
    margin-right: 10px;
}


/*.header_row_2 {
  padding: 10px 0;
}*/

.menu {
}

.menu.menu__left {
    margin-right: 3.2vw;
}

.menu.menu__right {
    margin-left: 3.2vw;
}

.menu_items {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -25px;
}

@media (max-width: 1300px) {
    .menu_items {
        margin: 0;
    }
}

.menu_item {
    padding: 0 25px;
}

.menu_item a {
    margin: 0;
    padding: 5px 0;
    transition: all var(--transition-delay);
    color: #9d0be6;
    font-size: 16px;
    font-weight: 600;
}

.menu_item a:hover {
    transition: all var(--transition-delay);
    opacity: 0.7;
}

.mobile_nav {
    position: fixed;
    z-index: 5;
    top: 0;
    display: none;
    align-items: center;
    width: 100%;
    height: var(--height-mobile-nav);
    padding-right: 115px;
    border-bottom: 1px solid #e5e5e5;
    background: #fff;
}

@media (max-width: 1024px) {
    .mobile_nav {
        display: flex;
    }
}

.mobile_menu_burger {
    position: fixed;
    z-index: 999;
    top: 15px;
    right: 15px;
    width: 30px;
    height: 26px;
    cursor: pointer;
    -webkit-transition: 0.5s ease-in-out;
    -moz-transition: 0.5s ease-in-out;
    -o-transition: 0.5s ease-in-out;
    transition: 0.5s ease-in-out;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
}

.mobile_menu_burger:before {
    position: absolute;
    top: -15px;
    right: -15px;
    bottom: -15px;
    left: -15px;
    display: block;
    content: '';
}

.mobile_menu_burger span {
    position: absolute;
    left: 0;
    display: block;
    width: 100%;
    height: 5px;
    -webkit-transition: 0.25s ease-in-out;
    -moz-transition: 0.25s ease-in-out;
    -o-transition: 0.25s ease-in-out;
    transition: 0.25s ease-in-out;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    opacity: 1;
    border-radius: 9px;
    background: linear-gradient(to right, #9b00e5 50%, #500093 50%);
}

.mobile_menu_burger.open span {
    background: linear-gradient(to right, #9b00e5 42%, #500093 42%);
}

.mobile_menu_burger span:nth-child(1) {
    top: 0;
    -webkit-transform-origin: left center;
    -moz-transform-origin: left center;
    -o-transform-origin: left center;
    transform-origin: left center;
}

.mobile_menu_burger span:nth-child(2) {
    top: 10px;
    -webkit-transform-origin: left center;
    -moz-transform-origin: left center;
    -o-transform-origin: left center;
    transform-origin: left center;
}

.mobile_menu_burger span:nth-child(3) {
    top: 20px;
    -webkit-transform-origin: left center;
    -moz-transform-origin: left center;
    -o-transform-origin: left center;
    transform-origin: left center;
}

.mobile_menu_burger.open span:nth-child(1) {
    top: -1px;
    left: 0;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
}

.mobile_menu_burger.open span:nth-child(2) {
    width: 0;
    opacity: 0;
}

.mobile_menu_burger.open span:nth-child(3) {
    top: 20px;
    left: 0;
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
}


/*.mobile_nav_folded {*/

.mobile_nav_folded {
    z-index: 0;
    display: flex;
    height: 55px;
    padding-left: 15px;
    transition: opacity var(--transition-delay);
    pointer-events: none;
    opacity: 0;
}

.mobile_nav_folded.show {
    z-index: 999;
    transition: opacity var(--transition-delay);
    pointer-events: auto;
    opacity: 1;
}

.mobile_nav_folded_links {
    display: flex;
    align-items: center;
    margin-left: 12vw;
}

.mobile_nav_folded_links a {
    margin: 0;
}

.mobile_nav_folded_links a:not(:first-child) {
    margin-left: 8px;
    border-radius: 10px;
    overflow: hidden;
}

@media (max-width: 370px) {
    .mobile_nav_folded_links {
        margin-left: 10px;
    }

    .mobile_nav_folded_links a:not(:first-child) {
        margin-left: 10px;
    }
}

.mobile_nav_logo {
    top: -1px;
    display: flex;
    align-items: center;
    align-self: flex-start;
    flex-direction: column;
    width: 113px;
    margin: 0;
    padding: 9px 5px 7px 5px;
    border-radius: 0 0 10px 10px;
    background: linear-gradient(180deg, #d900de 0%, #9b00e5 100%);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
}

.mobile_nav_logo img {
    width: 44px;
}

.mobile_nav_logo span {
    margin-top: 4px;
    text-align: center;
    text-transform: uppercase;
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    line-height: 1;
}


/*.mobile_nav_unfolded {*/

.mobile_nav_unfolded {
    position: fixed;
    z-index: 99;
    top: 0;
    left: 100%;
    display: block;
    overflow: auto;
    width: 100%;
    height: 100%;
    margin-top: 55px;
    padding-bottom: 100px;
    transition: all var(--transition-delay);
    background: #fff;
}

.mobile_nav_unfolded.open {
    left: 0;
    width: 100%;
    height: 100%;
    padding-bottom: 100px;
    transition: all var(--transition-delay);
}

.mobile_menu .menu-items {
    margin-top: 30vh;
    text-align: center;
}

.mobile_menu {
    margin-top: 7px;
}

.mobile_menu li {
    display: flex;
    flex-direction: column;
}

.mobile_menu a {
    display: block;
    padding: 3px 10px 3px 4vw;
    transition: all var(--transition-delay);
    color: #000;
    font-size: 20px;
    font-weight: 600;
    line-height: 1.5;
    margin-bottom: 0px;
}

.mobile_menu li.active {
    background: none;
}

.mobile_menu li.active a {
    color: var(--color-violet);
}

.mobile_menu a:hover {
    transition: all var(--transition-delay);
    color: var(--color-violet);
}

.mobile_nav_address {
    margin-top: 10px;
    border-top: 1px solid #e5e5e5;
}

.mobile_nav_address_i {
    margin-left: 4vw;
    padding-top: 17px;
    padding-bottom: 11px;
}

.mobile_nav_address_i img {
    transition: all var(--transition-delay);
    opacity: 1;
}

.mobile_nav_address_i:not(:first-child) {
    border-top: 1px solid #e5e5e5;
}

.mobile_nav_address_i_loc,
.mobile_nav_address_i_metro {
    display: flex;
}

.mobile_nav_address_i_loc:hover img,
.mobile_nav_address_i_metro:hover img {
    transition: all var(--transition-delay);
    opacity: 1;
}

.mobile_nav_address_i_metro {
    margin-top: 13px;
}

.mobile_nav_address_i_loc img {
    position: relative;
    top: -7px;
}

.mobile_nav_address_i_loc span,
.mobile_nav_address_i_metro span {
    padding-left: 10px;
    color: var(--color-text-grey);
    font-size: 16px;
    line-height: 1.4;
}


/* .mobile_nav_tel */

.mobile_nav_tel {
    padding: 17px 17px 17px 4vw;
    border-top: 1px solid #e5e5e5;
}

.mobile_nav_tel a {
    transition: all var(--transition-delay);
    color: #000;
    font-size: 16px;
}

.mobile_nav_tel a:hover {
    transition: all var(--transition-delay);
    opacity: 0.7;
}

.mobile_nav_tel img {
    margin-right: 16px;
}

.mobile_nav_contacts {
    display: flex;
    justify-content: center;
    padding-top: 3px;
    border-top: 1px solid #e5e5e5;
}

.mobile_nav_contacts a {
    padding: 13px;
    transition: all var(--transition-delay);
}

.mobile_nav_contacts img {
    height: 28px;
}

.mobile_nav_contacts a:hover {
    transition: all var(--transition-delay);
    opacity: 0.7;
}

body._lock {
    overflow: hidden;
}

.hero {
    background: no-repeat url('/wp-content/themes/twentytwentyone/assets/img/hero_bg.jpg') center;
    background-size: cover;
}

.hero_inner {
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    margin: 0 auto;
    padding: 30px 15px;
}

@media (max-width: 850px) {
    .hero_inner {
        display: none;
    }
}

.hero_title {
    text-align: center;
    color: #fff;
    font-size: 40px;
    font-weight: 600;
    line-height: 1.3;
}

.hero_text {
    margin-top: 10px;
}

.hero_text p {
    text-align: center;
    color: #e2e2e2;
    font-size: 24px;
    font-weight: 500;
    line-height: 1.5;
    max-width: 800px;
}

.hero_text p:not(:first-child) {
    margin-top: 15px;
}

.hero_btn {
    display: flex;
    justify-content: center;
    margin-top: 13px;
}

@media (max-width: 850px) {
    .hero_title {
        font-size: 30px;
    }

    .hero_text {
        margin-top: 10px;
    }

    .hero_text p {
        font-size: 16px;
        font-weight: 400;
        line-height: 1.5;
    }

    .hero_btn {
        margin-top: 23px;
    }
}

@media (max-width: 360px) {
    .hero_title {
        font-size: 24px;
    }
}

.benefits {
    padding-top: 104px;
    padding-right: 10px;
    padding-left: 10px;
    background: #fff;
}

@media (max-width: 850px) {
    .benefits {
        padding-top: 80px;
    }

    .benefits_title {
        font-size: 30px;
    }
}

.benefits_title {
    text-align: center;
    color: var(--color-dark-violet);
    font-size: 36px;
    font-weight: 600;
}

@media (max-width: 850px) {
    .benefits_title {
        font-size: 30px;
    }
}

.benefits_row {
    display: flex;
    justify-content: center;
    padding-top: 35px;
    padding-bottom: 71px;
}

@media (max-width: 850px) {
    .benefits_row {
        align-items: center;
        flex-direction: column;
        padding-top: 0;
    }
}

.benefits_i {
}

@media (max-width: 850px) {
    .benefits_i {
        text-align: center;
    }

    .benefits_i:last-child {
        display: none;
    }
}

.benefits_i:not(:first-child) {
    margin-top: 29px;
}

.benefits_i:before {
    position: relative;
    top: 0;
    display: inline-block;
    margin: 0 -6px 0 -8px;
    content: url('/wp-content/themes/twentytwentyone/assets/img/benefit-mark.png');
}

.benefits_i_title {
    margin-top: 1px;
    color: #000;
    font-weight: 600;
    font-size: 18px;
    font-weight: 600;
}

.benefits_i_text {
    margin-top: 10px;
    color: var(--color-text-grey);
    font-size: 14px;
    line-height: 1.4;
}

.benefits_col_1,
.benefits_col_3 {
    max-width: 398px;
    margin-top: 27px;
}

.benefits_col_1 {
    text-align: right;
}

.benefits_col_2 {
    display: flex;
    flex-shrink: 0;
    justify-content: center;
    margin: 0 50px;
}

.benefits_col_3 {
}

@media (max-width: 850px) {
    .benefits_img {
        max-width: 66%;
        margin-top: 20px;
    }
}

.services {
    padding: 75px 0 75px 0;
    background: #faf9ff;
}

@media (max-width: 850px) {
    .services {
        padding: 50px 0 50px 0;
    }
}

.services_title {
    text-align: center;
    color: var(--color-dark-violet);
    font-size: 36px;
    font-weight: 600;
}

@media (max-width: 850px) {
    .services_title {
        font-size: 30px;
    }
}

.services_row {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    width: 1260px;
    max-width: 100%;
    margin: 30px auto 0 auto;
    padding: 0 10px;
}

.services_col {
    width: calc(100% / 3);
    padding: 25px 20px;
}

.services_col-tutor {
    width: calc(100% / 2);
}

@media (max-width: 1024px) {
    .services_col {
        padding: 10px 5px;
    }
}

@media (max-width: 850px) {
    .services_col {
        width: calc(100% / 2);
    }
}

@media (max-width: 370px) {
    .services_col {
        width: 100%;
    }
}

.services_i {
    position: relative;
    transition: all var(--transition-delay);
    border-radius: 5px;
    background-color: #fff;
    box-shadow: 0 4px 15px 0 rgba(0, 0, 0, 0.1);
}

@media (min-width: 1024px) {
    .services_i:hover {
        box-shadow: 0 0 0 transparent;
    }

    .services_i:hover .services_box {
        transition: all var(--transition-delay);
        border-right: 1px solid var(--color-violet);
        border-bottom: 1px solid var(--color-violet);
        border-left: 1px solid var(--color-violet);
    }

    .services_i:hover .services_i_title {
        transition: all var(--transition-delay);
        color: var(--color-violet);
    }
}

.services_img img {
    width: 100%;
    height: 214px;
    border-radius: 5px 5px 0 0;
    object-fit: cover;
}

@media (max-width: 650px) {
    .services_img img {
        height: 92px;
    }
}

.services_box {
    display: flex;
    flex-direction: column;
    padding: 10px;
    transition: all var(--transition-delay);
    border: 1px solid transparent;
    border-radius: 0 0 5px 5px;
}

.services_i_title {
    transition: all var(--transition-delay);
    color: #000;
    font-size: 18px;
    font-weight: 600;
}

.services_i_title:before {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    content: '';
}

@media (max-width: 850px) {
    .services_i_title {
        margin-top: 0;
        text-align: center;
        font-size: 14px;
        min-height: 38px;
        margin-bottom: 2px;
    }
}

.services_i_text {
    margin-top: 4px;
    color: var(--color-text-grey);
    font-size: 14px;
    line-height: 1.4;
}

@media (max-width: 850px) {
    .services_i_text {
        display: none;
    }
}

.services_i_row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 10px;
}

@media (max-width: 850px) {
    .services_i_row {
        flex-direction: column;
        margin-top: 0;
    }
}

.services_price {
}

.services_price_val {
    color: var(--color-violet);
    font-size: 25px;
    font-weight: 600;
}

@media (max-width: 850px) {
    .services_price_val {
        font-size: 15px;
    }
}

.services_price_title {
    color: #000;
    font-size: 14px;
    line-height: 20px;
}

.services_i_btn {
    /*z-index: 1;*/
    position: relative;
}

.services_i_btn a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 3px 15px;
    cursor: pointer;
    transition: all var(--transition-delay);
    color: var(--color-violet);
    border: 1px solid var(--color-violet);
    border-radius: 3px;
    background-color: #fff;
    font-family: Montserrat, sans-serif;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.4;
    margin-bottom: 0;
}

@media (max-width: 850px) {
    .services_i_btn a {
        margin-top: 4px;
        margin-bottom: 0;
        padding: 4px 16px 4px 16px;
        font-size: 16px;
    }
}

.services_i_btn a:hover {
    transition: all var(--transition-delay);
    color: #fff;
    background-color: var(--color-violet);
}

.services_btn {
    display: flex;
    justify-content: center;
    margin-top: 30px;
}

@media (max-width: 850px) {
    .services_btn {
        margin-top: 15px;
    }
}

.main_about {
    padding: 100px 0 100px 0;
    background: #fff;
}

@media (max-width: 850px) {
    .main_about {
        padding: 0 15px 50px 15px;
    }
}

.about_row {
    display: flex;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

@media (max-width: 850px) {
    .about_row {
        flex-direction: column;
    }
}

.about_col_1,
.about_col_2 {
    width: 50%;
}

@media (max-width: 850px) {
    .about_col_1,
    .about_col_2 {
        width: 100%;
    }
}

.about_col_1 {
    display: flex;
    align-items: center;
    justify-content: center;
}

.about_img {
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 850px) {
    .about_img img {
        width: 100vw;
    }
}

.about_title {
    color: var(--color-dark-violet);
    font-size: 36px;
    font-weight: 600;
}

@media (max-width: 850px) {
    .about_title {
        font-size: 30px;
        text-align: center;
        margin-top: 25px;
    }
}

.about_text {
    padding-top: 18px;
}

@media (max-width: 850px) {
    .about_text {
        padding-top: 0px;
    }
}

.about_text p {
    color: var(--color-text-grey);
    font-size: 18px;
    line-height: 1.5;
}

@media (max-width: 850px) {
    .about_text p {
        margin-top: 15px;
        text-align: center;
        margin-bottom: 4px;
        font-size: 14px;
        line-height: 1.4;
    }
}

.about_text p:not(:first-child) {
    margin-top: 15px;
}

.about_btn {
    margin-top: 20px;
}

@media (max-width: 850px) {
    .about_btn {
        text-align: center;
    }
}

.locations {
    padding: 75px 0 50px 0;
    background-color: #faf9ff;
}

.locations_title {
    text-align: center;
    color: var(--color-dark-violet);
    font-size: 36px;
    font-weight: 700;
}

@media (max-width: 850px) {
    .locations_title {
        font-size: 30px;
    }
}

.locations_row {
    display: flex;
    width: 1170px;
    max-width: 100%;
    margin: 0 auto;
    padding-top: 7px;
}

@media (max-width: 850px) {
    .locations_row {
        align-items: center;
        flex-direction: column;
    }
}

.locations_col {
    width: 50%;
    padding: 25px;
}

@media (max-width: 850px) {
    .locations_col {
        width: 345px;
        max-width: 100%;
        padding: 15px;
    }
}

.locations_i {
}

.locations_img {
}

.locations_img img {
    max-width: 100%;
    border-radius: 5px;
    width: 100%;
    height: 350px;
}

@media (max-width: 850px) {
    .locations_img img {
        min-height: 200px;
        max-height: 250px;
        width: 100%;
    }
}

.locations_address_items {
    max-width: 345px;
    margin: 20px auto 0 auto;
}

@media (max-width: 850px) {
    .locations_address_items {
        margin-top: 15px;
    }
}

.locations_address_i {
    display: flex;
    color: var(--color-text-grey);
    font-size: 18px;
    line-height: 1.2;
}

.locations_address_i img {
    transition: all var(--transition-delay);
    opacity: 0.2;
}

@media (max-width: 850px) {
    .locations_address_i img {
        opacity: 1;
    }
}

.locations_address_i:hover img {
    transition: all var(--transition-delay);
    opacity: 1;
}

@media (max-width: 850px) {
    .locations_address_i {
        font-size: 14px;
    }
}

.locations_address_i:not(:first-child) {
    margin-top: 12px;
}

.locations_i span {
    margin-left: 15px;
}

.locations_i img {
    position: relative;
    top: 1px;
    align-self: flex-start;
}

.page {
    display: block;
    /* override  legacy */
}

@media (max-width: 850px) {
    .page {
    / / padding-top: var(--height-mobile-nav);
    }
}

.booking-btn {
    position: fixed;
    z-index: 5;
    right: 15px;
    bottom: 0;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    width: 78px;
    height: 78px;
    transition: all var(--transition-delay);
    text-align: center;
    color: #fff;
    border-radius: 40%;
    background: linear-gradient(180deg, #d900de 0%, #9b00e5 100%);
    box-shadow: 0 4px 15px 0 rgba(0, 0, 0, 0.25);
    font-size: 12px;
    font-weight: 600;
    line-height: 1;
}

.booking-btn:hover {
    transition: all var(--transition-delay);
    opacity: 0.7;
    box-shadow: 0 4px 15px 0 rgba(0, 0, 0, 0);
    cursor: pointer;
}

.booking-btn:before {
    display: flex;
    margin-top: -6px;
    margin-bottom: 2px;
    margin-left: -2px;
    content: url('/wp-content/themes/twentytwentyone/assets/img/booking.svg');
}

.feedback {
    background-color: #faf9ff;
    margin-bottom: 75px;
    padding-top: 40px;
}

@media (max-width: 850px) {
    .feedback {
        padding: 50px 0;
    }
}

.feedback_inner {
    display: flex;
    justify-content: space-between;
    width: 980px;
    max-width: 100%;
    margin: 0 auto;
    padding: 100px 22px 100px 22px;
    background: no-repeat center url('/wp-content/themes/twentytwentyone/assets/img/feedback_info.jpg');
}

@media (max-width: 850px) {
    .feedback_inner {
        align-items: center;
        flex-direction: column;
        padding: 10px 15px 5px 15px;
    }
}

.feedback_info {
    align-self: flex-start;
    width: 325px;
    padding: 20px 20px 15px 20px;
    border-radius: 5px;
    background-color: rgba(255, 255, 255, 0.7);
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
}

@media (max-width: 850px) {
    .feedback_info {
        align-self: center;
        width: 386px;
        max-width: 100%;
        margin-right: 15px;
        margin-left: 15px;
        border-radius: 20px 20px 0 0;
    }
}

.feedback_info_title {
    color: var(--color-dark-violet);
    font-size: 28px;
    font-weight: 700;
    line-height: 1.2;
}

.feedback_info_table {
    width: 100%;
    margin-top: 9px;
}

.feedback_info_table tr:not(:first-child) td,
.feedback_info_table tr:not(:first-child) th {
    border-top: 1px solid rgba(155, 0, 229, 0.1);
}

.feedback_info_table th {
    text-align: left;
    white-space: nowrap;
    color: var(--color-text-grey);
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
}

.feedback_info_table td {
    width: 100%;
    padding: 13px 20px;
}

.feedback_info_table_open {
    color: #8ad093;
}

.feedback_info_table_close {
    color: #ff1d5b;
}

.feedback_form {
    display: flex;
    align-self: flex-end;
    flex-direction: column;
    width: 386px;
    max-width: 100%;
    margin-top: 106px;
    padding: 10px 20px 10px 20px;
    border-radius: 5px;
    background-color: #b702e2bd;
    box-shadow: 0px 0px 10px 8px rgb(0 0 0 / 25%);
    -webkit-backdrop-filter: blur(6px);
}

@media (max-width: 850px) {
    .feedback_form {
        align-self: center;
        border-radius: 0 0 20px 20px;
    }
}

.feedback_form input,
.feedback_form textarea {
    width: 100%;
    padding: 10px 10px 10px 10px;
    color: #fff;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    background: transparent;
    font-size: 16px;
}

.feedback_form textarea {
    min-height: 83px;
    resize: vertical;
}

.feedback_form input::-webkit-input-placeholder,
.feedback_form textarea::-webkit-input-placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.feedback_form input::-moz-placeholder,
.feedback_form textarea::-moz-placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.feedback_form input:-ms-input-placeholder,
.feedback_form textarea:-ms-input-placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.feedback_info_sub_title {
    margin-top: 23px;
}

@media (max-width: 850px) {
    .feedback_info_title {
        text-align: center;
    }
}

@media (max-width: 850px) {
    .feedback_info_sub_title {
        text-align: center;
        font-size: 20px;
        font-weight: 700;
        line-height: 1.2;
        margin-top: 10px;
    }
}

.feedback_form_btn {
    margin-top: 15px;
}

.feedback_form_btn button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 12px 20px 11px 20px;
    cursor: pointer;
    transition: all var(--transition-delay);
    text-align: center;
    color: #5e045c;
    border: 2px solid #fff;
    border-radius: 3px;
    background: #fff;
    font-size: 20px;
    font-weight: 500;
    line-height: 24px;
}

@media (max-width: 850px) {
    .feedback_form_btn button {
        border-radius: 0 0 10px 10px;
    }
}

.feedback_form_btn button:hover {
    transition: all var(--transition-delay);
    color: #fff;
    border: 2px solid #fff;
    background: transparent;
}

@keyframes pulse {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 #cf02de17;
    }
    70% {
        transform: scale(1);
        box-shadow: 0 0 0 10px #cf02de91;
    }
    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 #d002de;
    }
}


/*
    .a_contact_list
*/

.a_contact_list {
    max-width: 1400px;
    margin: 0 auto;
    padding: 50px 15px 40px 15px;
}

@media (min-width: 992px) {
    .a_contact_list {
        padding: 100px 15px 75px 15px;
    }
}

.a_contact_list_title {
    text-align: center;
    color: var(--color-dark-violet);
    font-size: 36px;
    font-weight: 600;
}

@media (max-width: 850px) {
    .a_contact_list_title {
        font-size: 30px;
    }
}

.a_contact_list_row {
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin: 30px -10px 0 -10px;
}

@media (min-width: 992px) {
    .a_contact_list_row {
        flex-direction: row;
        margin-top: 45px;
        margin-left: 0;
    }
}

.a_contact_list_i {
    display: flex;
    align-items: center;
    flex-direction: column;
    min-width: 300px;
    max-width: 100%;
    margin: 0;
    padding: 10px;
    color: rgb(157, 11, 230);
    line-height: 1.4;
}

.a_contact_list_i svg {
    overflow: visible;
    width: 39px;
    padding: 5px;
    border: 2px solid rgba(157, 11, 230, 0.7);
    border-radius: 100%;
}

@media (min-width: 992px) {
    .a_contact_list_i svg {
        width: 60px;
        padding: 15px;
        border: 1px solid rgba(157, 11, 230, 0.7);
    }
}

.a_contact_list_i_value:before {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    height: 1px;
    content: '';
    transition: all var(--transition-delay);
    background: transparent;
}

a.a_contact_list_i:hover .a_contact_list_i_value:before {
    transition: all var(--transition-delay);
    background: rgb(157, 11, 230);
}

.a_contact_list_i_box {
    display: flex;
    flex-direction: column;
    margin-top: 0;
    text-align: center;
}

@media (min-width: 992px) {
    .a_contact_list_i_box {
        margin-top: 10px;
    }
}

.a_contact_list_i_title {
    font-weight: 600;
    line-height: 1;
}

.a_contact_list_i_value {
    position: relative;
    margin-top: 5px;
    color: var(--color-dark-violet);
    font-weight: 500;
}


/*
    .a_contact_loc
*/

.a_contact_loc {
    background: #faf9ff;
}

@media (min-width: 576px) {
    .a_contact_loc {
        padding: 0 15px;
    }
}

.a_contact_loc_inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 40px 0 0 0;
}

.a_contact_loc--right .a_contact_loc_inner {
    padding: 15px 0 0 0;
}

@media (min-width: 992px) {
    .a_contact_loc--right .a_contact_loc_inner {
        padding: 35px 0 0 0;
    }

    .a_contact_loc_inner {
        padding: 75px 0 0 0;
    }
}

.a_contact_loc_title {
    text-align: center;
    color: var(--color-dark-violet);
    font-size: 36px;
    font-weight: 600;
}

@media (max-width: 850px) {
    .a_contact_loc_title {
        font-size: 30px;
    }
}

.a_contact_loc_row {
    display: flex;
    flex-direction: column;
    margin-top: 30px;
}

@media (min-width: 992px) {
    .a_contact_loc_row {
        flex-direction: row;
        margin-top: 45px;
    }
}

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

@media (min-width: 992px) {
    .a_contact_loc_col_1 {
        width: 50%;
        margin: 7% 0;
    }
}

.a_contact_loc_col_2 {
    display: flex;
    align-items: center;
    order: -1;
    padding: 45px 0;
    background: #b702e2;
}

@media (min-width: 992px) {
    .a_contact_loc_col_2 {
        order: 1;
        width: 50%;
    }

    .a_contact_loc--right .a_contact_loc_col_2 {
        order: -1;
        width: 50%;
    }
}

.a_contact_loc_col_2 span {
    color: #fff !important;
}

.a_contact_loc_col_2_inner {
    padding: 0 3vw;
}

.a_contact_loc_i_title {
    color: #fff;
    font-size: 23px;
    font-weight: 400;
}

.a_contact_loc_i_title span {
    white-space: nowrap;
    font-weight: 700;
}

.a_contact_loc_items:not(:first-child) {
    margin-top: 30px;
}

.a_contact_loc_i {
    display: flex;
    align-items: center;
    line-height: 1.4;
}

.a_contact_loc_i:not(:first-child) {
    margin-top: 10px;
}

.a_contact_loc_i svg {
    position: relative;
    margin-right: 10px;
}

.a_contact_loc_text {
    display: none;
    margin-top: 30px;
}

@media (min-width: 992px) {
    .a_contact_loc_text {
        display: block;
        margin-top: 30px;
    }
}


/*
    Services page
*/

.a_services {
    padding: 100px 0 75px 0;
    background: #faf9ff;
}

@media (max-width: 850px) {
    .a_services {
        padding: 75px 0 50px 0;
    }
}

.a_services_title {
    text-align: center;
    color: var(--color-dark-violet);
    font-size: 36px;
    font-weight: 600;
}

@media (max-width: 850px) {
    .a_services_title {
        font-size: 30px;
    }
}

.a_services_header_text {
    max-width: 800px;
    margin: 30px auto 0 auto;
    text-align: center;
    font-size: 20px;
    font-weight: 500;
    line-height: 1.5;
}

@media (max-width: 850px) {
    .a_services_header_text {
        margin: 15px auto 0 auto;
        font-size: 16px;
    }
}


/**/

.a_services_row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    width: 1260px;
    max-width: 100%;
    margin: 30px auto 0 auto;
    padding: 0 10px;
}

.a_services_col {
    width: calc(100% / 3);
    max-width: 408px;
    padding: 25px 20px;
}

.a_services_col-tutor {
    width: calc(100% / 2);
}

@media (max-width: 1024px) {
    .a_services_col {
        padding: 10px 5px;
    }
}

@media (max-width: 850px) {
    .a_services_col {
        width: calc(100% / 2);
    }
}

@media (max-width: 670px) {
    .a_services_col {
        width: 100%;
    }
}

.a_services_i {
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: all var(--transition-delay);
    border-radius: 10px;
    background-color: #fff;
    -webkit-box-shadow: 2px 2px 41px 0 rgb(0 0 0 / 25%);
    box-shadow: 2px 2px 41px 0 rgb(0 0 0 / 25%);
}

@media (min-width: 1024px) {
    .a_services_i:hover {
        box-shadow: 0 0 0 transparent;
    }

    .a_services_i:hover .services_box {
        transition: all var(--transition-delay);
        border-right: 1px solid var(--color-violet);
        border-bottom: 1px solid var(--color-violet);
        border-left: 1px solid var(--color-violet);
    }

    .a_services_i:hover .services_i_title {
        transition: all var(--transition-delay);
        color: var(--color-violet);
    }
}

.a_services_img {
    position: relative;
    overflow: hidden;
    padding: 0 0 60% 0;
    border-radius: 10px 10px 0 0;
}

.a_services_img img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100% !important;
    max-width: 100%;
    height: 100% !important;
    object-fit: cover;
}

.a_services_box {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    padding: 10px;
    transition: all var(--transition-delay);
    border: 1px solid transparent;
    border-radius: 0 0 5px 5px;
}

.a_services_i_title {
    min-height: 2em;
    margin-top: 5px;
    margin-bottom: 0;
    transition: all var(--transition-delay);
    color: #000;
    font-size: 18px;
    font-weight: 600;
}

.a_services_i_title:before {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    content: '';
}

@media (max-width: 850px) {
    .a_services_i_title {
        margin-top: 0;
        margin-bottom: 0;
        font-size: 14px;
    }
}

.a_services_i_text {
    overflow: hidden;
    max-height: 5em;
    margin-top: 10px;
    margin-bottom: auto;
    color: var(--color-text-grey);
    font-size: 14px;
}

.a_services_i_text p {
    color: black;
    line-height: 1.4;
}

.a_services_i_text .more-link {
    display: none;
}

.a_services_i_row {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px 10px 5px 10px;
}

.a_services_btn {
    display: flex;
    justify-content: center;
    margin-top: 45px;
}

@media (max-width: 850px) {
    .a_services_btn {
        margin-top: 30px;
    }
}

.a_services_i_btn a {
    margin-top: auto;
    margin-bottom: 0;
    color: var(--color-violet);
    font-size: 16px;
    font-weight: 600;
    font-style: italic;
    line-height: 20px;
    position: relative;
    z-index: 1;
}

.a_services_i_btn a:after {
    display: inline-block;
    margin-left: 10px;
    filter: hue-rotate(243deg);
    content: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACoAAAAICAYAAACPp21mAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAABfSURBVHgB1ZFBEYAwDAQ3NURxABJwgAQkIAEnSKGKgIRXBgXXncnnXjtZEOTaWP1q3gqatGKcWdYQJSRD9n5YxoNmPuyI4l8czJhcdlZN/1GSXT/pEeQvGZtq+polgxe8tyCM0ppcFgAAAABJRU5ErkJggg==');
}

.a_services_date {
    display: block;
    margin-bottom: 0;
    margin-left: auto;
    padding: 0;
    color: rgba(36, 36, 36, 0.5);
    font-size: 14px;
    line-height: 119%;
}


/*
    Presents page
*/

.a_presents_about {
    padding: 100px 0 75px 0;
    background: #fff;
}

@media (max-width: 850px) {
    .a_presents_about {
        padding: 75px 0 0px 0;
    }
}

.a_presents_about_row {
    display: flex;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

@media (max-width: 850px) {
    .a_presents_about_row {
        flex-direction: column;
    }
}

.a_presents_about_col_1,
.a_presents_about_col_2 {
    width: 50%;
}

@media (max-width: 850px) {
    .a_presents_about_col_1,
    .a_presents_about_col_2 {
        width: 100%;
    }
}

.a_presents_about_col_1 {
    padding: 0 15px;
}

.a_presents_about_col_2 {
    display: flex;
    align-items: center;
    justify-content: center;
}

.a_presents_about_img {
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 850px) {
    .a_presents_about_img img {
        width: 100vw;
    }
}

.a_presents_about_title {
    color: var(--color-dark-violet);
    font-size: 36px;
    font-weight: 600;
}

@media (max-width: 850px) {
    .a_presents_about_title {
        font-size: 30px;
        text-align: center;
    }
}

.a_presents_about_text {
    padding-top: 18px;
}

@media (max-width: 850px) {
    .a_presents_about_text {
    }
}

.a_presents_about_text p {
    color: var(--color-text-grey);
    font-size: 18px;
    line-height: 1.5;
}

.a_presents_about_text p:not(:first-child) {
    margin-top: 15px;
}

.a_presents_about_btn {
    margin-top: 20px;
}

@media (max-width: 850px) {
    .a_presents_about_btn {
        text-align: center;
    }
}

.a_presents {
    padding: 75px 0 75px 0;
    background: #faf9ff;
}

@media (max-width: 850px) {
    .a_presents {
        padding: 50px 0 50px 0;
    }
}

.a_presents_title {
    text-align: center;
    color: var(--color-dark-violet);
    font-size: 36px;
    font-weight: 600;
}

@media (max-width: 850px) {
    .a_presents_title {
        font-size: 30px;
    }
}

.a_presents_row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    width: 1260px;
    max-width: 100%;
    margin: 30px auto 0 auto;
    padding: 0 10px;
}

.a_presents_col {
    width: calc(100% / 2);
    padding: 25px 30px;
}

@media (max-width: 1024px) {
    .a_presents_col {
        width: calc(100% / 2);
        padding: 10px 5px;
    }
}

@media (max-width: 850px) {
    .a_presents_col {
        width: calc(100%);
    }
}

.a_presents_i {
    position: relative;
    transition: all var(--transition-delay);
    border-radius: 5px;
    background-color: #fff;
    box-shadow: 0 4px 15px 0 rgba(0, 0, 0, 0.1);
}

@media (min-width: 1024px) {
    .a_presents_i:hover {
        box-shadow: 0 0 0 transparent;
    }

    .a_presents_i:hover .a_presents_box {
        transition: all var(--transition-delay);
        border-right: 1px solid var(--color-violet);
        border-bottom: 1px solid var(--color-violet);
        border-left: 1px solid var(--color-violet);
    }

    .a_presents_i:hover .a_presents_i_title {
        transition: all var(--transition-delay);
        color: var(--color-violet);
    }
}

.a_presents_img {
    position: relative;
    overflow: hidden;
    padding: 0 0 60% 0;
    border-radius: 10px 10px 0 0;
}

.a_presents_img img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100% !important;
    max-width: 100%;
    height: 100% !important;
    object-fit: cover;
}

.a_presents_box {
    display: flex;
    flex-direction: column;
    padding: 10px;
    transition: all var(--transition-delay);
    border: 1px solid transparent;
    border-radius: 0 0 5px 5px;
}

.a_presents_i_title {
    transition: all var(--transition-delay);
    color: #000;
    font-size: 18px;
    font-weight: 600;
}

.a_presents_i_title:before {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    content: '';
}

@media (max-width: 850px) {
    .a_presents_i_title {
        margin-top: 0;
        margin-bottom: 7px;
        text-align: center;
    }
}

.a_presents_i_text {
    margin-top: 4px;
    color: var(--color-text-grey);
    font-size: 14px;
    line-height: 1.4;
}

.a_presents_i_row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 10px;
}

@media (max-width: 850px) {
    .a_presents_price {
        margin-top: 15px;
    }
}

.a_presents_price_val {
    color: var(--color-violet);
    font-size: 25px;
    font-weight: 600;
}

@media (max-width: 850px) {
    .a_presents_price_val {
        font-size: 22px;
    }
}

.a_presents_price_title {
    color: #000;
    font-size: 14px;
    line-height: 20px;
}

.a_presents_i_btn {
    /*z-index: 1;*/
    position: relative;
}

.a_presents_i_btn a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0;
    padding: 8px 18px 8px 18px;
    cursor: pointer;
    transition: all var(--transition-delay);
    color: var(--color-violet);
    border: 1px solid var(--color-violet);
    border-radius: 3px;
    background-color: #fff;
    font-family: Montserrat, sans-serif;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.4;
}

@media (max-width: 850px) {
    .a_presents_i_btn a {
        margin-top: 10px;
        margin-bottom: 0;
        padding: 4px 16px 4px 16px;
        font-size: 16px;
    }
}

.a_presents_i_btn a:hover {
    transition: all var(--transition-delay);
    color: #fff;
    background-color: var(--color-violet);
}

.a_presents_btn {
    display: flex;
    justify-content: center;
    margin-top: 30px;
}

@media (max-width: 850px) {
    .a_presents_btn {
        margin-top: 15px;
    }
}

.a_article_content {
    margin-top: 30px;
}


.modal {
    display: none;
    position: fixed;
    z-index: 99999;
    padding-top: 100px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgb(0, 0, 0);
    background-color: rgba(0, 0, 0, 0.9);
}

.modal-content {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 800px;
}

@-webkit-keyframes zoom {
    from {
        -webkit-transform: scale(0)
    }
    to {
        -webkit-transform: scale(1)
    }
}

@keyframes zoom {
    from {
        transform: scale(0)
    }
    to {
        transform: scale(1)
    }
}

.close {
    position: absolute;
    top: 15px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
}

.close:hover,
.close:focus {
    color: #bbb;
    text-decoration: none;
    cursor: pointer;
}

.feedback {
    background-color: transparent;
}

.feedback_info_table_open {
    color: #9d0be6;
}

.feedback_inner {
    width: 980px;
    max-width: 100%;
    padding: 0 22px 0 22px;
    height: 400px;
    background: no-repeat center url(/wp-content/themes/twentytwentyone/assets/img/feedback_info.jpg);
}

@media only screen and (max-width: 700px) {
    .modal-content {
        width: 100%;
    }
}
.feedback_info_sub_title, .feedback_info_sub_title {
    color: var(--color-dark-violet);
}
.about_review_i_text a {
    color: #242424;
    font-size: 22px;
    text-align: center;
    line-height: 129%;

}