@media (max-width: 1400px) {
    .header-contacts {
        flex-direction: column;
    }

    .statistics__section {
        gap: 50px;
    }
    .statistics-title {
        font-size: 90px;
    }
    
    .services-grid__item {
        gap: 100px;
    }
    
    .contacts__grid {
        gap: 50px;
    }

    .transfer-hero__title,
    .transfer-pricing__item-price {
        font-size: 45px;
    }
    .transfer-hero__advantages {
        flex-wrap: wrap;
        gap: 20px 40px;
    }
    .transfer-hero-form-wrap {
        flex-direction: column-reverse;
        gap: 18px;
    }
    .transfer-hero__socials {
        justify-content: center;
    }
    .transfer-hero__socials a {
        width: unset;
    }
    
    .banking-promo__euro {
        right: 16%;
    }
    .banking-promo__ruble {
        right: 30%;
    }

    .transfer-pricing {
        grid-gap: 30px;
    }
    .transfer-pricing__item-range {
        font-size: 26px;
    }
    .transfer-pricing__item-feature {
        font-size: 20px;
    }
    
}
@media (max-width: 1200px) {
    ul.menu {
        gap: 24px;
    }

    .statistics__section {
        grid-template-columns: 1fr 1fr;
        gap: 50px;
    }
    .statistics-item {
        text-align: center;
    }

    .transfer-hero__section {
        grid-template-columns: 2fr 1fr;
    }
}

@media (max-width: 1024px) {
    .hidden-mobile,
    .upper-header,
    .header-phone {
        display: none;
    }
    
    section {
        padding: 80px 0;
    }

    .hidden-desktop {
        display: flex;
    }

    .header {
        background-color: #fff;
        box-shadow: 0 4px 14px 0 rgba(0, 0, 0, 0.15);
    }
    .header-inner {
        color: #262626;
    }
    ul.menu li.menu-item-has-children .icon {
        z-index: 13;
        fill: #262626;
        padding: 10px;
        margin: 8px 0 0;
    }
    .header-menu-item {
        justify-content: space-between;
    }
    li:has(.header-menu-item.active) > .sub-menu__wrapper {
        position: relative;
        display: initial;
        visibility: visible;
        opacity: 1;
        transform: translateY(28px);
        transition-delay: 0s, 0s, 0.4s;
        pointer-events: all;
        box-shadow: 0px 15px 20px 0px rgba(0,0,0,0.1);
    }
    .toggle-menu.hidden-desktop {
        display: flex;
    }
    .toggle-menu {
        position: absolute;
        /* left: 0; */
        right: 0;
        width: fit-content;
        margin: 0 auto;
    }
    .toggle-menu {
        background-color: unset;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 5px;
        padding: 6px;
        z-index: 200;
        transition: all 0.5s, background 0s;
    }
    .toggle-menu span {
        display: block;
        width: 36px;
        height: 3px;
        border-radius: 6px;
        background-color: #262626;
        transition: all 0.5s;
    }
    .header.scrolled .toggle-menu span {
        background-color: #fff;
    }
    .header.active .toggle-menu span:nth-of-type(1) {
        transform: translate(0px, 8px) rotate(45deg);
    }
    .header.active .toggle-menu span:nth-of-type(2) {
        transform: translate(0px, 0px) rotate(-45deg);
    }
    .header.active .toggle-menu span:last-child {
        opacity: 0;
    }
    .header .menu {
        display: none;
    }
    .header.active .menu {
        position: absolute;
        z-index: 10;
        top: 0;
        left: 5px;
        /* bottom: -18px; */
        display: flex;
        flex-direction: column;
        gap: 6px;
        padding: 20px;
        width: 100vw;
        margin: 80px 0 0 -20px;
        background-color: #fff;
        box-shadow: 0 4px 14px 0 rgba(0, 0, 0, 0.15);
    }
    .sub-menu__wrapper .sub-menu {
        padding: 0 10px;
    }
    .header-contacts {
        margin: 0 50px 0 0;
    }
    .transfer-hero__section {
        grid-template-columns: 1fr;
        padding: 60px 0 80px;
    }
    .transfer-hero__title {
        margin: 0 0 10px;
    }
    .transfer-hero__advantages {
        margin: 0 0 40px;
    }
    .transfer-hero-form,
    .transfer-hero__img img {
        margin: 0 auto;
    }

    .prices__cards {
        grid-template-columns: 1fr;
    }
}

