:root {
    --color-primary: #324A6D;
    --color-black: #2F2F2F;
    --color-decorative: #3975EC;
    --color-bg: #fff;
    --color-bg-dark: #3A3A3A;
    --color-block: #F2F2F2;
    --color-block-dark: #5E5E5E;
    --color-grey: #A4A4A4;
    --color-grey-footer: #9f9f9f;
    --color-font: #363635;
    --font-primary: 'Montserrat';
}

body {
    font-family: var(--font-primary), sans-serif;
    color: var(--color-primary);
    background-color: var(--color-bg);
    font-variant-numeric: lining-nums proportional-nums;
}

.container {
    width: 100%;
    max-width: 1240px;
    padding: 0 20px;
    margin: 0 auto;
}

section {
    margin: 0 0 120px;
}
h2 {
    color: #1C244B;
    text-align: center;
    font-size: 40px;
    font-weight: 700;
    line-height: 195%;
}
.nowrap {
    white-space: nowrap;
}

.hidden-desktop {
    display: none;
}

.btn-blue__wrap {
    display: flex;
    justify-content: center;
    align-items: center;
}
.btn-blue {
    display: inline-block;
    background-color: #3975EC;
    color: #fff;
    text-align: center;
    font-weight: 700;
    transition: all .3s;
    padding: 14px 20px;
    border-radius: 100px;
}
.btn-blue:hover {
    color: #d3b574;
    background-color: #16163f;
}

.table-wrapper {
    overflow-x: auto;
}
table {
    margin: 30px 0;
    width: 100%;
}
table, td, th {
    border: 1px solid rgba(0,0,0,.1);
}
td, th {
    padding: 8px;
}
td {
    border-width: 0 1px 1px 0;
}

.header {
    position: sticky;
    z-index: 100;
    top: 0;
    width: 100%;
    background: #FFF;
    box-shadow: 0px 4px 13.6px 0px rgba(0, 0, 0, 0.15);
}
.upper-header {
    padding: 12px 0;
    background-color: #16163F;
}
.upper-header-inner {
    display: flex;
    gap: 30px;
    color: #fff;
}
.upper-header-inner a {
    display: flex;
    align-items: center;
}
.upper-header-inner .email svg {
    width: 16px;
    height: 12px;
    margin: 0 12px 0 0;
}
.upper-header-inner .address svg {
    width: 12px;
    height: 16px;
    margin: 0 12px 0 0;
}
.header-inner {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 0 20px;
}
.logo,
.logo-white {
    width: 175px;
    height: 14px;
}
ul.menu {
    display: flex;
    flex-wrap: nowrap;
    gap: 30px;
}
ul.menu li {
    position: relative;
    font-size: inherit;
    line-height: 100%;
    margin: 0;
    z-index: 100;
}
ul.menu > li > a {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    position: relative;
    color: #000;
    font-size: 14px;
    white-space: nowrap;
    transition: 0.3s;
}
ul.menu > li:hover > a {
    color: #d3b574;
    transition: 0.3s;
}
ul.menu > li.menu-item-has-children > a {
    justify-content: center;
    padding: 0 15px 0 0;
}
ul.menu li.menu-item-has-children .icon {
    width: 8px;
    height: 5px;
    transition: 0.3s;
    box-sizing: content-box;
}
ul.menu li.menu-item-has-children .icon svg {
    fill: #000;
}
/* ul.menu li.menu-item-has-children:hover > a {
} */
li.menu-item-has-children:hover > span .icon {
    fill: #d3b574;
    transform: rotate(180deg);
}
ul.menu > li .sub-menu__wrapper {
    visibility: hidden;
    opacity: 0;
    position: absolute;
    top: 86%;
    left: 0;
    width: 100%;
    min-width: 190px;
    transform: translateY(28px);
    z-index: 10;
    background-color: #fff;
    transition: all 0.2s ease-in-out 0s, visibility 0s linear 0.44s, z-index 0s linear 0.01s;
    pointer-events: none;
}
.sub-menu__wrapper .sub-menu {
    padding: 0 10px 10px;
}
.sub-menu::before {
    content: '';
    display: block;
    position: absolute;
    left: 0;
    top: -30px;
    width: 100%;
    height: 30px;
    z-index: 80;
}
.header-menu-item {
    display: flex;
    align-items: center;
    gap: 6px;
}
.header-menu-item > a {
    padding: 10px 0;
    font-size: 14px;
    transition: 0.3s;
}
.header-menu-item a:hover {
    color: #d3b574;
    transition: 0.3s;
}
.header-menu-item.active .sub-menu__wrapper {
    visibility: visible;
    opacity: 1;
    transform: translateY(28px);
    transition-delay: 0s, 0s, 0.4s;
    pointer-events: all;
}
.sub-menu__wrapper .sub-menu li {
    transition: .2s;
}
.sub-menu__wrapper .sub-menu li:not(:last-of-type) {
    margin: 0 0 5px;
}
.sub-menu__wrapper .sub-menu a {
    display: block;
    width: 100%;
}
.sub-menu__wrapper .sub-menu li:hover > a {
    color: #d3b574;
    transition: all 0.2s ease-in-out;
}
.header-contacts {
    display: flex;
    gap: 16px;
    align-items: center;
}
.header-phone {
    font-weight: 900;
    color: #000;
}
.header-phone:hover {
    color: #16163F;
    animation: wiggle 0.5s ease;
}
.header-callback {
    font-size: 15px;
    padding: 12px 16px;
}

