:root {
    --color-primary: #000;
    --color-blue: #0A3D97;
    /* --color-decorative: #E16A37; */
    --color-bg: #fff;
    --color-bg-dark: #E7EDF1;
    /* --color-block: #F2F2F2;
    --color-block-dark: #5E5E5E;
    --color-grey: #A4A4A4;
    --color-grey-footer: #9f9f9f;
    --color-font: #363635; */
    --font-primary: 'Roboto';
}

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: 1400px;
    padding: 0 25px;
    margin: 0 auto;
}

section {
    padding: 120px 0;
}

h2 {
    color: var(--color-primary);
    font-size: 46px;
    font-weight: 300;
    line-height: 118%;
}

.nowrap {
    white-space: nowrap;
}

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

.text h2,
.text h3,
.text h4 {
    margin: 23px 0;
}
.text h2 {
    font-size: 40px;
    line-height: 140%;
}
.text h3 {
    font-size: 38px;
}
.text ul,
.text ol {
    display: flex;
    flex-direction: column;
    gap: 9px;
    margin: 9px 0;
}
.text ul li::before {
    content: '';
    background-color: var(--color-primary);
    width: 16px;
    height: 1.5px;
    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,
.text ul a,
.text ol a {
    text-decoration: underline;
}
.text p a img {
    margin: 0 auto;
}

.table-wrap {
    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;
}

.btn-green {
    font-family: var(--font-primary), sans-serif;
    display: block;
    width: fit-content;
    margin: 0 auto;
    color: #FFF;
    text-align: center;
    font-size: 24px;
    font-weight: 600;
    padding: 20px 28px;
    border-radius: 256px;
    background: linear-gradient(272deg, #128354 -4.48%, #36BD8F 23.95%, #3FB690 59.46%, #10876F 94.77%);
    box-shadow: 0px 0.713px 7.135px 0px rgba(0, 0, 0, 0.15);
    transition: .3s ease-out 1ms;
}
.btn-green:hover {
    background: linear-gradient(272deg, #36DD97 -4.48%, #2DEEAC 23.95%, #3FB690 59.46%, #2ECFAF 94.77%);
}

.header {
    background-color: #000;
}
.header-inner {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #fff;
    padding: 22px;
}
.logo,
.logo-white {
    max-width: 112px;
    height: 38px;
}
ul.menu {
    display: flex;
    flex-wrap: nowrap;
    gap: 50px;
}
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: 18px;
    white-space: nowrap;
    transition: 0.3s;
}
ul.menu > li:hover > a {
    color: #37BC8E;
    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;
    fill: #fff;
    transition: 0.3s;
    box-sizing: content-box;
}
ul.menu li.menu-item-has-children .icon svg {
    fill: #000;
}
li.menu-item-has-children:hover > span .icon {
    fill: #37BC8E;
    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: #000;
    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: 18px;
    transition: 0.3s;
}
.header-menu-item a:hover {
    color: #37BC8E;
    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;
    line-height: 1.2;
}
.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: #37BC8E;
    transition: all 0.2s ease-in-out;
}
.header-contacts {
    display: flex;
    gap: 16px;
    align-items: center;
}
.header-phone {
    color: #FFF;
    font-size: 15px;
    font-weight: 700;
    line-height: 100%;
}
.header-phone:hover {
    /* color: #16163F; */
    animation: wiggle 0.5s ease;
}
.header-callback {
    font-size: 15px;
    padding: 14px 20px;
}

.hero__section {
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    background-image: url(./images/hero-bg@2x-min.jpg);
}
.hero__section-inner {
    text-align: center;
}
.hero__section h1 {
    color: #FFF;
    text-align: center;
    font-size: 60px;
    line-height: 120%;
    letter-spacing: -1.2px;
    margin: 0 0 20px;
}
.hero__section h1 span {
    color: #5CFFC9;
}
.hero__section-subtitle {
    color: #FFF;
    text-align: center;
    font-size: 26px;
    line-height: 120%;
    margin: 0 0 60px;
}

.statistics__section {
    display: grid;
    grid-template-columns: 1.2fr .9fr 1.1fr 1.2fr;
    gap: 100px;
}
.statistics-descr {
    color: #333;
    font-size: 22px;
    line-height: 118%;
    margin: 0 0 24px;
}
.statistics-title {
    color: #1B9276;
    font-size: 100px;
    line-height: 100%;
}

.advantages {
    padding: 60px 20px;
    background-color: #fff;
    text-align: center;
}

.header__subtitle {
    color: #000;
    font-size: 14px;
    font-weight: 300;
    line-height: 120%;
    padding: 6px 20px;
    border-radius: 100px;
    border: 1px solid #000;
    width: fit-content;
    margin: 0 auto 20px;
}

.advantages__section {
    padding: 0 0 120px;
}
.advantages__title,
.our-team__title {
    color: #000;
    text-align: center;
    font-size: 40px;
    font-weight: 300;
    line-height: 118%;
    margin: 0 0 58px;
}
.advantages__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}
.advantage-card {
    display: flex;
    flex-direction: column;
    /* justify-content: space-between; */
}
.advantage-card__icon {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 56px;
}
.advantage-card__icon,
.advantage-card__title {
    margin: 0 0 20px;
}
.advantage-card__icon img{
    margin: 0 auto;
}
.advantage-card__title,
.prices__card-title {
    color: #595959;
    text-align: center;
    font-size: 24px;
    font-weight: 600;
    line-height: 120%;
}
.advantage-card__text,
.prices__card-descr {
    color: #595959;
    text-align: center;
    font-size: 18px;
    font-weight: 300;
    line-height: 120%;
}

