/* Vars */
:root {
    --main: #49B7D0;
    --main-dark: #47AAC0;
    --dark: #000;
    --wh: #fff;

    --swiper-pagination-color: #49B7D0;
    --swiper-pagination-bullet-inactive-opacity: 0.1;
}

/* Fonts */
@font-face {
    font-family: "Manrope";
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url("../fonts/Manrope-Regular.woff2") format("woff2"), url("../fonts/Manrope-Regular.woff") format("woff")
}

@font-face {
    font-family: "Manrope";
    font-style: normal;
    font-weight: 500;
    font-display: swap;
    src: url("../fonts/Manrope-Medium.woff2") format("woff2"), url("../fonts/Manrope-Medium.woff") format("woff")
}

@font-face {
    font-family: "Manrope";
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url("../fonts/Manrope-Bold.woff2") format("woff2"), url("../fonts/Manrope-Bold.woff") format("woff")
}


/* Default styles */
*,
*:before,
*:after {
    -webkit-box-sizing: border-box;
    box-sizing: border-box
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
    margin: 0;
    padding: 0
}

*:active,
*:focus {
    outline: none
}

input,
textarea {
    font-family: inherit;
    resize: none
}

b {
    font-weight: 700;
}

ul {
    list-style: none;
    margin: 0;
    padding: 0
}

path {
    transition: 0.3s ease;
}

a {
    text-decoration: none;
    display: inline-block;
    transition: 0.3s ease;
}

select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    position: relative;
}

html {
    overflow-x: hidden;
    scroll-behavior: smooth;
}

button {
    border: none;
    cursor: pointer
}

body {
    font-family: "Manrope", Arial, Helvetica, sans-serif;
    overflow: hidden;
    font-size: 18px;
    line-height: 1.2;
    font-weight: 400;
    margin: 0;
    color: var(--dark);
}

body::-webkit-scrollbar,
body::-webkit-scrollbar-thumb {
    width: 10px;
    background: var(--main);
}

body::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, .2);
    box-shadow: inset 0 0 6px rgba(0, 0, 0, .2);
    background-color: #fff;
    border-radius: 3px;
}

main.pdt {
    padding-top: 127.5px;
}

.container {
    width: 100%;
    margin: 0 auto;
    padding: 0 15px;
    max-width: 1290px;
}

.shape1,
.shape2 {
    position: absolute;
    border-radius: 50%;
    filter: blur(246px);
    display: block;
}

.shape1 {
    background: #01C9D27A;
}

.shape2 {
    background: #FDFF8580;
}

.title {
    text-transform: uppercase;
    font-weight: 500;
    line-height: 1.3;
}

h1.title {
    font-size: 72px;
}

h2.title {
    font-size: 45px;
}

@media screen and (max-width: 992px) {
    h1.title {
        font-size: 60px;
    }

    h2.title {
        font-size: 38px;
    }
}

@media screen and (max-width: 576px) {
    h1.title {
        font-size: 45px;
    }

    h2.title {
        font-size: 30px;
    }

    main.pdt {
        padding-top: 92.5px;
    }
}

@media screen and (max-width: 400px) {
    h1.title {
        font-size: 36px;
    }
}

/* Buttons */
.btn {
    font-weight: 500;
    font-size: 16px;
    text-transform: uppercase;
    color: var(--wh);
    background-color: var(--main);
    padding: 9.5px 24px;
    border-radius: 40px;
    border: solid 1px var(--main);
}

.btn:hover {
    background-color: var(--wh);
    color: var(--dark);
    border-color: var(--dark);
}

.btn:focus {
    background-color: var(--main-dark);
    border-color: var(--main-dark);
    color: var(--wh);
}

.btn-border {
    border: solid 1px var(--dark);
    border-radius: 116px;
    text-transform: uppercase;
    color: var(--dark);
    font-weight: 500;
    font-size: 16px;
    padding: 3px;
    background-color: var(--wh);
    position: relative;
}

.btn-border:after {
    content: '';
    background: var(--main);
    width: 38px;
    height: 38px;
    display: block;
    border-radius: 50%;
    position: absolute;
    top: 3px;
    right: 3px;
    z-index: 1;
    transition: 0.3s ease;
}

.btn-border__inner {
    display: flex;
    position: relative;
    z-index: 2;
    gap: 20px;
    align-items: center;
    padding-left: 20px;
    transition: 0.3s ease;
    border-radius: 116px;
}

.btn-border__arr {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--main);
    border-radius: 50%;
}

.btn-border:hover:after {
    width: calc(100% - 6px);
    border-radius: 100px;
}

.btn-border:hover {
    color: var(--wh);
}

.link__simple {
    display: flex;
    align-items: center;
    gap: 4px;
    color: var(--dark);
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 500;
}

.link__simple>svg {
    margin-bottom: 4px;
}

.link__simple svg path {
    transition: 0.3s ease;
}

.link__simple-hover {
    opacity: 0;
    width: 0;
    transition: 0.3s ease;
}

.link__simple:hover .link__simple-hover {
    opacity: 1;
    width: 10px;
}

.link__simple:hover {
    color: var(--main);
}

.link__simple:hover svg path {
    stroke: var(--main)
}