/* Frontpage */
.hero__section {
    padding: 120px 0 150px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    background-image: url(./images/hero@2x-min.jpg);
    margin: 0 0 140px;
}
.hero-subtitle {
    height: 24px;
    margin: 0 0 14px;
}
.hero-section__inner {
    text-align: center;
}
.hero-section__inner h1 {
    color: #16163F;
    font-size: 50px;
    font-weight: 700;
    line-height: 120%;
    margin: 0 auto 70px;
    max-width: 990px;
}
.hero-section__description {
    color: #000;
    font-size: 22px;
    font-weight: 300;
    line-height: 33px;
    margin: 0 0 55px;
}
.hero-form__wrap {
    display: flex;
    gap: 38px;
    justify-content: center;
    align-items: center;
    margin: 50px 0 0;
}
.hero-form {
    display: flex;
    padding: 3px;
    border: 1px solid #DCDCDC;
    border-radius: 50px;
    background-color: #fff;
    width: fit-content;
    margin: 0 auto;
}
.hero-form input {
    padding: 13px 16px;
    border-radius: 50px;
}
.hero-form input[name="your-name"] {
    max-width: 155px;
}
.hero-form input[name="your-phone"] {
    max-width: 258px;
}
.hero-form span[data-name="your-phone"] {
    position: relative;
}
.hero-form span[data-name="your-phone"]::before {
    content: '';
    position: absolute;
    z-index: 5;
    left: 0;
    top: -14px;
    display: block;
    width: 1px;
    height: 51px;
    background-color: #DCDCDC;
}
.hero-form .btn-blue {
    font-size: 14px;
    font-weight: 600;
}
.wpcf7-response-output {
    display: none;
}
.wpcf7-not-valid {
    position: relative;
}
span.wpcf7-not-valid-tip {
    position: absolute;
    top: 0;
    bottom: 0;
    left: unset;
    display: flex;
    align-items: center;
    right: 15px;
    font-size: 24px;
    font-weight: 600;
}
.wpcf7 form div.wpcf7-response-output {
    font-size: 13px;
    margin: 0 0 -27px;
    padding: 10px 0 0;
    color: #6CD817;
    border: none;
}
.wpcf7 form.invalid .wpcf7-response-output {
    color: #CA1A1A;
}
.submitting button {
    color: transparent;
    pointer-events: none;
} 
.submitting button:hover {
    transform: none;
}
.submitting button:before {
    content: '';
    position: absolute;
    top: 41%;
    left: 0;
    right: 0;
    display: block;
    width: 45px;
    height: 12px;
    background: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4KPHN2ZyB2aWV3Qm94PSIwIDQzLjkxOCA1Mi4wOTkgMTIuMTY0IiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciPgogIDxjaXJjbGUgY3g9IjYiIGN5PSI1MCIgcj0iNiIgZmlsbD0iI2NjYyI+CiAgICA8YW5pbWF0ZSBhdHRyaWJ1dGVOYW1lPSJvcGFjaXR5IiBiZWdpbj0iLjEiIGR1cj0iMXMiIHJlcGVhdENvdW50PSJpbmRlZmluaXRlIiB2YWx1ZXM9IjA7MTswIi8+CiAgPC9jaXJjbGU+CiAgPGNpcmNsZSBjeD0iMjYiIGN5PSI1MCIgcj0iNiIgZmlsbD0iI2NjYyI+CiAgICA8YW5pbWF0ZSBhdHRyaWJ1dGVOYW1lPSJvcGFjaXR5IiBiZWdpbj0iLjIiIGR1cj0iMXMiIHJlcGVhdENvdW50PSJpbmRlZmluaXRlIiB2YWx1ZXM9IjA7MTswIi8+CiAgPC9jaXJjbGU+CiAgPGNpcmNsZSBjeD0iNDYiIGN5PSI1MCIgcj0iNiIgZmlsbD0iI2NjYyI+CiAgICA8YW5pbWF0ZSBhdHRyaWJ1dGVOYW1lPSJvcGFjaXR5IiBiZWdpbj0iLjMiIGR1cj0iMXMiIHJlcGVhdENvdW50PSJpbmRlZmluaXRlIiB2YWx1ZXM9IjA7MTswIi8+CiAgPC9jaXJjbGU+Cjwvc3ZnPg==') no-repeat;
    background-size: 100%;
    margin: 0 auto;
    z-index: 5;
} 
.form__control .wpcf7-spinner {
    display: none;
}