.find-business-partner__section {
    text-align: center;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    background-image: url(./images/find-business-partner@2x-min.png);
    padding: 70px 0;
}
.page-template-tpl-about-us .find-business-partner__section {
    margin: 0 0 80px;
}
.find-business-partner__title {
    color: #FFF;
    font-size: 40px;
    font-weight: 500;
    line-height: 118%;
    margin: 0 0 40px;
}
.find-business-partner__section .btn-green {
    width: 100%;
    max-width: 334px;
}

.reviews__section h2 {
    margin: 0 0 130px;
    text-align: center;
}
.reviews__grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 46px;
}
.reviews__card {
    position: relative;
    color: #595959;
    text-align: center;
    border-radius: 30px;
    background: #F4FEED;
    padding: 108px 16px 40px;
}
.reviews__card-img {
    position: absolute;
    top: -69px;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: fit-content;
    display: inline-block;
    overflow: hidden;
    border-radius: 50%;
}
.reviews__card-title {
    font-size: 24px;
    font-weight: 600;
    line-height: 120%;
    margin: 0 0 20px;
}
.reviews__card-text {
    font-size: 18px;
    font-weight: 300;
    line-height: 140%;
}

.our-services__header {
    text-align: center;
    margin: 0 0 33px;
}

.opening-business__section {
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    background-image: url(./images/our-services@2x-min.jpg);
    text-align: center;
    padding: 90px 0;
}
.opening-business__section h2 {
    color: #FFF;
    font-size: 40px;
    line-height: 118%;
    margin: 0 0 20px;
}
.opening-business__descr {
    color: #FFF;
    font-size: 20px;
    font-weight: 300;
    line-height: 140%;
    max-width: 740px;
    margin: 0 auto;
}

.page-template-tpl-frontpage .services-grid__section  {
    padding: 120px 0 0;
}
.services-grid__section {
    padding: 120px 0;
}
.services-grid__item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 194px;
}
.services-grid__item:not(:last-of-type) {
    margin: 0 0 120px;
}
.services-grid__title {
    color: #000;
    font-size: 46px;
    font-weight: 300;
    line-height: 118%;
    margin: 0 0 30px;
}
.services-grid__descr {
    color: #595959;
    font-size: 20px;
    font-weight: 300;
    line-height: 140%;
}
.services-grid__img img {
    border-radius: 30px;
}