@media (min-width: 978px) {
    ul.menu > li:hover > .sub-menu__wrapper {
        transition-delay: 0s, 0s, 0.4s;
    }
    ul.menu > li:hover > .sub-menu__wrapper,
    .sub-menu > li:hover > .sub-menu__wrapper {
        visibility: visible;
        opacity: 1;
        transform: translateY(28px);
        pointer-events: all;
        box-shadow: 0px 15px 20px 0px rgba(0,0,0,0.1);
    }
    ul.menu .sub-menu > li.menu-item-has-children > span .icon {
        transform: rotate(-90deg);
    }
    ul.menu .sub-menu > li.menu-item-has-children:hover > span .icon {
        transform: rotate(90deg)
    }
    ul.menu .sub-menu > li:hover > .sub-menu__wrapper {
        left: 103%;
        top: -28px;
        transition: none;
    }
    .sub-menu > li:hover > .sub-menu__wrapper::before {
        display: block;
        position: absolute;
        width: 25px;
        height: 100%;
        content: "";
        left: -20px;
        top: 0;
        z-index: 0;
    }
    .sub-menu > li:hover > .sub-menu__wrapper > .sub-menu {
        padding: 0 10px 8px;
    }
}

@media (max-width: 978px) {
    .header-inner {
        padding: 22px 0;
    }

    .statistics-descr {
        margin: 0 0 16px;
    }
    .statistics-title {
        font-size: 70px;
    }

    .services-grid__item {
        gap: 40px;
    }

    .services-grid__item:not(:last-of-type) {
        margin: 0 0 50px;
    }

    .blog-cards__section {
        gap: 20px;
    }

    .contacts__grid {
        grid-template-columns: 1fr;
        padding: 60px 30px;
    }
    .contacts__block-text {
        order: 0;
    }
    .contacts__block-form {
        order: 1;
    }
    .contacts__block-img {
        order: 2;
        border-radius: 30px;
        overflow: hidden;
    }

    .contacts__block-form,
    .contacts__block-text {
        padding: 0;
    }
    .contacts__block-text {
        text-align: center;
        padding: 0 30px;
        gap: 30px;
    }

    .transfer-pricing {
        grid-template-columns: 1fr;
    }

    .form-consultation__section {
        background-position: bottom;
    }

    .our-team__section {
        padding: 0 0 70px;
    }
    .our-team__cards {
        gap: 30px;
    }
    .our-team__card-title {
        font-size: 24px;
    }
    .our-team__card-position {
        font-size: 18px;
        margin: 0 0 10px;
    }
    .our-team__card-descr {
        font-size: 15px;
    }

    .footer {
        padding: 80px 0;
    }
    .footer-logo {
        margin: 0 auto 40px;
    }
    .footer-main {
        flex-direction: column;
        gap: 40px;
        text-align: center;
    }
    .footer-main__copyright {
        margin: 0 0 40px;
        max-width: unset;
    }
    .footer-column.services {
        order: 1;
    }
    .footer-column.business {
        order: 2;
    }
    .footer-column.contacts {
        order: 3;
    }
    .footer-column.about {
        order: 4;
    }
    .footer-column.copyright {
        order: 5;
    }
}
@media (max-width: 768px) {
    section {
        padding: 40px 0;
    }
    h2,
    .contacts__section-title,
    .banking-promo__section h2,
    .transfer-pricing__section h2 {
        font-size: 22px;
    }

    .header-callback {
        font-size: 11px;
        line-height: 15px;
        padding: 5px 15px;
    }

    .transfer-hero-form {
        flex-direction: column;
        border: unset;
        border-radius: unset;
        background-color: unset;
    }
    .transfer-hero-form__inner {
        display: flex;
        flex-direction: column;
        /* border: 1px solid #DEDEDE; */
        border-radius: 107px;
        background-color: #fff;
        overflow: hidden;
        box-shadow: 0 1px 56.9px 0 rgba(0, 0, 0, 0.10);
        margin: 0 0 10px;
    }
    .transfer-hero-form input {
        text-align: center;
        border-radius: unset;
    }
    .transfer-hero-form input[name="your-name"],
    .transfer-hero-form input[name="your-phone"] {
        max-width: unset;
    }
    .transfer-hero-form span[data-name="your-phone"]::before {
        height: 1px;
        width: 103%;
        top: 0;
        left: -3px;
    }    
    .transfer-hero-form .btn-green {
        width: 100%;
    }

    .banking-promo__section h2 {
        margin: 0 0 18px;
    }
    .banking-promo__visual {
        right: -50px;
        bottom: -42px;
        max-width: 370px;
    }
    .banking-promo__ruble {
        right: -40px;
        top: 30px;
        max-width: 150px;
    }
    .banking-promo__euro {
        right: 0;
        top: unset;
        bottom: 36%;
        max-width: 80px;
    }

    .reviews__grid {
        grid-template-columns: 1fr;
        gap: 82px;
    }

    .services-grid__item,
    .blog-cards__section {
        grid-template-columns: 1fr;
    }
    .services-grid__img:nth-child(odd) {
        order: 2;
    }
    .services-grid__img img {
        width: 100%;
        object-fit: cover;
    }

    .blog-cards__section {
        gap: 40px;
    }
    
    .contacts__grid {
        padding: 20px 15px;
    }

    .callback-form__img {
        display: none;
    }
    .callback-form__content {
        text-align: center;
        padding: 35px;
        margin: 0 auto;
    }
    .callback-form__title {
        font-size: 22px;
    }
    .callback-form__descr {
        font-size: 16px;
    }
    .callback-form .free-consult__acceptance {
        text-align: center;
        margin: 0 auto;
    }

    .our-team__cards {
        grid-template-columns: 1fr;
    }

    .single-header__descr {
        font-size: 20px;
    }

    .banner__free-consult__inner {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 50px 0 200px;
        background-size: 250px;
        background-position: 50% 100%;
    }
    .banner__free-consult__text {
        max-width: unset;
    }
    .banner__free-consult__title {
        font-size: 22px;
        max-width: 200px;
        margin: 0 auto 20px;
    }
    .banner__free-consult__descr {
        font-size: 18px;
        max-width: 250px;
    }

    .banner__call-us {
        flex-direction: column;
        gap: 20px;
    }
    .banner__call-us__inner {
        text-align: center;
        padding: 30px 0 0;
    }
    .banner__call-us__title {
        font-size: 22px;
        margin: 0 0 5px;
    }
    .banner__call-us__subtitle {
        font-size: 18px;
        margin: 0 0 32px;
    }
    .banner__call-us__phone {
        font-size: 30px;
        margin: 0 0 20px;
    }
    .banner__call-us .btn-green {
        margin: 0 auto;
    }
    .banner__call-us picture {
        margin: 0;
    }

    .footer-main__privacy {
        font-size: 15px;
    }
    .footer-main__copyright {
        font-size: 14px;
    }
}
@media (max-width: 600px) {
    .container {
        padding: 0 15px;
    }

    .hero__section {
        padding: 60px 0;
    }
    .hero__section h1 {
        font-size: 28px;
        max-width: 220px;
        margin: 0 auto 10px;
    }
    .hero__section-subtitle {
        font-size: 16px;
        margin: 0 0 30px;
    }
    .hero__section .btn-green {
        font-size: 16px;
        padding: 20px 10px;
        width: 100%;
    }

    .single-header__inner {
        max-width: 100vw;
        margin: 0 auto;
    }

    .statistics__section {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 40px 0 70px;
    }
    .statistics-item {
        display: flex;
        flex-direction: column;
    }
    .statistics-descr {
        order: 2;
        font-size: 18px;
    }
    .statistics-title {
        font-size: 80px;
    }

    .advantages__section {
        padding: 0 0 60px;
    }
    .advantages__title,
    .our-team__title {
        font-size: 22px;
        margin: 0 0 30px;
    }
    .advantages__grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .find-business-partner__section {
        padding: 60px 0;
    }
    .find-business-partner__title {
        font-size: 22px;
        margin: 0 0 20px;
    }
    .find-business-partner__section .btn-green {
        font-size: 18px;
        padding: 14px;
        width: 100%;
    }

    .category h1{
        font-size: 45px;
        margin: 58px 0 30px;
    }

    .reviews__section h2 {
        margin: 0 0 70px;
    }
    .reviews__card {
        padding: 70px 16px 20px;
    }
    .reviews__card-img {
        top: -50px;
        max-width: 102px;
    }
    .reviews__card-title {
        font-size: 20px;
        margin: 0 0 10px;
    }
    .reviews__card-text {
        font-size: 16px;
    }

    .opening-business__section {
        padding: 40px 0;
    }
    .opening-business__section h2 {
        font-size: 20px;
        font-weight: 400;
    }
    .opening-business__descr {
        font-size: 16px;
    }

    .services-grid__section {
        padding: 40px 0!important;
    }
    .services-grid__item {
        gap: 20px;
    }
    .services-grid__item:not(:last-of-type) {
        margin: 0 0 40px;
    }
    .services-grid__title {
        font-size: 22px;
        margin: 0 0 20px;
    }
    .services-grid__descr,
    .contacts__block-text-info {
        font-size: 16px;
    }

    .blog-cards__section {
        padding: 0 0 60px;
    }
    .blog-cards__inner {
        grid-template-columns: 1fr;
    }
    .blog-card__content {
        padding: 20px 10px;
    }
    .blog-card__content h3 {
        font-size: 20px;
    }
    .blog-card__text {
        font-size: 16px;
        margin: 0 0 30px;
    }
    .blog-card__footer {
        padding: 10px 0 0;
    }

    .contacts__section-title {
        margin: 0 0 20px;
    }
    .contacts__grid {
        gap: 20px;
        padding: 20px;
    }
    .contacts__block-text {
        padding: 0;
    }
    .contacts__block-text-title {
        font-size: 20px;
        line-height: 100%;
    }
    .contacts-form__input {
        padding: 16px 23px;
    }

    .our-services__header {
        margin: 0 0 20px;
    }

    .page-template-tpl-contacts .map__section {
        margin: 0 0 20px;
    }

    .map__section,
    .map__section iframe {
        height: 150px;
    }

    .transfer-hero__section {
        padding: 20px 0 70px;
    }
    .transfer-hero__meta {
        text-align: center;
    }
    .transfer-hero__title,
    .transfer-pricing__item-price,
    .banking-promo__title {
        font-size: 22px;
    }
    .transfer-hero__meta-img {
        display: block;
        margin: 0 -25px 20px;
    }    
    .transfer-hero__meta-img img {
        width: 100%;
        height: 365px;
        object-fit: cover;
    }
    .transfer-hero__info {
        max-width: unset;
        margin: 0 0 30px;
    }
    .transfer-hero__advantage {
        flex-direction: column;
        align-items: center;
        width: 100%;
    }
    .transfer-hero__img {
        display: none;
    }

    .banking-promo__section {
        padding: 0 0 70px;
    }
    .banking-promo {
        border-radius: 0;
        padding: 30px 20px;
        margin: 0 -25px;
    }
    .banking-promo__title {
        max-width: 230px;
        margin: 0 0 10px;
    }
    .banking-promo__subtitle {
        font-size: 16px;
        margin: 0 0 32px;
    }
    .banking-promo__safety {
        font-size: 16px;
        margin: 0 0 10px;
    }
    .banking-promo__features {
        margin: 0 0 43px;
    }
    .banking-promo__feature {
        font-size: 14px;
    }
    .transfer-hero-form__inner {
        opacity: 0.99;
        background-color: unset;
        background: linear-gradient(114deg, rgba(255, 255, 255, 0.80) 15.37%, rgba(255, 255, 255, 0.50) 77.09%);
        box-shadow: 0 1px 56.9px 0 rgba(0, 0, 0, 0.10);
        backdrop-filter: blur(20px);
    }
    .transfer-hero-form input[name="your-name"],
    .transfer-hero-form input[name="your-phone"] {
        background: none;
        max-width: 100%;
    }

    .transfer-pricing__section {
        padding: 0 0 70px;
    }
    .transfer-pricing__section h2 {
        margin: 0 0 30px;
    }
    .transfer-pricing {
        gap: 20px;
    }
    .transfer-pricing__item {
        padding: 12px;
    }
    .transfer-pricing__item-header {
        padding: 20px 30px;
        text-align: center;
    }
    .transfer-pricing__item-range {
        font-size: 20px;
        font-weight: 400;
        margin: 0 0 10px;
    }
    .transfer-pricing__item-price {
        font-size: 40px;
    }
    .transfer-pricing__item-feature {
        font-size: 14px;
    }
    .transfer-pricing__item .btn-green {
        margin: 0 auto;
    }

    .form-consultation__section {
        padding: 30px 0 40px;
        margin: 0 0 50px;
        background-position: 60% 100%;
    }
    .form-consultation__title {
        font-size: 20px;
        max-width: 230px;
        margin: 0 0 10px;
    }
    .form-consultation__sub-title {
        font-size: 16px;
        max-width: 190px;
        margin: 0 0 30px;
    }
    .form-consultation__socials {
        flex-direction: column;
        align-items: baseline;
        gap: 10px;
        margin: 0 0 60px;
    }
    .transfer-hero__socials {
        align-items: baseline;
    }
    .transfer-hero__socials .icon {
        width: 42px;
        height: 42px;
    }

    .single-header {
        padding: 20px 0 40px;
        border-radius: 0!important;
        margin: 0 -25px;
    }
    .single-header picture::after {
        background: linear-gradient(0deg, rgba(0, 0, 0, 0.00) -20.67%, rgba(0, 0, 0, 0.80) 100%), lightgray -49.028px -85.418px / 109.613% 242.343%;
    }
    .header__subtitle {
        margin: 0 auto 30px;
    }
    .single-header h1 {
        padding: 0 20px;
        font-size: 22px;
        margin: 0 0 20px;
    }
    .single-header__time {
        font-size: 16px;
    }
    .page-contents {
        font-size: 14px;
        padding: 20px 0 25px;
    }
    .page-contents p:not(:last-of-type) {
        margin: 0 0 16px;
    }
    .text h2,
    .text h3,
    .text h4 {
        margin: 20px 0;
        font-weight: 400;
    }
    .text h2 {
        font-size: 18px;
    }
    .text h3 {
        font-size: 17px;
    }

    .socials-share,
    .single-footer {
        flex-direction: column;
    }
    .single-footer {
        gap: 14px;
        margin: 0 0 40px;
    }
    .single-footer .header__subtitle {
        width: 160px;
        text-align: center;
        margin: 0 auto;
    }
    .socials-share {
        order: 3;
        gap: 10px;
    }
    .socials-share__icons {
        flex-direction: row;
    }
    .form-questions__title {
        font-size: 45px;
    }

    .single-header__descr {
        font-size: 14px;
    }
    .prices__descr,
    .prices__card-descr {
        font-size: 16px;
    }
    .prices__card .btn-green {
        font-size: 18px;
    }

    .page-template-tpl-about-us h1 {
        font-size: 36px;
        padding: 52px 0 20px;
    }

    .errorpage__digit {
        max-width: 150px;
        margin: 0 auto;
    }
    .errorpage__title {
        font-size: 18px;
        margin: 0 0 10px;
    }
    .errorpage__descr {
        font-size: 16px;
    }
    .errorpage__buttton .btn-green {
        padding: 12px 42px;
    }

    .footer {
        padding: 70px 0 40px;
    }
    div.footer-column__title {
        margin: 0 0 10px;
    }
    .footer-column.about div.footer-column__title {
        margin: 0;
    }
    .footer-menu li {
        font-size: 14px;
    }
    .footer-column__title li {
        font-size: 22px;
        font-weight: 700;
        line-height: 140%;
    }
    .footer-column__title li:not(:last-of-type) {
        margin: 0 0 10px;
    }
    /* .footer .btn-green {
        font-size: 15px;
        padding: 14px 20px;
        font-weight: 700;
    } */
    .footer-column.copyright {
        display: flex;
        flex-direction: column-reverse;
        gap: 20px;
    }
    .footer .btn-green {
        margin: 0 auto;
    }
}
@media (max-width: 375px) {
    .logo, .logo-white {
        width: 84px;
    }
    .toggle-menu span {
        width: 32px;
    }

    .form-questions__section .btn-green {
        font-size: 16px;
        padding: 20px 30px;
    }
}