/* Header */
.header {
    border-bottom: solid 1px #eee;
    padding: 19.5px 0;
    position: relative;
    z-index: 1;
    transition: 0.3s ease;
}

.header.fixed {
    padding: 9px 0;
    position: fixed;
    z-index: 999;
    top: 0;
    left: 0;
    right: 0;
    background-color: var(--wh);
    -webkit-animation: slide-in-top 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
    animation: slide-in-top 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
}

@-webkit-keyframes slide-in-top {
    0% {
        -webkit-transform: translateY(-200px);
        transform: translateY(-200px);
        opacity: 0;
    }

    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes slide-in-top {
    0% {
        -webkit-transform: translateY(-200px);
        transform: translateY(-200px);
        opacity: 0;
    }

    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
        opacity: 1;
    }
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    max-width: 1370px;
}

.header__list {
    display: flex;
    align-items: center;
    gap: 20px;
}

.header__list#menu-header-menu-kk {
    gap: 15px;
}

.header__list a {
    font-size: 14px;
    text-transform: uppercase;
    color: var(--dark);
}

.header__list a:hover,
.header__list .current-menu-item:not(.menu-item-type-custom) a {
    color: var(--main);
}

.header__list .current-menu-item:not(.menu-item-type-custom) a {
    position: relative;
}

.header__list .current-menu-item:not(.menu-item-type-custom) a:after {
    content: '';
    display: block;
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 1px;
    background-color: var(--main);
}

.header__r {
    display: flex;
    align-items: center;
    gap: 10px;
}

.header__lang {
    position: relative;
}

span.header__lang-item {
    background-color: var(--wh);
    border-radius: 29px;
    border: solid 1px var(--dark);
    padding: 5px;
    cursor: pointer;
}

.header__lang-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 500;
    color: var(--dark);
    transition: 0.3s ease;
}

a.header__lang-item:not(:first-child) {
    margin-top: 5px;
}

a.header__lang-item:hover {
    color: var(--main);
}

.header__lang-list {
    background-color: var(--wh);
    padding: 8px 5px;
    border: solid 1px var(--dark);
    border-radius: 12px;
    position: absolute;
    top: 43px;
    opacity: 0;
}

.header__lang.opened .header__lang-list {
    -webkit-animation: slide-bottom 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
    animation: slide-bottom 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
}

@-webkit-keyframes slide-bottom {
    0% {
        top: 37px;
        opacity: 0;
    }

    100% {
        top: 43px;
        opacity: 1;
    }
}

@keyframes slide-bottom {
    0% {
        top: 37px;
        opacity: 0;
    }

    100% {
        top: 43px;
        opacity: 1;
    }
}

.header__burger {
    align-items: center;
    justify-content: center;
    cursor: pointer;
    width: 52px;
    height: 52px;
    display: none;
}

@media screen and (max-width: 1280px) {
    .header__logo {
        width: 150px;
    }

    .header__r>.btn {
        padding: 9px 10px;
    }

    .header__list {
        gap: 10px;
    }

    .header__list a {
        text-align: center;
        font-size: 12px;
    }
}

@media screen and (max-width: 992px) {
    .header__nav {
        display: none;
    }

    .header__r {
        display: none;
    }

    .header__burger {
        display: flex;
    }

    .header {
        padding: 15px 0;
    }
}

/* mobile-menu */
.mobile-menu {
    background: #FCFCFD;
    position: fixed;
    top: -250%;
    left: 0;
    right: 0;
    min-height: 100vh;
    z-index: 999;
    transition: 0.4s ease;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.mobile-menu.opened {
    top: 0;
}

.mobile-menu__top {
    display: flex;
    align-items: center;
    padding: 0 0 20px;
    gap: 20px;
    justify-content: space-between;
}

.mobile-menu__top-r {
    display: flex;
    align-items: center;
    gap: 15px;
}

.mobile-menu__nav {
    text-transform: uppercase;
    color: var(--dark);
    margin-top: 15px;
    font-size: 24px;
}

.mobile-menu__nav a {
    color: var(--dark);
}

.mobile-menu__nav li:not(:first-child) {
    margin-top: 10px;
}

.mobile-menu__contacts {
    padding-top: 30px;
    padding-bottom: 30px;
    border-top: solid 1px #E6E8EC;
    border-bottom: solid 1px #E6E8EC;
}

.mobile-menu__contacts span svg,
.mobile-menu__contacts span img {
    width: 22px;
    height: 22px;
}

.mobile-menu__social {
    padding-top: 30px;
}

.mobile-menu .current-menu-item:not(.menu-item-type-custom) a {
    color: var(--main);
}

/* Modal */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    z-index: 999;
    display: none;
}

.modal.active {
    display: block;
}

.modal__wrap {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #F7FFFF;
    padding: 30px;
    max-width: 618px;
    width: 100%;
    z-index: 2;
    -webkit-animation: modal-slide 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
    animation: modal-slide 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
    border-radius: 10px;
}

.modal__overview {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, .2);
    z-index: 1;
}

.modal__close {
    position: absolute;
    top: 30px;
    right: 30px;
    cursor: pointer;
    transition: 0.3s ease;
}

.modal__close:hover {
    transform: scale(1.1);
}

.modal__text {
    margin-top: 62px;
    font-size: 24px;
}