/* .blog-cards__section {} */
.blog-cards__inner {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 38px;
    margin: 0 0 40px;
}
.blog-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    border-radius: 30px;
    overflow: hidden;
    background: #F4FEED;
}
.blog-card__image {
    position: relative;
    height: 280px;
    overflow: hidden;
}
div.blog-card__image img {
    transition: 0.7s ease-out 1ms;
    width: 100%;
    height: 280px;
    object-fit: cover;
}
.blog-card:hover .blog-card__image img {
    transform: scale(1.05);
}
.blog-card__tag {
    position: absolute;
    top: 20px;
    right: 20px;
    color: #000;
    font-size: 14px;
    font-weight: 300;
    line-height: 120%;
    padding: 6px 20px;
    border-radius: 100px;
    background: #FFF;
}
.blog-card__content,
.our-team__card_content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex: 1;
}
.blog-card__content {
    padding: 40px 18px 20px 15px;
}
.blog-card__content h3 {
    color: #595959;
    font-size: 22px;
    font-weight: 600;
    line-height: 90%;
    margin: 0 0 20px;
}
.blog-card__text {
    color: #595959;
    font-size: 18px;
    font-weight: 300;
    line-height: 120%;
    margin: 0 0 20px;
}
.blog-card__button {
    display: block;
    color: #000;
    font-size: 14px;
    font-weight: 300;
    line-height: 120%;
    width: fit-content;
    padding: 6px 20px;
    border-radius: 100px;
    border: 1px solid #000;
    background: #FFF;
    margin: 0 0 20px;
}
.blog-card__button:hover {
    background-color: #9f9f9f3b;
}
.blog-card__footer {
    display: flex;
    gap: 16px;
    padding: 15px 0 0;
    border-top: 1px solid #D9D9D9;
}
.blog-card__footer time {
    color: #9F9F9F;
    font-size: 18px;
    line-height: 120%;
}
.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: #1B9276;
}

.contacts__section {
    padding: 0 0 40px;
}
.page-template-contacts .contacts__section {
    margin: 0 0 120px;
}
.contacts__section-title {
    color: var(--color-primary);
    font-size: 46px;
    font-weight: 300;
    line-height: 118%;
    text-align: center;
    margin: 0 0 40px;
}
.contacts__grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1.28fr;
    gap: 80px;
    border-radius: 30px;
    background: #F4FEED;
    overflow: hidden;
}
.contacts__block-form {
    padding: 60px 0 60px 48px;
}
.contacts-form__input {
    padding: 13px 23px;
    border-radius: 100px;
    border: 1px solid #868686;
    background: #FFF;
    width: 100%;
    margin: 0 0 8px;
}
.contacts-form__input::placeholder,
textarea.contacts-form__input::placeholder,
.popup-form__input::placeholder {
    font-family: var(--font-primary), sans-serif;
    color: #8A8A8A;
    font-size: 17px;
}
textarea.contacts-form__input {
    max-height: 118px;
    border-radius: 30px;
}
.contacts__form .btn-green {
    width: 100%;
    font-size: 20px;
    padding: 15px 28px;
}
.contacts__block-text {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    color: #595959;
    padding: 60px 0;
}
.contacts__block-text-item {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.contacts__block-text-title {
    font-size: 24px;
    font-weight: 600;
    line-height: 83%;
}
.contacts__block-text-info {
    font-size: 20px;
    font-weight: 300;
    line-height: 120%;
}
div.contacts__block-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.map__section {
    padding: 0;
    height: 350px;
}
.page-template-tpl-contacts .map__section {
    margin: 0 0 80px;
}
.page-template-tpl-contacts .services-grid__section {
    padding: 120px 0;
}

.page-template-tpl-about-us h1 {
    color: #000;
    font-size: 60px;
    font-weight: 300;
    line-height: 120%;
    text-align: center;
    letter-spacing: -1.2px;
    padding: 90px 0 60px;
}
.our-team__section {
    padding: 0 0 120px;
}
.our-team__cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
}
.our-team__card_img {
    border-radius: 30px;
    margin: 0 0 16px;
}
.our-team__card_img img {
    margin: 0 auto;
}
.our-team__card_content {
    color: #595959;
    text-align: center;
    padding: 0 8px;
}
.our-team__card-title {
    font-weight: 800;
    font-size: 30px;
    line-height: 120%;
    margin: 0 0 5px;
}
.our-team__card-position {
    color: #595959;
    font-size: 22px;
    line-height: 120%;
    padding: 0 0 14px;
    border-bottom: 1px solid #D9D9D9;
    margin: 0 0 30px;
}
.our-team__card-descr {
    font-size: 18px;
    font-weight: 300;
    line-height: 120%;
}