.success__modal {
    padding: 50px 30px 20px;
    max-width: 600px;
    min-height: 338px;
    text-align: center;
    border-radius: 30px;
}
.success__modal .fancybox-close-small {
    top: 8px;
    right: 8px;
}
.success__modal-wrap {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
    max-width: 427px;
    margin: 0 auto 40px;
}
.success__modal-title {
    color: var(--color-decorative);
    font-size: 35px;
    font-weight: 700;
    line-height: 130%;
    text-shadow: 0px 4px 12px rgba(13, 10, 44, 0.06);
}
.success__modal-text {
    font-size: 20px;
    color: var(--color-primary);
    line-height: 130%;
}

/**
* Extracted from: SweetAlert
* Modified by: Istiak Tridip
*/
.success-checkmark {
    width: 80px;
    height: 115px;
    margin: 0 auto;
}
.success-checkmark .check-icon {
    width: 80px;
    height: 80px;
    position: relative;
    border-radius: 50%;
    box-sizing: content-box;
    border: 4px solid var(--color-decorative);
}
.success-checkmark .check-icon::before {
    top: 3px;
    left: -2px;
    width: 30px;
    transform-origin: 100% 50%;
    border-radius: 100px 0 0 100px;
}
.success-checkmark .check-icon::after {
    top: 0;
    left: 30px;
    width: 60px;
    transform-origin: 0 50%;
    border-radius: 0 100px 100px 0;
    animation: rotate-circle 4.25s ease-in;
}
.success-checkmark .check-icon::before, .success-checkmark .check-icon::after {
    content: "";
    height: 100px;
    position: absolute;
    background: #ffffff;
    transform: rotate(-45deg);
}
.success-checkmark .check-icon .icon-line {
    height: 5px;
    background-color: var(--color-decorative);
    display: block;
    border-radius: 2px;
    position: absolute;
    z-index: 10;
}
.success-checkmark .check-icon .icon-line.line-tip {
    top: 46px;
    left: 14px;
    width: 25px;
    transform: rotate(45deg);
    animation: icon-line-tip 0.75s;
}
.success-checkmark .check-icon .icon-line.line-long {
    top: 38px;
    right: 8px;
    width: 47px;
    transform: rotate(-45deg);
    animation: icon-line-long 0.75s;
}
.success-checkmark .check-icon .icon-circle {
    top: -4px;
    left: -4px;
    z-index: 10;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    position: absolute;
    box-sizing: content-box;
    border: 4px solid var(--color-decorative);
    opacity: .8;
}
.success-checkmark .check-icon .icon-fix {
    top: 8px;
    width: 5px;
    left: 26px;
    z-index: 1;
    height: 85px;
    position: absolute;
    transform: rotate(-45deg);
    background-color: #ffffff;
}
/**/

.hero-socials {
    display: none;
    gap: 10px;
    align-items: center;
}
.hero-socials .icon {
    width: 48px;
    height: 48px;
}
.hero-socials a {
    display: flex;
    width: 100%;
    transition: all .3s;
}
.hero-socials a:hover {
    opacity: .8;
    transform: scale(1.1);
}

.frontpage-about-us__section {
    display: grid;
    align-items: center;
    grid-template-columns: 1fr 1fr;
}
.frontpage-about-us__text {
    max-width: 478px;
}
.frontpage-about-us__title {
    color: #16163F;
    font-size: 40px;
    font-weight: 700;
    line-height: 120%;
    margin: 0 0 30px;
}
.frontpage-about-us__descr {
    color: #000;
    font-size: 18px;
    font-weight: 300;
    line-height: 140%;
}

.frontpage-digits__section {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 45px;
}
.frontpage-digits__title {
    color: #1C244B;
    font-size: 69px;
    font-weight: 600;
    line-height: 100%;
    margin: 0 0 20px;
}
.frontpage-digits__descr {
    color: #324A6D;
    font-size: 16px;
    font-weight: 300;
    line-height: 150%;
}

.why-we__section {
    text-align: center;
}
.why-we__section .subtitle {
    color: #222;
    line-height: 110%;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin: 0 0 10px;
}
.why-we__section h2 {
    margin: 0 0 40px;
}
.why-we__grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 117px;
}
.why-we__grid-item picture,
.our-services__grid-item picture {
    width: fit-content;
    display: block;
    margin: 0 auto 7px;
}
.why-we__grid-item__title {
    color: #212121;
    font-size: 22px;
    font-weight: 700;
    line-height: 152.727%;
    margin: 0 0 10px;
}
.why-we__grid-item__descr {
    color: #212121;
    line-height: 150%;
}

.our-services__section h2 {
    margin: 0 0 10px;
}
.section-description {
    color: #324A6D;
    text-align: center;
    font-size: 20px;
    font-weight: 300;
    line-height: 140%;
    margin: 0 0 55px;
}
.our-services__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin: 0 0 40px;
}
.our-services__grid-item picture {
    min-height: 160px;
}
.our-services__grid-item__title {
    color: #1C244B;
    text-align: center;
    font-size: 20px;
    font-weight: 700;
    line-height: 132%;
    margin: 0 0 10px;
}
.our-services__grid-item__descr {
    color: #324A6D;
    text-align: center;
    font-size: 16px;
    font-weight: 300;
    line-height: 150%;
}
.our-services__section .btn-blue {
    min-width: 220px;
    padding: 16px 20px;
}