@-webkit-keyframes modal-slide {
    0% {
        top: 30%;
        opacity: 0;
    }

    100% {
        top: 50%;
        opacity: 1;
    }
}

@keyframes modal-slide {
    0% {
        top: 30%;
        opacity: 0;
    }

    100% {
        top: 50%;
        opacity: 1;
    }
}

@media screen and (max-width: 576px) {
    .modal__wrap {
        padding: 20px;
    }
}

/* Footer */
.footer {
    overflow: hidden;
}

.footer__contacts-item {
    color: #000;
    font-weight: 500;
    font-size: 30px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer__contacts-item:not(:first-child) {
    margin-top: 10px;
}

.footer__t,
.footer__m,
.footer__b {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.footer__t {
    padding-top: 30px;
}

.footer__m {
    align-items: flex-end;
    padding-bottom: 30px;
    margin-top: 45px;
}

.footer__b {
    padding-top: 30px;
    padding-bottom: 25px;
    border-top: solid 1px var(--main);
}

.footer__b.footer__b--center {
    justify-content: center;
}

.footer__contacts-item span,
.footer__social-item span {
    width: 44px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: var(--main);
    border: solid 1.5px var(--main);
    transition: 0.3s ease;
}

.footer__contacts-item span:hover,
.footer__social-item span:hover {
    background-color: transparent;
    border-color: var(--dark);
}

.footer__contacts-item span:hover path,
.footer__social-item span:hover path {
    stroke: var(--dark);
}

.footer__social {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer__list {
    display: flex;
    align-items: center;
}

.footer__links {
    display: flex;
    align-items: center;
}

.footer__list a,
.footer__links a {
    color: var(--dark);
    padding-left: 15px;
    display: flex;
    align-items: center;
}

.footer__links a:first-child {
    padding-left: 0;
}

.footer__list a:hover,
.footer__links a:hover {
    color: var(--main);
}

.footer__list a::after {
    content: '';
    display: block;
    background-color: var(--dark);
    width: 1px;
    height: 13px;
    margin-left: 15px;
}

.footer__links a:not(:last-child)::after {
    content: '';
    display: block;
    background-color: var(--dark);
    width: 1px;
    height: 22px;
    margin-left: 15px;
}

.footer .container {
    position: relative;
}

.footer__list li:last-child a::after {
    display: none;
}

.footer__shape1 {
    width: 639px;
    height: 639px;
    left: 143px;
    top: 36px;
    z-index: -1;
    filter: blur(346px);
}

.footer__shape2 {
    width: 639px;
    height: 639px;
    right: -43px;
    top: -100px;
    z-index: -1;
    filter: blur(346px);
}

.footer__shape-img {
    position: absolute;
    width: 463px;
    height: 480px;
    bottom: 0;
    z-index: -1;
    right: 0;
}

.footer__shape-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

@media screen and (max-width: 992px) {
    .footer__t {
        flex-direction: column;
    }
}

@media screen and (max-width: 768px) {
    .footer__t {
        align-items: flex-start;
    }

    .footer__list {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer__list a,
    .footer__links a {
        padding-left: 0;
        font-size: 16px;
    }

    .footer__list a::after {
        display: none;
    }

    .footer__list li:not(:first-child) {
        margin-top: 8px;
    }

    .footer__m {
        flex-direction: column;
        align-items: flex-start;
        gap: 60px;
    }

    .footer__contacts-item {
        font-size: 18px;
    }

    .footer__contacts-item span,
    .footer__social-item span {
        width: 35px;
        height: 35px;
    }

    .footer__social-item span svg,
    .footer__contacts-item span img {
        width: 25px;
        height: 25px;
    }

    .footer__b {
        flex-direction: column;
        gap: 15px;
    }

    .footer__links a:not(:last-child)::after {
        display: none;
    }

    .footer__links {
        flex-direction: column;
        gap: 4px;
    }

    .footer__copy {
        font-size: 14px;
        text-align: center;
    }
}

/* Hero */
.hero {
    padding-top: 120px;
    padding-bottom: 160px;
    position: relative;
}

.hero .container {
    position: relative;
}

.hero__shape1,
.hero__shape2 {
    width: 636px;
    height: 636px;
    position: absolute;
    display: block;
    border-radius: 50%;
    filter: blur(300px);
}

.hero__shape1 {
    background-color: rgba(253, 255, 133, 0.5);
    top: -242px;
    left: 308px;
}

.hero__shape2 {
    background: rgba(1, 201, 210, 0.48);
    left: 692px;
    right: -100px;
    top: -175px;
}

.hero__title {
    max-width: 1200px;
}

.hero__subtitle {
    margin-top: 8px;
    font-size: 20px;
}

.hero__btn {
    margin-top: 30px;
}

.hero__decor {
    position: absolute;
    top: -180px;
    right: -229px;
}

.hero__inner {
    position: relative;
    z-index: 1;
}

@media screen and (max-width: 576px) {
    .hero__title {
        position: relative;
    }

    .hero__title img {
        position: absolute;
        right: 0;
        top: 0;
    }

    .hero__subtitle {
        margin-top: 20px;
        font-size: 16px;
    }

    .hero {
        padding-top: 67px;
        padding-bottom: 89px;
    }
}

@media screen and (max-width: 400px) {
    .hero__title img {
        width: 70px;
    }
}

/* About */
.about {
    background: rgba(247, 255, 255, 1);
    position: relative;
    z-index: 1;
}

.block-name {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-transform: uppercase;
    background-color: rgba(246, 248, 249, 1);
    padding: 16px;
    color: rgba(65, 64, 66, 1);
    font-size: 16px;
    line-height: 1;
    font-weight: 500;
}

.about__title {
    margin-top: 20px;
    font-size: 24px;
    font-weight: 500;
    line-height: 1.2;
}

.about__title span {
    color: var(--main);
}

.about .side-image,
.consul .side-image {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    height: 100%;
    object-fit: cover;
}

.about__inner {
    padding-top: 37px;
    padding-bottom: 37px;
    padding-left: calc(55% - 30px);
}

.about__list {
    margin-top: 20px;
}

.about__list-item {
    padding-bottom: 15px;
    padding-top: 15px;
    border-bottom: 1px solid rgba(238, 238, 238, 1);
    line-height: 1.2;
}

.about__list-item:first-child {
    padding-top: 0;
}

.about__list-item span {
    color: var(--main);
    font-weight: 500;
}

.about__inner img {
    width: calc(50% - 30px);
}

.side-image {
    border-radius: 0 10px 10px 0;
}

.about__shape {
    position: absolute;
    top: 0;
    bottom: 0;
    height: 100%;
    right: 0;
}

.about__shape svg {
    height: 100%;
}

@media screen and (max-width: 992px) {
    .about__title {
        font-size: 20px;
    }
}

@media screen and (max-width: 768px) {

    .about .side-image,
    .consul .side-image {
        position: relative;
        width: 100%;
        height: 100%;
        border-radius: 0 0 10px 10px;
        margin-top: 20px;
    }

    .about__inner {
        padding-left: 0;
        padding-top: 30px;
        padding-bottom: 30px;
    }

    .block-name {
        font-size: 12px;
        padding: 10.5px;
    }

    .about__list-item {
        font-size: 16px;
    }
}

/* Tasks */

.tasks {
    padding-top: 165px;
    padding-bottom: 140px;
}

.tasks .container {
    position: relative;
}

.tile {
    background: #F7FFFF;
    padding: 30px;
    border-radius: 10px;
}

.tile__title {
    padding-bottom: 30px;
    font-weight: 500;
    font-size: 22px;
    border-bottom: solid 1px var(--main);
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.tasks__grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 30px;
    position: relative;
    z-index: 1;
}

.grid-row {
    display: grid;
    gap: 20px;
}

.tasks__grid .row-1 {
    grid-template-columns: 59fr 42fr;
}

.tasks__grid .row-2 {
    grid-template-columns: 42fr 59fr;
}

.title__wrap {
    position: relative;
    display: inline-block;
    padding-right: 15px;
}

.title__star {
    position: absolute;
    right: -44px;
    top: -22px;
    display: flex;
    z-index: -1;
}

.title__star svg {
    width: 50px;
    height: 50px;
}

.tasks__shape2 {
    width: 430px;
    height: 430px;
    left: 395px;
    top: -105px;
}

.tasks__shape1 {
    left: 0;
    top: 212px;
    width: 430px;
    height: 430px;
}

.tasks__bg {
    position: absolute;
    z-index: -1;
    right: -334px;
    bottom: -200px;
}

@media screen and (max-width: 576px) {

    .tasks {
        padding-bottom: 40px;
        padding-top: 100px;
    }

    .tasks__grid .row-1,
    .tasks__grid .row-2 {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .tile {
        padding: 20px;
    }

    .tasks__bg {
        right: -22px;
        bottom: 100px;
    }

    .tasks__bg svg {
        width: 345px;
        height: 345px;
    }

    .tile__title {
        font-size: 16px;
        flex-direction: column;
        padding-bottom: 20px;
    }

    .title__star {
        right: -5px;
        top: -27px;
    }

    .tasks__shape2,
    .tasks__shape1 {
        width: 180px;
        height: 232px;
    }

    .tasks__shape1 {
        left: -72px;
        top: -66px;
    }

    .tasks__shape2 {
        left: 72px;
        top: 60px;
    }

    .title__wrap {
        padding-right: 30px;
    }
}

/* Consul */
.consul {
    position: relative;
}

.consul__list {
    margin-top: 15px;
}

.consul__item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 17.5px 0;
    border-top: solid 1px #eee;
}

.consul__item:last-child {
    border-bottom: solid 1px #eee;
}

.consul__text {
    margin-top: 16px;
}

.consul__title {
    margin-top: 20px;
    font-size: 60px;
    font-weight: 500;
    line-height: 1.2;
}

.consul__inner img {
    width: calc(50% - 30px);
}

.consul__inner {
    padding-top: 37px;
    padding-left: calc(55% - 30px);
}

.consul__btn {
    margin-top: 97px;
}

.consul__item svg {
    flex: none;
}

@media screen and (max-width: 768px) {
    .consul .side-image {
        position: relative;
        width: calc(100% + 30px);
        margin-left: -15px;
    }

    .consul__inner {
        padding-left: 0;
    }
}

@media screen and (max-width: 576px) {
    .consul__title {
        font-size: 45px;
    }

    .consul__text {
        font-size: 16px;
    }

    .consul__btn {
        margin-top: 30px;
    }

    .consul__item {
        font-size: 16px;
    }

    .consul__item {
        flex-direction: column-reverse;
        align-items: flex-start;
        gap: 12px;
    }
}

/* services */
.services {
    padding-bottom: 70px;
    padding-top: 180px;
}

.services .container {
    position: relative;
}

.services__grid {
    position: relative;
    z-index: 1;
    margin-top: 30px;
}

.services__grid--1 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.services__grid--2 {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 12px;
    margin-top: 20px;
}

.services .tile__title {
    align-items: center;
    justify-content: space-between;
}

.tile__list {
    margin-top: 30px;
}

.tile__list-item {
    display: flex;
    gap: 10px;
    align-items: flex-start;
}

.tile__list-item:not(:first-child) {
    padding-top: 10px;
}

.tile__list-item svg {
    flex: none;
    margin-top: 5px;
}

@media screen and (max-width: 786px) {

    .services__grid--1,
    .services__grid--2 {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .services__grid--2 {
        margin-top: 15px;
    }

    .tile__list-item {
        font-size: 16px;
    }

    .services {
        padding-top: 100px;
    }

    .services .tile__title {
        flex-direction: column-reverse;
        align-items: flex-start;
    }
}

/* News */
.news {
    padding-bottom: 70px;
}

.news__item {
    background: #F7FFFF;
    border-radius: 10px;
    overflow: hidden;
}

.news__item-inner {
    padding: 20px 30px 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 20px;
    height: 100%;
}

.news__item:first-child .news__item-inner {
    height: calc(100% - 340px);
}

.news__item-b {
    padding-top: 20px;
    border-top: solid 1px var(--main);
}

.news__item-img {
    overflow: hidden;
}

.news__item-img img {
    transition: 0.4s ease;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news__item:hover img {
    transform: scale(1.05);
}

.news__item-title {
    margin-top: 15px;
    font-size: 24px;
    line-height: 1.2;
}

.news__item-date {
    display: flex;
    align-items: center;
    gap: 4px;
    color: var(--main);
    font-size: 14px;
}

.news__item:first-child .news__item-img {
    width: 100%;
    height: 340px;
    object-fit: cover;
    flex: none;
    border-radius: 10px;
}

.news__item:not(:first-child) .news__item-img {
    height: 277px;
    width: 300px;
    object-fit: cover;
    flex: none;
    border-radius: 10px;
}

.news__grid {
    margin-top: 30px;
}

.news__t {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

@media screen and (min-width: 992px) {
    .news__grid .swiper-wrapper {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(2, 1fr);
        grid-column-gap: 0px;
        grid-row-gap: 0px;
        gap: 20px;
    }

    .news__grid .news__item:nth-child(1) {
        grid-area: 1 / 1 / 3 / 2;
    }

    .news__grid .news__item:nth-child(2) {
        grid-area: 1 / 2 / 2 / 3;
    }

    .news__grid .news__item:nth-child(3) {
        grid-area: 2 / 2 / 3 / 3;
    }

    .news__item:not(:first-child) {
        display: flex;
        align-items: center;
    }

    .news__item:not(:first-child) .news__item-title {
        font-size: 22px;
    }
}

@media screen and (max-width: 768px) {
    .news__item:not(:first-child) .news__item-img {
        width: 100%;
    }

    .news__item:first-child .news__item-img {
        height: 277px;
    }
}

@media screen and (max-width: 576px) {
    .news {
        padding-bottom: 40px;
    }

    .news__item-inner {
        padding: 20px;
    }

    .news__item-title {
        font-size: 16px;
        margin-top: 15px;
    }

    .news__item:first-child .news__item-img,
    .news__item:not(:first-child) .news__item-img {
        height: 225px;
    }

    .news__grid.swiper {
        width: 244px;
        margin-left: 0;
        overflow: visible;
    }

    .news__grid.swiper.news__grid--single {
        width: 100%;
    }

    .news .swiper-horizontal>.swiper-pagination-bullets,
    .swiper-pagination-bullets.swiper-pagination-horizontal {
        position: relative;
        width: 100vw;
        margin-left: -15px;
        top: 20px;
    }
}

/* question */
.question {
    padding-top: 70px;
}

.question__t {
    display: flex;
    align-items: center;
}

.question .title__wrap {
    max-width: 1000px;
    width: 100%;
    text-align: center;
    margin: 0 auto;
}

.question .title {
    font-size: 72px;
}

.question__wrap {
    display: flex;
    gap: 22px;
}

.question__map,
.question__form-wrap {
    max-width: 620px;
    width: 100%;
}

.question__wrap {
    margin-top: 30px;
}

.question__form-wrap {
    background: #F7FFFF;
    padding: 30px;
}

.question__form-text {
    font-size: 24px;
}

.question__form {
    margin-top: 30px;
}

.theme-form input,
.theme-form textarea {
    width: 100%;
    margin-top: 15px;
    padding: 14px 10px;
    background-color: transparent;
    font-size: 16px;
    border-radius: 10px;
    border: solid 1px #666;
    box-shadow: none;
}

.question__form textarea {
    height: 108px;
}

.theme-form input[type="submit"] {
    color: var(--wh);
    padding: 15.5px 24px;
    background-color: var(--main);
    width: auto;
    border-radius: 40px;
    border: solid 1px var(--main);
    transition: 0.3s ease;
    cursor: pointer;
}

.theme-form input[type="submit"]:hover {
    background-color: var(--wh);
    color: var(--dark);
    border-color: var(--dark);
}

.theme-form input[type="submit"]:focus {
    background-color: var(--main-dark);
    border-color: var(--main-dark);
    color: var(--wh);
}

.theme-form input:focus,
.theme-form textarea:focus {
    border-color: var(--dark);
}

.wpcf7-not-valid-tip {
    margin-top: 8px;
    color: #E30000;
    font-size: 10px;
    font-weight: 500;
}

.theme-form input.wpcf7-not-valid {
    border-color: #FF0000;
    background-color: #FFF2F4;
    color: #FF0000;
}

.question__map {
    border-radius: 10px;
    overflow: hidden;
}

.question__map iframe {
    width: 100%;
}

@media screen and (max-width: 992px) {
    .question .title {
        font-size: 48px;
    }

    .question .title__wrap {
        max-width: 600px;
    }
}

@media screen and (max-width: 768px) {
    .question__wrap {
        flex-direction: column-reverse;
        gap: 30px;
    }

    .question .title__wrap {
        padding-right: 0;
    }

    .question__form-wrap {
        background: transparent;
    }

    .question__map,
    .question__form-wrap {
        max-width: 100%;
    }
}

@media screen and (max-width: 576px) {
    .question {
        padding-top: 40px;
    }

    .question__form-wrap {
        padding: 20px;
    }

    .question .title {
        text-align: left;
        font-size: 40px;
    }

    .theme-form input[type="submit"] {
        width: 100%;
    }
}

/* Breadcrums */
.yoast-breadcrumbs {
    border-bottom: solid 1px #eee;
    text-transform: uppercase;

}

.yoast-breadcrumbs>span {
    width: 100%;
    margin: 0 auto;
    max-width: 1290px;
    display: flex;
    gap: 10px;
    align-items: center;
    padding: 21px 15px;
    font-size: 14px;
}

.yoast-breadcrumbs a {
    color: var(--dark);
}

.yoast-breadcrumbs a:hover {
    color: var(--main);
}

span.breadcrumb_last {
    color: var(--main);
}

.yoast-breadcrumb-separator {
    padding-bottom: 3px;
}

@media screen and (max-width: 576px) {
    .yoast-breadcrumbs>span {
        font-size: 12px;
        padding: 11px 15px;
    }

    .yoast-breadcrumbs {
        border: none;
    }
}

/* big title */
.big-title {
    padding-top: 60px;
    padding-bottom: 60px;
}

.big-title .title {
    margin: 0 auto;
    max-width: 850px;
}

.big-title .title svg {
    margin-right: 10px;
    margin-bottom: 15px;
}

@media screen and (max-width: 576px) {
    .big-title .title {
        position: relative;
    }

    .big-title .title svg {
        position: absolute;
        width: 40px;
        height: 40px;
        top: -16px;
        left: 230px;

    }
}

/* bio */
.bio .container {
    display: flex;
    align-items: center;
    gap: 60px;
    background: #F7FFFF;
    position: relative;
}

.bio__shape {
    position: absolute;
    right: 0;
    top: 0;
}

.bio__inner {
    padding-right: 127px;
}

.bio__title {
    margin-top: 20px;
    font-weight: 500;
    font-size: 30px;
}

.bio__text {
    margin-top: 20px;
}

img.bio__img {
    max-width: 620px;
    height: 710px;
    width: 100%;
    object-fit: cover;
    border-radius: 10px;
}

@media screen and (max-width: 1200px) {
    .bio__inner {
        padding-right: 0;
    }
}

@media screen and (max-width: 992px) {
    .bio .container {
        gap: 30px;
    }

    .bio__img {
        max-width: 360px;
    }
}

@media screen and (max-width: 768px) {
    .bio__img {
        max-width: 100%;
    }

    .bio .container {
        flex-direction: column;
    }
}

@media screen and (max-width: 576px) {
    .bio__img {
        width: calc(100% + 30px);
        max-width: calc(100% + 30px);
        height: 412px;
    }

    .bio__text {
        font-size: 16px;
        margin-top: 15px;
    }

    .bio__title {
        font-size: 24px;
    }

    .bio__shape {
        bottom: 0;
        top: auto;
        left: 0;
        transform: rotate(90deg);
        width: 100px;
    }
}

/* career */
.career {
    padding-bottom: 70px;
    padding-top: 80px;
}

.career .container {
    position: relative;
}

.career__item {
    padding: 30px;
    border-top: solid 1px var(--main);
    display: flex;
    gap: 30px;
}

.career__item:last-child {
    border-bottom: solid 1px var(--main);
}

.career__text {
    line-height: 1.3;
}

.career__text strong {
    font-size: 20px;
}

.career__item-title {
    text-transform: uppercase;
    max-width: 503px;
    width: 100%;
    font-size: 30px;
    font-weight: 500;
    flex: none;
}

.career__shape {
    width: 430px;
    height: 430px;
    left: 0;
    top: 146px;
    filter: blur(257px);
}

@media screen and (max-width: 992px) {
    .career__item-title {
        max-width: 340px;
    }
}

@media screen and (max-width: 768px) {
    .career__item {
        flex-direction: column;
        gap: 15px;
    }

    .career__item-title {
        max-width: 100%;
    }
}

@media screen and (max-width: 576px) {
    .career__item-title {
        font-size: 20px;
    }

    .career__item {
        padding: 20px;
    }

    .career__text,
    .career__text strong {
        font-size: 16px;
    }
}

/* gallery */
.gallery {
    padding-top: 70px;
    padding-bottom: 70px;
}

.gallery__top {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.gallery__top-r {
    display: flex;
    align-items: center;
    gap: 10px;
}

.gallery .title {
    margin-top: 20px;
}

.gallery__arr {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #F6F8F9;
    border-radius: 150px;
    cursor: pointer;
    transition: 0.3s ease;
}

.gallery__arr:hover {
    background-color: var(--main);
}

.gallery__arr:hover path {
    stroke: var(--wh);
}

.gallery__swiper {
    margin-top: 30px;
    height: 440px;
}

.gallery__slide img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.swiper-pagination-bullets.swiper-pagination-horizontal.gallery__pagination {
    width: 100vw;
    bottom: -35px;
}

@media screen and (max-width: 1540px) {
    .gallery__swiper.swiper {
        max-width: 1260px;
        margin-left: 0;
        overflow: visible;
    }
}

@media screen and (max-width: 1200px) {
    .gallery__swiper.swiper {
        height: 340px;
        max-width: 992px;
    }
}

@media screen and (max-width: 768px) {
    .gallery__swiper.swiper {
        height: 194px;
        max-width: 272px;
    }

    .gallery__arr {
        width: 42px;
        height: 42px;
    }

    .gallery__arr svg {
        width: 26px;
        height: 26px;
    }

    .swiper-pagination-bullets.swiper-pagination-horizontal.gallery__pagination {
        width: 100vw;
        bottom: -15px;
    }
}

/* image-text */
.image-text {
    padding-top: 70px;
    padding-bottom: 70px;
}

.image-text__title {
    font-size: 30px;
    font-weight: 500;
}

.image-text__item {
    background: #F7FFFF;
    position: relative;
}

.image-text__item:not(:first-child) {
    margin-top: 30px;
}

.image-text__item img {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    height: 100%;
    width: 45%;
    border-radius: 0 10px 10px 0;
    object-fit: cover;
}

.image-text__item--reverse img {
    right: 0;
    left: auto;
    border-radius: 10px 0 0 10px;
}

.image-text__inner {
    padding-top: 58.5px;
    padding-bottom: 58.5px;
    padding-left: 50%;
    position: relative;
}

.image-text__inner svg {
    position: absolute;
    top: 0;
    right: -90px;
    height: 100%;
}

.image-text__item--reverse .image-text__inner svg {
    right: auto;
    left: 500px;
}

.image-text__item--reverse .image-text__inner {
    padding-right: 50%;
    padding-left: 0;
}

.image-text__list {
    margin-top: 20px;
}

.image-text__list-item {
    padding-bottom: 15px;
    border-bottom: solid 1px #eee;
}

.image-text__list-item:not(:first-child) {
    padding-top: 15px;
}

@media screen and (max-width: 768px) {
    .image-text__item .container {
        display: flex;
        flex-direction: column-reverse;
    }

    .image-text__item--reverse .image-text__inner,
    .image-text__inner {
        padding-left: 0;
        padding-right: 0;
    }

    .image-text__item img,
    .image-text__item--reverse img {
        position: relative;
        width: 100%;
        border-radius: 0 0 10px 10px;
    }
}

@media screen and (max-width: 576px) {

    .image-text__item img,
    .image-text__item--reverse img {
        height: 511px;
        width: calc(100% + 30px);
        left: -15px;
    }

    .image-text__title {
        font-size: 20px;
    }

    .image-text__list-item {
        font-size: 16px;
    }

    .image-text__item--reverse .image-text__inner,
    .image-text__inner {
        padding-bottom: 30px;
    }

    .image-text__inner svg,
    .image-text__item--reverse .image-text__inner svg {
        bottom: -30%;
        top: auto;
        transform: rotate(90deg);
        left: 50%;
        right: auto;
    }
}

/* Tiles */
.tiles {
    padding-top: 70px;
    padding-bottom: 70px;
}

.tiles__list {
    margin-top: 32px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
}

.tile__text {
    margin-top: 15px;
}

@media screen and (max-width: 992px) {
    .tiles__list {
        grid-template-columns: 1fr 1fr;
    }
}

@media screen and (max-width: 576px) {
    .tiles__list {
        grid-template-columns: 1fr;
        margin-top: 20px;
    }

    .tile__text {
        font-size: 16px;
    }

}

/* blog */
.blog:not(body) {
    padding-top: 30px;
    padding-bottom: 70px;
}

.blog:not(body) .title {
    font-size: 45px;
}

.blog__grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
    margin-top: 30px;
}

.blog__item {
    background: #F7FFFF;
    border-radius: 10px;
}

.blog__item-inner {
    padding: 20px 30px 30px;
}

.blog__item-date {
    display: flex;
    align-items: center;
    gap: 4px;
    color: var(--main);
}

.blog__item-title {
    margin-top: 15px;
    font-weight: 500;
    font-size: 20px;
    padding-bottom: 20px;
    border-bottom: solid 1px var(--main);
}

.blog__item .link__simple {
    margin-top: 20px;
}

.blog__item img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    border-radius: 10px;
}

.pagination {
    margin-top: 30px;
    text-align: center;
    border-top: 1px solid #eee;
    padding-top: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.pagination span,
.pagination a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    color: #636666;

}

.pagination span {
    background: var(--main);
    color: var(--wh);
}

.blog__btn-wrapper {
    display: flex;
    justify-content: center;
    margin-top: 60px;
}

@media screen and (max-width: 992px) {
    .blog__grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media screen and (max-width: 576px) {
    .blog__grid {
        grid-template-columns: 1fr;
    }

    .blog:not(body) .title {
        font-size: 30px;
    }

    .blog__item-title {
        font-size: 16px;
    }

    .blog__item-inner {
        padding: 20px;
    }

    .blog__item-date {
        font-size: 14px;
    }
}

/* single */
.single-p {
    padding-bottom: 70px;
    padding-top: 50px;
}

.single-p .single-title {
    font-size: 45px;
    font-weight: 500;
    text-transform: none;
    max-width: 1200px;
}

.single-desc {
    margin-top: 15px;
}

.single__thumbnail {
    margin-top: 30px;
    width: 100%;
    height: 567px;
    border-radius: 10px;
    object-fit: cover;
    margin-bottom: 60px;
}

.wp-block-gallery {
    margin-top: 60px;
    margin-bottom: 60px;
}

.wp-block-gallery img {
    border-radius: 10px;
}

.single__content p {
    margin-top: 15px;
}

.single__content h1,
.single__content h2,
.single__content h3,
.single__content h4,
.single__content h5,
.single__content h6 {
    font-weight: 500;
}

.single__content h3 {
    font-size: 24px;
}

.wp-block-list {
    margin-top: 30px;
    padding-left: 20px;
    list-style: disc;
}

.wp-block-list li:not(:first-child) {
    margin-top: 15px;
}

.single__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding-top: 45px;
}

.single__share {
    display: flex;
    align-items: center;
    gap: 15px;
}

.single__share-text {
    font-size: 20px;
    font-weight: 500;
}

.single__date {
    color: var(--main);
}

.single__share-item {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: var(--main);
}

.single__share-list {
    display: flex;
    align-items: center;
    gap: 10px;
}

.single__share-line {
    position: absolute;
    width: 100vw;
    background-color: #eee;
    height: 1px;
    left: 0;
    margin-bottom: 75px;
}

.single__bottom {
    padding-top: 22px;
    padding-bottom: 22px;
    border-top: solid 1px #eee;
    border-bottom: solid 1px #eee;
    margin-top: 60px;
}

.single__bottom .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.single__bottom-text {
    font-size: 24px;
    font-weight: 500;
}

.single__bottom-text span {
    color: var(--main);
    font-weight: 700;
}

.single+.news {
    padding-top: 70px;
}

@media screen and (max-width: 576px) {
    .single__content h3 {
        font-size: 20px;
    }

    .wp-block-gallery.has-nested-images figure.wp-block-image:not(#individual-image) {
        width: 100%;
    }

    .single__content p {
        margin-top: 20px;
    }

    .single__thumbnail {
        height: 244px;
    }

    .single__top {
        flex-direction: column;
        align-items: flex-start;
    }

    .single-p .single-title {
        font-size: 30px;
    }

    .single__date {
        font-size: 16px;
    }

    .single__share-text {
        font-size: 18px;
    }

    .single__share-item {
        width: 35px;
        height: 35px;
    }

    .single__share-list {
        gap: 6px;
    }

    .single__share {
        width: 100%;
        justify-content: space-between;
    }

    .single__share svg {
        width: 25px;
        height: 25px;
    }

    .single__share-line {
        margin-bottom: 55px;
    }

    .yoast-breadcrumbs>span {
        flex-wrap: wrap;
    }

    .single__bottom {
        padding-top: 20px;
        padding-bottom: 20px;
    }

    .single__bottom .container {
        gap: 20px;
        flex-direction: column;
        align-items: flex-start;
    }

    .single__bottom-text {
        font-size: 20px;
    }

    .single+.news .link__simple {
        display: none;
    }
}

/* privacy */
.privacy {
    padding-top: 70px;
    padding-bottom: 70px;
}

.privacy h1 {
    font-size: 54px;
}

.privacy__content {
    margin-top: 30px;
}

.privacy__content p {
    margin-top: 15px;
}

@media screen and (max-width: 768px) {
    .privacy h1 {
        font-size: 32px;
    }
}

/* notfound */
.notfound .container {
    height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.notfound__text {
    text-align: center;
    font-size: 100px;
    color: var(--main);
    font-weight: 700;
}

@media screen and (max-width: 768px) {
    .notfound__text {
        font-size: 56px;
    }
}