.form-questions__section {
    text-align: center;
    padding: 100px 0;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    background-image: url(./images/form-questions@2x-min.jpg);
}
.form-questions__title {
    color: #FFF;
    font-size: 60px;
    font-weight: 300;
    line-height: 120%;
    letter-spacing: -1.2px;
    margin: 0 0 30px;
}
.form-questions__section .btn-green {
    color: #FFF;
    font-size: 20px;
    font-weight: 500;
    line-height: 100%;
    padding: 21px 46px;
}

.single-wrap {
    overflow: hidden;
}
.single-header {
    position: relative;
    text-align: center;
    padding: 60px 0;
    overflow: hidden;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    /* background-image: url(./images/form-questions@2x-min.jpg); */
}
.single-header picture {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    display: block;
}
.single-header picture::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0.4;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.70) 0%, rgba(0, 0, 0, 0.70) 100%), lightgray -345.433px -672.271px / 118.378% 341.074%;
}
.single-header picture img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.single-header__inner {
    position: relative;
    z-index: 5;
    padding: 0 20px;
}
.single-header .header__subtitle {
    color: #fff;
    border: 1px solid #fff;
}
.single-header h1 {
    color: #FFF;
    font-size: 60px;
    font-weight: 300;
    line-height: 120%;
    letter-spacing: -1.2px;
    margin: 30px 0 60px;
}
.prices-header h1 {
    margin: 0 0 30px;
}
.single-header__time {
    color: #FFF;
    font-size: 30px;
    font-style: italic;
    font-weight: 500;
    line-height: 170%;
}
.single-header__descr {
    font-size: 25px;
    color: #fff;
    max-width: 1100px;
    margin: 0 auto 30px;
}
.prices-header .btn-green {
    font-size: 20px;
    padding: 20px 36px;
}
.page-contents {
    color: #000;
    font-size: 22px;
    line-height: 174%;
    max-width: 980px;
    margin: 0 auto;
    padding: 60px 0;
}
.page-contents p:not(:last-of-type) {
    margin: 0 0 23px;
}

.single-footer {
    display: flex;
    justify-content: space-between;
    position: relative;
    margin: 0 0 100px;
}
.single-footer .header__subtitle {
    display: inline-block;
    margin: 0;
    font-size: 16px;
    font-weight: 700;
    line-height: 120%;
}

.socials-share,
.socials-share__icons {
    display: flex;
    align-items: center;
}
.socials-share {
    /* position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: 0 auto; */
    gap: 28px;
    justify-content: center;
    color: #000;
    line-height: 150%;
    font-size: 16px;
    font-weight: 500;
}
.socials-share__icons {
    gap: 16px;
}
.socials-share__icons a {
    height: 22px;
}
.socials-share__icons .icon {
    width: 22px;
    height: 22px;
}

.prices__section {
    padding: 60px 0;
}
.prices__descr {
    font-size: 22px;
    color: #7A7A7A;
}
.prices__cards {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
    margin: 20px 0;
}
.prices__card {
    display: flex;
    flex-direction: column;
    flex: 1;
    justify-content: space-between;
    gap: 24px;
}