.free-consultation__section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 142px;
}
.free-consultation__title {
    color: #1C244B;
    font-size: 30px;
    font-weight: 700;
    line-height: 140%;
    margin: 0 0 10px;
}
.free-consultation__descr {
    color: #324A6D;
    font-size: 16px;
    font-weight: 300;
    line-height: 140%;
    margin: 0 0 60px;
}

.our-team__section h2 {
    margin: 0 0 20px;
}
.our-team__section .section-description {
    color: #324A6D;
    text-align: center;
    font-size: 22px;
    line-height: 140%;
    margin: 0 0 30px;
}
.our-team__grid .swiper-wrapper {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}
.our-team__grid-item picture {
    display: block;
    margin: 0 0 20px;
}
.our-team__grid-item img {
    margin: 0 auto;
}
.our-team__grid-item__title {
    color: #1C244B;
    text-align: center;
    font-size: 22px;
    font-weight: 700;
    line-height: 120%;
    margin: 0 0 5px;
}
.our-team__grid-item__descr {
    color: #324A6D;
    text-align: center;
    font-size: 16px;
    font-weight: 300;
    line-height: 150%;
}

.swiper-pagination-wrap {
    position: absolute;
    top: 25px;
    left: 0;
    width: 100%;
    display: none;
    justify-content: center;
    align-items: center;
}
.swiper-pagination-wrap > div {
    width: 25px;
    height: 25px;
}
.swiper-button-prev {
    transform: rotate(180deg);
}
#story-slider .swiper-button-prev {
    transform: rotate(0);
}
.swiper-button-prev,
.swiper-rtl .swiper-button-next {
    left: 0;
}
.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 0;
}
.swiper-button-next,
.swiper-rtl .swiper-button-prev {
    right: 0;
}

.clients-reviews__section {
    background-color: #F3F5F8;
    padding: 60px 0;
}
.clients-reviews__section,
.lower-form__section {
    margin: 0;
}
.clients-reviews__section h2 {
    margin: 0 0 5px;
}
.clients-reviews__section .section-description {
    margin: 0 0 40px;
}
.clients-reviews__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px 56px;
}
.clients-reviews__grid-card {
    display: flex;
    gap: 15px;
}
.clients-reviews__grid-card picture {
    min-width: 90px;
    height: 90px;
    border-radius: 50%;
    overflow: hidden;
}
.clients-reviews__grid-card__message {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background-color: #fff;
    border-radius: 34px;
    padding: 20px;
}
.clients-reviews__grid-card__text {
    color: #324A6D;
    font-size: 16px;
    font-weight: 300;
    line-height: 150%;
    margin: 0 0 15px;
}
.clients-reviews__grid-card__title {
    font-size: 16px;
    color: #324A6D;
    font-style: italic;
    font-weight: 500;
    line-height: 130%;
}

.lower-form__section {
    padding: 77px 0 120px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-image: url(./images/do-you-have-questions@2x.jpg);
}
.lower-form__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 135px;
}
.lower-form__title {
    color: #1C244B;
    font-size: 46px;
    font-weight: 700;
    line-height: 170%;
    margin: 0 0 20px;
}
.lower-form__descr {
    color: #1C244B;
    font-size: 18px;
    font-weight: 300;
    line-height: 140%;
}
.lower-form__form input {
    padding: 12px 16px;
    width: 100%;
    border-radius: 3px;
    border: 1px solid #666;
    background: #FFF;
    margin: 0 0 15px;
}
.lower-form__form textarea {
    font-family: var(--font-primary), sans-serif;
    padding: 15px;
    min-width: 220px;
    max-width: 100%;
    width: 100%;
    height: 120px;
    margin: 0 0 18px;
}
.lower-form__form .btn-blue {
    font-size: 16px;
    padding: 16px 48px;
}

/* page */
.breadcrumbs {
    display: flex;
    flex-wrap: wrap;
    gap: 5px 10px;
    color: #6EC1E4;
    font-size: 14px;
    font-weight: 500;
    line-height: 120%;
    margin: 20px 0;
}
.breadcrumbs .arrow-icon {
    max-width: 7px;
    max-height: 15px;
}
.breadcrumbs__link {
    transition: .2s ease;
}
.breadcrumbs__link:hover,
.breadcrumbs__separator,
.breadcrumbs > span:last-child span.breadcrumbs__link {
    color: #000;
}