/* spoilers */
.spoilers-section {
    margin: 0 0 80px;
}
.spoilers {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin: 0 0 60px;
}
.steps-spoilers {
    gap: 0;
}
.spoiler-wrap {
    display: flex;
    gap: 25px;
    position: relative;
}
.spoiler-wrap:not(:last-child) {
    margin: 0 0 28px;
}
.spoiler-wrap:not(:last-of-type):before {
    content: '';
    position: absolute;
    top: 0;
    left: 25px;
    width: 2px;
    height: 138%;
    background-color: var(--color-decorative);
}
.spoiler-index {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 3;
    color: var(--color-decorative);
    font-size: 25px;
    font-weight: 600;
    line-height: 120%;
    max-width: 48px;
    width: 100%;
    height: 48px;
    border-radius: 50%;
    background-color: var(--color-bg);
}
.spoiler {
    font-size: 18px;
    /* padding: 16px 20px; */
    width: 100%;
}
.spoilers:not(.steps-spoilers) .spoiler.active .spoiler__question {
    color: var(--color-decorative);
}
.question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    font-weight: 700;
    padding: 20px 20px 18px 0;
    transition: 0.3s;
    cursor: pointer;
}
.spoiler .question .toggle-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 32px;
    width: 100%;
    height: 32px;
    background: #1B9276;
    border-radius: 100%;
    padding: 6px;
    margin: 0 0 0 auto;
}
.spoiler .question .toggle-icon .icon {
    width: 100%;
    height: 100%;
    fill: #fff;
    transition: 0.3s;
}
.spoiler.active .question .toggle-icon .icon {
    transform: rotate(45deg);
}
.spoiler .answer {
    position: relative;
    top: 10px;
    display: grid;
    grid-template-rows: 0fr;
    font-weight: 300;
    max-height: 0;
    overflow: hidden;
    padding: 0 70px 0 0;
    transition: all 0.3s ease;
}
.spoiler.active .answer {
    grid-template-rows: 1fr;
    max-height: 1500px;
    transition: all 0.3s ease;
}
.spoiler__answer-inner {
    font-weight: 500;
    padding: 0 70px 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}
.spoiler__answer-inner > span,
.spoiler__answer-inner > div {
    margin: -3px 0 20px;
}
.spoiler.active .spoiler__answer-inner {
    max-height: 1500px;
}
/**/

.transfer-hero__section {
    padding: 60px 0 120px;
    display: grid;
    grid-template-columns: 1.45fr 1fr;
    gap: 58px;
}
.transfer-hero__title {
    color: #000;
    font-size: 60px;
    line-height: 120%;
    letter-spacing: -1.2px;
    margin: 0 0 40px;
}
.transfer-hero__title span {
    display: block;
    color: #019611;
}
.transfer-hero__meta-img {
    display: none;
}
.transfer-hero__info {
    color: #595959;
    margin: 0 0 60px;
    max-width: 395px;
}
.transfer-hero__info-title {
    font-size: 22px;
    font-weight: 600;
    line-height: 90%;
    margin: 0 0 20px;
}
.transfer-hero__info-descr {
    font-size: 18px;
    font-weight: 300;
    line-height: 120%;
}
.transfer-hero__advantages {
    display: flex;
    gap: 40px;
    color: #595959;
    font-size: 14px;
    font-weight: 600;
    line-height: 120%;
    margin: 0 0 92px;
}
.transfer-hero__advantage {
    display: flex;
    gap: 10px;
}
.transfer-hero__advantage picture {
    min-width: 34px;
}

.transfer-hero-form-wrap {
    display: flex;
    gap: 34px;
}
.transfer-hero-form {
    display: flex;
    padding: 3px;
    border: 1px solid #DEDEDE;
    border-radius: 50px;
    background-color: #fff;
    width: fit-content;
}
.transfer-hero-form input {
    padding: 13px 16px;
    border-radius: 50px;
}
.transfer-hero-form input[name="your-name"] {
    max-width: 153px;
}
.transfer-hero-form input[name="your-phone"] {
    max-width: 258px;
}
.transfer-hero-form span[data-name="your-phone"] {
    position: relative;
}
.transfer-hero-form span[data-name="your-phone"]::before {
    content: '';
    position: absolute;
    z-index: 5;
    left: 0;
    top: -14px;
    display: block;
    width: 1px;
    height: 49px;
    background-color: #DCDCDC;
}
.transfer-hero-form .btn-green {
    font-size: 14px;
    font-weight: 600;
    padding: 12px 15px;
}
.transfer-hero__img img {
    border-radius: 50px;
    /* overflow: hidden; */
}

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