.page-header {
    padding: 94px 0 132px;
    background-image: url(./images/page-header-1@2x-min.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
.page-header__inner {
    text-align: center;
}
.page-header__inner h1,
.page-template-tpl-services h1 {
    color: #FFF;
    text-align: center;
    font-size: 64px;
    font-weight: 700;
    line-height: 140%;
    margin: 0 0 12px;
}
.page-template-tpl-services h1 {
    color: #16163F;
    padding: 30px 0 0;
}
.page-header__inner__advantages {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin: 0 0 67px;
}
.page-header__inner__advantages li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 5px 10px 10px;
    color: #FFF;
    font-size: 14px;
    line-height: 140%;
    background: rgba(0, 0, 0, 0.44);
    border-radius: 10px;
}
.page-header__inner__advantages li::before {
    content: '';
    display: block;
    width: 5px;
    height: 5px;
    background-color: #3975EC;
    border-radius: 50%;
}

.page-advantages__section {
    display: flex;
    justify-content: space-between;
    padding: 70px 0 0;
}
.page-advantages__card {
    text-align: center;
}
.page-advantages__card .icon {
    max-width: 104px;
    height: 104px;
}
.page-advantages__card-text {
    color: #2F2F2F;
    margin: 0 auto;
    font-size: 14px;
    font-weight: 500;
    line-height: 126.922%;
    max-width: 208px;
}

.post-content {
    display: block;
    border: 1px solid #9DA5AE;
    margin: 0 0 30px;
    /* padding: 20px 28px; */
}
.post-content__title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #54595F;
    font-size: 18px;
    font-weight: 600;
    line-height: 120%;
    padding: 20px 28px;
    cursor: pointer;
}
.post-content__title .icon {
    display: block;
    width: 16px;
    height: 16px;
}
.kamatoc {
    font-size: 16px;
    line-height: 140%;
    counter-reset: list-counter;
    padding: 0 12px 0 0;
    /* margin: 20px 0px 0px; */
    padding: 20px 28px;
    border-top: 1px solid #9DA5AE;
    max-height: 376px;
    overflow: auto;
}
ol.kamatoc li {
    display: list-item;
    counter-increment: list-counter;
    color: #7a7a7a;
    padding: 0 0 0 6px;
    transition: .3s ease-in-out;
}
ol.kamatoc li::before {
    content: counter(list-counter) ". "!important;
    color: inherit;
    margin: 0 2px 0 0;
    /* margin: 0 5px 0 0; */
}
.kamatoc li:not(:last-of-type) {
    margin: 0 0 8px;
}
.kamatoc li:hover {
    color: var(--color-decorative);
    transition: .3s ease-in-out;
}
.kamatoc a {
    text-decoration: none;
    color: inherit;
}

.post-info {
    display: flex;
    gap: 35px;
    margin: 0 0 30px;
}
.post-info__item {
    font-size: 16px;
    color: #2F2F2F;
    line-height: 111.056%;
    padding: 10px;
    border-radius: 100px;
    border: 1px solid #727272;
}
.page-contents {
    color: #324A6D;
    font-weight: 300;
    line-height: 24px;
}
.page-contents h2 {
    text-align: start;
    color: #324A6D;
    font-size: 32px;
    font-weight: 500;
    line-height: 120%;
    margin: 0 0 10px;
}
.page-contents h3 {
    text-align: start;
    color: #324A6D;
    font-size: 26px;
    font-weight: 500;
    line-height: 120%;
    margin: 0 0 10px;
}
.page-contents p:not(:last-of-type) {
    margin: 0 0 12px;
}
.text ul,
.text ol {
    display: flex;
    flex-direction: column;
    gap: 9px;
    margin: 9px 0;
}
.text ul li::before {
    content: '';
    background: #324A6D;
    width: 16px;
    height: 1px;
    display: inline-block;
    margin: 0 5px 4px 0;
}
.text ol {
    list-style: auto;
    padding: 0 0 0 22px;
}
.text strong {
    font-weight: 700;
}
.text p a {
    color: #E53892;
    font-weight: 700;
}
.text p a img {
    margin: 0 auto;
}

.alignleft {
    float: left;
    margin: 0 20px 10px 0;
}
.alignright {
    float: right;
    margin: 0 0 10px 20px;
}
img.alignleft {
    margin: 3px 35px 10px 0;
}
img.alignright {
    margin: 3px 0 10px 35px;
}

.grecaptcha-badge,
.recaptcha-note {
    display: none;
}

.block-image__wrapper {
	display: grid;
    grid-template-columns: 30% 70%;
    margin: 26px 0;
}
.block-image__wrapper-reverse {
    grid-template-columns: 70% 30%;
}
.block-image__wrapper figcaption {
	padding: 10px 10px 0;
    font-size: 13px;
    line-height: 1.5;
    color: #6c6c6c;
    text-align: center;
}
.block-image__wrapper img {
	max-width: 100%;
}
.block-image__content {
    line-height: 1.5;
	padding: 0 0 0 20px;
}
.block-image__wrapper-reverse .block-image__content {
    padding: 0 20px 0 0;
}
.block-image__wrapper-reverse figure {
    order: 2;
}
.block-image__wrapper-reverse img {
    width: -webkit-fill-available;
}
.block-image__content h3 {
	margin: 0 0 10px;
}

.banner {
    display: flex;
    justify-content: space-between;
    border-radius: 10px;
    background: #F3F5F8;
    margin: 42px 0 26px;
}
.banner-call-us__inner {
    padding: 40px 0 40px 30px;
}
.banner-call-us__title {
    color: #1C244B;
    font-size: 32px;
    font-weight: 800;
    line-height: 156.25%;
}
.banner-call-us__subtitle {
    color: #1C244B;
    font-size: 18px;
    font-weight: 500;
    line-height: 133.333%;
    margin: 0 0 24px;
}
.banner-call-us__phone {
    color: #1C244B;
    font-size: 36px;
    font-weight: 900;
    line-height: 150%;
    margin: 0 0 16px;
}
.banner-call-us .btn-blue {
    max-width: 290px;
    padding: 15px 28px;
}
.banner-call-us picture {
    display: flex;
    align-items: flex-end;
    margin: -24px 95px 0 0;
}

.banner-free-consult {
    background-image: url(./images/star-david@2x.png), url(./images/banner-free-consult-bg.png);
    background-position: 100% 50%, 85% 38%;
    background-repeat: no-repeat;
    background-size: 228px, 150px;
    padding: 50px 0 50px 40px;
}
.banner-free-consult__inner {
    display: flex;
    gap: 30px;
    align-items: center;
}
.free-consult__form-inner {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 410px;
    margin: 0 0 25px;
}
.free-consult__form input {
    border: unset;
    border-radius: 30px;
    padding: 22px 20px;
    font-size: 16px;
    background: #F2F2F2;
    width: 100%;
    /* box-shadow: 0px 5px 31.2px 0px rgba(0, 0, 0, 0.15) inset; */
    box-shadow: 6px 6px 8.2px 0px rgba(0, 0, 0, 0.15) inset;
}
.free-consult__acceptance {
    color: #AFAFAF;
    font-size: 15px;
    line-height: 120%;
    max-width: 470px;
}
.free-consult__form .btn-blue {
    padding: 20px;
    font-size: 16px;
}
.banner-free-consult__title {
    color: #1C244B;
    font-size: 30px;
    font-weight: 700;
    line-height: 125%;
    max-width: 270px;
}

.banner-questions {
    flex-direction: column;
    gap: 20px;
    padding: 50px 30px;
    background-image: url(./images/docs-israel@2x-min.png);
    background-repeat: no-repeat;
    background-position: 100% 100%;
    background-size: 454px;
}
.banner-questions__title {
    color: #1C244B;
    font-size: 40px;
    font-weight: 700;
    line-height: 140%;
}
.banner-questions .btn-blue {
    font-size: 20px;
    max-width: 258px;
    padding: 15px 20px;
}

.form-request {
    margin: 30px 0;
}

/* spoilers */
.spoilers-section {
    margin: 42px 0 32px;
}
.spoilers-section h2 {
    margin: 0 0 28px;
}
.spoilers-wrap {
    border-radius: 10px;
    padding: 30px;
    background: #F3F5F8;
}
.spoilers-subtitle {
    color: #1C244B;
    font-size: 20px;
    font-weight: 700;
    line-height: 140%;
    margin: 0 0 26px;
}
.spoilers {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.question {
    display: flex;
    align-items: center;
    /* justify-content: space-between; */
    gap: 15px;
    font-weight: 500;
    padding: 5px 0;
    transition: 0.3s;
    cursor: pointer;
}
.spoiler.active .question {
    color: #6EC1E4;
}

.spoiler__answer-inner {
    font-weight: 500;
    padding: 0 50px 0 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}
.spoiler__answer-inner > span,
.spoiler__answer-inner > div {
    margin: 10px 0 0;
}
.spoiler.active .spoiler__answer-inner {
    max-height: 1500px;
}

.spoilers-section .btn-blue {
    margin: 26px 0 0;
    min-width: 218px;
}

.modal {
    display: none;
    position: relative;
    overflow: hidden;
    padding: 0!important;
    margin: 0;
}
.modal-form__close {
    position: absolute;
    right: 20px;
    top: 20px;
    cursor: pointer;
    transform: rotate(45deg);
    transition: 0.3s;
}

/* plus icon */
.plus-icon {
    position: relative;
    max-width: 15px;
    width: 100%;
    height: 15px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}
.plus-icon::before,
.plus-icon::after {
    content: '';
    position: absolute;
    background-color: #1C244B;
    /* border-radius: 1px; */
}
.plus-icon::before {
    width: 15px;
    height: 2px;
}
.plus-icon::after {
    width: 2px;
    height: 15px;
}
.spoiler.active .plus-icon {
    transform: rotate(90deg);
}
.spoiler.active .plus-icon::before {
    display: none;
    transition: 0.3s;
}
.modal .plus-icon  {
    position: absolute;
}
/**/

.neighbor-articles {
    display: flex;
    justify-content: space-between;
    margin: 20px 0;
}
.neighbor-articles > a {
    display: flex;
    flex-direction: column;
}
.neighbor-article__next {
    text-align: end;
}
.neighbor-article__order {
    color: #1C244B;
    font-size: 13px;
    font-style: italic;
    line-height: 150%;
    text-decoration-line: underline;
}
.neighbor-article__title {
    color: #5F5F5F;
    font-size: 16px;
    font-weight: 700;
    line-height: 150%;
}

.socials-share,
.socials-share__icons {
    display: flex;
    align-items: center;
}
.socials-share {
    gap: 28px;
    font-weight: 500;
    margin: 20px 0 0;
}
.socials-share__icons {
    gap: 16px;
}
.socials-share__icons .icon {
    width: 22px;
    height: 22px;
    fill: #467FF7;
}

.similar-services__section h2 {
    margin: 0 0 40px;
}
.similar-services__cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}
.similar-services__card,
.category__card,
.popular-services__grid-card {
    display: flex;
    flex-direction: column;
    height: auto;
}
.similar-services__card picture {
    display: block;
}
.similar-services__card picture img{
    margin: 0 auto 36px;
}
.similar-services__meta,
.category__card-meta {
    display: flex;
    flex: 1;
    flex-direction: column;
    justify-content: space-between;
}
.similar-services__card-title {
    color: #1C244B;
    font-size: 22px;
    font-weight: 700;
    line-height: 120%;
    margin: 0 0 12px;
}
.similar-services__card-descr {
    color: #777;
    font-size: 14px;
    line-height: 150%;
    margin: 0 0 16px;
}
.similar-services__card-more {
    color: #467FF7;
    font-size: 16px;
    font-style: italic;
    line-height: 16px;
    text-decoration: underline;
}
.popular-services__grid-card .similar-services__card-more {
    margin: 20px 0 0;
}