/* banking-promo */
.banking-promo__section {
    padding: 0 0 120px;
}
.banking-promo__section h2,
.transfer-pricing__section h2 {
    font-size: 40px;
    text-align: center;
    margin: 0 0 40px;
}
.banking-promo {
    position: relative;
    background: linear-gradient(272.36deg, #128354 -4.48%, #36BD8F 23.95%, #3FB690 59.46%, #10876F 94.77%);
    border-radius: 30px;
    overflow: hidden;
    padding: 50px;
}
.banking-promo__content {
    position: relative;
    z-index: 10;
}
.banking-promo__title {
    color: #ffffff;
    font-size: 40px;
    font-weight: 700;
    line-height: 120%;
    margin: 0px 0px 5px 0px;
}
.banking-promo__subtitle {
    color: #ffffff;
    font-size: 26px;
    font-weight: 400;
    line-height: 140%;
    margin: 0px 0px 20px 0px;
}
.banking-promo__safety {
    color: #BBFF00;
    font-size: 24px;
    font-style: italic;
    font-weight: 500;
    line-height: 140%;
    margin: 0px 0px 40px 0px;
}
.banking-promo__features {
    display: flex;
    gap: 10px;
    flex-direction: column;
    list-style: disc;
    padding: 0px 0px 0px 20px;
    margin: 0px 0px 50px 0px;
}
.banking-promo__feature {
    color: #ffffff;
    font-size: 18px;
    line-height: 140%;
}
.banking-promo__feature::marker {
    color: #BBFF00;
}
.banking-promo__form {
    max-width: 630px;
    width: 100%;
    display: flex;
    gap: 34px;
    align-items: center;
    margin: auto 0px 0px 0px;
}
.banking-promo__form .wpcf7-form .form__group,
.banking-promo__form .wpcf7-form .form__control {
    position: relative;
    margin: 0px;
}
.banking-promo__form .wpcf7-form .form__group.name::before {
    content: '';
    position: absolute;
    right: 0px;
    top: -5px;
    bottom: -5px;
    width: 1px;
    background: #DEDEDE;
}
.banking-promo__form .wpcf7-form .form__group .form__input {
    color: #000000;
    background: transparent;
    box-shadow: none;
    font-weight: 600;
    padding: 9px 15px;
}
.banking-promo__form .wpcf7-form .form__group .form__input::placeholder {
    color: #A5A5A5;
}
.banking-promo__form .wpcf7-form .form__control .btn {
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    line-height: 100%;
    border: none;
    background: linear-gradient(110.17deg, #0D1825 5.65%, #1F3044 96.78%);
    box-shadow: 0px 0.71345px 7.1345px rgba(0, 0, 0, 0.15);
    border-radius: 60px;
    white-space: nowrap;
    cursor: pointer;
    padding: 13px 15px;
}
.banking-promo button.btn-green {
    background: linear-gradient(110deg, #0D1825 5.65%, #1F3044 96.78%);
    box-shadow: 0 0.713px 7.135px 0 rgba(0, 0, 0, 0.15);
}
.banking-promo button.btn-green:hover {
    background: linear-gradient(110deg, #124339 5.65%, #27867B 96.78%);
}
.banking-promo__visual {
    position: absolute;
    right: 0px;
    bottom: 0px;
    max-width: 540px;
    width: 100%;
}
.banking-promo__visual picture {
    display: block;
    width: 100%;
    height: 100%;
}
.banking-promo__visual picture img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.banking-promo__euro {
    position: absolute;
    top: 15px;
    right: 30%;
    max-width: 160px;
    width: 100%;
}
.banking-promo__euro img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.banking-promo__ruble {
    position: absolute;
    top: 28%;
    right: 40%;
    max-width: 240px;
    width: 100%;
}
.banking-promo__ruble img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
/**/

.transfer-pricing__section {
    padding: 0 0 120px;
}
.transfer-pricing {
    display: grid;
    grid-gap: 40px;
    grid-template-columns: 1fr 1fr 1fr;
}
.transfer-pricing__item {
    background: #F2F2F2;
    border-radius: 30px;
    padding: 15px;
}
.transfer-pricing__item-header {
    background: #ffffff;
    border-radius: 30px;
    padding: 25px;
    margin: 0px 0px 30px 0px;
}
.transfer-pricing__item-range {
    color: #3BB98F;
    font-size: 28px;
    font-weight: 600;
    line-height: 140%;
    margin: 0px 0px 30px 0px;
}
.transfer-pricing__item-price {
    color: #000000;
    font-size: 60px;
    font-weight: 900;
    line-height: 110%;
}
.transfer-pricing__item-features {
    display: flex;
    gap: 10px;
    flex-direction: column;
    list-style: disc;
    padding: 0px 0px 0px 35px;
    margin: 0px 0px 40px 0px;
}
.transfer-pricing__item-feature {
    color: #000000;
    font-size: 22px;
    line-height: 140%;
}
.transfer-pricing__item-feature::marker {
    color: #39A37E;
}
.transfer-pricing__item .btn-green {
    font-size: 16px;
    padding: 10px 63px;
    margin: 0px 0px 0px 15px;
}
.transfer-pricing__item-button {
    display: block;
    text-align: center;
    max-width: 195px;
    width: 100%;
    color: #ffffff;
    font-family: "Roboto", sans-serif;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    background: linear-gradient(272.36deg, #128354 -4.48%, #36BD8F 23.95%, #3FB690 59.46%, #10876F 94.77%);
}

.form-consultation__section {
    position: relative;
    background-repeat: no-repeat;
    background-image: url(./images/compliance-form@2x-min.jpg);
    background-size: cover;
    background-position: center;
    padding: 125px 0 130px;
    margin: 0 0 120px;
}
.form-consultation__section::before {
    content: '';
    position: absolute;
    inset: 0px;
    background: linear-gradient(270deg, rgba(0, 0, 0, 0) 0%, #000000 100%);
}
.form-consultation {
    position: relative;
    z-index: 10;
}
.form-consultation__title {
    color: #ffffff;
    font-size: 40px;
    line-height: 140%;
    margin: 0px 0px 20px 0px;
}
.form-consultation__sub-title {
    color: #ffffff;
    font-size: 26px;
    line-height: 120%;
    margin: 0px 0px 40px 0px;
}
.form-consultation__socials {
    display: flex;
    gap: 15px;
    align-items: center;
    margin: 0px 0px 20px 0px;
}
.form-consultation__social-label {
    color: #ffffff;
    font-size: 20px;
    font-weight: 600;
    line-height: 140%;
    margin: 0px 30px 0px 0px;
}
.form-consultation__social-link {
    display: flex;
}
.form-consultation__social-link .icon {
    width: 40px;
    height: 40px;
}
.form-consultation__form {
    max-width: 350px;
    width: 100%;
}
.form-consultation__form .free-consult__form__input {
    color: #000000;
    font-size: 17px;
    line-height: 100%;
    border-radius: 100px;
    padding: 15px 20px;
}
.form-consultation__form .free-consult__form__input::placeholder {
    color: #8A8A8A;
}
.form-consultation__form button.btn-green {
    font-size: 20px;
    padding: 15px;
}

.page-template-tpl-money-transfer .single-header {
    border-radius: 30px;
}

.errorpage__section {
    color: #595959;
    text-align: center;
}
.errorpage__digit {
    display: flex;
    justify-content: center;
    margin: 0 0 60px;
}
.errorpage__title {
    font-size: 22px;
    font-weight: 600;
    line-height: 90%;
    margin: 0 0 20px;
}
.errorpage__descr {
    font-size: 18px;
    font-weight: 300;
    line-height: 120%;
    margin: 0 0 40px;
}
.errorpage__buttton .btn-green {
    font-size: 14px;
    padding: 12px 40px;
}

.banner__call-us {
    display: flex;
    justify-content: space-between;
    position: relative;
    z-index: 1;
    color: #fff;
    margin: 50px 0;
}
.banner__call-us__inner {
    padding: 45px 0;
}
.banner__call-us__title {
    font-size: 38px;
    font-weight: 700;
    line-height: 140%;
}
.banner__call-us__subtitle {
    font-size: 26px;
    font-weight: 500;
    line-height: 140%;
    margin: 0 0 25px;
}
.banner__call-us__phone {
    font-size: 50px;
    line-height: 1.2;
    font-weight: 900;
    margin: 0 0 15px;
}
.banner__call-us .btn-green {
    font-size: 20px;
    font-weight: 500;
    line-height: 1;
    margin: 0;
    padding: 21px 46px;
}
.banner__call-us picture {
    display: flex;
    align-items: flex-end;
    margin: -45px 0 0;
}

.banner__free-consult {
    position: relative;
    z-index: 1;
    margin: 60px 0;
}
.banner__free-consult::before,
.banner__call-us::before {
    content: '';
    position: absolute;
    z-index: -1;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    width: 100vw;
    height: 100%;
    background-color: #000;
}
.banner__free-consult__inner {
    position: relative;
    display: flex;
    gap: 30px;
    justify-content: flex-end;
    padding: 50px 0;
    background-repeat: no-repeat;
    background-position: 0% 100%;
    background-size: 270px;
    background-image: url(./images/briefcase@2x-min.png);
}
.banner__free-consult__text {
    color: #FFF;
    max-width: 284px;
}
.banner__free-consult__title {
    font-size: 34px;
    font-weight: 700;
    line-height: 125%;
    margin: 0 0 15px;
}
.banner__free-consult__descr {
    font-size: 22px;
    line-height: 120%;
}

.free-consult__form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 410px;
}
.free-consult__form__input {
    width: 100%;
    border-radius: 30px;
    background: #F2F2F2;
    box-shadow: 0px 5px 31.2px 0px rgba(0, 0, 0, 0.15) inset;
    padding: 22px 20px;
}
.free-consult__form__input::placeholder {
    font-size: 16px;
    color: #979797;
}
.free-consult__form .btn-green {
    font-size: 16px;
    font-weight: 600;
    width: 100%;
}

.callback-form {
    display: flex;
    max-width: 800px;
}
.callback-form__content {
    padding: 50px;
}
.callback-form__title {
    color: #000;
    font-size: 37px;
    font-weight: 700;
    margin: 0 0 10px;
}
.callback-form__descr {
    color: #000;
    font-size: 22px;
    margin: 0 0 30px;
}
.popup-form {
    max-width: 380px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.popup-form__input {
    padding: 18px 23px;
    border-radius: 20px;
    border: 1px solid #868686;
    background: #FFF;
    width: 100%;
    /* margin: 0 0 8px; */
}
.popup-form .btn-green {
    font-size: 20px;
    width: 100%;
    padding: 16px 28px;
}
.popup-form__note,
.free-consult__form__note {
    font-size: 14px;
    color: #AFAFAF;
    line-height: 1.2;
}
.callback-form__img {
    width: 320px;
    background-position: top;
    background-repeat: no-repeat;
    background-size: cover;
    background-image: url(./images/popup-form.webp);
}

.category h1 {
    color: #000;
    text-align: center;
    font-size: 60px;
    /* font-weight: 300; */
    line-height: 118%;
    margin: 58px 0 0;
}

.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;
}
/**/

.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;
}
form .btn-green {
    position: relative;
}

.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;
}
/**/

.footer {
    background-color: #000;
    padding: 86px 0 120px;
}
.footer-logo {
    display: block;
    margin: 0 0 40px;
}
.footer-main {
    display: flex;
    gap: 44px;
    justify-content: space-between;
    color: #FFF;
}
.footer-main__copyright {
    font-size: 16px;
    font-weight: 300;
    line-height: 24px;
    max-width: 350px;
    margin: 0 0 50px;
}
.footer-main__privacy {
    color: #FFF;
    font-size: 22px;
    line-height: 101%;
    transition: 0.2s;
}
.footer-main__privacy:hover {
    color: #36BD8F;
}
div.footer-column__title {
    font-size: 22px;
    font-weight: 700;
    line-height: 140%;
    margin: 0 0 16px;
}
.footer-menu li {
    font-weight: 300;
    transition: 0.2s;
}
.footer-menu li:hover {
    transition: 0.2s;
    color: #36BD8F;
}
.footer-menu li:not(:last-child) {
    margin: 0 0 10px;
}
.footer-column.contacts .footer-menu__wrapper {
    margin: 0 0 20px;
}
.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 .btn-green {
    font-size: 15px;
        padding: 14px 20px;
        font-weight: 700;
        margin: 0;
}

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