.callback-form {
    display: flex;
    gap: 50px;
    max-width: 800px;
}
.callback-form__content {
    padding: 50px 50px 50px 0;
}
.callback-form__title {
    color: #1C244B;
    font-size: 34px;
    font-weight: 700;
    margin: 0 0 10px;
}
.callback-form__descr {
    color: #1C244B;
    font-size: 18px;
    margin: 0 0 30px;
}
.callback-form__img {
    width: 320px;
    background-position: top;
    background-repeat: no-repeat;
    background-size: cover;
    background-image: url(./images/callback-form.webp);
}

/* О нас */
.about-us-hero__section {
    display: grid;
    grid-template-columns: 2fr 1fr;
    align-items: center;
    gap: 78px;
    margin: 56px 0 67px;
}
.about-us-hero__advantages {
    display: flex;
    flex-direction: column;
    gap: 42px;
    padding: 35px 14px 35px 20px;
    background-image: url(./images/about-us-hero-bg@2x-min.jpg);
    background-position: center;
    background-size: cover;
}
.about-us-hero__advantage {
    color: #000;
    font-size: 16px;
    line-height: 140%;
}
.about-us-hero__advantage-title {
    font-weight: 700;
}
.about-us-hero__advantage-subtitle {
    font-weight: 300;
}
.about-us-hero__write-us__title {
    color: #16163F;
    font-size: 50px;
    font-weight: 700;
    line-height: 120%;
    margin: 0 0 10px;
}
.about-us-hero__write-us__subtitle {
    color: #000;
    font-size: 18px;
    font-weight: 300;
    line-height: 140%;
    margin: 0 0 50px;
}
.about-us-hero__write-us .btn-blue {
    max-width: 260px;
    width: 100%;
    padding: 18px 20px;
}

.our-history__section h2 {
    margin: 0 0 45px;
}
.our-history__flex {
    display: flex;
    justify-content: space-around;
}
.our-history__flex-item {
    text-align: center;
}
.our-history__flex-item picture {
    margin: 0 0 8px;
}
.our-history__flex-item img {
    margin: 0 auto;
}
.our-history__flex-item_text {
    color: #000;
    font-size: 18px;
    font-weight: 500;
    line-height: 140%;
}

.contacts__section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 78px;
    padding: 120px 0 0;
}
.contacts__section iframe {
    width: 100%;
    height: 364px;
}
.contacts__section-title {
    color: #16163F;
    font-size: 40px;
    font-weight: 700;
    line-height: 120%;
    margin: 0 0 10px;
}
.contacts__section-subtitle {
    color: #000;
    font-size: 16px;
    font-weight: 300;
    line-height: 140%;
    margin: 0 0 32px;
}
.contacts__section-info {
    color: #000;
    font-size: 16px;
    font-weight: 300;
    line-height: 177%;
}
.contacts__section-info b {
    font-weight: 700;
}

.from-manager__section {
    display: flex;
    justify-content: space-between;
    /* grid-template-columns: 1fr 1fr; */
    gap: 50px;
}
.from-manager__title {
    color: #16163F;
    font-size: 40px;
    font-weight: 700;
    line-height: 120%;
    margin: 0 0 20px;
}
.from-manager__msg {
    color: #000;
    font-size: 16px;
    font-weight: 300;
    line-height: 140%;
    margin: 0 0 25px;
}
.from-manager__msg p:not(:last-child) {
    margin: 0 0 15px;
}
.from-manager__signature {
    color: #000;
    font-size: 16px;
    font-weight: 600;
    line-height: 140%;
}

.from-manager__text {
    position: relative;
    max-width: 670px;
    padding: 0 0 0 30px;
}
.from-manager__text::before {
    content: '';
    position: absolute;
    top: 6px;
    left: 0;
    display: block;
    width: 3px;
    height: 85%;
    background-color: #16163F;
}
.from-manager__section picture {
    display: block;
    /* width: 100%; */
}

.category .page-header {
    padding: 120px 0;
    background-image: url(./images/do-you-have-questions@2x.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
.category .page-header h1 {
    color: #16163F;
}
.category__cards-wrap {
    margin: 0 0 60px;
}
.category__cards,
.services-cards__grid {
    padding: 100px 0 50px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
}
.category__card {
    max-width: 370px;
}
.category__card picture {
    overflow: hidden;
}
.category__card picture,
.popular-services__grid-card picture {
    display: block;
    margin: 0 0 40px;
}
.category__card img {
    transition: 0.7s ease-out 1ms;
}
.category__card:hover img {
    transform: scale(1.05);
}
.category__card-title {
    font-size: 22px;
    font-weight: 700;
    color: #1C244B;
    margin: 0 0 10px;
}
.category__card-exerpt {
    font-weight: 300;
    color: #777;
    margin: 0 0 10px;
}
.category__card-date {
    padding: 20px 0 0;
    border-top: 1px #1C244B solid;
    color: #adadad;
    font-size: 22px;
    font-weight: 600;
}
.popular-services__section h2 {
    margin: 0 0 30px;
}
.popular-services__grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 60px;
}

.services-cards__wrap {
    margin: 0 0 60px;
}

.wp-pagenavi {
    display: flex;
    gap: 12px;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
}
.wp-pagenavi a,
.wp-pagenavi .current {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 22px;
    font-weight: 600;
    line-height: 120%;
    /* width: 100%; */
    /* height: 22px; */
    color: var(--color-decorative);
    transition: .2s ease;
}
.wp-pagenavi .current {
    color: #1C244B;
}

.contacts-hero {
    background-image: url(./images/our-office.png);
    background-position: right;
    background-repeat: no-repeat;
    background-size: contain;
    /* margin: 0 0 50px; */
}
.contacts-hero__text {
    padding: 200px 0;
}
.contacts-hero__text h1 {
    color: #1C244B;
    font-size: 60px;
    font-weight: 700;
    margin: 0 0 30px;
}
.contacts-hero__descr {
    max-width: 450px;
    font-size: 20px;
}

.contacts-map {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 60px;
}
.contacts-info {
    padding: 150px 0;
    font-size: 20px;
}
.contacts-info li:not(:last-child) {
    margin: 0 0 12px;
}

.page-template-tpl-prices h1 {
    display: block;
    font-size: 65px;
    line-height: 120%;
    font-weight: 700;
    text-align: center;
    margin: 0 0 60px;
}

/* 404 */
.page-404__section {
    padding: 77px 0 140px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-image: url(./images/404-bg@2x.jpg);
    padding: 112px 0 266px;
    margin: 0;
}
.page-404__section-inner {
    text-align: center;
}
.icon.page-404 {
    margin: 0 0 60px;
}
.page-404__section-title {
    color: #000;
    text-align: center;
    font-size: 24px;
    font-weight: 700;
    line-height: 140%;
    margin: 0 0 10px;
}
.page-404__section-subtitle {
    color: #000;
    text-align: center;
    font-size: 18px;
    font-weight: 300;
    line-height: 140%;
    margin: 0 0 40px;
}
.page-404__section .btn-blue {
    display: block;
    max-width: 226px;
    font-size: 20px;
    padding: 17px 50px;
    margin: 0 auto;
}

.footer {
    background-color: #fff;
}
.footer-main {
    display: flex;
    gap: 40px;
    justify-content: space-between;
    padding: 120px 0 70px;
}
.footer__logo {
    display: block;
    margin: 0 0 20px;
}
.footer-main__copyright {
    color: #324A6D;
    font-weight: 300;
    line-height: 24px;
    max-width: 295px;
}
.footer-column__title {
    color: #1C244B;
    font-size: 22px;
    font-weight: 700;
    line-height: 26.4px; 
    margin: 0 0 22px;
}
.footer-menu li {
    font-weight: 300;
    transition: 0.3s;
}
.footer-menu li:hover {
    transition: 0.3s;
    color: #C8D5DC;
}
.footer-menu li:not(:last-child) {
    margin: 0 0 10px;
}
.footer .bold {
    font-weight: 700;
}
.footer-contact {
    font-weight: 300;
}
.footer-contact:not(:last-child) {
    margin: 0 0 5px;
}
.footer-contact a:hover {
    text-decoration: underline;
}
.footer-lower {
    background-color: #467FF7;
}
.copyright {
    text-align: center;
    color: #fff;
    padding: 15px 20px;
}

@keyframes wiggle {
    0% {
      transform: rotate(0deg);
    }
    25% {
      transform: rotate(-3deg);
    }
    50% {
      transform: rotate(3deg);
    }
    75% {
      transform: rotate(-3deg);
    }
    100% {
      transform: rotate(0deg);
    }
}