/*!
Theme Name: Visastore
Author: ''
Version: 1.0.0
*/

/* Unbounded */

@font-face {
    font-family: 'Unbounded';
    src: url('css/fonts/Unbounded-ExtraBold.woff2') format('woff2');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Unbounded';
    src: url('css/fonts/Unbounded-Bold.woff2') format('woff2');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Unbounded';
    src: url('css/fonts/Unbounded-Black.woff2') format('woff2');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Unbounded';
    src: url('css/fonts/Unbounded-Light.woff2') format('woff2');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Unbounded';
    src: url('css/fonts/Unbounded-ExtraLight.woff2') format('woff2');
    font-weight: 200;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Unbounded';
    src: url('css/fonts/Unbounded-Medium.woff2') format('woff2');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Unbounded';
    src: url('css/fonts/Unbounded-SemiBold.woff2') format('woff2');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Unbounded';
    src: url('css/fonts/Unbounded-Regular.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

/**/

/* Inter */

@font-face {
    font-family: 'Inter';
    src: url('css/fonts/Inter-ExtraBold.woff2') format('woff2');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Inter';
    src: url('css/fonts/Inter-Black.woff2') format('woff2');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Inter';
    src: url('css/fonts/Inter-Bold.woff2') format('woff2');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Inter';
    src: url('css/fonts/Inter-Light.woff2') format('woff2');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Inter';
    src: url('css/fonts/Inter-Thin.woff2') format('woff2');
    font-weight: 100;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Inter';
    src: url('css/fonts/Inter-Medium.woff2') format('woff2');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Inter';
    src: url('css/fonts/Inter-ExtraLight.woff2') format('woff2');
    font-weight: 200;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Inter';
    src: url('css/fonts/Inter-Regular.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Inter';
    src: url('css/fonts/Inter-SemiBold.woff2') format('woff2');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

/**/

:root {
    --primary-color: #34C06E;
    --light-accent-color: #6ACF94;
    --accent-color: #239F57;
    --secondary-color: #2F2F2F;
    /* --decorative-color: #0D1825; */
    --font-color: #242424;
    /* --btns-font-color: #000; */

    /* fonts */
    --primary-font: 'Inter';
    --secondary-font: 'Unbounded';
}
html {
    margin: 0;
    scroll-behavior: smooth;
}
body {
    font-family: var(--primary-font);
    font-size: 16px;
    overflow-x: hidden;
    padding: 80px 0 0;
    margin: 0;
}
body * {
    box-sizing: border-box;
}
*:focus {
    outline: none;
  }
body ol, 
body ul {
    padding-left: 1em;
}
body p, 
body li {
    color: var(--font-color);
    font-family: var(--primary-font);
    font-size: 1em;
    line-height: 1.8;
    margin: 1.5em 0;
}
body a {
    color: var(--primary-color);
}
body a:hover {
    text-decoration: none;
}
body h1,
body h2, 
body h3,
body h4,
body .prices-section {
    scroll-margin-top: 90px;
}
body.admin-bar h1,
body.admin-bar h2, 
body.admin-bar h3,
body.admin-bar h4,
body.admin-bar .prices-section {
    scroll-margin-top: 120px;
}
body input,
body textarea,
body button {
    font-family: var(--primary-font);
}
body h1 {
    color: var(--font-color);
    font-size: 3em;
    font-weight: 700;
}
.grecaptcha-badge { 
    visibility: hidden !important;
}
.container {
    width: 100%;
    max-width: 1200px;
    padding: 0;
    margin: 0 auto;
}
.hidden-desktop {
    display: none;
}
.text-center {
    text-align: center;
}
.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;
}
.flex {
    display: flex;
}
.m-65 {
    margin: 65px 0;
}
.p-65 {
    padding: 65px 0;
}

.main {
    /* display: flex; */
    /* flex-direction: column; */
}

.main > section:last-child {
    padding: 0 0 96px 0;
}

.header-block {
    position: relative;
    margin: 0 0 45px 0;
}
.header-block__title {
    color: var(--font-color);
    font-family: var(--secondary-font);
    font-size: 1.75em;
    line-height: 48px;
    font-weight: 900;
}
.header-block__title h2 {
    color: var(--font-color);
    font-family: var(--secondary-font);
    font-size: 30px;
    line-height: 1.3;
    font-weight: 700;
    margin: 0;
}

.full-width-content {
    margin-left: calc((100vw - 1140px) / -2);
    margin-right: calc((100vw - 1140px) / -2 - 340px);
}

@keyframes scale { 
    0% { 
        transform: scale(0.9); 
        opacity: 0; 
    } 
    50% { 
        transform: scale(1.005); 
        opacity: 0.5; 
    } 
    100% { 
        transform: scale(1); 
        opacity: 1; 
    } 
}

/**/

/* buttons */

.btn {
    position: relative;
    display: inline-block;
    text-align: center;
    font-family: var(--primary-font);
    font-size: 1em;
    font-weight: 600;
    line-height: 100%;
    text-decoration: none;
    border-radius: 12px;
    cursor: pointer;
    border: none;
    transition: 0.3s;
    padding: 20px 24px;
}

.btn_primary {
    color: #fff;
    background: var(--primary-color);
}

.btn_primary:hover {
    background: #28af60;
}

.btn_secondary {
    color: #ffffff;
    background: var(--secondary-color);
}

.btn_secondary:hover {
    color: #fff;
    background: var(--primary-color);
}

.btn_tertiary {
    color: var(--font-color);
    font-size: 0.9em;
    background: transparent;
    border-radius: 8px;
    border: 1px solid #666666;
    padding: 16px 20px;
}

.btn_tertiary:hover {
    color: #ffffff;
    background: var(--primary-color);
    border-color: var(--primary-color);
}

/**/

/* swiper-pagination */

.swiper .swiper-pagination {
    position: relative;
    bottom: auto;
    display: flex;
    gap: 10px;
    justify-content: center;
    margin: 30px 0 0 0;
}

.swiper .swiper-pagination-bullet {
    width: 13px;
    height: 13px;
    background: #E5E5E5;
    transition: 0.3s;
    opacity: 1;
    margin: 0 !important;
}

.swiper .swiper-pagination-bullet:hover,
.swiper .swiper-pagination-bullet-active {
    background: var(--primary-color);
}

/**/

/* swiper-navigation */

.header-block .swiper-navigation {
    position: absolute;
    bottom: 0;
    right: 0;
}

.swiper-navigation {
    display: flex;
    gap: 10px;
    align-items: center;
}

.swiper-navigation .swiper-button {
    position: relative;
    width: auto;
    height: auto;
    left: auto;
    right: 0;
    border: 1px solid #AAA39D;
    border-radius: 16px;
    transition: 0.3s;
    padding: 17px;
}

.swiper-navigation .swiper-button:hover {
    border-color: var(--decorative-color);
}

.swiper-navigation .swiper-button:after {
    display: none;
}

.swiper-navigation .swiper-button .icon {
    fill: #AAA39D;
    width: 13px;
    height: 13px;
    transition: 0.3s;
}

.swiper-navigation .swiper-button:hover .icon {
    fill: var(--decorative-color);
}

.swiper-navigation .swiper-button-next {
    transform: rotate(-90deg);
}

.swiper-navigation .swiper-button-prev {
    transform: rotate(90deg);
}

/**/

/* header */

.header {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 30;
    padding: 18px 0;
    background: #fff;
}
.header.scrolled {
    box-shadow: 0 10px 10px rgb(0 0 0 / 3%);
    /* -webkit-backdrop-filter: saturate(180%) blur(20px);
        backdrop-filter: saturate(180%) blur(20px);
        background-color: rgba(255, 255, 255, 0.7); */
}
.admin-bar .header {
    top: 32px;
}

/* body:not(.home) .header {
    background: #EDF8F1;
    padding: 30px 0;
} */

.header__container{
    display: flex;
    max-width: 1760px;
    width: 100%;
    padding: 0 24px;
    margin: 0 auto;
}

.header__logo {
    display: flex;
    align-items: center;
    margin: 0 62px 0 0;
}
.header__logo a {
    display: flex;
    gap: 10px;
    align-items: center;
    text-decoration: none;
}
.header__logo .site-descr {
    color: #666666;
    font-size: 0.8em;
    font-weight: 400;
    line-height: 18px;
}
.header__logo .site-descr i {
    font-style: normal;
}
.header__logo .site-descr .name {
    display: block;
    color: #333333;
    font-family: var(--secondary-font);
    font-size: 1.12em;
    font-weight: 500;
    line-height: 18px;
    text-transform: uppercase;
}
.header__logo .icon {
    width: 57px;
    height: 44px;
}


.header-visas {
    padding: 2px 0 0;
}
.header-visas__button {
    display: flex;
    gap: 12px;
    align-items: center;
    color: #ffffff;
    font-weight: 700;
    background: var(--primary-color);
    border: none;
    border-radius: 8px;
    transition: 0.3s;
    cursor: pointer;
    padding: 12px 16px;
    white-space: nowrap;
}

.header-visas__button:hover,
.header-visas__button.active {
    background: #28af60;
}

.header-visas__button .icon {
    width: 11px;
    height: 11px;
    fill: #ffffff;
}

.header-visas__menu {
    position: absolute;
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 20px;
    visibility: hidden;
    max-width: 750px;
    width: 100%;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0px 0px 24px rgba(0, 0, 0, 0.05), 0px 48px 64px -32px rgba(0, 0, 0, 0.05);
    opacity: 0;
    z-index: -1;
    transform: translate(0px, 25px);
    transition: 0.3s;
}
.header-visas__menu-types {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 20px 20px 20px 0;
}
.header-visas__menu-type {
    display: none;
    width: 100%;
    gap: 20px 15px;
}
.header-visas__menu-type.active {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

.header-visas__menu.show {
    visibility: visible;
    opacity: 1;
    z-index: 20;
    transform: translate(0px, 40px);
}

.header-visas__menu-list {
    display: flex;
    flex-direction: column;
    padding: 10px;
}
.header-visas__menu-list__item {
    text-decoration: none;
    color: #000;
    display: block;
    cursor: pointer;
    padding: 13px;
    font-size: 0.9em;
    line-height: 1.1;
    border-radius: 10px;
}
.header-visas__menu-list__item.active {
    background: var(--primary-color);
    color: #fff;
}

.header-visas__country {
    display: flex;
    gap: 12px;
    align-items: center;
    color: #484848;
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    transition: 0.3s;
}

.header-visas__country:hover {
    color: var(--primary-color);
}

.header-visas__country .icon {
    width: 24px;
    height: 24px;
}

.searchform-wrapper,
.searchform {
    position: relative;
}
.searchform-button__mobile {
    display: none;
    width: 22px;
    height: 22px;
    padding: 0;
    border: none;
    background: none;
}
.searchform-button__mobile:hover {
    cursor: pointer;
}
.searchform-button__mobile svg path {
    transition: .2s;
}
.searchform-button__mobile.active svg path,
.searchform-button__mobile:hover svg path {
    stroke: var(--primary-color);
    transition: .2s;
}
.searchform input {
    padding: 0;
    margin: 0;
    font-size: 14px;
    line-height: 1;
    border: none;
    padding: 0 12px;
    border-radius: 12px;
    border: 1px solid #e8e8e8;
    height: 40px;
    transition: .2s;
    width: 100%;
    min-width: 180px;
}
.searchform input:focus {
    border-color: #cee1d5;
    box-shadow: 0 0 0 4px #36c06e0f;
    transition: .2s;
}
.searchform button {
    cursor: pointer;
    font-size: 0;
    width: 16px;
    height: 16px;
    position: absolute;
    top: 12px;
    right: 12px;
    border: none;
    background: url(images/icons/search.svg) 50% 50% / 16px;
}
.searchform-suggestions {
    position: absolute;
    left: 0;
    right: 0;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0px 0px 24px rgba(0, 0, 0, 0.05), 0px 48px 64px -32px rgba(0, 0, 0, 0.05);
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    z-index: 100;
    transition: all 0.44s ease-in-out 0s, visibility 0s linear 0.44s, z-index 0s linear 0.01s;
    pointer-events: none;
    overflow: hidden;
    width: 300px;
}
.searchform-suggestions.active {
    visibility: visible;
    opacity: 1;
    transform: translateY(41px);
    transition-delay: 0s, 0s, 0.4s;
    pointer-events: all;
}

.searchform-suggestions section {
    border-top: 1px solid #eee;
    padding: 8px 12px;
}
.searchform-suggestions section:first-child {
    border-top: none;
}

.searchform-suggestions__title {
    font-weight: 500;
    padding: 14px 20px 14px;
    font-size: 15px;
    border-bottom: 1px solid #f2f5f9;
}

.searchform-suggestions ul {
    list-style: none;
    margin: 0;
    padding: 10px 0;
}

.searchform-suggestions li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 20px;
    cursor: pointer;
    font-size: 14px;
    line-height: 1.3;
    margin: 0;
    transition: .2s;
    color: #3d4651;
}

.searchform-suggestions svg {
    width: 16px;
    min-width: 16px;
    height: 16px;
    fill: #7c8ca1;
}
.searchform-suggestions li:hover {
    background: #f2f5f9;
    transition: .2s;
}

.searchform-suggestions img {
    width: 20px;
    height: 20px;
}

.searchform-suggestions a {
    text-decoration: none;
    color: inherit;
    flex: 1;
}

.header__socials {
    display: flex;
    gap: 16px;
    align-items: center;
    justify-content: flex-end;
}
.header__socials .phone_link {
    color: #000;
    text-decoration: none;
    font-size: 1em;
    font-weight: 500;
    transition: color .2s;
    white-space: nowrap;
}
.header__socials .phone_link:hover {
    color: var(--primary-color);
    transition: color .2s;
}

.header__socials a {
    display: flex;
    align-items: center;
    justify-content: center;
}
.header__socials a .icon {
    width: 27px;
    height: 27px;
    transition: 0.3s;
}
.header__socials a:hover .icon {
    transform: scale(1.05);
}

.header__menu-toggle {
    position: relative;
    display: none;
    flex-direction: column;
    align-items: flex-end;
    justify-content: center;
    gap: 4px;
    width: 20px;
    height: 20px;
    padding: 0;
    border: none;
    background: var(--primary-color);
    box-sizing: content-box;
    border-radius: 15px;
    z-index: 200;
    transition: all 0.3s;
    padding: 15px;
}
.header__menu-toggle span {
    width: 20px;
    height: 2px;
    border-radius: 3px;
    background-color: #ffffff;
    transition: all 0.3s;
}
.header__menu-toggle span:nth-of-type(3) {
    width: 14px;
}

.header__menu-toggle.active span:nth-of-type(1) {
    transform: rotate(45deg) translate(4px, 4px);
}

.header__menu-toggle.active span:nth-of-type(2) {
    transform: rotate(-45deg) translate(0px, 0px);
}

.header__menu-toggle.active span:nth-of-type(3) {
    opacity: 0;
    transform: scaleX(0);
}


/* .header__menu-toggle span:nth-of-type(2) {
}
.header__menu-toggle.active {
    background: transparent;
}
.header__menu-toggle.active span:nth-of-type(1) {
    opacity: 0;
}
.header__menu-toggle.active span:nth-of-type(2) {
    top: 50%;
    transform: translate(-50%, 0%) rotate(45deg);  
}
.header__menu-toggle.active span:nth-of-type(3) {
    top: 50%;
    transform: translate(-50%, 0%) rotate(-45deg); 
} */

/* header__menu */

.header__menu {
    position: relative;
    display: flex;
    align-items: center;
    margin: 0 auto;
}
.header__menu-mobile {
    display: none;
    overflow: scroll;
    width: 100%;
}
.header__menu-mobile .searchform-wrapper {
    padding: 10px 20px;
}
.header__menu-mobile .searchform-suggestions {
    display: none;
}
.header__menu .menu {
    flex: 1;
    display: flex;
    gap: 48px;
    flex-wrap: nowrap;
    list-style: none;
    /* transition: 0.3s; */
    padding: 0;
    margin: 0;
} 
.header__menu .menu li {
    position: relative;
    line-height: 100%;
    margin: 0;
    z-index: 100;
}
.header__menu .menu li.menu-item-has-children .icon {
    position: absolute;
    top: 1px;
    right: 0;
    width: 14px;
    height: 14px;
    transition: 0.3s;
    box-sizing: content-box;
    padding: 2px;
} 
.header__menu .menu > li > a {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    position: relative;
    color: var(--font-color);
    font-size: 1em;
    font-weight: 500;
    text-decoration: none;
    white-space: nowrap;
    transition: 0.3s;
}
.header__menu .menu > li.menu-item-has-children > a {
    padding: 0 25px 0 0;
}
.header__menu .menu > li:hover > a,
.header__menu .menu > li.active > a {
    color: var(--primary-color);
}
.header__menu .menu > li > a .icon {
    fill: var(--primary-color);
}
.header__menu .menu > li:hover > a .icon {
    transform: rotate(180deg);
}

/* header__menu first-level-dropdown */
.header__menu .menu > li > .sub-menu__wrapper {
    visibility: hidden; 
    opacity: 0;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    min-width: 280px;
    transform: translateY(15px);
    z-index: 100;
    transition: all 0.44s ease-in-out 0s, visibility 0s linear 0.44s, z-index 0s linear 0.01s;
    pointer-events: none;
}
.header__menu.sticky .menu > li > .sub-menu__wrapper {
    transform: translateY(19px);
}
.header__menu .menu > li:hover > .sub-menu__wrapper {
    visibility: visible;
    opacity: 1;
    transform: translateY(52px);
    transition-delay: 0s, 0s, 0.4s;
    pointer-events: all;
}
.header__menu.sticky .menu > li:hover > .sub-menu__wrapper {
    transform: translateY(22px);
}
.header__menu .menu > li > .sub-menu__wrapper > .sub-menu:before {
    content: '';
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: -50px;
    height: 50px;
    width: 50%;
}
.header__menu .menu > li:hover > .sub-menu__wrapper > .sub-menu:before {
    display: block;
}
/**/
/* header__menu list-dropdown */
.header__menu .menu .sub-menu__wrapper .sub-menu {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 20px;
    list-style: none;
    background: #ffffff;
    box-shadow: 0px 0px 24px rgba(0, 0, 0, 0.05), 0px 48px 64px -32px rgba(0, 0, 0, 0.05);
    border-radius: 12px;
    transition: 0.3s;
    padding: 20px;
}
.header__menu .menu .sub-menu__wrapper .sub-menu li {
    /* padding: 0 20px; */
}
.header__menu .menu .sub-menu__wrapper .sub-menu li a {
    position: relative;
    display: block;
    color: var(--font-color);
    font-size: 1em;
    font-weight: 500;
    text-decoration: none;
    padding: 0 20px 0 0;
}
.header__menu .menu .sub-menu__wrapper .sub-menu li:hover > a,
.header__menu .menu .sub-menu__wrapper .sub-menu li.current_page_item > a,
.header__menu .menu .sub-menu__wrapper .sub-menu li.current-menu-item > a {
    color: var(--primary-color);
}
.header__menu .menu .sub-menu__wrapper .sub-menu li a .icon {
    right: 10px;
    fill: var(--primary-color);
    transform: rotate(-90deg);
}
/**/
/* header__menu second-level-dropdown */
.header__menu .menu .sub-menu__wrapper ul li .sub-menu__wrapper {
    visibility: hidden; 
    opacity: 0;
    position: absolute;
    top: -30px;
    left: 0;
    width: 100%;
    min-width: 250px;
    transform: translateX(75%);
    z-index: -1;
    transition: all 0.4s ease-in-out 0s, visibility 0s linear 0.4s, z-index 0s linear 0.01s;
}
.header__menu .menu .sub-menu__wrapper ul li:hover .sub-menu__wrapper {
    visibility: visible;
    opacity: 1;
    z-index: 100;
    transform: translateX(106%);
    transition-delay: 0s, 0s, 0.4s;
}
.header__menu .menu .sub-menu__wrapper ul li .sub-menu__wrapper > .sub-menu:before {
    content: '';
    position: absolute;
    left: -10px;
    top: 0;
    bottom: 0;
    width: 10px;
}
.header__menu .menu .menu-item-flags .sub-menu__wrapper .sub-menu li a {
    display: flex;
    align-items: center;
    gap: 12px;
}
.header__menu .menu .menu-item-flags .sub-menu__wrapper .sub-menu li a::before {
    display: block;
    content: '';
    position: relative;
    height: 24px;
    width: 24px;
    min-width: 24px;
    background-color: #919191;
    background-position: 50% 50%;
    background-repeat: no-repeat;
    background-size: contain;
    border-radius: 50%;
}
.sub-menu li.menu-item-eu a::before {
    background-image: url(images/icons/flags/eu.svg);
}
.sub-menu li.menu-item-ca a::before {
    background-image: url(images/icons/flags/ca.svg);
}
.sub-menu li.menu-item-us a::before {
    background-image: url(images/icons/flags/us.svg);
}
.sub-menu li.menu-item-jp a::before {
    background-image: url(images/icons/flags/jp.svg);
}
.sub-menu li.menu-item-cn a::before {
    background-image: url(images/icons/flags/cn.svg);
}
.sub-menu li.menu-item-gb a::before {
    background-image: url(images/icons/flags/gb.svg);
}

.mmenu {
    margin: 0;
    padding: 12px 0 0;
    list-style: none;
}
.mmenu > li {
    line-height: 1;
    list-style: none;
    margin: 0;
    padding: 0;
}
.mmenu > li.has-children {
    padding: 12px 25px;
}
.mmenu > li > a {
    display: block;
    text-decoration: none;
    color: #000;
    padding: 12px 25px;
}
.mmenu > li span {
    display: flex;
    align-items: center;
    justify-content: space-between;
    line-height: 1;
}
.mmenu > li.open span {
    font-weight: 500;
    margin: 0 0 20px;
}
.mmenu > li svg {
    width: 12px;
    height: 12px;
    fill: #000;
    transition: .2s;
}
.mmenu > li.open svg {
    transform: rotate(90deg);
    transition: .2s;
}
.mmenu > li > ul {
    display: grid;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin: 0;
    padding: 0;
}
.mmenu > li > ul > li {
    list-style: none;
    margin: 0;
    padding: 0;
}
.mmenu > li > ul > li a {
    color: #000;
    display: flex;
    text-decoration: none;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    padding: 4px 10px;
    border-radius: 12px;
    border: 1px solid #eceff4;
    background: #ffffff;
}
.mmenu > li > ul > li a i {
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 87px;
    font-style: normal;
}
.mmenu > li > ul > li a img {
    width: 18px;
    min-width: 18px;
    height: 18px;
}


.nav-contacts {
    display: flex;
    justify-content: flex-start;
    padding: 10px 25px 25px;
}
.nav-contacts__phone {
    color: #000;
    text-decoration: none;
    font-size: 1.1em;
    font-weight: 500;
    transition: color .2s;
    white-space: nowrap;
}
/**/

/* hero */

.hero {
    padding: 0 20px;
}

.hero__wrapper {
    position: relative;
    max-width: 1760px;
    width: 100%;
    background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTc2MCIgaGVpZ2h0PSI4NjQiIHZpZXdCb3g9IjAgMCAxNzYwIDg2NCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTAgNzI2LjMwN0MwIDc0Ny43OTUgMTQuMjAzMyA3NjYuNTYgMzUuMDg1NCA3NzEuNjI3QzEzNy4zMDUgNzk2LjQzNCA0NTQuNzU4IDg2NCA4ODAgODY0QzEzMDUuMjQgODY0IDE2MjIuNyA3OTYuNDMzIDE3MjQuOTEgNzcxLjYyN0MxNzQ1LjggNzY2LjU2IDE3NjAgNzQ3Ljc5NSAxNzYwIDcyNi4zMDdWNDhDMTc2MCAyMS40OTAzIDE3MzguNTEgMCAxNzEyIDBINDhDMjEuNDkwMyAwIDAgMjEuNDkwMyAwIDQ4TDAgNzI2LjMwN1oiIGZpbGw9IiNFREY4RjEiLz4KPC9zdmc+Cg==);
    background-repeat: no-repeat;
    background-position: center top;
    background-size: contain;
    margin: 0 auto;
    padding: 126px 0 64px 0;
}

.hero__image {
    position: absolute;
    top: 0;
    right: 5%;
}

.hero__image picture {
    display: block;
    width: 100%;
    height: 100%;
}

.hero__image picture img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-content {
    position: relative;
    z-index: 10;
}

.hero-content__title {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    flex-direction: column;
    font-family: var(--secondary-font);
    font-size: 3.5em;
    font-weight: 500;
    line-height: 72px;
    margin: 0 0 32px 0;
}

.hero-content__title span {
    display: inline-flex;
    min-height: 98px;
    /* max-width: 560px; */
    /* width: 100%; */
    color: #fff;
    text-transform: lowercase;
    background: var(--primary-color);
    border-radius: 32px;
    padding: 13px 32px;
}

.hero-content__description {
    display: flex;
    gap: 40px;
    flex-direction: column;
    margin: 0 0 64px 0;
}

.hero-content__description p {
    color: var(--font-color);
    line-height: 28px;
    margin: 0;
}
.hero-content__description-date br {
    display: none;
}

.hero-content__description p span {
    color: #ffffff;
    font-weight: 700;
    white-space: nowrap;
    background: var(--secondary-color);
    border-radius: 6px;
    margin: 0 2px;
    padding: 4px 7px;
}

/**/

/* visa-estimation */

.visa-estimation {
    display: flex;
    flex-direction: column;
    max-width: 756px;
    width: 100%;
    background: #ffffff;
    border-radius: 24px;
    box-shadow: 0px 56px 96px -36px rgba(18, 78, 22, 0.23);
    padding: 48px;
    margin: 0 auto;
}

.visa-estimation__dropdowns {
    display: flex;
    gap: 24px;
    align-items: center;
    width: 100%;
    margin: 0 auto 40px;
}

.visa-estimation__dropdown {
    position: relative;
    flex: 1;
}

.visa-estimation__select {
    position: absolute;
    display: flex;
    gap: 24px;
    flex-direction: column;
    visibility: hidden;
    /* max-width: 328px; */
    width: 100%;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0px 0px 24px rgba(0, 0, 0, 0.05), 0px 48px 64px -32px rgba(0, 0, 0, 0.05);
    opacity: 0;
    z-index: -1;
    transform: translate(0px, 15px);
    transition: 0.3s;
    padding: 24px;
}

.visa-estimation__select.show {
    visibility: visible;
    opacity: 1;
    z-index: 20;
    transform: translate(0px, 10px);
    max-height: 260px;
    overflow: auto;
}

.visa-estimation__option {
    display: flex;
    gap: 8px;
    align-items: center;
    color: #484848;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    transition: 0.3s;
}

.visa-estimation__option:hover,
.visa-estimation__option.active {
    color: var(--primary-color);
}

.visa-estimation__option .icon {
    fill: var(--primary-color);
    width: 24px;
    height: 24px;
}

.visa-estimation__option:hover .icon,
.visa-estimation__option.active .icon {
    fill: var(--primary-color);
}

.visa-estimation__label {
    position: relative;
    display: flex;
    gap: 8px;
    align-items: center;
    max-width: 318px;
    width: 100%;
    color: var(--font-color);
    font-size: 1em;
    background: transparent;
    border: 1px solid #0000001A;
    border-radius: 12px;
    cursor: pointer;
    transition: 0.3s;
    padding: 23px;
}

.visa-estimation__label:hover,
.visa-estimation__label.active {
    border-color: var(--primary-color);
    background: #F4FCF7;
}

.visa-estimation__label::before {
    content: '';
    position: absolute;
    top: 50%;
    right: 30px;
    width: 8px;
    height: 8px;
    background: var(--primary-color);
    transform: translateY(-50%);
    border-radius: 100%;
}

.visa-estimation__label .icon {
    width: 24px;
    height: 24px;
    fill: var(--primary-color);
}

.visa-estimation__details {
    display: flex;
    gap: 24px;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin: 0 0 40px 0;
}

.visa-estimation__detail {
    max-width: 230px;
    width: 100%;
    text-align: center;
}

.visa-estimation__price,
.visa-estimation__time {
    display: block;
    color: var(--font-color);
    font-family: var(--secondary-font);
    font-size: 1.5em;
    line-height: 32px;
    font-weight: 500;
}

.visa-estimation__description {
    display: block;
    color: #959595;
    font-size: 1em;
    line-height: 20px;
}

.visa-estimation__actions {
    display: flex;
    gap: 24px;
    align-items: center;
    justify-content: center;
}

.visa-estimation__action {
    max-width: 230px;
    width: 100%;
    font-size: 1.12em;
    border-radius: 16px;
    padding: 28px 24px;
}

/**/

.other-types {
    display: grid;
    grid-gap: 35px;
    margin: 40px 0;
    grid-template-columns: 1fr 1fr 1fr;
}

.type-card {
    position: relative;
    text-decoration: none;
    background: #ffffff;
    /* box-shadow: 0px 0px 24px rgba(0, 0, 0, 0.05), 0px 48px 64px -32px rgba(0, 0, 0, 0.05); */
    /* border: 1px solid #fff; */
    border-radius: 16px;
    transition: 0.3s;
    background-position: 100% 0;
}
.type-card__n1 {
    background-image: url(images/visa-type-1.svg);
}
.type-card__n2 {
    background-image: url(images/visa-type-2.svg);
}
.type-card__n3 {
    background-image: url(images/visa-type-3.svg);
}
.type-card__n4 {
    background-image: url(images/visa-type-4.svg);
}
.type-card__n5 {
    background-image: url(images/visa-type-5.svg);
}
.type-card__n6 {
    background-image: url(images/visa-type-6.svg);
}

.type-card:hover {
    /* border: 1px solid var(--primary-color); */
    /* box-shadow: 0px 0px 24px rgba(0, 0, 0, 0.09), 0px 48px 64px -32px rgba(0, 0, 0, 0.09); */
}
.type-card__btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    position: absolute;
    right: 0;
    top: 0;
    border-radius: 50%;
    transition: .2s;
}
.type-card__n1 .type-card__btn {
    background-color: #f5f4f9;
}
.type-card__n2 .type-card__btn {
    background-color: #F4F9F4;
}
.type-card__n3 .type-card__btn {
    background-color: #FBF6F4;
}
.type-card__n4 .type-card__btn {
    background-color: #F9F9F4;
}
.type-card__n5 .type-card__btn {
    background-color: #F9F4F8;
}
.type-card__n6 .type-card__btn {
    background-color: #F4F8F9;
}

.type-card__n1 .type-card__btn svg {
    fill: #6621BA;
}
.type-card__n2 .type-card__btn svg {
    fill: #239F57;
}
.type-card__n3 .type-card__btn svg {
    fill: #C77F38;
}
.type-card__n4 .type-card__btn svg {
    fill: #A1A13E;
}
.type-card__n5 .type-card__btn svg {
    fill: #B66EA8;
}
.type-card__n6 .type-card__btn svg {
    fill: #4CA4BB;
}

.type-card__head {
    position: relative;
    display: flex;
    flex-direction: column;
    color: #000;
    font-weight: 600;
    transition: 0.3s;
    padding: 24px 30px 0;
    /* min-height: 140px; */
    gap: 20px;
}
.type-card__head picture img {
    position: absolute;
    object-fit: cover;
    object-position: center;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
}
.type-card__head a {
    text-decoration: none;
    color: #000;
}
.type-card__flags {
    display: flex;
    height: 20px;
    padding-left: 6px;
    /* position: relative;
    z-index: 2; */
}
.type-card__flags img {
    display: block;
    width: 20px;
    height: 20px;
    margin: 0 0 0 -6px;
    border: 2px solid #fff;
    border-radius: 50%;
}
.type-card__n1 .type-card__flags img {
    border-color: #f5f4f9;
}
.type-card__n2 .type-card__flags img {
    border-color: #F4F8F9;
}
.type-card__n3 .type-card__flags img {
    border-color: #FBF6F4;
}
.type-card__n4 .type-card__flags img {
    border-color: #F9F9F4;
}
.type-card__n5 .type-card__flags img {
    border-color: #F9F4F8;
}
.type-card__n6 .type-card__flags img {
    border-color: #F4F9F4;
}
.type-card__content {
    display: flex;
    flex-direction: column;
    height: 100%;
    gap: 15px;
    padding: 14px 24px 24px;
}
.type-card__content a {
    text-decoration: none !important;
    font-size: 22px;
    font-weight: 700;
    color: #000 !important;
    display: block;
    transition: .2s;
}
.type-card__content a::before {
    width: 100%;
    height: 100%;
    content: '';
    position: absolute;
    top: 0;
    left: 0;
}
.type-card__content p {
    flex: auto;
    color: #454545;
    font-size: 14px;
    line-height: 1.5;
    margin: 0;
}
.type-card:hover .type-card__btn {
    right: -5px;
    transition: .2s;
}

.type-card__n1:hover .type-card__content a {
    color: #6621BA !important;
}
.type-card__n2:hover .type-card__content a {
    color: #239F57 !important;
}
.type-card__n3:hover .type-card__content a {
    color: #C77F38 !important;
}
.type-card__n4:hover .type-card__content a {
    color: #A1A13E !important;
}
.type-card__n5:hover .type-card__content a {
    color: #B66EA8 !important;
}
.type-card__n6:hover .type-card__content a {
    color: #4CA4BB !important;
}

/* popular-destinations */

.popular-destinations {
    display: grid;
    grid-gap: 35px;
    margin: 40px 0;
    grid-template-columns: 1fr 1fr 1fr 1fr;
}
.popular-destinations-col-3 {
    grid-template-columns: 1fr 1fr 1fr;
}

.popular-destinations__item {
    position: relative;
    text-decoration: none;
    background: #ffffff;
    box-shadow: 0px 0px 24px rgba(0, 0, 0, 0.05), 0px 48px 64px -32px rgba(0, 0, 0, 0.05);
    border: 1px solid #f3f3f3;
    border-radius: 16px;
    transition: 0.3s;
    padding: 8px;
}
.popular-destinations__item--no-hover {
    cursor: default;
    box-shadow: 0px 0px 24px rgba(0, 0, 0, 0.05), 0px 48px 64px -32px rgba(0, 0, 0, 0.05) !important;
    border: 1px solid #f3f3f3 !important;
}

.popular-destinations__item:hover {
    border: 1px solid var(--primary-color);
    box-shadow: 0px 0px 24px rgba(0, 0, 0, 0.09), 0px 48px 64px -32px rgba(0, 0, 0, 0.09);
}

.popular-destinations__title {
    display: flex;
    gap: 16px;
    align-items: center;
    color: #000;
    font-weight: 600;
    border-bottom: 1px dashed #E0E0E0;
    transition: 0.3s;
    padding: 16px 16px 24px;
}
.popular-destinations__title a {
    text-decoration: none !important;
    color: #000 !important;
}
.popular-destinations__title a::before {
    width: 100%;
    height: 100%;
    content: '';
    position: absolute;
    top: 0;
    left: 0;
}

.popular-destinations__item:hover .popular-destinations__title {
    color: var(--primary-color);
}

.popular-destinations__item--no-hover .popular-destinations__title {
    color: #000 !important;
}

.popular-destinations__title .icon {
    width: 32px;
    height: 32px;
    fill: var(--primary-color);
}

.popular-destinations__description {
    color: #586875;
    font-size: 0.87em;
    line-height: 18px;
    padding: 16px 16px 8px 16px;
}

.popular-destinations__item--no-hover .popular-destinations__description {
    padding-left: 10px;
}

.popular-destinations__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.popular-destinations__tags a {
    padding: 3px 6px;
    color: #000;
    text-decoration: none;
    font-size: 13px;
    background: #f3f3f3;
    border-radius: 5px;
}
.popular-destinations__tags a:hover {
    color: #fff;
    background: var(--primary-color);
}

/* form content */

.form-content {
    position: relative;
    z-index: 5;
    margin: 50px 0;
    padding: 40px;
    background: #edf8f2;
    border-radius: 20px;
    overflow: hidden;
}
/* .form-content::before {
    display: block;
    position: absolute;
    z-index: 2;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    content: '';
    opacity: 0.8;
    background: linear-gradient(360deg, #0c2721b8, #25423cf0);
} */
.form-content img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.form-content__grid {
    display: flex;
    justify-content: space-evenly;
    z-index: 3;
    position: relative;
}
.form-content__content {
    color: #fff;
    max-width: 40%;
    position: relative;
}
.form-content__content ul {
    position: relative;
    margin: 0;
    z-index: 3;
}
.form-content__content h2 {
    font-size: 22px;
    font-weight: 400;
    position: relative;
    z-index: 3;
}
.form-content__content p {
    margin: 15px 0;
    font-weight: 300;
    line-height: 1.5;
    position: relative;
    z-index: 3;
}
.form-content__content span {
    background: var(--primary-color);
    color: #fff;
    white-space: nowrap;
    padding: 2px 4px;
    border-radius: 4px;
    text-decoration: none !important;
}
.form-content__content strong {
    font-weight: 500;
    font-size: 25px;
    line-height: 1.1;
    font-family: 'Podkova', sans-serif;
}
.form-content__content ul {
    margin-bottom: 30px;
}
.form-content__content ul li {
    font-weight: 300;
}
.form-content__content em {
    display: block;
    border-left: 5px solid #fc724e;
    padding: 5px 0 5px 20px;
    line-height: 1.4;
    font-size: 16px;
}
.form-content__form {
    max-width: 280px;
}
.form-content__form .contact-form__group input {
    height: 50px;
    border-radius: 12px;
    border: 1px solid #ccc;
}
.form-content__form .contact-form__group input:focus {
    outline: none !important;
    opacity: 1;
}
.form-content__form .contact-form__group button {
    max-width: 100%;
    height: 50px;
}
.form-content__form-title {
    position: relative;
    z-index: 3;
    line-height: 1.1;
    text-align: center;
    font-size: 28px;
    color: #fc724e;
    margin: 0 0 35px;
    color: #000;
    font-family: var(--secondary-font);
    font-size: 25px;
    font-weight: 600;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}
.form-content__form-title span {
    display: block;
    padding: 10px;
    border-radius: 12px;
    color: #fff;
    background: var(--primary-color);
}
.form-content--sm .contact-form__private {
    text-align: center;
}
.form-content--sm .contact-form__private a {
    color: #777;
    text-decoration: underline;
}

/* visa-options */

.visa-options {
    position: relative;
    display: flex;
    align-items: center;
}

.visa-options__item {
    flex: 1;
    background: #ffffff;
    border-right: 1px solid #E0E0E0;
    box-shadow: 0px 48px 64px -32px rgba(0, 0, 0, 0.05);
    filter: drop-shadow(0px 0px 24px rgba(0, 0, 0, 0.05));
    padding: 24px;
}

.visa-options__item:first-child {
    border-radius: 16px 0px 0px 16px;
}

.visa-options__item:last-of-type {
    border-right: none;
    border-radius: 0 16px 16px 0;
}

.visa-options__item.best-offer {
    border: 2px solid #34C06E;
    box-shadow: 0px 0px 24px rgba(13, 85, 15, 0.03), 0px 56px 80px -32px rgba(18, 78, 22, 0.23);
    border-radius: 16px;
    padding: 24px 24px 50px;
    margin: 0 0 29px 0;
}
.visa-options__item.best-offer .visa-options__apply-button {
    color: #ffffff;
    background: var(--primary-color);
    border-color: var(--primary-color);
}

.visa-options__header {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
}

.visa-options__label {
    color: #ffffff;
    font-size: 0.81em;
    line-height: 100%;
    font-weight: 700;
    border-radius: 5px;
    background: var(--primary-color);
    padding: 9px 12px;
    margin: 0 0 24px 0;
}

.visa-options__title {
    color: var(--font-color);
    font-size: 18px;
    font-family: var(--secondary-font);
    line-height: 1.5;
    font-weight: 600;
    margin: 0 0 10px;
}

.visa-options__description {
    color: var(--font-color);
    font-size: 0.87em;
    line-height: 20px;
    margin: 0 0 34px 0;
}

.visa-options__apply-button {
    width: 100%;
    font-size: 1em;
    border-radius: 14px;
    padding: 23px 20px;
}

.visa-options__item.show-more .visa-options__apply-button {
    margin: 0 0 24px 0
}

.visa-options__services-wrapper {
    display: grid;
    grid-template-rows: 0fr;
    overflow: hidden;
    transition: 0.3s;
}

.visa-options__item.show-more .visa-options__services-wrapper  {
    grid-template-rows: 1fr;
}

.visa-options__services {
    min-height: 0;
}

.visa-options__services-group {
    display: flex;
    gap: 16px;
    flex-direction: column;
    border-bottom: 1px dashed #E0E0E0;
    padding: 24px 0;
}

.visa-options__services-group:first-child {
    padding-top: 0;
}

.visa-options__services-group:last-child {
    border: none;
    padding-bottom: 0;
}

.visa-options__service-item {
    display: flex;
    gap: 8px;
    /* align-items: center; */
    color: #333333;
    font-size: 0.87em;
    line-height: 18px;
}

.visa-options__service-item.inactive {
    opacity: 0.3;
    filter: grayscale(1);
}

.visa-options__service-item.terms {
    font-weight: 600;
}

.visa-options__service-item .icon {
    min-width: 18px;
    width: 18px;
    height: 18px;
    fill: var(--primary-color);
}

.visa-options__show-details {
    position: absolute;
    top: -30px;
    right: 0;
    display: flex;
    gap: 6px;
    align-items: center;
    color: #ffffff;
    font-size: 0.75em;
    font-weight: 600;
    line-height: 100%;
    background: #2F2F2F;
    border-radius: 8px;
    border: 1px solid transparent;
    cursor: pointer;
    transition: 0.3s;
    padding: 9px 18px;
}

.visa-options__show-details.active {
    color: var(--font-color);
    background: transparent;
    border-color: #666666;
}

.visa-options__show-details .icon-wrapper {
    position: relative;
}

.visa-options__show-details .icon-wrapper::before {
    content: "";
    position: absolute;
    top: 1px;
    left: 3px;
    width: 100%;
    height: 2px;
    border-bottom: 1px solid #ffffff;
    background-color: #666666;
    transform: rotate(45deg);
    transform-origin: 0 0;
    transition: 0.3s;
    opacity: 0;
}

.visa-options__show-details.active .icon-wrapper::before  {
    opacity: 1;
}

.visa-options__show-details .icon-wrapper .icon {
    width: 14px;
    height: 14px;
    fill: #ffffff;
    transition: 0.3s;
}

.visa-options__show-details.active .icon-wrapper .icon {
    fill: #666666;
}

/**/

/* text-block */

.text-block  {
    display: flex;
    gap: 48px;
}

.text-block__content {
    flex: 1;
}
.text-block__content ul {
    list-style: none;
    padding: 0;
}
.text-block__content ul li {
    position: relative;
    list-style: none;
    margin: 0;
    padding: 5px 0 5px 25px;
}
.text-block__content ul li::before {
    content: '';
    position: absolute;
    top: 11px;
    left: 0;
    height: 15px;
    width: 16px;
    background-position: 50% 50%;
    background-repeat: no-repeat;
    background-size: contain;
    background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGZpbGw9Im5vbmUiIHZpZXdCb3g9IjAgMCAzMSAxNCI+PHBhdGggZmlsbD0iIzM0QzA2RSIgZmlsbC1ydWxlPSJldmVub2RkIiBkPSJNMS4yNDggMTMuODhhMjIuNDEzIDIyLjQxMyAwIDAgMCAuMTgxLTMuMzE1YzEuNDItLjIxIDIuNjc2LS43MzMgNC4xMTctMS4zNDJMNS42IDkuMmMxLjg0OC0uNzggMy45NjMtMS42NzQgNi42NzMtMS42NzRzNC44MjUuODk0IDYuNjczIDEuNjc1bC4wNTQuMDIzYzEuODc2Ljc5MiAzLjQzOCAxLjQ0IDUuNDU5IDEuNDQgMS40NDUgMCAyLjgxNC0uMzg3IDQuMTUtLjg5NSAxLjIxLS40NiAyLjQ2MS41NTIgMi4yMDcgMS44MzNhMS41OTMgMS41OTMgMCAwIDEtLjk5MiAxLjE5Yy0xLjczLjY1LTMuNDg3IDEuMTQ0LTUuMzY1IDEuMTQ0LTIuNzEgMC00LjgyNi0uODk0LTYuNjc0LTEuNjc1bC0uMDUzLS4wMjJjLTEuODc2LS43OTMtMy40MzgtMS40NC01LjQ2LTEuNDQtMi4wMiAwLTMuNTgyLjY0Ny01LjQ1NyAxLjQ0bC0uMDU2LjAyM2MtMS41NzUuNjY1LTMuMzQ0IDEuNDEzLTUuNTExIDEuNjE5WiIgY2xpcC1ydWxlPSJldmVub2RkIi8+PHBhdGggZmlsbD0iIzM0QzA2RSIgZD0ibTYuNzYgNC43MzUuMDU1LS4wMjNjMS44NzUtLjc5MiAzLjQzNy0xLjQ0IDUuNDU4LTEuNDQgMi4wMjEgMCAzLjU4My42NDggNS40NiAxLjQ0bC4wNTIuMDIzYzEuODQ4Ljc4IDMuOTYzIDEuNjc1IDYuNjc0IDEuNjc1IDEuODc4IDAgMy42MzYtLjQ5NCA1LjM2NS0xLjE0NS41MTQtLjE5My44ODUtLjY0Ny45OTItMS4xOS4yNTQtMS4yOC0uOTk2LTIuMjkzLTIuMjA3LTEuODMyLTEuMzM2LjUwOC0yLjcwNS44OTQtNC4xNS44OTQtMi4wMiAwLTMuNTgzLS42NDctNS40NTktMS40NGwtLjA1NC0uMDIyQzE3LjA5OC44OTQgMTQuOTgzIDAgMTIuMjczIDBTNy40NDguODk0IDUuNiAxLjY3NGwtLjA1NC4wMjNjLTEuODc2Ljc5Mi0zLjQzOCAxLjQ0LTUuNDYgMS40NEgwYy4zOTYgMS4wNDUuNzE2IDIuMTI4Ljk1MiAzLjI0MiAyLjMwMi0uMTYzIDQuMTYtLjk0OCA1LjgwNy0xLjY0NFoiLz48L3N2Zz4=);
}

.text-block__content .text-block__image {
    display: none;
}

.text-block__content .btn {
    margin: 24px 0 0 0;
} 

.text-block__image {
    width: 100%;
    border-radius: 16px;
    overflow: hidden;
}

.text-block__image.w-30 {
    max-width: 368px;
}

.text-block__image.w-50 {
    max-width: 576px;
}

.text-block__image picture {
    display: block;
    width: 100%;
    height: 100%;
}

.text-block__image picture img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/**/

/* country-lists */

.country-lists {
    display: grid;
    grid-gap: 48px;
    grid-template-columns: 1fr 1fr 1fr;
}

.country-lists__item {
    position: relative;
    display: flex;
    flex-direction: column;
    border: 1px solid #fff;
    background: #FFFFFF;
    box-shadow: 0px 0px 24px rgba(0, 0, 0, 0.05), 0px 48px 64px -32px rgba(0, 0, 0, 0.05);
    border-radius: 16px;
    padding: 8px;
    transition: .2s;
}

.country-lists__header {
    border-radius: 12px;
    padding: 24px;
}

.country-lists__item.unfriendly  .country-lists__header {
    background: #FDF0F1;
}
.country-lists__item.unfriendly:hover {
    border-color: #FB4E57;
    transition: .2s;
    cursor: pointer;
}

.country-lists__item.neutral  .country-lists__header {
    background: #FAF2E8;
}
.country-lists__item.neutral:hover {
    border-color: #ED9125;
    transition: .2s;
    cursor: pointer;
}

.country-lists__item.friendly  .country-lists__header {
    background: #E5F6EC;
}
.country-lists__item.friendly:hover {
    border-color: #34C06E;
    transition: .2s;
    cursor: pointer;
}

.country-lists__title {
    color: #222525;
    font-size: 1.25em;
    line-height: 24px;
    font-weight: 700;
    margin: 0 0 8px 0;
}

.country-lists__item.unfriendly  .country-lists__title span {
    color: #FB4E57;
}

.country-lists__item.neutral  .country-lists__title span {
    color: #ED9125;
}

.country-lists__item.friendly  .country-lists__title span {
    color: #34C06E;
}

.country-lists__description {
    color: var(--font-color);
    font-size: 0.87em;
    line-height: 20px;
}

.country-lists__countries {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 15px 20px;
    list-style: none;
    padding: 20px 16px !important;
    margin: 0 !important;
}
.country-lists__countries-col-2 {
    grid-template-columns: 1fr 1fr;
}
.country-lists__countries li::before {
    display: none;
}

.country-lists__country {
    display: flex;
    gap: 12px;
    font-size: 0.9em !important;
    line-height: 1.3 !important;
    align-items: center;
    margin: 0 !important;
    padding: 0 !important;
}

.country-lists__country.other {
    display: none;
}

.country-lists__country .icon {
    width: 22px;
    height: 22px;
}

.country-lists__country .status {
    margin: 0 0 0 auto;
}

.country-lists__footer {
    padding: 0 16px;
    margin: auto 0 8px 0;
}
.country-lists__footer a {
    color: var(--font-color);
    font-size: 0.9em;
    background: transparent;
    border-radius: 8px;
    border: 1px solid #cfcfcf;
    padding: 16px 20px;
    display: block;
    width: 100%;
    text-align: center;
    text-decoration: none;
}
.country-lists__footer a::before {
    width: 100%;
    height: 100%;
    display: block;
    top: 0;
    left: 0;
    content: '';
    position: absolute;
}

.country-lists__footer .btn {
    width: 100%;
}

/**/

/* visa-info */

.visa-info {
    display: flex;
    gap: 48px;
}

.visa-info__duration {
    display: flex;
    gap: 16px;
    flex-direction: column;
    max-width: 368px;
    width: 100%;
    background: #FFFFFF;
    box-shadow: 0px 0px 24px rgba(0, 0, 0, 0.05), 0px 48px 64px -32px rgba(0, 0, 0, 0.05);
    border-radius: 16px;
    padding: 24px;
}

.visa-info__title {
    color: var(--font-color);
    font-size: 1.25em;
    font-weight: 700;
    line-height: 28px;
}

.visa-info__description {
    color: #454545;
    font-size: 0.9em;
    line-height: 20px;
}

.visa-info__button .btn {
    width: 100%;
}

.visa-info__image {
    max-width: 320px;
    width: 100%;
    border-radius: 16px;
    overflow: hidden;
}

.visa-info__image picture {
    display: block;
    width: 100%;
    height: 100%; 
}

.visa-info__image picture img {
    display: block;
    width: 100%;
    height: 100%; 
    max-height: 330px;
    object-fit: cover;
}

.visa-info__documents {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.visa-info__actions {
    display: flex;
    gap: 24px;
    margin: auto 0 0 0;
}

/**/

/* news-list */

.news-container {
    display: flex;
    gap: 48px;
}

.news-container .news-list {
    max-width: 368px;
    width: 100%;
}

.news-container .news-short-list_wrapper {
    flex: 1;
}

.news-list {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-gap: 40px;
    margin: 0 0 50px;
}

body:not(.home) .article-content-wrap .news-list {
    grid-template-columns: 1fr 1fr;
}

.news-item {
    display: flex;
    flex-direction: column;
    position: relative;
    background: #ffffff;
    box-shadow: 0px 0px 24px rgba(0, 0, 0, 0.05), 0px 48px 64px -32px rgba(0, 0, 0, 0.05);
    border-radius: 16px;
    transition: 0.3s;
    padding: 8px;
}
.news-item .post-author__position {
    opacity: 0.6;
}

/* .news-item:hover {
    box-shadow: 0px 5px 10px rgba(17, 29, 43, 0.3);
} */

.news-item__link {
    position: absolute;
    inset: 0;
    font-size: 0;
}

.news-item__image {
    display: block;
    width: 100%;
    height: 200px;
    border-radius: 12px;
    overflow: hidden;
    margin: 0 0 8px;
}

.news-item__image picture {
    display: block;
    width: 100%;
    height: 100%;
}

.news-item__image picture img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news-item__content {
    flex: auto;
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    padding: 16px;
}

.news-item__title {
    display: block;
    color: var(--font-color);
    font-size: 1.1em;
    font-weight: 700;
    line-height: 1.3;
    transition: 0.3s;
    margin: 0 0 15px 0;
    text-decoration: none;
}
.news-item__title:hover {
    color: var(--primary-color);
}

.news-item__head {
    display: flex;
    justify-content: space-between;
    color: #959595;
    font-size: 0.9em;
    line-height: 20px;
    margin: 0 0 10px 0;
    width: 100%;
}

.news-item__preview-text {
    color: var(--font-color);
    font-size: 0.9em;
    line-height: 1.5;
    margin: 0 0 20px 0;
    flex: auto;
}
.news-item__preview-text-only {
    margin: 0;
}

.news-item__preview-text p {
    margin: 0;
}

.news-item__country {
    display: flex;
    gap: 8px;
    align-items: center;
    color: #333333;
    font-size: 0.9em;
    font-weight: 700;
    line-height: 100%;
    background: #FAFAFA;
    border-radius: 5px;
    border: 1px solid #D6D6D6;
    padding: 6px 8px;
}

.news-item__country .icon {
    width: 20px;
    height: 20px;
}

/**/

/* news-short-list */

.news-short-list_wrapper {
    background: #FFFFFF;
    box-shadow: 0px 0px 24px rgba(0, 0, 0, 0.05), 0px 48px 64px -32px rgba(0, 0, 0, 0.05);
    border-radius: 16px;
    padding: 24px;
}

.news-short-list {
    display: flex;
    gap: 8px;
    flex-direction: column;
    margin: 0 0 20px 0;
}

.news-short-list__item {
    display: flex;
    gap: 12px;
    align-items: center;
    text-decoration: none;
}

.news-short-list__item-title {
    color: var(--font-color);
    font-weight: 500;
    line-height: 20px;
    transition: 0.3s;
}

.news-short-list__item:hover .news-short-list__item-title {
    color: var(--primary-color);
}

.news-short-list__item-country {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #F5F5F5;
    border: 1px solid #E8E8E8;
    border-radius: 100%;
    padding: 8px;
}

.news-short-list__item-country .icon {
    width: 20px;
    height: 20px;
}

.news-short-list__read-more {
    width: 100%;
}

/**/

/* news-list */

.blog-list {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-gap: 48px;
}

.blog-list:has( + .blog-list__read-more ) {
    margin: 0 0 48px 0;
}

.blog-item {
    position: relative;
    background: #ffffff;
    box-shadow: 0px 0px 24px rgba(0, 0, 0, 0.05), 0px 48px 64px -32px rgba(0, 0, 0, 0.05);
    border-radius: 16px;
    transition: 0.3s;
    padding: 8px;
}

.blog-item:hover {
    box-shadow: 0px 5px 10px rgba(17, 29, 43, 0.3);
}

.blog-item__link {
    position: absolute;
    inset: 0;
    font-size: 0;
    z-index: 10;
}

.blog-item__image {
    display: block;
    /* max-width: 352px; */
    width: 100%;
    height: 224px;
    border-radius: 12px;
    overflow: hidden;
    margin: 0 0 8px;
}

.blog-item__image picture {
    display: block;
    width: 100%;
    height: 100%;
}

.blog-item__image picture img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-item__content {
    position: relative;
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    padding: 16px;
}

.blog-item__title {
    display: flex;
    gap: 16px;
    align-items: center;
    color: var(--font-color);
    font-size: 1.25em;
    font-weight: 700;
    line-height: 28px;
    transition: 0.3s;
    margin: 0 0 16px 0;
}

.blog-item__preview-text {
    color: var(--font-color);
    font-size: 0.9em;
    line-height: 20x;
    margin: 0 0 24px 0;
}

.blog-item__preview-text p {
    margin: 0;
}

.blog-item__country {
    position: absolute;
    left: 8px;
    top: -36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    border-radius: 100%;
    padding: 8px;
}

.blog-item__country .icon {
    width: 40px;
    height: 40px;
}

.blog-item__meta {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.blog-item__tag {
    color: #333333;
    font-size: 0.9em;
    background: #FAFAFA;
    border-radius: 5px;
    border: 1px solid #D6D6D6;
    padding: 6px 7px;
}

.blog-item__date {
    color: #959595;
    font-size: 0.9em;
    line-height: 20px;
}

.blog-list__read-more {
    display: table;
    margin: 0 auto;
}

/**/

/* form-consultation */

.form-consultation__wrapper {
    background: #F5F5F5;
    padding: 96px 0;
}

.form-consultation {
    max-width: 768px;
    width: 100%;
    margin: 0 auto;
}

.form-consultation__title {
    text-align: center;
    color: var(--font-color);
    font-family: var(--secondary-font);
    font-size: 1.75em;
    font-weight: 800;
    line-height: 48px;
    margin: 0 0 24px 0;
}

.form-consultation__descr {
    text-align: center;
    color: var(--font-color);
    font-size: 0.9em;
    line-height: 20px;
    margin: 0 0 48px 0;
}

.form-consultation__form .wpcf7-form {
    display: flex;
    gap: 0 24px;
    flex-wrap: wrap;
}

.form-consultation__form .wpcf7-form .form__group {
    width: 100%;
}

.form-consultation__form .wpcf7-form .form__group.email,
.form-consultation__form .wpcf7-form .form__group.phone {
    flex: 0 1 calc(50% - 12px);
}

/**/

/*forms*/
.form__group {
    margin: 0 0 24px 0;
}
.form__group:has( + .form__control) {
    margin: 0 0 20px 0;
}
.form__group .wpcf7-form-control-wrap {
    display: block;
}
.form__input {
    width: 100%;
    color: var(--font-color);
    font-family: var(--primary-font);
    font-size: 1em;
    line-height: 100%;
    outline: none;
    border: 1px solid #D6D6D6;
    background: #ffffff;
    border-radius: 12px;
    box-sizing: border-box;
    padding: 16px;
}
.form__input::placeholder {
    color: #959595;
}
.form__input.wpcf7-not-valid {
    border-color: #dc3232;
    background-image: url('images/icons/error-icon.png');
    background-repeat: no-repeat;
    background-size: 20px;
    background-position: 97% 50%;
}
.form__group .wpcf7-not-valid-tip {
    position: absolute;
    top: 0;
    left: 5px;
    font-size: 0.7em;
}
.wpcf7-response-output {
    display: none;
}
.form__group p {
    color: #FFF;
    font-size: 0.66em;
    line-height: normal;
}
.form__control {
    padding: 0 0 10px 0;
}
.submitting .form__control .btn {
    transition: 0;
    color: transparent;
} 
.submitting .form__control .btn: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;
} 
.form__control .wpcf7-spinner {
    display: none;
}
.form__group .wpcf7-acceptance .wpcf7-list-item {
    margin: 0;
}
.form__group .wpcf7-acceptance .wpcf7-list-item label {
    display: flex;
    gap: 10px;
    align-items: center;
}
.form__group .wpcf7-acceptance input {
    position: absolute;
    opacity: 0;
}
.form__group .wpcf7-acceptance .wpcf7-list-item-label {
    position: relative;
    font-size: 0.87em;
    padding: 0 0 0 34px;
}
.form__group .wpcf7-acceptance .wpcf7-list-item-label:before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 24px;
    height: 24px;
    font-size: 0;
    box-sizing: border-box;
    border-radius: 6px;
    border: 1px solid #BBB;
    transform: translateY(-50%);
}
.form__group .wpcf7-acceptance .wpcf7-list-item-label:after {
    content: '';
    display: none;
    position: absolute;
    top: 40%;
    left: 5px;
    width: 12px;
    height: 6px;
    border-left: 2px solid var(--primary-color);
    border-bottom: 2px solid var(--primary-color);
    transform: translateY(-50%) rotate(-50deg);
}
.form__group .wpcf7-acceptance input[type="checkbox"]:checked + .wpcf7-list-item-label:after {
    display: block;
}

/**/

/* breadcrumbs */

.breadcrumbs {
    margin: 0 0 30px 0;
}

.page-id-167 .breadcrumbs {
    margin: 0 0 20px 0;
}

.breadcrumbs:has( + .post-info) {
    margin: 0 0 10px 0;
}

.breadcrumbs a.breadcrumbs__link {
    color: var(--font-color);
    font-size: 0.9em;
    text-decoration: none;
    transition: 0.3s;
}

.breadcrumbs a.breadcrumbs__link:hover {
    text-decoration: underline;
}

.breadcrumbs .breadcrumbs__separator {
    display: inline-block;
    color: #99E3B8;
    margin: 0 5px;
}

.breadcrumbs span.breadcrumbs__current,
.breadcrumbs span.breadcrumbs__link {
    color: #959595;
    font-size: 0.9em;
}

/**/

/* page-heading */

.page-heading {
    position: relative;
    padding: 40px 50px 50px;
    border-radius: 32px;
    margin: 0 20px 50px 20px;
    background: #EDF8F1;
}

.page-heading__wrapper {
    position: relative;
    display: flex;
    gap: 20px;
    align-items: center;
}

.post-info {
    display: flex;
    gap: 64px;
    flex-wrap: wrap;
    align-items: center;
}

.post-info__item {
    position: relative;
    color: #454545;
    font-size: 0.9em;
    line-height: 20px;
}

.post-info__item a {
    text-decoration: none;
}

.post-info__item:first-child {
    color: #34C06E;
    font-weight: 600;
}

.post-info__item::before {
    content: '';
    position: absolute;
    top: 50%;
    right: -34px;
    width: 6px;
    height: 6px;
    border-radius: 100%;
    background: #242424;
    transform: translateY(-50%);
    opacity: 0.3;
}

.post-info__item:last-child::before {
    display: none;
}

.post-author {
    position: relative;
    display: flex;
    gap: 8px;
    line-height: 1;
    align-items: center;
}
.post-author:hover {
    opacity: 0.8;
}
.post-author__info {
    display: flex;
    flex-direction: column;
    gap: 3px;
    /* max-width: 170px; */
}
.post-author img {
    margin: 0 !important;
    display: block;
    border-radius: 50%;
}
.post-author__position {
    font-size: 12px;
    font-weight: 400;
    line-height: 16px;
    white-space: nowrap;
}
.post-author strong {
    display: block;
    font-weight: 700;
}
.post-author i {
    height: 40px;
    width: 40px;
    border-radius: 50%;
    background-color: #595959;
    background-position: 50% 50%;
    background-repeat: no-repeat;
    background-size: cover;
}
.post-author a {
    font-size: 15px;
    font-weight: 600;
    color: #222525;
    text-decoration: none !important;
}
.post-author a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.author-person {
    display: flex;
    gap: 30px;
    align-items: center;
}
.author-person img {
    display: block;
    width: 100px;
    height: 100px;
    border-radius: 50%;
}

.page-heading__image {
    display: none;
}
.page-heading__title {
    margin: 0;
}
.page-heading__title h1 {
    color: var(--font-color);
    font-family: var(--secondary-font);
    font-size: 2.5em;
    font-weight: 500;
    line-height: 48px;
    margin: 0;
}

.page-heading__title:has( + div ) {
    margin: 0 0 24px 0;
}

.page-heading__description p {
    color: var(--font-color);
    font-size: 1em;
    line-height: 24px;
    margin: 0;
}

.page-heading__description:has( + div ) {
    margin: 0 0 20px 0;
}  

.page-heading__image {
    position: relative;
    max-width: 260px;
    width: 100%;
    height: 260px;
    border-radius: 100%;
    overflow: hidden;
    z-index: 1;
}

.page-heading__content .page-heading__image {
    display: none;
}

.page-heading__image picture {
    display: block;
    width: 100%;
    height: 100%;
}

.page-heading__image picture img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/**/

/* article */

.article {
    /* margin: 50px 0; */
}
.single .article {
    margin: 20px 0 50px;
}
.article-content-sidebar {
    display: flex;
    gap: 48px;
}
.article-content-wrap {
    flex: 1;
}
.article-content a {
    color: var(--primary-color);
    text-decoration: none;
}
.article-content a:hover {
    text-decoration: underline;
}
.article-content h2 {
    color: var(--decorative-color);
    font-size: 1.7em;
    line-height: 1.5;
    font-family: var(--secondary-font);
    font-weight: 600;
    margin: 40px 0 20px;
}
.article-content h3 {
    color: var(--font-color);
    font-size: 1.12em;
    font-weight: 700;
    margin: 20px 0;
}
.article-content h4 {
    font-size: 1.11em;
}
.article-content ul {
    padding: 0;
    margin: 20px 0;
    list-style: none;
}
.article-content ul li {
    position: relative;
    padding-left: 25px;
    margin: 0 0 10px;
    font-size: 1em;
    font-weight: 400;
    line-height: 1.8;
}
.article-content ul li p {
    margin: 0;
}
.article-content ul li::before {
    content: '';
    position: absolute;
    top: 9px;
    left: 0;
    border: 3px solid #36c06e;
    border-radius: 50%;
    height: 5px;
    width: 5px;
}

.article-content img {
    max-width: 100%;
    height: auto;
}

.article-content table {
    margin: 30px 0;
    width: 100%;
    border-collapse: collapse;
    border: 1px solid #87949B;
    border-radius: 16px;
}
.article-content tr:first-child th {
    border-bottom: 1px solid #87949B;
    background-color: #DEE5E9;
    font-size: 15px;
    font-weight: 600;
    vertical-align: middle;
    line-height: 1.35;
    text-align: left;
    padding: 12px 15px;
    background: #d2d9dd;
    border-left: 1px solid #87949B;
    border-bottom: 1px solid #87949B;
}
.article-content tr:first-child {
    padding: 12px;
    text-align: left;
    font-size: 14px;
}
.article-content tr:first-child th:first-child {
    border-left: none;
}
.article-content th {
    text-align: center;
    color: #000;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.1;
}
.article-content th strong {
    font-weight: 700;
}
.article-content tr:nth-child(odd) {
    background-color: #F8FAFA;
}
.article-content td:last-child {
    border-right: none;
}
.article-content tr:last-child td {
    border-bottom: none;
}

.article-content tr:last-child th {
    border-bottom: none;
}
.article-content th:first-child,.article-content td:first-child {
    text-align: left;
    max-width: 600px;
    border-left: none
}
.article-content td {
    font-size: .9em;
    line-height: 1.3;
    vertical-align: middle;
    text-align: left;
    padding: 10px;
    border-right: 1px solid #87949B;
    border-bottom: 1px solid #87949B;
}

.article-content .post-info {
    gap: 15px 64px;
}
.article-content .post-info__item:first-child {
    flex: 100%;
    color: inherit;
}
.article-content .post-info__item:first-child::before {
    display: none;
}

.type-false ul li,
.type-true ul li {
    padding-left: 25px;
}
.type-true ul li::before {
    background-image: url(images/icons/list-true.svg);
    border: none;
    border-radius: 0;
    width: 14px;
    height: 14px;
    top: 8px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: 50% 50%;
}
.type-false ul li::before {
    background-image: url(images/icons/list-false.svg);
    border: none;
    border-radius: 0;
    width: 14px;
    height: 14px;
    top: 8px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: 50% 50%;
}
.article-content .items__list.col-2 ul,
.article-content .items__list.type-col-2 ul {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 20px;
}
.article-content .items__list.col-3 ul,
.article-content .items__list.type-col-3 ul {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 0 20px;
}
.article-content ol {
    padding: 0;
    margin: 20px 0;
    list-style: none;
    counter-reset: custom-counter;
}
.article-content ul li:last-child {
    margin: 0;
}
.article-content ol li::before {
    margin: 0 8px 16px 0;
    content: counter(custom-counter) ".";
    counter-increment: custom-counter;
    font-size: 17px;
    font-weight: 400;
    line-height: 24px;
    text-align: right;
    color:#36c06e;
}
.article-content ol li {
    margin: 0 0 16px;
    font-size: 1em;
    font-weight: 400;
    line-height: 1.8;
}
.article-content ol li:last-child {
    margin: 0;
}


.text-contents__list ul.kamatoc {
    display: flex;
    gap: 10px;
    flex-direction: column;
    list-style: none;
    padding: 0;
    margin: 0;
}
.text-contents__list ul.kamatoc li {
    margin: 0;
}
.text-contents__list ul.kamatoc li a {
    display: block;
    color: var(--decorative-color);
    font-family: var(--primary-font);
    font-size: 0.87em;
    font-weight: 500;
    line-height: 100%;
    text-decoration: none;
    border-bottom: 1px solid #F0EAE4;
    transition: 0.3s;
    padding: 6px 0;
}
.text-contents__list ul.kamatoc li a:hover {
    color: var(--primary-color);
}
.article-content p:has( > img ) {
    font-size: 0;
    margin: 30px 0;
}
.article-content p:has( > img ) img {
    width: 100%;
    height: auto;
    object-fit: cover;
}
.article-content img.aligncenter {
    width: 100%;
    height: auto;
}
.article-sidebar { 
    flex: auto 0 0;
    position: sticky;
    top: 110px;
    height: 100%;  
    max-width: 338px;  
    width: 100%;
}
.admin-bar .article-sidebar {
    top: 142px;
}
@media (max-width: 880px) {
    .admin-bar .article-sidebar {
        top: auto;
    }
}
/* .article-sidebar__warpper {
    background: #f8f8f8;
    border-radius: 10px;
    transition: 0.3s;
    padding: 30px;
}
.article-sidebar__warpper:hover {
    box-shadow: 0px 0px 7px 0px rgba(0,0,0,0.3);
}
.article-sidebar__warpper:not(:has( > div)) {
    border-color: transparent;
    padding: 0;
} */
/**/


/* page content list */

.text-contents {
    width: 100%;
    background: #FFFFFF;
    box-shadow: 0px 0px 24px rgba(0, 0, 0, 0.05), 0px 48px 64px -32px rgba(0, 0, 0, 0.05);
    border-radius: 16px;
    padding: 40px 40px 40px 16px;
    margin: 0 0 25px 0;
}

.page-heading__wrapper .text-contents {
    display: none;
}

.text-contents__title {
    display: flex;
    align-items: center;
    color: #000000;
    font-size: 1em;
    font-weight: 700;
    line-height: 24px;
    cursor: pointer;
    /* transition: 0.3s; */
    padding: 0 0 0 36px;
}

.text-contents__title.active {
    margin: 0 0 24px 0;
}

.text-contents__title .arrow-down {
    display: none;
    width: 15px;
    height: 15px;
    fill: var(--font-color);
    /* transition: 0.3s; */
    margin: 0 0 0 auto;
}

.text-contents__title.active .arrow-down {
    transform: rotate(180deg);
}

.text-contents__list {
    display: none;
    overflow: hidden;
    transition: 0.3s;
}

.text-contents__list.active {
    display: block;
}

.content-list__title {
    display: none;
}

.text-contents ol.kamatoc {
    display: flex;
    gap: 12px;
    flex-direction: column;
    min-height: 0;
    list-style: none;
    counter-reset: my-counter;
    padding: 0 0 0 10px;
    margin: 0;
}

.text-contents ol.kamatoc li {
    display: flex;
    gap: 5px;
    margin: 0;
}

.text-contents ol.kamatoc li::before {
    content: counter(my-counter) '.';
    counter-increment: my-counter;
    min-width: 22px;
    color: #959595;
    font-size: 1em;
    line-height: 24px;
}

.text-contents ol.kamatoc li a {
    display: block;
    color: var(--font-color);
    font-family: var(--primary-font);
    font-size: .9rem;
    line-height: 24px;
    text-decoration: none;
}

.text-contents ol.kamatoc li a:hover {
    color: var(--primary-color);
}

.sidebar__socials {
    text-align: center;
}

.text-contents-fixed {
    position: fixed;
    bottom: 0;
    padding: 10px 20px !important;
    left: 0;
    right: 0;
    width: auto;
    z-index: 99;
    background: var(--primary-color);
    border-radius: 0;
    margin: 0;
}
.text-contents-fixed .text-contents__title {
    color: #fff;
    padding: 0;
}
.text-contents-fixed .text-contents__title.active {
    margin-bottom: 15px;
}
.text-contents-fixed .text-contents__title .arrow-down {
    fill: #fff;
    transform: rotate(180deg);
}
.text-contents-fixed .text-contents__title.active .arrow-down {
    fill: #fff;
    transform: rotate(0);
}
.text-contents-fixed ol.kamatoc {
    margin-bottom: 15px;
}
.text-contents-fixed ol.kamatoc li a {
    color: #fff;
    font-size: 0.95em;
}
.text-contents-fixed ol.kamatoc li::before {
    color: #fff;
}

/**/

/* block image */

.block-image__wrapper {
    display: flex;
    gap: 20px;
    margin: 1em 0;
}

.block-image__wrapper-reverse {
    flex-direction: row-reverse;
}

.block-image__picture {
    max-width: 380px;
    height: 250px;
    width: 100%;
}

.block-image__picture a {
    width: 100%;
    height: 100%;
    display: block;
}

.block-image__picture a img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.block-image__content {
    flex: 1;
    display: flex;
    gap: 10px;
    flex-direction: column;
    justify-content: space-between;
}

.block-image__content h3,
.block-image__content p {
    margin: 0;
}

/**/

/* highlighted-text */

.highlighted-text {
    border-left: 1px solid var(--primary-color) ;
    padding: 20px;
    margin: 1em 0;
}
.highlighted-text p {
    color: var(--primary-color);
    font-size: 1em;
    font-weight: 600;
    line-height: 21px;
    margin: 0;
}
/**/

.block-steps {
    position: relative;
    margin: 20px 0;
}
.block-steps__item {
    position: relative;
}
.block-steps__item-title {
    display: flex;
}
.block-steps__item h3 {
    margin: 9px 0 15px;
    font-family: var(--secondary-font);
}
.block-steps__item .text-selection,
.block-steps__item p:last-child,
.block-steps__item ul:last-child,
.block-steps__item ul li:last-child {
    margin: 0;
}
.block-steps__item ul li {
    margin: 0 0 12px;
}
.block-steps__item-title span {
    position: relative;
    z-index: 2;
    font-size: 18px;
    font-family: var(--secondary-font);
    counter-increment: h3-counter;
    content: counter(h3-counter);
    font-weight: bold;
    text-align: center;
    color: #36c06e;
    border-radius: 50%;
    min-width: 40px;
    height: 40px;
    margin: 0 15px 0 0;
    background: #fff;
    border: 1px solid #36c06e;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.block-steps__item::before {
    display: block;
    z-index: 1;
    content: '';
    left: 20px;
    top: 0;
    position: absolute;
    height: 100%;
    width: 1px;
    background: #e7e7e7;
    transition: .2s;
}
.block-steps__item:hover::before {
    background: #36c06e;
    transition: .2s;
}
.block-steps__item:last-child::before {
    display: none;
}
.block-steps__item-content {
    padding: 0 0 30px 55px;
}
.block-steps__item-content p:first-child {
    margin-top: 10px;
}
.block-steps__item:last-child .block-steps__item-content {
    padding-bottom: 0;
}

/* blockquote */

.blockquote {
    border: 1px solid var(--primary-color);
    padding: 20px;
    margin: 1em 0;
}
.blockquote p {
    color: var(--decorative-color);
    font-size: 1em;
    line-height: 21px;
    font-weight: 600;
    margin: 0;
}

/**/

/* blockquote_second */
.blockquote_second {
    position: relative;
}
.blockquote_second-wrapper {
    max-width: 625px;
    width: 100%;
    padding: 0;
    margin: 0 auto;
}
.blockquote_second-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    display: inline-block;
    width: 208px;
    height: 48px;
    border-radius: 10px;
    background: rgba(125, 84, 212, 0.20);
}
.blockquote_second p {
    color: var(--btns-font-color);
    font-size: 28px;
    font-weight: 500;
    line-height: 155%; 
}
/**/

/* consultation-request */

.consultation-request {
    padding: 0 0 80px 0;
}
.consultation-request_wrapper {
    display: flex;
    border-radius: 20px;
    background-color: var(--primary-color);
    background-size: 22.5%;
    background-repeat: no-repeat;
    background-position: 8px 12px;
    padding: 60px 45px 60px 22%;
}
.consultation-request__header {
    flex: 1;
    display: flex;
    flex-direction: column;
}
.consultation-request__header-title-main {
    color: #FFF;
    font-family: var(--primary-font);
    font-size: 40px;
    font-weight: 700;
    padding: 0 0 60px;
}
.consultation-request__header-title-sub {
    display: flex;
    flex-direction: column;
    color: #FFF;
    font-family: var(--decorative-font);
    font-size: 74px;
    line-height: 42px;
    letter-spacing: 1.48px;
    padding: 0 11% 0 16px;
}
.consultation-request__header-title-sub span {
    margin: 0 0 0 auto;
}
.consultation-request__form {
    width: 100%;
    max-width: 400px;
}
.consultation-request__form .form__group p,
.consultation-request__form .form__group p a {
    color: #fff;
    text-decoration: none;
}
.consultation-request__form .form__group p a:hover {
    text-decoration: underline;
}
.consultation-request__form .form__control .btn {
    display: block;
    width: 100%;
    font-size: 20px;
    cursor: pointer;
    transition: 0.3s;
    padding: 17px 15px;
}
/**/

/* content-form */
.content-form_wrapper {
    display: flex;
    gap: 60px;
    border-radius: 20px;
    background-color: var(--primary-color);
    padding: 45px;
}
.content-form__header {
    flex: 1;
    display: flex;
    flex-direction: column;
}
.content-form__header-title-main {
    color: #fff;
    font-family: var(--primary-font);
    font-size: 32px;
    font-weight: 700;
    margin: 0 0 20px 0;
}
.content-form__header-title-sub {
    text-align: right;
    color: #FFF;
    font-family: var(--decorative-font);
    font-size: 50px;
    line-height: 32px;
    letter-spacing: 1px;
}
.content-form__form {
    width: 100%;
    max-width: 325px;
}
.content-form__form .form__input {
    font-size: 16px;
    padding: 20px 30px;
}
.content-form__form .btn {
    width: 100%;
    font-size: 18px;
    padding: 18px 16px;
}
.content-form__header-privacy-text {
    margin: auto 0 0 0;
}
.content-form__header-privacy-text.mobile {
    display: none;
}
.content-form__header-privacy-text p,
.content-form__header-privacy-text a {
    color: #FFF;
    font-family: var(--primary-font);
    font-size: 12px;
    font-weight: 300;
    transition: 0.3s;
    margin: 0;
}
.content-form__header-privacy-text a {
    text-decoration: underline;
}
.content-form__header-privacy-text a:hover {
    text-decoration: none;
}
/**/

/* share__list */

.share {
    display: flex;
    gap: 8px;
    align-items: center;
    margin: 40px 0;
}

.share__title {
    color: var(--decorative-color);
    font-size: 1em;
    font-weight: 700;
}

.share__list {
    display: flex;
    gap: 8px;
    align-items: center;
    list-style: none;
    padding: 0;
    margin: 0;
}

.share__item {
    margin: 0;
}

.share__link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 100%;
    border: 1px solid var(--decorative-color);
    background: transparent;
    transition: 0.3s;
}
.share__link:hover {
    background: var(--decorative-color);
}

.share__link .icon {
    width: 15px;
    height: 15px;
    color: var(--decorative-color);
    fill: var(--decorative-color);
    transition: 0.3s;
}

.share__link:hover .icon {
    color: #ffffff;
    fill: #ffffff;
}

/**/

/* useful-materials */

.useful-materials {
    display: flex;
    justify-content: space-between;
    border-radius: 20px;
    background: #F2F2F2;
    padding: 45px 45px 0 45px;
    margin: 40px 0;
}
.useful-materials__content {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 458px;
    padding: 0 0 45px;
}
.useful-materials__title {
    font-family: var(--primary-font);
    color: var(--font-color);
    font-size: 32px;
    font-weight: 700;
}
.useful-materials__description p {
    color: var(--font-color);
    font-size: 20px;
    font-weight: 500;
    margin: 0;
}
.useful-materials__subscribe-button {
    margin: auto 0 0 0;
}
.useful-materials__subscribe-button a {
    color: var(--primary-color);
    font-family: var(--secondary-font);
    font-size: 18px;
    font-weight: 500;
    text-decoration: none;
}
.useful-materials__subscribe-button a .icon {
    width: 25px;
    height: 25px;
    fill: var(--primary-color);
    transition: 0.3s;
    vertical-align:middle;
    margin: 0 0 0 10px;
}
.useful-materials__subscribe-button a:hover .icon {
    width: 30px;
}
.useful-materials__image {
    width: 250px;
    height: 250px;
}
.useful-materials__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: bottom;
}
/**/

/* citizenship-info */
.citizenship-info {
    display: flex;
    gap: 35px;
    overflow: hidden;
    border-radius: 20px;
    background: #F2F2F2;
    margin: 30px 0 60px;
}
.citizenship-info__content {
    display: flex;
    flex-direction: column;
    padding: 50px 90px;
}
.citizenship-info__title {
    color: var(--btns-font-color);
    font-family: var(--primary-font);
    /* font-size: 40px; */
    font-weight: 700;
    margin: 0 0 35px;
}
.citizenship-info__description p {
    color: var(--font-color);
    font-family: var(--primary-font);
    /* font-size: 18px; */
    font-weight: 400;
}
.citizenship-info__author {
    text-align: right;
    color: var(--primary-color);
    font-family: var(--primary-font);
    /* font-size: 25px; */
    font-weight: 700;
    margin: auto 0 18px;
}
.citizenship-info__position p {
    text-align: right;
    margin: 0;
}
.citizenship-info__image-wrapper {
    height: auto;
    max-width: 560px;
    width: 100%;
    overflow: hidden;
}
.citizenship-info__image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.citizenship-info__image-content {
    display: none;
    background: #7f42e1;
    padding: 15px 35px;
}
.citizenship-info__image-content h4,
.citizenship-info__image-content p {
    text-align: left;
    color: #fff;
}
/**/

.related-posts__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}
.related-posts__title {
    color: var(--decorative-color);
    font-size: 1.7em;
    line-height: 1.5;
    font-family: var(--secondary-font);
    font-weight: 600;
    margin: 40px 0 30px;
}

/* contacts */

.contacts__wrapper {
    display: flex;
    gap: 60px;
}

.contacts {
    max-width: 312px;
    width: 100%;
    display: flex;
    gap: 30px;
    flex-direction: column;
}

.contact-block b {
    display: block;
    color: var(--primary-color);
    font-family: var(--secondary-font);
    font-size: 1.87em;
    font-weight: 600;
    line-height: 100%;
    text-transform: uppercase;
    margin: 0 0 10px 0;
}

.contact-block span,
.contact-block a {
    color: var(--decorative-color);
    font-size: 1.25em;
    text-decoration: none;
}

.contact-block.address .schedule {
    display: block;
    color: #AAA39D;
    font-size: 0.87em;
}

.contact-block.phone {
    display: flex;
    gap: 0 20px;
    align-items: center;
    flex-wrap: wrap;
}

.contact-block.phone b {
    flex: 0 1 100%;
}

.contact-block.phone a {
    font-weight: 600;
}

.contact__socials {
    display: flex;
    gap: 8px;
    align-items: center;
}
.contact__socials a {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
    border: 1px solid var(--decorative-color);
    transition: 0.3s;
    padding: 5px;
}
.contact__socials a:hover {
    opacity: 0.5;
}
.contact__socials a .icon {
    fill: var(--decorative-color);
    width: 16px;
    height: 16px;
    transition: 0.3s;
}

.contacts-map {
    flex: 1;
}

.contacts-map iframe {
    width: 100%;
    min-height: 425px;
}

.business-details {
    display: block;
}
.business-details__title {
    font-weight: 600;
    line-height: 1.1;
    margin: 0 0 15px;
}
.business-details__items {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}
.business-details__item {
    display: flex;
    font-size: 15px;
    gap: 6px;
    flex-direction: column;
}
.business-details__item-name {
    font-size: 12px;
    text-transform: uppercase;
    opacity: 0.6;
}

/**/


/* comments */

/* .comments {
    margin: 30px 0;
}
.comment-form__title {
    color: var(--decorative-color);
    font-family: var(--secondary-font);
    font-size: 1.87em;
    font-weight: 600;
    margin: 0 0 40px;
}
.comment-form__block {
    position: relative;
    display: flex;
    margin: 0 0 40px;
}
.comment-form__name {
    display: none;
}
.comment-form__textarea {
    width: 100%;
    min-height: 95px;
    color: var(--font-color);
    font-family: var(--primary-font);
    font-size: 1.06em;
    font-weight: 400;
    outline: none;
    box-shadow: none;
    border-radius: 2px;
    border: 1px solid var(--decorative-color);
    background: #FFF;
    padding: 20px 25% 20px 20px;
    margin: 0;
}
.comment-form__textarea::placeholder {
    color: #AAA39D;
}
.comment-form__textarea:focus {
    border-color: var(--primary-color);
}
.comment-form__controls {
    position: absolute;
    right: 20px;
    bottom: 20px;
}
.comment-form__controls p {
    display: none;
}
.comment-form__controls .comment-form__button {
    width: 178px;
    filter: grayscale(1);
    cursor: not-allowed;
    box-shadow: none !important;
}
.comment-form__button.comment-form__button-active {
    filter: grayscale(0);
    cursor: pointer;
}
.comment-form__button.comment-form__button-active:hover {
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.25) !important;
}
.comment-list__header {
    display: none;
}
.comment-list .comment-wrapper {
    margin: 0 0 40px 0;
}
.comment-list .comment-wrapper:last-child {
    margin: 0;
}
.comment-list .comment:has(+ .comment-form) {
    margin: 0 0 40px;
}   
.comment-list .comment {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.comment-list .comment .comment__author-avatar {
    font-size: 0;
}
.comment-list .comment .comment__author-avatar img {
    border-radius: 100%;
}
.comment-list .comment .comment__details {
    flex: 1;
}
.comment-list .comment .comment__meta {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0 0 10px 0;
}
.comment-list .comment .comment__meta .comment__author-name a {
    color: var(--font-color);
    font-size: 1em;
    font-weight: 700;
    text-decoration: none;
}
.comment-list .comment .comment__meta .comment__date {
    color: #AAA39D;
    font-size: 0.87em;
}
.comment__text {
    margin: 0 0 10px 0;
}
.comment__text p {
    margin: 0;
}
.comment-reply-link {
    color: var(--primary-color);
    font-size: 00.87em;
    font-weight: 400;
}
.comment-list .comment-form .comment-form__block {
    margin: 0;
}
.comment-list .comment .children {
    flex: 0 1 100%;
    margin: 30px 0 0 60px;
} */

.comments {
    margin: 60px 0;
}

.comments:last-child {
    margin: 60px 0 0;
}

.comments .cld-like-dislike-wrap {
    position: absolute;
    right: 0;
    top: 0
}

.comments .cld-common-wrap {
    min-width: 0;
    position: relative
}

.comments .cld-common-wrap a {
    display: block;
    position: absolute;
    z-index: 99;
    width: 100%;
    top: 0;
    left: 0;
    height: 25px
}

.comments .cld-count-wrap {
    margin-left: 5px;
    font-size: 13px;
    color: #00a440;
    display: flex;
    font-weight: 500;
    align-items: center
}

.comments .cld-count-wrap:hover {
    cursor: pointer
}

.comments .cld-dislike-count-wrap {
    color: #a40000
}

.comment-form__title {
    color: var(--decorative-color);
    font-size: 1.7em;
    line-height: 1.5;
    font-family: var(--secondary-font);
    font-weight: 600;
    margin: 40px 0 20px;
}

.comments form {
    max-width: 700px
}

.comments .comment-list form {
    margin: 0 0 25px;
    padding: 0 0 35px;
    border-bottom: 1px solid #f1f1f1
}

.comments form p {
    margin: 10px 0 0 30px;
    font-size: 12px;
    max-width: 550px;
    opacity: .5;
    line-height: 1.4
}

.comments form p a {
    color: #313131
}

.comments form .comment-meta {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    justify-content: space-between
}

.comments form .comment-meta>label {
    flex-basis: 48%;
    width: auto;
    margin: 0 0 5px;
    overflow: unset
}

.comments form textarea {
    line-height: 25px
}

.comments .comment-list {
    margin: 0 0 25px
}

.comment-list__header {
    margin: 0 0 30px;
    font-family: 'Podkova',sans-serif;
    font-size: 36px;
    font-weight: 800;
    line-height: 40px
}

.comments .comment-list .comment {
    position: relative;
    margin: 0 0 25px;
    padding: 0 0 15px;
    border-bottom: 1px solid #f1f1f1
}

.comments .comment-list .comment a {
    color: #FF8666
}

.comments .comment-list .comment.depth-1 .comment {
    border: none;
    clear: both;
    overflow: hidden
}

.comments .comment-list .comment .children:last-child .comment {
    margin: 0;
    padding: 0
}

.comments .comment-list .comment img {
    float: left;
    width: 40px;
    height: 40px;
    margin: 0 20px 0 0;
    border-radius: 50%;
    box-shadow: 0 3px 10px 0 rgb(0 0 0 / 10%)
}

.comments .comment-list .comment p {
    margin: 0 0 10px
}

.comments .comment-list .comment .wait {
    color: #9a272f
}

.comments .comment-list .comment .top {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    align-items: center;
    margin: 0 0 5px;
    overflow: hidden
}

.comments .comment-list .comment .bottom {
    overflow: hidden
}

.comments .comment-list .comment .bottom strong {
    font-weight: 600
}

.comments .comment-list .children {
    padding: 20px 0 0 40px
}

.comments .comment-list .children .comment {
    border: none
}

.comments .comment-list .comment .project__author {
    display: block;
    width: 18px;
    height: 18px;
    background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI2NSIgaGVpZ2h0PSI2NSIgZmlsbD0ibm9uZSI+PHBhdGggZmlsbD0iI0ZCNzI0RSIgZD0iTTY1IDI3LjQ2OWMwIDkuODg2LTQuNjggMTYuOTItMTIuNTE2IDIwLjEyNyA5Ljc1NS04LjEyOCA3LjI1NS0yMi4wOTUtNi4yNzMtMjUuMDE3IDEuNDU3LTEuNzQ1IDIuNDM0LTMuODY4IDIuODIyLTYuNTMzLTIuNjY1LjM4OC00Ljc4OCAxLjM2Ni02LjUzMyAyLjgyMkMzOS41NDUgNS4xODYgMjcuNDMuNjIgMTcuNjk1IDEyLjM5IDIyLjQ4IDIuNjkgMjcuNDcgMCAzNy41MzEgMCA1Mi43MDEgMCA2NSAxMi4yOTggNjUgMjcuNDY5WiIvPjxwYXRoIGZpbGw9IiNGQjcyNEUiIGQ9Ik00My44NjggNTQuMjAzYy0yLjAzNC40OC00LjE1Ni43MzQtNi4zMzcuNzM0LTE1LjE3IDAtMjcuNDY4LTEyLjI5OC0yNy40NjgtMjcuNDY4IDAtMi4xODEuMjU0LTQuMzAzLjczNC02LjMzN0M2LjIgMjMuMTg1IDIuMDQyIDI3LjYzOCAwIDMwLjQ2YzQuMTQtOC42NzQgMTIuNjEyLTE1LjAyNiAxNi45OTktMTYuNzUgMTAuNS00LjI1MSAyMC44MDQgOC4wODQgMTQuNTU3IDE2LjgwOS0yLjk0MSA0LjEwNy05Ljc4IDMuOTE0LTEzLjcxMiAzLjQ2NiAwIDAgNS43MzQgMS44NyA4LjU4IDQuNjcgMi44IDIuODQ2IDQuNjcgOC41OCA0LjY3IDguNTgtLjQ0OC0zLjkzMi0uNjQtMTAuNzcgMy40NjYtMTMuNzEyIDguNjYtNi4yIDIwLjg3NSAzLjkwMiAxNi45MDIgMTQuMzJDNTAuMTIyIDUxLjcyIDQzLjQzNCA2MC43NTUgMzQuNTQgNjVjMi44MjItMi4wNDIgNy4yNzUtNi4yIDkuMzI4LTEwLjc5N1oiLz48L3N2Zz4=);
    background-size: contain;
    background-position: 0 0
}

.comments .comment-list .comment .name {
    font-weight: 500;
    color: #000;
    margin: 0 10px 0 0
}

.comments .comment-list .comment .name a {
    display: flex;
    gap: 8px;
    align-items: center;
    color: #000;
    text-decoration: none
}

.comments .comment-list .comment .name a:hover {
    color: #FF8666
}

.comments .comment-list .comment .date {
    color: #ccc;
    font-size: 12px
}

.comments .comment-list .comment .comment-reply-link {
    display: inline-block;
    margin: 0 0 10px;
    color: #FF8666;
    text-decoration: underline
}

.comments .comment-list .comment .comment-reply-link:hover {
    text-decoration: none;
    cursor: pointer
}

.comments #cancel-comment-reply-link {
    display: inline-block;
    margin: 0 0 10px;
    color: #d33b3b
}

.comment-form .modal-label {
    width: 100%;
    overflow: hidden
}

.comment-form .rating:not(:checked)>label {
    text-shadow: none;
    font-size: 20px
}

.comment-form .rating:not(:checked)>label:hover,.comment-form .rating:not(:checked)>label:hover~label {
    text-shadow: none;
    color: #FF8666!important
}

.comment-form .rating {
    border: none;
    margin: 0;
    padding: 10px 0
}

.comment-form fieldset.rating>legend {
    float: left
}

.mo_openid_login_wid,.mo-openid-app-icons {
    display: none!important
}

.modal__content-auth {
    max-width: 300px
}

.auth-modal__socials {
    width: 100%
}

.auth-modal__socials-title {
    margin: 0 0 30px;
    font-family: 'Podkova',sans-serif;
    font-size: 30px;
    font-weight: 800;
    line-height: 40px
}

.auth-modal__socials-note {
    padding: 30px 0 0;
    font-size: 12px;
    line-height: 1.3;
    color: #aaa
}

.auth-modal__socials-note a {
    color: #aaa
}

.auth-modal__socials-item {
    position: relative;
    padding: 15px 20px;
    text-align: center;
    margin: 20px 0 0;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 500;
    border: 1px solid #d8d8d8;
    box-shadow: 2px 2px 3px 0 rgb(0 0 0 / 8%)
}

.auth-modal__socials-item:hover {
    border: 1px solid #2787f5;
    cursor: pointer
}

.auth-modal__socials-item svg {
    position: absolute;
    width: 24px;
    height: auto;
    top: 50%;
    margin: -12px 0 0;
    left: 20px
}

.comments-system .cmstr-out {
    display: none
}

.comment-form {
    position: relative;
    margin: 0 0 50px;
    max-width: 700px;
}

.comment-form__block {
    position: relative
}

.comment-form__textarea {
    display: block;
    font: 16px/1.7 'Inter',sans-serif;
    width: 100%;
    border-radius: 20px;
    background: #f3f3f3;
    padding: 25px 140px 25px 25px;
    height: 130px;
    box-sizing: border-box;
    outline: none;
    border: none
}

.comment-form__textarea:focus {
    background-color: #fff;
    border-color: #bdd6fa;
    -webkit-box-shadow: 0 0 0 3px rgba(70,131,217,.12);
    box-shadow: 0 0 0 3px rgba(70,131,217,.12)
}

.comment-form__button {
    position: absolute;
    bottom: 0;
    right: 20px;
    border: none;
    color: #fff;
    font-size: 16px;
    padding: 0 25px;
    border-radius: 50px;
    cursor: not-allowed;
    background: #dcdcdc;
    height: 50px;
    margin-top: -25px;
    top: 50%
}

.comment-form__button-active {
    background: #FF8666;
    cursor: pointer;
    transition: background .2s
}

.comment-form__button-active:hover {
    background: #f76038;
    transition: background .2s
}

.comment-form__name {
    display: inline-flex;
    font-size: 15px;
    align-items: center;
    padding: 0 15px 0 0;
    gap: 10px;
    margin: 0 0 20px;
    overflow: hidden;
    border-radius: 20px;
    background: #f3f3f3
}

.comment-form__name img {
    width: 40px;
    height: 40px;
    border-radius: 50%
}

.comment-form__name a {
    font-size: 12px;
    color: rgb(0 0 0 / 15%)
}



#cancel-comment-reply-link {
    margin: 0 0 -18px 0;
    display: block;
    color: #dc3232;
    font-size: 0.83em;
    text-decoration: none;
}
#cancel-comment-reply-link:hover {
    color: var(--font-color);
}


.mo_openid_login_wid,
.mo-openid-app-icons {
	display: none !important;
}
.auth-button {
	display: none;
}
.auth-modal {
	width: 100%;
	max-width: 340px;
	padding: 40px;
	border-radius: 10px;
	box-shadow: 0px 4px 15px rgb(0 0 0 / 20%);
}
.auth-modal .modal-title {
	color: #000;
	margin: 0 0 30px;
	font-size: 25px;
}
.auth-modal__socials-item {
	position: relative;
	padding: 15px 20px;
	text-align: center;
	margin: 20px 0 0;
	border-radius: 10px;
	font-size: 16px;
	font-weight: 500;
	border: 1px solid #d8d8d8;
	box-shadow: 2px 2px 3px 0px rgb(0 0 0 / 8%);
}
.auth-modal__socials-item:hover {
	border: 1px solid #2787f5;
	cursor: pointer;
}
.auth-modal__socials-item svg {
	position: absolute;
	width: 24px;
	height: auto;
	top: 50%;
	margin: -12px 0 0;
	left: 20px;
}
/**/

/* row & columns */
.text__row {
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
    margin-bottom: 16px;
}
.text__col {
    position: relative;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
    padding-right: 15px;
    padding-left: 15px;
    box-sizing: border-box;
}
.text__col-3 {
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
}
.text__col-4 {
    -ms-flex: 0 0 33.33%;
    flex: 0 0 33.33%;
    max-width: 33.33%;
}
.text__col-6 {
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
}
.text__col iframe {
    display: block;
    width: 100%;
    height: 100%;
}
.text__col br {
    display: none;
}
/**/

/**/

.text-selection {
    position: relative;
    margin: 48px 0;
    padding: 16px 24px 24px 24px;
    background-color: #fff;
    border: 1px solid #ABC0BA;
    border-left: 7px solid #ABC0BA;
    border-radius: 6px 16px 16px 6px
}

.text-selection.red {
    border: 1px solid #F66;
    border-left: 7px solid #F66
}

.text-selection.red .text-selection__title {
    color: #DB3F3F
}

.text-selection.green {
    border: 1px solid #7FC67D;
    border-left: 7px solid #7FC67D
}

.text-selection.green .text-selection__title {
    color: #49A747
}

.text-selection.yellow {
    border: 1px solid #F4B46A;
    border-left: 7px solid #F4B46A
}

.text-selection.yellow .text-selection__title {
    color: #ED9125
}

.text-selection::after {
    content: '';
    position: absolute;
    z-index: -1;
    top: -64px;
    left: -64px;
    height: 128px;
    width: 128px;
    background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAEAAAABACAYAAACqaXHeAAAACXBIWXMAABYlAAAWJQFJUiTwAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAABzSURBVHgB7dQ7CgJBEATQ1tVExPufUwNR/A3YE27aG/R7UFQ+U3QEAAAAAAAA0MEu6p2yL9mf7Fv2PQrto7lD1Dtnz/Ut2XMRFlBpiwWsPfo3NtB+AUvUe488Ro7x//V5C64jz5FXFGq/AAAAAAAAAKCHH+onCw7A65Y4AAAAAElFTkSuQmCC);
    background-size: 32px
}

.text-selection__title {
    margin: 0 0 8px;
    font-size: 1.12em;
    font-weight: 700;
    line-height: 32px;
    color: #2A584D
}

.text-selection__content {
    font-size: 1em;
    font-weight: 400;
    line-height: 24px
}

/**/

/* tables in content */
table {
    width: 100%;
    border-collapse: collapse;
}
tbody tr, tbody td {
    border: 1px solid #AAA39D;
}
tbody tr td {
    color: var(--font-color);
    font-family: var(--primary-font);
    font-size: 1em;
    font-weight: 400;
    line-height: 21px;
    padding: 15px;
}
tbody tr:first-child td {
    color: #fff;
    font-size: 1em;
    font-weight: 700;
    background: var(--primary-color);
}
/**/

.we-work {
    position: relative;
    max-width: 1760px;
    border-radius: 48px;
    width: 100%;
    /* background: radial-gradient(25% 115.09% at 55.91% 106.2%, #d4e7e6 0%, #EDF8F1 100%) warning: gradient uses a rotation that is not supported by CSS and may not behave as expected, radial-gradient(46.82% 126.95% at 77.39% 68.01%, #FFFFFF 0%, rgba(255, 255, 255, 0) 100%); */
    background: #FAFAFA;
    /* margin: 100px 0 0; */
    padding: 40px 40% 60px 50px;
}
.we-work__note {
    font-size: 12px;
    line-height: 16px;
    color: #b7bcb9;
    padding: 20px 20px 0 48px;
}
/* .we-work::before {
    content: '';
    border-radius: 40px;
    background: #edf8f2;
    position: absolute;
    display: block;
    width: 100%;
    height: 50%;
    left: 0;
    top: 0;
    z-index: 1;
} */
.we-work__content {
    position: relative;
    z-index: 2;
}
.we-work__title {
    color: var(--font-color);
    font-family: var(--secondary-font);
    font-size: 2em;
    font-weight: 500;
    line-height: 48px;
    margin: 0 0 40px;
}
.we-work__step {
    display: flex;
    gap: 20px;
    margin: 0 0 25px;
}
.we-work__step span {
    font-family: var(--secondary-font);
    font-size: 32px;
    font-weight: 500;
    line-height: 1.3;
    /* padding: 10px 16px; */
    border-radius: 15px;
    color: #fff;
    background: #6ACF94;
    min-width: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.we-work__step-name {
    font-family: var(--secondary-font);
    font-weight: 600;
    font-size: 18px;
    margin: 0 0 10px;
}
.we-work__step-text {
    font-size: 14px;
    line-height: 1.5;
}
.we-work__step-text .note {
    margin: 10px 0 0;
    color: #fff;
    opacity: .5;
    font-size: 12px;
}
.we-work__step--last {
    margin: 0;
}
.we-work__step--final {
    position: absolute;
    right: 48px;
    max-width: 400px;
    padding: 24px;
    bottom: 48px;
    border-radius: 24px;
    color: #fff;
    box-shadow: 0px -56px 32.5px -40px #1C2D1E24;
    background: linear-gradient(278.89deg, #2a302c -15.24%, #4c594f 61.21%);
}
.we-work__step--final::before {
    display: block;
    position: absolute;
    top: 18px;
    right: 18px;
    background: #2cc66c;
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    box-shadow: 0px 0px 4.8px 0px #20C457;
    border: 4px solid #2fa560;
}
.we-work__step--final .we-work__step-name {
    font-family: var(--primary-font);
    font-size: 18px;
    color: #fff;
}
.we-work__step--final .we-work__step-text {
    color: #d6d6d6;
}
.we-work__image {
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: 0;
    width: 100%;
    height: 100%;
}
.we-work__image img {
    display: block;
    width: 530px;
    height: auto;
    max-height: 100%;
    position: absolute;
    bottom: 0;
    right: -64px;
}

.prices-page {
    padding: 50px 0 0;
    background: #f2f5f9;
}
.prices-page .services-visa-types {
    padding: 50px 0;
    background: #fff;
}
.prices-page h1 {
    font-family: var(--secondary-font);
    font-size: 40px;
    font-weight: 500;
    line-height: 1.45;
    margin: 0 0 20px;
}

.prices-nav__list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 0;
    padding: 0;
    list-style: none;
}
.prices-nav__list li {
    margin: 0;
    padding: 0;
}
.prices-nav__list a {
    display: flex;
    align-items: center;
    padding: 0 15px;
    height: 40px;
    border-radius: 16px;
    color: #3c5269;
    font-size: 15px;
    text-decoration: none;
    background: #e5eaf0;
    transition: .2s;
}
.prices-nav__list a:hover {
    background: var(--primary-color);
    color: #fff;
    transition: .2s;
}
.prices-filter {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0 0 30px;
}
.prices-filter__input {
    width: 100%;
    max-width: 320px;
    height: 40px;
    font-size: 15px;
    padding: 12px 20px;
    border: 1px solid #d9e2ec;
    border-radius: 16px;
    background: #fff;
}

/* секции */
.prices-section {
    background: #fff;
    border-radius: 32px;
    padding: 40px;
    margin: 0 0 50px;
}
.prices-section__title {
    margin: 0 0 25px;
    font-family: var(--secondary-font);
    font-size: 28px;
    font-weight: 500;
}

.prices-consult {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: 35px 0 0;
    gap: 15px;
}
.prices-consult span {
    font-size: 13px;
    line-height: 1.3;
    color: #64748b;
}

/* список */
.prices-list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px 40px;
}
.prices-item {
    margin: 0;
    position: relative;
}
.prices-item__line {
    display: flex;
    align-items: center;
    gap: 8px;
}

/* слева — флаг и заголовок */
.prices-item__left {
    display: flex;
    align-items: center;
    gap: 10px;
}
.prices-item__title {
    font-weight: 500;
    line-height: 1.3;
    display: flex;
    align-items: center;
    gap: 5px;
}
/* справа — цена */
.prices-item__price {
    flex-shrink: 0;
    font-weight: 700;
    white-space: nowrap;
}

/* магия: тянущийся dotted border */
.prices-item__dots {
    flex: 1;
    border-bottom: 1px dotted #cbd5e1;
    margin: 0 6px;
    min-width: 60px;
}
.prices-item__desc {
    margin: 6px 0 0;
    color: #64748b;
    font-size: 12px;
    line-height: 1.4;
    max-width: 400px;
    transition: color .2s;
}

.prices-flag{
    width:26px; height:26px; border-radius:999px; overflow:hidden;
    display:inline-flex; align-items:center; justify-content:center;
    border:1px solid #e6edf5; background:#fff;
    transition: .2s;
    transform: scale(1);
}
.prices-flag img{ width:100%; height:100%; object-fit:cover; display:block; }

.prices-item.has-link:hover {
    cursor: pointer;
}
.prices-item.has-link a {
    color: var(--font-color);
    text-decoration: none;
    transition: .2s;
}
.prices-item.has-link a::before {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    content: '';
}
.prices-item.has-link:hover a {
    color: var(--primary-color);
    transition: .2s;
}
.prices-item.has-link:hover .prices-flag {
    transform: scale(1.1);
    transition: .2s;
}

/* 404 */

.error-page_wrapper {
    position: relative;
    padding: 20px 0 80px;
    background: #FBFAF6;
    min-height: 100vh;
}
.error-page .breadcrumbs {
    margin: 0 0 80px 0;
}
.error-page__content {
    max-width: 800px;
    width: 100%;
}
.error-page__title {
    font-family: var(--secondary-font);
    font-size: 6.25em;
    font-weight: 600;
    line-height: 100px;
    text-transform: uppercase;
    background: linear-gradient(110.17deg, #0D1825 5.65%, #1F3044 96.78%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin: 0 0 20px 0;
}
.error-page__message {
    display: flex;
    gap: 30px;
    flex-direction: column;
    margin: 0 0 20px 0;
}
.error-page__message p {
    color: var(--font-color);
    font-size: 1.12em;
    font-weight: 500;
    line-height: 25px;
    margin: 0;
}
.error-page__link .btn {
    max-width: 197px;
}
/**/

/* contacts page */

.contacts-heading {
    position: relative;
    overflow: hidden;
    border-radius: 32px;
    margin: 0 20px 40px;
    background: #fcfcf7;
}
.contacts-heading__content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 30px 30px 100px;
    background: linear-gradient(180deg, #485a4e, transparent);
}
.contacts-heading__content h1 {
    font-family: var(--secondary-font);
    font-size: 2.5em;
    font-weight: 500;
    line-height: 48px;
    margin: 0;
    color: #fff;
}
.contacts-heading__content .breadcrumbs {
    margin-bottom: 10px;
}
.contacts-heading__content .breadcrumbs a.breadcrumbs__link {
    color: #fff;
}
.contacts-heading__content .breadcrumbs span.breadcrumbs__link {
    color: #fff;
}

.section-contacts {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin: 0 0 100px;
}
.section-contacts__title h2 {
    font-family: var(--secondary-font);
    font-size: 28px;
    font-weight: 700;
    /* text-align: center; */
    line-height: 1.1;
    margin: 0 0 40px;
}
.section-contacts h2 {
    font-family: var(--secondary-font);
    font-size: 28px;
    font-weight: 700;
    line-height: 1.1;
    margin: 0 0 20px;
}
.section-contacts p {
    font-size: 16px;
    line-height: 1.5;
    color: #333;
    margin: 0 0 20px;
}
.section-contacts p .note {
    font-size: 14px;
    color: #888;
}
.section-contacts p a {
    text-decoration: none;
}
.section-contacts p strong {
    font-weight: 600;
}
.section-contacts .subway {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 7px 0 0;
}
.section-contacts .subway i {
    padding: 0 5px;
    border-radius: 5px;
    font-size: 14px;
    color: #fff;
    font-weight: 500;
    font-style: normal;
}
.section-contacts .subway .brown {
    background-color: #805139;
}
.section-contacts .subway .yellow {
    background-color: #ffd000;
}
.section-contacts .subway .violet {
    background-color: #8647b2;
}
.section-contacts .subway .gray {
    background-color: #999;
}
.section-contacts .subway .orange {
    background-color: #f28b24;
}
.section-contacts .subway span {
    color: #196dff;
}
.section-contacts__office-img {
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #dddddd;
    margin: 0 0 30px;
}
.section-contacts__office-img img {
    display: block;
    object-fit: cover;
    width: 100%;
    height: 300px;
}
.section-contacts__form-map {
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #dddddd;
    margin: 0 0 30px;
}


/**/

/* company block */
.company-home {}
.company-block {
    background: #f2f5f9;
    border-radius: 32px;
    padding: 40px;
}
.company-block .prices-section {
    padding: 0;
    background: none;
    margin: 0;
}
.company-head h2 {
    margin: 0 0 15px;
    font-family: var(--secondary-font);
    font-size: 28px;
    font-weight: 500;
}
.company-head p {
    margin: 0;
    font-size: 16px;
    color: #64758b;
    background: #36c06e;
    display: inline-block;
    color: #fff;
    border-radius: 6px;
    padding: 3px 12px;
}
.company-text {
    margin: 0 0 40px;
}
.company-text p {
    color: #354152;
}
/**/

/* about page */

.about-wrapper {
    /* background: url(images/clouds-back.webp), radial-gradient(118.58% 70% at 62% 8%, rgb(192 225 243) 0%, rgba(255, 255, 255, 0) 100%); */
    background: radial-gradient(118.58% 20% at 62% 8%, rgb(192 225 243) 0%, rgba(255, 255, 255, 0) 100%);
    background-size: contain;
    transition: background-position 0.2s ease;
}
.about-wrapper::before {
    display: block;
    content: '';
    position: absolute;
    top: 0;
    left: -100px;
    width: calc(100% + 100px);
    height: 150%;
    background: url(images/clouds-back.webp);
    background-size: cover;
    background-position: 0 0;
    z-index: 1;
    pointer-events: none;
}
.about-wrapper::after {
    display: block;
    content: '';
    position: absolute;
    z-index: 3;
    top: 100px;
    left: 100px;
    width: 100%;
    height: 700px;
    background: url(images/clouds-front.webp);
    background-size: contain;
    background-position: 0 0;
    pointer-events: none;
}

.about-heading {
    position: relative;
    z-index: 2;
    padding: 100px 0;
    overflow: hidden;
}
.about-heading h1 {
    font-weight: 400;
    font-size: 40px;
    margin: 0 0 70px;
}
.about-heading h1 span {
    font-family: var(--secondary-font);
    font-weight: 700;
    font-size: 85px;
    text-transform: uppercase;
}
.about-heading__content {
    display: grid;
    grid-template-columns: 1fr 450px;
    gap: 64px;
}
.about-heading__content-text p {
    font-size: 18px;
    margin: 0 0 20px;
}

.about-heading__form {
    position: relative;
    border-radius: 24px;
    padding: 48px;
    background: #fff;
    box-shadow: 0px 56px 64px -36px #333E5721;
    box-shadow: 0px 2px 15px 0px #0000000A;
}
.about-heading__form-title {
    font-family: var(--secondary-font);
    font-size: 28px;
}
.about-heading__form-title span {
    display: block;
    font-weight: 700;
}
.about-heading__form p {
    color: #666;
}
.about-heading__form .btn {
    width: 100%;
    padding: 25px;
    font-size: 18px;
    position: relative;
    z-index: 10;
}
.about-heading__form img {
    position: absolute;
    top: -500px;
    left: -270px;
    pointer-events: none;
}

.about-contacts__map {
    overflow: hidden;
    margin: 0 24px 40px;
    border-radius: 48px;
}

.about-info__content {
    position: relative;
}
.about-info__content img {
    position: absolute;
    top: -150px;
    right: -640px;
}
.about-info__title {
    font-family: var(--secondary-font);
    font-size: 40px;
    margin: 0 0 40px;
}
.about-info__text {
    padding: 0 500px 0 0;
}
.about-info__text p span {
    cursor: pointer;
    border-bottom: 2px solid var(--accent-color);
    font-weight: 500;
    color: var(--accent-color);
}

.about-form {
    padding: 100px 0;
}

.form-help__content-wrapper {
    margin: 30px 0 40px;
}
.form-help {
    padding: 60px 70px;
    border-radius: 48px;
    background: radial-gradient(25% 115.09% at 55.91% 106.2%, #b3e1de87 0%, #EDF8F1 100%);
}
.form-help__title {
    font-family: var(--secondary-font);
    font-size: 28px;
    font-weight: 700;
}
.form-help__grid {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 64px;
}
.form-help__text {}
.form-help__text p {
    margin: 0;
}
p.form-help__text-up {
    margin: 35px 0;
    font-size: 22px;
    line-height: 1.5;
}
p.form-help__text-bottom {
    font-size: 20px;
    line-height: 1.1;
}
.form-help__text-up span,
.form-help__text-bottom span {
    font-weight: 700;
}
p.form-help__text-bottom a {
    display: inline;
    top: 10px;
    margin: 0 0 0 8px;
    position: relative;
}
.form-help svg {
    width: 32px;
    height: 32px;
}

.form-help__form-wrap {
    width: 100%;
    max-width: 446px;
    border-radius: 24px;
    padding: 48px;
    background: #fff;
    box-shadow: 0px 56px 64px -36px #1446371A;
    box-shadow: 0px 2px 15px 0px #1446370A;
}
.form-help__form-wrap .contact-form__group input {
    font-size: 16px;
    height: 56px;
    border-color: #D6D6D6;
    border-radius: 12px;
}
.form-help__form-wrap .contact-form__group button {
    max-width: 100%;
    height: 56px;
}
.form-help__form-wrap .contact-form__private {
    text-align: center;
}

/**/


/* Partners Page */

.partners-heading {
    position: relative;
    padding: 40px 50px 50px;
    border-radius: 32px;
    margin: 0 20px 50px 20px;
    background: #e8e9eb;
    overflow: hidden;
}
.partners-heading__content {
    position: relative;
    z-index: 1;
    margin: 0 0 40px;
    max-width: 60%;
}
.partners-heading__content h1 {
    font-family: var(--secondary-font);
    font-size: 40px;
    font-weight: 500;
    line-height: 1.45;
    margin: 0 0 20px;
}
.partners-heading__content img {
    display: inline-block;
    width: 36px;
    height: 36px;
}
.partners-heading__content span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.partners-heading__content p {
    margin: 0;
    font-size: 22px;
    line-height: 1.6;
}
.partners-heading__content i {
    color: var(--accent-color);
    font-style: normal;
}
.partners-heading__btn {
    font-size: 18px;
    padding: 24px 32px;
}
.partners-heading__menu {
    position: relative;
    z-index: 2;
    border-radius: 16px;
    padding: 12px;
    box-shadow: 0px 24px 80px -24px #1017151A;
    background: #fff;
    width: 100%;
}
.partners-heading__photo {
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}
.partners-heading__photo img {
    display: block;
    height: 100%;
    width: auto;
    position: absolute;
    bottom: 0;
    right: -320px;
}
.partners-heading__meta {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.partners-heading__active {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    gap: 40px;
    position: relative;
    z-index: 3;
    margin: 0 0 100px;
}

.partners-heading__perks {
    display: flex;
    gap: 50px;
    z-index: 99;
    position: relative;
    padding: 23px 36px;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 4px 32px 7px #3C5F6B1A;
    border: 1px solid rgba(255, 255, 255, 0.25);
    -webkit-backdrop-filter: saturate(180%) blur(10px);
    backdrop-filter: saturate(180%) blur(10px);
    background-color: rgba(255, 255, 255, 0.5);
}
.partners-heading__perks-item {
    display: flex;
    flex-direction: column;
    gap: 7px;
}
.partners-heading__perks-item i {
    font-family: var(--secondary-font);
    font-size: 22px;
    font-weight: 500;
    font-style: normal;
}
.partners-heading__perks-item span {
    font-size: 16px;
    color: #5c706a;
}

.partners-types {
    padding: 60px 0 100px;
}
.partners-types__title {
    font-family: var(--secondary-font);
    font-size: 28px;
    font-weight: 500;
    line-height: 1.45;
    margin: 0 0 48px;
}
.partners-types__grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 24px;
}
.partners-types__item {
    padding: 40px 30px;
    border-radius: 24px;
    background: #fafafa;
}
.partners-types__item img {
    margin: 0 0 20px;
}
.partners-types__item-title {
    font-weight: 700;
    font-size: 18px;
    color: #242424;
    margin: 0 0 10px;
}
.partners-types__item-text {
    font-size: 14px;
    line-height: 1.5;
    color: #242424;
}

.partners-choose__wrap {
    background: #fafafa;
    padding: 48px;
    border-radius: 40px;
}

.partners-choose__title {
    font-family: var(--secondary-font);
    font-size: 28px;
    font-weight: 500;
    line-height: 1.45;
    margin: 0 0 48px;
}

.partners-choose__grid {
    display: grid;
    grid-template-columns: 3fr 1fr 1fr;
}

.partners-choose__labels {
    display: flex;
    flex-direction: column;
}
.partners-choose__item {}
.partners-choose__labels-item {
    padding: 24px 0;
    font-weight: 500;
    font-size: 16px;
    color: #454545;
    border-bottom: 1px solid #E0E0E0;
}
.partners-choose__labels-item--header {
    font-weight: 400;
    height: 70px;
    max-height: 70px;
    color: #959595;
}
.partners-choose__visastore {
    display: flex;
    flex-direction: column;
    border-radius: 24px;
    overflow: hidden;
}
.partners-choose__visastore-item {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: auto;
    border-bottom: 1px solid #2FB164;
    background: var(--primary-color);
}
.partners-choose__visastore-item--header {
    height: 70px;
    max-height: 70px;
    font-family: var(--secondary-font);
    font-size: 15px;
    font-weight: 700;
    color: #fff;
}
.partners-choose__visastore-item--header br {
    display: none;
}
.partners-choose__others {
    display: flex;
    flex-direction: column;
}
.partners-choose__others-item {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: auto;
    border-bottom: 1px solid #E0E0E0;
}
.partners-choose__others-item--header {
    height: 70px;
    max-height: 70px;
    text-align: center;
    color: #959595;
}

.partners-choose__labels-item--no-border,
.partners-choose__visastore-item--no-border,
.partners-choose__others-item--no-border {
    border: none;
}

.partners-offers {
    padding: 100px 0 !important;
}
.partners-offers__flex {
    display: flex;
    flex-direction: column;
    gap: 50px;
}
.partners-offers__item {
    display: flex;
    position: relative;
    gap: 50px;
    padding: 35px 35px 35px 0;
    border-radius: 24px;
    background: #fafafa;
}
.partners-offers__item-photo {
    display: flex;
    flex-direction: column;
    gap: 24px;
    min-width: 400px;
    position: relative;
}
.partners-offers__item-photo-form {
    display: none;
    border-radius: 24px;
    padding: 40px 32px;
}
.partners-offers__item-photo-form .btn {
    color: #fff;
}
.partners-offers__item-photo-form p {
    margin: 0;
    max-width: 350px;
    text-align: center;
}
.partners-offers__item-photo img {
    position: absolute;
    width: auto;
    height: 200px;
    bottom: -35px;
    left: 50%;
    transform: translateX(-50%);
}
.partners-offers__item-title {
    font-family: var(--secondary-font);
    font-size: 25px;
    font-weight: 700;
    line-height: 1.2;
    margin: 0 0 10px;
}
.partners-offers__item-target {
    font-family: var(--secondary-font);
    font-size: 18px;
    font-weight: 500;
    line-height: 1.5;
    margin: 0 0 20px;
}
.partners-offers__item-note { 
    font-size: 16px;
    line-height: 1.5;
}
.partners-offers__item-arr {
    position: absolute;
    top: 45px;
    right: 40px;
    cursor: pointer;
}

.partners-offers__item-1 {
    /* background: linear-gradient(90deg, #E5E0FA 0%, #F5F4F9 43.75%); */
    background: #F5F4F9;
}
.partners-offers__item-1:hover {
    cursor: pointer;
    background: linear-gradient(90deg, #E5E0FA 0%, #F5F4F9 43.75%);
}
.partners-offers__item-1 .partners-offers__item-target {
    color: #784aaf;
}

.partners-offers__item-2 {
    /* background: linear-gradient(90deg, #DBE0F4 0%, #F4F6FF 43.75%); */
    background: #F4F6FF;
}
.partners-offers__item-2:hover {
    cursor: pointer;
    background: linear-gradient(90deg, #DBE0F4 0%, #F4F6FF 43.75%);
}
.partners-offers__item-2 .partners-offers__item-target {
    color: #304FE7;
}

.partners-offers__item-3 {
    /* background: linear-gradient(90deg, #FAEBE6 0%, #FBF6F4 43.75%); */
    background: #FBF6F4;
}
.partners-offers__item-3:hover {
    cursor: pointer;
    background: linear-gradient(90deg, #FAEBE6 0%, #FBF6F4 43.75%);
}
.partners-offers__item-3 .partners-offers__item-target {
    color: #C77F38;
}

.partners-offers__item-4 {
    /* background: linear-gradient(90deg, #DEF0F5 0%, #F4F8F9 43.75%); */
    background: #F4F8F9;
}
.partners-offers__item-4:hover {
    cursor: pointer;
    background: linear-gradient(90deg, #DEF0F5 0%, #F4F8F9 43.75%);
}
.partners-offers__item-4 .partners-offers__item-target {
    color: #4CA4BB;
}

.partners-offers__item-active {
    background: none;
}
.partners-offers__item-active:hover {
    cursor: default;
    background: none;
}
.partners-offers__item-active .partners-offers__item-photo {
    min-width: 400px;
}
.partners-offers__item-active .partners-offers__item-photo-form {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 24px;
}
.partners-offers__item-active .partners-offers__item-photo-image {
    position: relative;
    min-width: 400px;
    height: 350px;
    border-radius: 24px;
}
.partners-offers__item-active .partners-offers__item-photo img {
    bottom: 0;
    max-height: 400px;
    max-width: 90%;
    height: auto;
}

.partners-offers__item-1.partners-offers__item-active .partners-offers__item-photo-image,
.partners-offers__item-1.partners-offers__item-active .partners-offers__item-photo-form {
    background: #F5F4F9;
}
.partners-offers__item-1.partners-offers__item-active .partners-offers__item-photo-form .btn {
    background: #784aaf;
}

.partners-offers__item-2.partners-offers__item-active .partners-offers__item-photo-image,
.partners-offers__item-2.partners-offers__item-active .partners-offers__item-photo-form {
    background: #F4F6FF;
}
.partners-offers__item-2.partners-offers__item-active .partners-offers__item-photo-form .btn {
    background: #304FE7;
}

.partners-offers__item-3.partners-offers__item-active .partners-offers__item-photo-image,
.partners-offers__item-3.partners-offers__item-active .partners-offers__item-photo-form {
    background: #FBF6F4;
}
.partners-offers__item-3.partners-offers__item-active .partners-offers__item-photo-form .btn {
    background: #C77F38;
}


.partners-offers__item-4.partners-offers__item-active .partners-offers__item-photo-image,
.partners-offers__item-4.partners-offers__item-active .partners-offers__item-photo-form {
    background: #F4F8F9;
}
.partners-offers__item-4.partners-offers__item-active .partners-offers__item-photo-form .btn {
    background: #4CA4BB;
}


.partners-offers__item-perks {
    display: none;
    flex-direction: column;
    gap: 16px;
    margin: 40px 0;
}
.partners-offers__item-perks__title {
    line-height: 1.5;
    font-size: 20px;
    font-weight: 700;
    color: #242424;
}
.partners-offers__item-perks__item {
    display: flex;
    gap: 16px;
    align-items: center;
}
.partners-offers__item-perks__item-text {
    line-height: 1.5;
}
.partners-offers__item-perks__item-text span {
    display: block;
    margin: 0 0 10px;
    font-weight: 600;
}

.partners-offers__item-perks-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
.partners-offers__item-perks-grid .partners-offers__item-perks__item {
    flex-direction: column;
    align-items: flex-start;
}

.partners-offers__item-rewards {
    display: none;
    justify-content: space-between;
}
.partners-offers__item-rewards__item {
    display: flex;
    flex-direction: column;
    gap: 5px;
}
.partners-offers__item-rewards__item i {
    font-size: 24px;
    font-weight: 600;
    color: #784aaf;
    font-style: normal;
}
.partners-offers__item-rewards__item span {
    font-size: 16px;
    color: #242424;
}

.partners-offers__item-active .partners-offers__item-rewards,
.partners-offers__item-active .partners-offers__item-perks {
    display: flex;
}

.partners-visas {
    padding: 100px 0 !important;
}
.partners-visas__title {
    font-family: var(--secondary-font);
    font-size: 28px;
    font-weight: 500;
    line-height: 1.45;
    margin: 0 0 48px;
}


.partners-steps__grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 40px;
    padding: 0 70px 100px;
}
.partners-steps__item {
    z-index: 1;
    position: relative;
    background: #fff;
}
/* .partners-steps__item-1 {
    border-top-left-radius: 24px;
    border-top-right-radius: 24px;
    background: #fafafa;
}
.partners-steps__item-1::after {
    display: block;
    content: '';
    width: 100px;
    height: 100px;
    position: absolute;
    right: -100px;
    bottom: 0;
    background: #fafafa;
}
.partners-steps__item-2 {
    z-index: 2;
    border-bottom-left-radius: 24px;
} */
.partners-steps__item span {
    display: block;
    font-family: var(--secondary-font);
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0 0 20px;
}
.partners-steps__item-title {
    font-family: var(--secondary-font);
    font-size: 18px;
    font-weight: 500;
    margin: 0 0 10px;
}
.partners-steps__item-text {
    font-size: 14px;
    line-height: 1.5;
    color: #666;
}

.partners-steps__form {
    padding: 40px;
    border-radius: 24px;
    border-top-left-radius: 0;
    background: #FAFAFA;
}
/**/


/* services page */

.services-heading {
    position: relative;
    padding: 40px 50px 50px;
    border-radius: 32px;
    margin: 0 20px 50px 20px;
    background: #EDF8F1;
    background: radial-gradient(25% 115.09% at 55.91% 106.2%, #B3E1DE 0%, #EDF8F1 100%) /* warning: gradient uses a rotation that is not supported by CSS and may not behave as expected */,
                radial-gradient(46.82% 126.95% at 77.39% 68.01%, #FFFFFF 0%, rgba(255, 255, 255, 0) 100%) /* warning: gradient uses a rotation that is not supported by CSS and may not behave as expected */;
    overflow: hidden;
}
.services-heading__content {
    position: relative;
    z-index: 1;
    margin: 0 0 40px;
    max-width: 60%;
}
.services-heading__content h1 {
    font-family: var(--secondary-font);
    font-size: 40px;
    font-weight: 500;
    line-height: 1.45;
    margin: 0 0 20px;
}
.services-heading__content img {
    display: inline-block;
    width: 36px;
    height: 36px;
}
.services-heading__content span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.services-heading__content p {
    margin: 0;
    font-size: 24px;
    line-height: 1.4;
}
.services-heading__content i {
    color: var(--accent-color);
    font-style: normal;
}
.services-heading__btn {
    font-size: 18px;
    padding: 24px 32px;
}
.services-heading__menu {
    position: relative;
    z-index: 2;
    border-radius: 16px;
    padding: 12px;
    box-shadow: 0px 24px 80px -24px #1017151A;
    background: #fff;
    width: 100%;
}
.services-heading__globe {
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}
.services-heading__globe img {
    display: block;
    width: auto;
    height: auto;
    max-width: 45vw;
    max-height: 90%;
    position: absolute;
    bottom: 0;
    right: 0;
}

.services-heading__active {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    gap: 40px;
    position: relative;
    z-index: 3;
}

.services-prices {
    padding: 20px 0 80px;
}
.services-visa-types__title,
.services-prices__title {
    color: var(--font-color);
    font-family: var(--secondary-font);
    font-size: 28px;
    text-align: center;
    font-weight: 500;
    line-height: 1.3;
    margin: 0 0 50px;
}

.services-steps {
    margin: 0 0 80px;
}

.services-visa-types {
    padding: 20px 0 50px;
}

/**/


/* visa page */

.badge--top {
    background: #fb4e57;
}
.badge--new {
    background: #49A747;
}
.badge--profitable {
    background: #ED9125;
}

.visa-heading {
    position: relative;
    padding: 40px 50px 80px;
    border-radius: 32px;
    margin: 0 20px;
    background: #6d7f72;
    overflow: hidden;
    /* background: #f3f3f3 url(images/usa-visa.jpg) 50% 50% / cover no-repeat; */
}
.visa-heading__back {}
.visa-heading__back img {
    position: absolute;
    object-fit: cover;
    width: 100%;
    top: 0;
    left: 0;
    height: 100%;
}
.visa-heading .breadcrumbs a.breadcrumbs__link {
    color: #fff;
}
.visa-heading .breadcrumbs span.breadcrumbs__link {
    color: #fff;
    opacity: 0.7;
}
.visa-heading__wrap {
    position: relative;
    z-index: 2;
}
.visa-heading__grid {
    display: grid;
    align-items: center;
    gap: 64px;
    grid-template-columns: 1fr 420px;
}
.visa-heading__content h1 {
    font-family: var(--secondary-font);
    font-size: 40px;
    color: #fff;
    font-weight: 500;
    line-height: 1.45;
    margin: 0 0 20px;
}
.visa-heading__content img {
    display: inline-block;
    width: 36px;
    height: 36px;
}
.visa-heading__content span {
    display: inline-flex;
    align-items: baseline;
    gap: 6px;
}
.visa-heading__content p {
    margin: 0 0 70px;
    font-size: 18px;
    color: #fff;
    line-height: 1.65;
}
.visa-heading__content .btn {
    font-size: 18px;
    padding: 24px 32px;
}
.visa-heading__content i {
    color: var(--light-accent-color);
    font-style: normal;
    white-space: nowrap;
}
.visa-heading__content--tiny h1 {
    font-size: 32px;
}
.visa-heading__content--tiny img {
    width: 30px;
    height: 30px;
}
.visa-heading__content--tiny p {
    margin-bottom: 30px;
}


.visa-heading::before {
    display: block;
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    content: '';
    background: linear-gradient(281.2deg, rgba(36, 138, 73, 0) 2.58%, rgba(72, 90, 78, 0.7) 57.85%);
}

.visa-heading__perks {
    display: flex;
    gap: 50px;
    z-index: 99;
    position: relative;
    border-radius: 24px;
    margin: 55px 0 0;
    color: #fff;
}
.visa-heading__perks-item {
    display: flex;
    flex-direction: column;
    gap: 7px;
}
.visa-heading__perks-item i {
    font-family: var(--secondary-font);
    font-size: 20px;
    font-weight: 500;
    font-style: normal;
}
.visa-heading__perks-item span {
    font-size: 16px;
    color: var(--primary-color);
}

.visa-types .btn {
    display: none;
}
.visa-types__flex {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}
.visa-types__item {
    display: flex;
    flex-direction: column;
    position: relative;
    border-radius: 12px;
    color: var(--font-color);
    font-family: var(--secondary-font);
    font-size: 15px;
    text-decoration: none;
    padding: 24px;
    box-shadow: 0px 14px 24px 0px #151E190A;
    background: #fff;
    border: none;
    text-align: left;
    cursor: pointer;
}
.visa-types__item i {
    font-size: 11px;
    font-weight: 400;
    color: #7e7e7e;
    font-style: normal;
}
.visa-types__item span {
    position: absolute;
    border-radius: 18px;
    color: #fff;
    top: -10px;
    right: 15px;
    line-height: 20px;
    height: 20px;
    padding: 0 8px;
    font-size: 10px;
}

.visa-menu {
    margin: 20px 0 60px;
}
.visa-menu__title {
    display: none;
}
.visa-menu__list {
    display: flex;
    justify-content: space-between;
    list-style: none;
    padding: 0;
    margin: 0;
}
.visa-menu__list li {
    flex: auto;
    margin: 0;
}
.visa-menu__list li img {
    width: 24px;
    height: 24px;
}
.visa-menu__list li a {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 9px;
    padding: 10px 15px;
    font-weight: 500;
    text-decoration: none;
    font-size: 14px;
    line-height: 1;
    color: #454545;
    border-radius: 15px;
    transition: background .2s;
}
.visa-menu__list li a:hover {
    background: #f9f9f9;
    transition: background .2s;
}

.visa-services {
    margin: 0 0 86px;
}
.visa-services__title {
    color: var(--font-color);
    font-family: var(--secondary-font);
    font-size: 28px;
    text-align: center;
    font-weight: 500;
    line-height: 1.5;
    margin: 0 0 50px;
}
.visa-services__grid {
    display: grid;
    gap: 40px;
    grid-template-columns: 1fr 1fr;
    margin: 0 0 50px;
}
.visa-services__item-title {
    position: relative;
    z-index: 9;
    display: flex;
    gap: 15px;
    align-items: center;
    color: var(--font-color);
    font-family: var(--secondary-font);
    font-size: 20px;
    font-weight: 500;
    line-height: 1.3;
    margin: 0;
}
.visa-services__item-title span {
    padding: 10px 16px;
    border-radius: 15px;
    font-size: 25px;
    color: #fff;
    background: #6ACF94;
}
.visa-services__item-text {
    position: relative;
    z-index: 9;
}
.visa-services__item-text p:last-child {
    margin-bottom: 0;
}
.visa-services__item--large {
    position: relative;
    border-radius: 16px;
    padding: 32px 50% 32px 32px;
    background: linear-gradient(0deg, #EDF8F1, #EDF8F1);
}
.visa-services__item-btn {
    position: absolute;
    right: 100px;
    top: 40px;
    bottom: 40px;
    max-width: 470px;
    padding: 0 150px 0 40px;
    border-radius: 24px;
    display: flex;
    gap: 20px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background: #fff;
    box-shadow: 0px 48px 48px -25px #124E163B;
}
.visa-services__item-btn p {
    line-height: 1.5;
    margin: 0;
}
/* .visa-services__item--large::before {
    position: absolute;
    display: block;
    content: '';
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
    border-top-right-radius: 16px;
    border-bottom-right-radius: 16px;
    background: radial-gradient(94.25% 389.34% at 96.92% 0%, rgba(238, 207, 204, 0.6) 0%, rgba(228, 232, 219, 0) 100%);
} */
.visa-services__item--large::after {
    position: absolute;
    display: block;
    content: '';
    width: 285px;
    height: 385px;
    bottom: 0;
    right: -30px;
    z-index: 5;
    background: url(images/visa-services@2x.webp) 0 0 / 285px;
}

.related-countries {
    padding: 80px 0 60px;
}
.related-countries__title {
    color: var(--font-color);
    font-family: var(--secondary-font);
    font-size: 28px;
    font-weight: 500;
    line-height: 1.5;
    margin: 0 0 50px;
}

.visa-form {
    position: relative;
    padding: 40px 50px 50px !important;
    border-radius: 32px;
    overflow: hidden;
    margin: 0 20px 100px 20px;
    background: #000;
    /* background: linear-gradient(0deg, rgba(38, 38, 38, 0.85), rgba(38, 38, 38, 0.85)), linear-gradient(278.89deg, rgba(47, 93, 64, 0) -15.24%, rgba(71, 94, 79, 0.504) 61.21%); */
}
.visa-form--flat {
    margin: 0 !important;
    border-radius: 0 !important;
    padding: 50px 50px 80px !important;
}
.visa-form__back img {
    position: absolute;
    object-fit: cover;
    width: 100%;
    top: 0;
    left: 0;
    height: 100%;
}
.visa-form .container {
    z-index: 2;
    position: relative;
}
.visa-form::before {
    display: block;
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    content: '';
    /* border-radius: 32px; */
    background: linear-gradient(0deg, rgba(38, 38, 38, 0.8), rgba(38, 38, 38, 0.8)), linear-gradient(278.89deg, rgba(47, 93, 64, 0) -15.24%, rgba(71, 94, 79, 0.504) 61.21%);
    /* background: linear-gradient(278.89deg, rgba(47, 93, 64, 0) -15.24%, rgba(71, 94, 79, 0.504) 61.21%); */
}
.visa-form__title {
    color: #fff;
    font-family: var(--secondary-font);
    font-size: 28px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    margin: 0 0 50px;
}
.visa-form__title i {
    font-style: normal;
    color: var(--primary-color);
}
.visa-form__title span {
    font-weight: 600;
}
.visa-form__title-flag {
    position: relative;
}
.visa-form__title-flag-blur {
    position: absolute;
    top: 0;
    left: 0;
    filter: blur(35px);
    z-index: 2;
}
.visa-form__title img {
    position: relative;
    z-index: 3;
    width: 64px;
    height: 64px;
    margin: 0 0 20px;
}

.visa-form__content {
    max-width: 850px;
    margin: 0 auto;
}

.visa-form__form-title {
    font-size: 22px;
    color: #fff;
    line-height: 1.4;
    margin: 0 0 35px;
}
.visa-form__form-fields {
    display: grid;
    gap: 20px;
    grid-template-columns: 1fr 1fr 1fr;
}
.visa-form__form-fields input {
    height: 55px;
    font-size: 17px;
    border: none;
    border-radius: 10px;
    padding: 0 25px;
}
.visa-form__form-fields button {
    position: relative;
    display: inline-block;
    text-align: center;
    font-family: var(--primary-font);
    font-size: 1em;
    font-weight: 600;
    line-height: 100%;
    text-decoration: none;
    border-radius: 12px;
    cursor: pointer;
    border: none;
    transition: 0.3s;
    padding: 20px 24px;
    color: #fff;
    background: var(--primary-color);
}
.visa-form__form-fields button:hover {
    background: #28af60;
}

.visa-form__note {
    font-size: 22px;
    color: #fff;
    line-height: 1.4;
    margin: 0 0 35px;
}
.visa-form__perks {
    display: grid;
    gap: 20px;
    grid-template-columns: 1fr;
    margin: 0 0 40px;
}
.visa-form__perks-item {
    display: flex;
    gap: 10px;
    font-size: 18px;
    align-items: center;
    color: #fff;
}
.visa-form__perks-item svg {
    min-width: 24px;
    height: 24px;
}
.visa-form__perks-item span {
    font-weight: 500;
    color: #36c06e;
}

/**/

/* sitemap */
.page-sitemap-item {
    margin: 0 0 40px 0;
}
.page-sitemap-item .title {
    font-size: 1.5em;
}
/**/

/* authors */
.author-block {
    display: flex;
    flex-direction: column;
    gap: 10px;
    position: relative;
    border-radius: 24px;
    color: #fff;
    background-image: linear-gradient(to right bottom, #1a4646, #184a4a, #164e4e, #135252, #0f5656, #15565a, #1c565e, #245661, #35525f, #424e59, #484b51, #494949);
    padding: 20px 30px;
    margin: 40px 0 0;
    /* justify-content: center;
    align-items: center;
    text-align: center; */
}
.author-block__main {
    display: flex;
    gap: 20px;
    position: relative;
    z-index: 6;
}
.author-block::after {
    content: "";
    position: absolute;
    z-index: 5;
    top: 0;
    left: 16px;
    width: calc(100% - 32px);
    height: 192px;
    background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAEAAAABACAYAAACqaXHeAAAACXBIWXMAABYlAAAWJQFJUiTwAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAABzSURBVHgB7dQ7CgJBEATQ1tVExPufUwNR/A3YE27aG/R7UFQ+U3QEAAAAAAAA0MEu6p2yL9mf7Fv2PQrto7lD1Dtnz/Ut2XMRFlBpiwWsPfo3NtB+AUvUe488Ro7x//V5C64jz5FXFGq/AAAAAAAAAKCHH+onCw7A65Y4AAAAAElFTkSuQmCC);
    background-size: 32px;
}
.author-block picture {
    position: relative;
}
.author-block img {
    display: block;
    border-radius: 50%;
    width: 110px;
    height: 110px;
    position: relative;
    z-index: 2;
    border: 3px solid #fff;
}
.author-block__head img {
    display: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    position: relative;
    z-index: 2;
    border: 2px solid #fff;
}
/* .author-block picture::before {
    display: block;
    content: "";
    width: 90px;
    background: linear-gradient(106deg, #2b2b97, #8f3f74);
    height: 90px;
    position: absolute;
    border-radius: 50%;
    z-index: 1;
} */
.author-block__content {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.author-block__content a {
    font-family: 'Podkova', sans-serif;
    font-size: 25px;
    font-weight: 600;
    text-decoration: none;
    color: #f8744d;
    display: block;
}
.author-block__content p {
    opacity: 0.8;
    font-size: 14px;
    line-height: 1.5;
}
.author-block__contacts {
    display: flex;
    gap: 5px;
}
.author-block__contacts svg {
    width: 32px;
    height: 32px;
}
.author-block__meta {
    position: relative;
    z-index: 6;
    padding: 15px 0 0;
    display: flex;
    gap: 20px;
    font-size: 12px;
    opacity: 0.5;
    border-top: 1px solid #809595;
    width: 100%;
    flex: auto;
}
/**/

/* footer */

.footer {
    background: #242424;
    padding: 48px 0 0;
}
.footer__copy {
    padding: 0 0 30px;
    /* background: #1e1e1e; */
}
.footer__copy-payments {
    display: flex;
    gap: 20px;
    align-items: center;
    color: #A3ACAB;
    font-size: 12px;
    line-height: 1.5;
    /* max-width: 500px; */
    padding: 0;
    margin: 0;
    /* text-align: right; */
    justify-content: end;
}
.footer__copy-payments-img {
    flex: auto;
    display: flex;
    justify-content: center;
}


.footer__copyright {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.footer__copyright p {
    color: #A3ACAB;
    font-size: 12px;
    line-height: 1.5;
    max-width: 280px;
}

.footer__main {
    display: flex;
    gap: 48px;
    justify-content: space-between;
    margin: 0 0 25px 0;
}

.footer__column {
    display: flex;
}

.footer__logo {
    text-decoration: none;
    display: flex;
    gap: 10px;
    align-items: center;
}

.footer__logo .icon {
    fill: #D6D6D6;
    width: 57px;
    height: 44px;
}
.footer__logo .site-descr {
    color: #ffffffaf;
    font-size: 0.8em;
    font-weight: 400;
    line-height: 18px;
}
.footer__logo .site-descr span {
    display: block;
    color: #fff;
    font-family: var(--secondary-font);
    font-size: 1.12em;
    font-weight: 500;
    line-height: 18px;
    text-transform: uppercase;
}

.footer__menu {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 0;
    margin: 0;
}
.footer-contacts__title,
.footer__menu-title {
    color: #fff;
    font-size: 1.1em;
    font-weight: 500;
}
.footer__menu ul,
.footer__menu li {
    padding: 0;
    margin: 0 0 15px;
    line-height: 1;
}
.footer__menu li a {
    color: #E0E0E0;
    font-weight: 400;
    font-size: 14px;
    text-decoration: none;
    transition: 0.3s;
}
.footer__menu li a:hover,
.footer__menu li.current-menu-item a {
    color: var(--primary-color);
}

.footer__copy-wrapper {
    display: grid;
    align-items: center;
    justify-content: center;
    grid-template-columns: 1fr 1fr 1fr;
}

.footer__links {
    display: flex;
    align-items: center;
    gap: 20px;
}
.footer__link {
    color: #A3ACAB;
    font-size: 12px;
    line-height: 100%;
    text-decoration: none;
    transition: 0.3s;
    border-right: 1px solid #A3ACAB;
    padding: 0 16px 0 0;
}
.footer__link:last-child {
    border-right: none;
    padding: 0;
}
.footer__link:hover {
    color: #ffffff;
}

.footer-contacts {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.footer-contacts__content {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.footer-contacts p {
    font-size: 13px;
    line-height: 1.5;
    color: #DFE1E1;
    max-width: 400px;
    margin: 0 0 10px;
}
.footer-contacts p strong {
    font-weight: 500;
}
.footer-contacts a {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 15px;
    text-decoration: none;
    color: #DFE1E1;
}
.footer-contacts a:hover {
    color: var(--primary-color);
}
.footer-contacts a svg {
    width: 38px;
    height: 38px;
}
.footer-contacts__wa svg {
    fill: #25D366;
}
.footer-contacts__tg svg {
    fill: #0088cc;
}
.footer-contacts__callback {
    padding: 12px 20px;
    margin: 15px 0 0;
    background: #2a584e;
    color: #fff;
    border-radius: 25px;
    align-self: flex-start;
}

/**/

/* modal forms */

.modal {
    display: none;
    position: relative;
    border-radius: 2px;
    background: transparent;
    overflow: hidden;
    padding: 20px;
    margin: 0;
}
.modal .container {
    padding: 0;
}
.modal-form__content {
    display: flex;
    gap: 60px;
}
.modal.column .modal-form__content {
    max-width: 895px;
}
.modal.row .modal-form__content {
    flex-direction: row;
}
.modal.column .modal-form__content {
    flex-direction: column;
}
.modal-form__close {
    position: absolute;
    right: 20px;
    top: -4px;
    display: flex;
    background:transparent;
    border-radius: 100%;
    cursor: pointer;
    z-index: 10;
    transition: 0.3s;
}
.modal-form__close .icon {
    width: 20px;
    height: 20px;
    fill: #fff;
}
.modal.row .modal-form__form {
    max-width: 325px;
    margin: 0 auto;
}
.modal.column .modal-form__form form {
    display: flex;
    gap: 20px;
}
.modal-form__header {
    display: flex;
    flex-direction: column;
}
.modal-form__title {
    font-family: var(--primary-font);
    font-size: 32px;
    font-weight: 700;
    text-align: left;
    color: #fff;
    margin: 0 0 25px;
}
.modal-form__subtitle {
    text-align: right;
    color: #FFF;
    font-family: var(--decorative-font);
    font-size: 74px;
    font-style: italic;
    font-weight: 400;
    line-height: 41px;
    letter-spacing: 1.48px;
}
.modal.column .form__group {
    width: 100%;
}
.modal .form__group input {
    background: #F6F7F8;
}
.modal .form__group input::placeholder {
    color: #B1B1B1;
}
.modal.column .form__group.notice {
    flex: 0 1 45%;
}
.modal .form__group:has( > p ) {
    padding: 0;
    /* margin: 0 0 40px 0; */
}
.modal .form__control .btn {
    display: block;
    width: 100%;
}
.modal-form__privacy-text {
    margin: auto 0 0 0;
}
.modal-form__privacy-text.mobile {
    display: none
}
.modal-form__privacy-text p {
    color: #FFF;
    font-size: 12px;
    font-weight: 300;
    margin: 0;
}
.modal-form__privacy-text p a {
    color: #FFF;
    text-decoration: underline;
}
.modal-form__privacy-text p a:hover {
    text-decoration: none;
}
.success__modal {
    text-align: center;
    border-radius: 20px;
    background: #fff;
    padding: 60px;
}
.success__modal-title {
    display: block;
    font-family: var(--primary-font);
    font-size: 22px;
    color: var(--primary-color);
    margin: 0 0 10px 0;
}
.success__modal-text {
    color: var(--font-color);
    margin: 0;
}
.fancybox-close-small {
    right: 10px;
    top: 10px;
    width: 45px;
    height: 45px;
    color: var(--primary-color);
    padding: 0;
}
body .success-checkmark .check-icon .icon-line {
    background-color: var(--primary-color);
}
body .success-checkmark .check-icon .icon-circle {
    border: 4px solid var(--primary-color);
}

/**/

.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 #fff;
}
.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: #fff;
    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 #fff;
    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; */
}
@keyframes rotate-circle {
    0% {
      transform: rotate(-45deg);
    }
    5% {
      transform: rotate(-45deg);
    }
    12% {
      transform: rotate(-405deg);
    }
    100% {
      transform: rotate(-405deg);
    }
  }
  @keyframes icon-line-tip {
    0% {
      width: 0;
      left: 1px;
      top: 19px;
    }
    54% {
      width: 0;
      left: 1px;
      top: 19px;
    }
    70% {
      width: 50px;
      left: -8px;
      top: 37px;
    }
    84% {
      width: 17px;
      left: 21px;
      top: 48px;
    }
    100% {
      width: 25px;
      left: 14px;
      top: 45px;
    }
  }
  @keyframes icon-line-long {
    0% {
      width: 0;
      right: 46px;
      top: 54px;
    }
    65% {
      width: 0;
      right: 46px;
      top: 54px;
    }
    84% {
      width: 55px;
      right: 0px;
      top: 35px;
    }
    100% {
      width: 47px;
      right: 8px;
      top: 38px;
    }
  }


  .modal {
    position: relative;
    z-index: 999;
}
.modal__overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    justify-content: center;
    align-items: center;
}

@supports ((-webkit-backdrop-filter: blur(1px)) or (backdrop-filter: blur(1px))) {
    .modal__overlay {
      -webkit-backdrop-filter: blur(1px);
      backdrop-filter: blur(1px);
    }
  }

.modal__container {
    background-color: #fff;
    max-width: 450px;
    max-height: 100vh;
    border-radius: 24px;
    overflow-y: auto;
    box-sizing: border-box;
}

.modal__close {
    cursor: pointer;
    display: block;
    border: 0;
    width: 40px;
    height: 40px;
    position: absolute;
    top: 10px;
    right: 10px;
    background: none;
    background-size: 20px;
    background-position: 50% 50%;
    background-repeat: no-repeat;
    background-image: url(data:image/svg+xml;base64,PHN2ZyBjbGFzcz0iaWNvbiBjbG9zZS1pY29uIiB2aWV3Qm94PSIwIDAgMjQgMjQiIHhtbDpzcGFjZT0icHJlc2VydmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PHBhdGggZD0iTTUuMyAxOC43Yy4yLjIuNC4zLjcuM3MuNS0uMS43LS4zbDUuMy01LjMgNS4zIDUuM2MuMi4yLjUuMy43LjNzLjUtLjEuNy0uM2MuNC0uNC40LTEgMC0xLjRMMTMuNCAxMmw1LjMtNS4zYy40LS40LjQtMSAwLTEuNHMtMS0uNC0xLjQgMEwxMiAxMC42IDYuNyA1LjNjLS40LS40LTEtLjQtMS40IDBzLS40IDEgMCAxLjRsNS4zIDUuMy01LjMgNS4zYy0uNC40LS40IDEgMCAxLjR6Ij48L3BhdGg+PC9zdmc+);
}

.modal__content {
    padding: 40px;
}

/**************************\
Demo Animation Style
\**************************/
@keyframes mmfadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes mmfadeOut {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
    }
}

@keyframes mmslideIn {
    from {
        transform: translateY(15%);
    }

    to {
        transform: translateY(0);
    }
}

@keyframes mmslideOut {
    from {
        transform: translateY(0);
    }

    to {
        transform: translateY(-10%);
    }
}

.micromodal-slide {
    display: none;
}

.micromodal-slide.is-open {
    display: block;
}

.micromodal-slide[aria-hidden="false"] .modal__overlay {
    animation: mmfadeIn .3s cubic-bezier(0.0, 0.0, 0.2, 1);
}

.micromodal-slide[aria-hidden="false"] .modal__container {
    animation: mmslideIn .3s cubic-bezier(0, 0, .2, 1);
}

.micromodal-slide[aria-hidden="true"] .modal__overlay {
    animation: mmfadeOut .3s cubic-bezier(0.0, 0.0, 0.2, 1);
}

.micromodal-slide[aria-hidden="true"] .modal__container {
    animation: mmslideOut .3s cubic-bezier(0, 0, .2, 1);
}

.micromodal-slide .modal__container,
.micromodal-slide .modal__overlay {
    will-change: transform;
}

.contact-form__modal .tingle-modal-box {
    max-width: 450px;
}
.contact-form__title {
    font-family: var(--secondary-font);
    color: #111;
    font-size: 26px;
    font-weight: 700;
    margin: 0 0 10px;
    line-height: 1.1;
}
.contact-form__description {
    line-height: 1.3;
    padding: 0 0 20px;
    margin: 0 0 20px;
    border-bottom: 1px solid #f3f3f3;
}
.contact-form__fields {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.contact-form__group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.contact-form__group label {
    font-size: 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.contact-form__group label i {
    font-size: 12px;
    opacity: 0.7;
}
.contact-form__group input {
    height: 42px;
    font-size: 15px;
    padding: 0 20px;
    border: 1px solid #f3f3f3;
    border-radius: 2px;
    border: 1px solid rgba(148, 163, 184, .28);
    border-radius: 12px;
    outline: none;
    transition: box-shadow .2s, border-color .2s, background .2s;
}
.contact-form__group input:focus {
    border-color: #c6cdd9;
    box-shadow: 0 0 0 4px #c6cdd92e;
}
.contact-form__group button {
    cursor: pointer;
    max-width: 160px;
    border: none;
    height: 50px;
    border-radius: 12px;
    font-size: 1em;
    font-weight: 600;
    color: #fff;
    background: var(--primary-color);
    transition: .2s;
}
.contact-form__group button:hover {
    background: #28af60;
    transition: .2s;
}
.contact-form__private {
    padding: 20px 0 0;
    font-size: 12px;
    line-height: 1.3;
    color: #777;
}
.contact-form__private a {
    text-decoration: underline;
    color: #777;
}

.modal__content-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 30px;
}

.modal__content-socials {
    display: flex;
    gap: 20px;
    justify-content: center;
}
.modal__content-socials svg {
    width: 40px;
    height: 40px;
}

.modal__content-title {
    font-family: var(--secondary-font);
    color: #111;
    font-size: 28px;
    font-weight: 600;
    text-align: center;
    margin: 0 0 20px;
    line-height: 1.4;
}
.modal__content-text p {
    font-size: 18px;
    line-height: 1.5;
    color: #666;
    text-align: center;
}

.sitemaps-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
    margin: 0 0 100px;
}
.sitemaps-title {
    font-weight: 600;
    color: #111;
    font-size: 20px;
    margin: 0 0 20px;
}
.sitemaps-grid li {
    line-height: 1.2;
    margin: 0 0 5px;
}
.sitemaps-grid li a {
    color: #111;
    font-size: 14px;
}

.faq__list {
    margin: 0 auto;
    max-width: 850px;
}
.faq__item {
    padding: 20px 25px;
    margin: 0 0 16px;
    border-radius: 20px;
    border: 1px solid #DFE1E1;
}
.faq__item__question {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.faq__item__question:hover {
    cursor: pointer;
}
.faq__item__question > div {
    display: flex;
    align-items: center;
    gap: 18px;
    font-size: 20px;
    font-weight: 600;
    line-height: 28px;
    color: #222525;
}
.faq__item__question > div span {
    font-family: var(--secondary-font);
    font-size: 24px;
    font-weight: 600;
    line-height: 32px;
    color: var(--primary-color);;
}
.faq__item__question i {
    height: 16px;
    width: 16px;
    background-image: url(images/arrow.svg);
    background-position:  50% 50%;
    background-size:  contain;
    background-repeat:  no-repeat;
}
.faq__item__answer {
    padding: 24px 0 0;
    font-size: 16px;
    font-weight: 400;
    line-height: 28px;
}
.faq__item__answer p:first-child {
    margin-top: 0;
}
.faq__item__answer p:last-child {
    margin-bottom: 0;
}
.faq__item .faq__item__answer {
    display: none;
}
.faq__item__answer a {
    color: #FF8666;
}
.faq__item__answer a:hover {
    text-decoration: none;
}

.faq__item.active {
    border: 1px solid #333;
}
.faq__item.active .faq__item__question i {
    background-image: url(images/arrow-active.svg);
}

/* responsive */

@media (max-width: 1640px) {
    .header__menu .menu {
        gap: 30px;
    }
    .searchform-wrapper {
        position: initial;
    }
    .searchform-spotlight {
        display: none;
        position: absolute;
        padding: 16px;
        border-radius: 16px;
        top: 90px;
        right: 40px;
        box-shadow: 0 4px 32px 7px #3C5F6B1A;
        border: 1px solid rgba(255, 255, 255, 0.25);
        -webkit-backdrop-filter: saturate(180%) blur(20px);
        backdrop-filter: saturate(180%) blur(20px);
        background-color: rgba(255, 255, 255, 0.9);
        visibility: hidden;
        opacity: 0;
        transition: 0.3s;
    }
    .searchform-spotlight.active {
        display: block;
        visibility: visible;
        opacity: 1;
        z-index: 20;
        transform: translate(0px, 10px);
        transition: 0.3s;
    }
    .searchform-suggestions,
    .searchform-suggestions.active {
        position: relative;
        opacity: 1;
        visibility: visible;
        top: auto;
        padding: 0;
        background: none;
        box-shadow: none;
        margin: 0;
        transform: none;
    }
    .searchform-spotlight.active .searchform-suggestions {
        pointer-events: all;
    }
    .searchform-suggestions__title {
        padding: 20px 10px 0;
        font-size: 15px;
        border-bottom: none;
    }
    .searchform-suggestions ul {
        padding: 10px 0 0;
    }
    .searchform-suggestions li {
        padding: 10px 10px;
        border-radius: 0;
    }
    .searchform-button__mobile {
        display: block;
    }
}

@media (max-width: 1366px) {
    .hero__wrapper {
        padding: 56px 20px 0;
    }
    .hero__image {
        right: 0;
        max-width: 1000px;
    }
    .hero-content__title {
        font-size: 3em;
        line-height: 62px;
    }
    .hero-content__title span {
        min-height: 88px;
    }
}

@media (max-width: 1280px) {
    
}

@media (max-width: 1200px) {
    .hero {
        padding: 0;
    }
    .hero__wrapper {
        background: #edf8f2;
    }
    .hero__wrapper::after {
        display: block;
        content: '';
        position: absolute;
        bottom: 0;
        height: 190px;
        width: 100%;
        left: 0;
        background: #fff;
    }
    .header__container {
        padding: 0 20px;
        gap: 20px;
    }
    .container {
        padding: 0 20px;
    }
}

@media (max-width: 1080px) {

    .header__socials .searchform-wrapper {
        display: none;
    }

    .hero-content__title {
        font-size: 3.1em;
    }

    .hero__image {
        max-width: 900px;
    }

    .phone_link {
        display: none !important;
    }

    body:not(.home) .news-list {
        grid-template-columns: 1fr 1fr;
    }

    .other-types {
        grid-template-columns: 1fr 1fr;
    }

    .prices-page {
        padding: 30px 0 0;
    }
    .prices-page h1 {
        font-size: 32px;
    }
    .prices-filter {
        flex-direction: column;
        align-items: flex-start;
    }
    .prices-list {
        grid-template-columns: 1fr;
    }
    .prices-section {
        padding: 30px 20px;
        margin: 0 -20px;
        border-radius: 0;
        border-top: 1px solid #cad3dc;
    }
    .prices-section__title {
        font-size: 20px;
    }
    .prices-consult {
        flex-direction: column;
        align-items: flex-start;
    }
    .prices-item__price {
        font-size: 14px;
    }

    .footer__copy-wrapper {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
}

@media (max-width: 1024px) {

    .country-lists__countries {
        grid-template-columns: 1fr 1fr;
    }

    .hidden-desktop {
        display: flex;
        padding: 12px;
    }

    .header-visas {
        margin: 0 auto 0 0;
    }
    .header__logo {
        margin: 0 15px 0 0;
    }

    .header__menu {
        position: absolute;
        top: 100%;
        right: 15px;
        visibility: hidden;
        max-width: 330px;
        width: 100%;
        background: #fff;
        border-radius: 16px;
        /* box-shadow: 0px 0px 24px rgba(0, 0, 0, 0.05), 0px 48px 64px -32px rgba(0, 0, 0, 0.05); */
        opacity: 0;
        z-index: -1;
        transform: translate(0px, 15px);
        transition: 0.3s;
        margin: 0;
        max-height: 85vh;
        overflow: hidden;
        flex-direction: column;
        align-items: stretch;
        box-shadow: 0 4px 32px 7px #3C5F6B1A;
        border: 1px solid rgba(255, 255, 255, 0.25);
        -webkit-backdrop-filter: saturate(180%) blur(20px);
        backdrop-filter: saturate(180%) blur(20px);
        background-color: rgba(255, 255, 255, 0.9);
    }
    .header__menu .menu {
        display: none !important;
    }
    
    .header__menu-mobile {
        display: block;
    }
    .header__menu.show {
        visibility: visible;
        opacity: 1;
        z-index: 20;
        transform: translate(0px, 10px);
    }

    .header__menu .menu {
        gap: 0;
        flex-direction: column;
        padding: 24px;
    }
    .header__menu .menu > li > a {
        padding: 10px 0;
    }
    .header__menu .menu > li.menu-item-has-children > a {
        color: #777;
        text-transform: uppercase;
        font-size: 0.75em;
        font-weight: 400;
        padding: 10px 0 0;
    }
    .header__menu .menu > li.menu-item-has-children .icon {
        display: none;
    }
    .header__menu .menu > li.menu-item-has-children .sub-menu__wrapper {
        display: block;
        border-radius: 0;
        box-shadow: none;
    }
    .header__menu .menu > li.menu-item-has-children .sub-menu__wrapper a {
        color: #000 !important;
        font-size: 1em;
        font-weight: 500;
        padding: 10px 0;
    }
    .header__menu .menu .sub-menu__wrapper .sub-menu {
        padding: 0;
        box-shadow: none;
        border-radius: 0;
        display: block;
    }

    .p-65 {
        padding: 45px 0;
    }

    /* .header__menu .menu {
        gap: 30px;
    } */

    .hero__wrapper {
        padding: 70px 0 0px 0;
    }

    .hero-content__title {
        font-size: 3em;
        line-height: 52px;
    }

    .hero-content__title span {
        min-height: 78px;
    }

    .hero__image {
        max-width: 800px;
    }

    .visa-options__wrapper {
        /* display: none; */
    }

    .popular-destinations {
        grid-gap: 20px;
    }

    .country-lists {
        grid-gap: 20px;
    }

    .header-block {
        margin: 0 0 40px 0;
    }

    .news-container {
        flex-direction: column;
        gap: 20px;
    }

    .blog-list {
        grid-gap: 20px;
    }

    .form-consultation__wrapper {
        padding: 60px 0;
    }

    .article-content .items__list.col-3 ul {
        grid-template-columns: 1fr 1fr;
    }

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

@media (max-width: 980px) {

    .header__logo {
        margin: 0 30px 0 0;
    }

    .hero-content__description {
        margin: 0 0 38px 0;
    }

    .text-block__image {
        display: none;
    }

    .country-lists {
        grid-template-columns: 1fr 1fr;
    }

    .visa-info {
        flex-direction: column-reverse;
    }

    .visa-info__documents .header-block {
        margin: 0 0 20px 0;
    }

    .blog-list {
        grid-template-columns: 1fr 1fr;
    }

}

@media (max-width: 880px) {

    .main > section:last-child {
        padding: 0 0 55px 0;
    }

    .header__logo .site-descr i {
        display: none;
    }

    .breadcrumbs {
        margin: 0 0 20px;
    }
    .page-heading {
        border-radius: 0;
        padding: 30px 0;
        margin: 0 0 55px 0;
    }
    .page-heading__title h1 {
        font-size: 2.2em;
        line-height: 1.3;
    }

    .visa-heading {
        border-radius: 0;
        padding: 40px 0;
        margin: 0 0 35px 0;
    }
    .visa-heading::before {
        border-radius: 0;
    }
    .visa-heading__grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .visa-heading__content h1,
    .visa-heading__content--tiny h1 {
        font-size: 24px;
    }
    .visa-heading__content p,
    .visa-heading__content--tiny p {
        font-size: 16px;
        margin: 0;
    }
    .visa-heading__content h1 br {
        display: none;
    }
    .visa-heading__content i.price {
        white-space: nowrap;
    }
    .visa-heading__content span {
        gap: 4px;
    }
    .visa-heading__content img,
    .visa-heading__content--tiny img {
        width: 20px;
        height: 20px;
    }
    .visa-heading__content .btn {
        display: none;
    }
    .visa-heading__perks {
        flex-direction: column;
        gap: 20px;
        margin: 30px 0 0;
    }
    .visa-heading__perks-item {
        gap: 5px;
    }
    .visa-heading__perks-item i {
        font-size: 20px;
    }
    .visa-heading__perks-item span {
        font-size: 15px;
    }
    
    .visa-types__flex {
        margin: 0 0 30px;
        gap: 24px 12px;
    }
    .visa-types .btn {
        display: block;
        width: 100%;
    }
    .visa-types__item {
        padding: 15px;
        font-size: 14px;
    }

    .services-heading {
        border-radius: 0;
        padding: 40px 0;
        margin: 0 0 55px 0;
        background: #edf8f1;
    }
    .services-heading__content {
        max-width: 100%;
    }
    .services-heading__content h1 {
        font-size: 24px;
    }
    .services-heading__content h1 br {
        display: none;
    }
    .services-heading__content i.price {
        white-space: nowrap;
    }
    .services-heading__content span {
        gap: 4px;
    }
    .services-heading__content img {
        width: 20px;
        height: 20px;
    }
    .services-heading__content p {
        font-size: 17px;
        margin-bottom: 32px;
    }
    .services-heading__globe {
        display: none;
    }
    .services-heading__menu {
        box-shadow: none;
        background: none;
        border-radius: 0;
        padding: 0;
    }
    .services-heading__btn {
        width: 100%;
    }
    .services-heading__active {
        gap: 32px;
        flex-direction: column-reverse;
    }

    .visa-menu__title {
        display: block;
        margin: 0 0 25px;
        color: var(--font-color);
        font-family: var(--secondary-font);
        font-size: 20px;
        font-weight: 500;
    }
    .visa-menu__list {
        gap: 12px;
        flex-wrap: wrap;
        justify-content: flex-start;
    }
    .visa-menu__list li {
        flex: none;
    }
    .visa-menu__list li img {
        width: 20px;
        height: 20px;
    }
    .visa-menu__list li a {
        flex-direction: row;
        white-space: nowrap;
        background: #fff;
        box-shadow: 0px 48px 64px -32px #0000000D;
        box-shadow: 0px 0px 24px 0px #0000000D;
    }

    .visa-services__title {
        font-size: 24px;
        text-align: left;
    }
    .visa-services__title br {
        display: none;
    }
    .visa-services__grid {
        grid-template-columns: 1fr;
    }
    .visa-services__item--large {
        padding: 24px;
    }
    .visa-services__item--large::after {
        display: none;
    }
    .visa-services__item-btn {
        position: relative;
        background: none;
        right: auto;
        left: auto;
        top: auto;
        bottom: auto;
        padding: 0;
        box-shadow: none;
        margin: 20px 0 10px;
    }
    .visa-services__item-btn img {
        display: none;
    }
    .visa-services__item-btn p {
        display: none;
    }
    .visa-services__item-btn .btn {
        width: 100%;
    }

    .visa-form {
        padding: 50px 10px !important;
    }
    .visa-form__title {
        font-size: 20px;
        line-height: 1.4;
        margin: 0 0 35px;
    }
    .visa-form__note {
        font-size: 18px;
    }
    .visa-form__perks-item {
        font-size: 16px;
        line-height: 1.5;
        align-items: flex-start;
    }
    .visa-form__form-title {
        font-size: 18px;
    }
    .visa-form__form-fields {
        grid-template-columns: 1fr;
    }

    .post-info {
        gap: 12px;
    }
    .post-info__item::before {
        display: none;
    }

    .article-content-sidebar {
        flex-direction: column;
    }

    .article-sidebar {
        position: relative;
        top: auto;
        max-width: none;
        width: 100%;
    }

    .text-contents__title .arrow-down {
        display: block;
    }

    .text-contents {
        padding: 25px 40px 25px 16px;
    }

    .footer__main {
        flex-wrap: wrap;
    }
    .footer__copyright {
        flex: 100% 0 0;
        order: 4;
    }
    .footer__copyright p {
        max-width: 700px;
    }
}

@media (max-width: 768px) {
    html {
        margin: 0 !important;
    }
    html #wpadminbar { 
        display: none;
    }
    body {
        padding-top: 60px;
    }
    .p-65 {
        padding: 35px 0;
    }
    .header {
        padding: 10px 0;
    }
    .admin-bar .header {
        top: 0;
    }
    /* body:not(.home) .header {
        padding: 15px 0;
    } */

    .header__logo {
        margin: 0 auto 0 0;
    }

    .header-visas,
    .header-visas .header-visas__button {
        display: none;
    }
    .header-visas__menu {
        left: 10px;
        top: 40px;
        width: auto;
        right: 10px;
        display: flex;
        flex-direction: column;
    }
    .header-visas__menu-types {
        padding: 20px;
    }
    .header-visas__menu-list {
        display: none;
    }
    .header-visas__menu-type {
        gap: 16px;
    }
    .header-visas__menu-type.active {
        display: none;
    }
    .header-visas__country .icon {
        width: 20px;
        height: 20px;
    }

    .page-heading__title h1 {
        font-size: 2em;
    }

    body h2 {
        font-size: 1.5em;
    }

    .hero {
        padding: 0;
    }

    .hero__wrapper {
        background-size: cover;
        padding: 70px 0 0;
    }

    .hero-content__title {
        font-size: 2.6em;
        line-height: 52px;
    }

    .hero__image {
        display: none;
    }

    .popular-destinations {
        grid-template-columns: 1fr 1fr 1fr;
    }

    .text-block .header-block {
        margin: 0 0 28px 0;
    }

    .table-wrapper {
        position: relative;
        margin: 28px 0;
        overflow: scroll;
        /* border-radius: 16px; */
        /* border: 1px solid #87949B; */
    }
    .table-wrapper::after {
        content: '';
        position: absolute;
        right: 0;
        top: 0;
        width: 100%;
        height: 100%;
        z-index: 10;
        max-height: 500px;
        opacity: .9;
        transition: 0.3s;
        background: radial-gradient(35.82% 31.83% at 93.58% 10.71%,#FFFFFF 0%,rgba(255,255,255,0) 100%),radial-gradient(35.82% 31.83% at 93.58% 10.71%,#FFFFFF 0%,rgba(255,255,255,0) 100%)
    }
    .table-wrapper::before {
        content: '';
        position: absolute;
        right: 30px;
        top: 30px;
        width: 30px;
        height: 30px;
        z-index: 12;
        opacity: 1;
        transition: 0.3s;
        background-image: url("data:image/svg+xml;base64,PHN2ZyB2ZXJzaW9uPSIxLjIiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDQzIDYwIiB3aWR0aD0iNDMiIGhlaWdodD0iNjAiPgoJPHRpdGxlPmltYWdlICg4KS1zdmc8L3RpdGxlPgoJPHN0eWxlPgoJCS5zMCB7IGZpbGw6ICMwMDAwMDAgfSAKCTwvc3R5bGU+Cgk8cGF0aCBpZD0iTGF5ZXIiIGNsYXNzPSJzMCIgZD0ibTM4LjMgMjEuMmgtMC40Yy0xLjkgMC0zLjUgMS4zLTQgM3EtMC4xLTAuMS0wLjItMC4xdi0yLjlxMC0wLjgtMC4zLTEuNi0wLjQtMC43LTAuOS0xLjMtMC42LTAuNi0xLjQtMC45LTAuOC0wLjMtMS42LTAuNGgtMC40Yy0yIDAtMy42IDEuNC00LjEgMy4zcTAgMC0wLjEtMC4xdi0xLjlxMC0wLjktMC4zLTEuNi0wLjMtMC44LTAuOS0xLjQtMC42LTAuNi0xLjQtMC45LTAuNy0wLjMtMS42LTAuM2gtMC40Yy0xLjkgMC0zLjYgMS40LTQgMy4ycS0wLjEgMC0wLjIgMHYtMTMuMXEwLTAuOS0wLjMtMS42LTAuMy0wLjgtMC45LTEuNC0wLjYtMC42LTEuMy0wLjktMC44LTAuMy0xLjYtMC4zaC0wLjRxLTAuOSAwLTEuNiAwLjMtMC44IDAuMy0xLjQgMC45LTAuNiAwLjYtMC45IDEuNC0wLjMgMC43LTAuMyAxLjZ2MjIuOWwtMy41IDIuNmMtMy43IDIuOC00LjMgOC4xLTEuNCAxMS43bDguOSAxMXY0LjhxMCAwLjYgMC4yIDEuMSAwLjMgMC41IDAuNiAwLjkgMC40IDAuNCAwLjkgMC42IDAuNiAwLjIgMS4xIDAuMmgyMS4zcTAuNSAwIDEtMC4yIDAuNS0wLjIgMC45LTAuNiAwLjQtMC40IDAuNi0wLjkgMC4yLTAuNSAwLjItMS4xdi00LjZxMS4xLTEuMiAxLjgtMi41IDAuOC0xLjQgMS40LTIuOCAwLjUtMS41IDAuOC0zIDAuMy0xLjUgMC4zLTMuMXYtMTUuOHEtMC4xLTAuOC0wLjQtMS42LTAuMy0wLjgtMC45LTEuMy0wLjYtMC42LTEuMy0wLjktMC44LTAuNC0xLjYtMC40eiIvPgo8L3N2Zz4=");
        background-size: contain;
        background-repeat: no-repeat;
        animation: hand-swipe 1.5s infinite
    }
    .table-wrapper.scrolled::before,
    .table-wrapper.scrolled::after {
        opacity: 0;
        z-index: -1;
    }

    @keyframes hand-swipe {
        0% {
            right: 30px
        }

        50% {
            right: 40px
        }

        100% {
            right: 30px
        }
    }
    .table-wrapper table {
        width: 100%;
        /* overflow: hidden; */
        border-collapse: collapse;
        /* border-radius: 24px; */
        max-width: 100%;
        min-width: 650px;
        margin: 0;
        border: none;
    }

    .footer__copy-wrapper {
        gap: 20px;
        align-items: flex-start;
        flex-direction: column;
    }


    /* dropdown menu */
    .header__menu .menu  li  .sub-menu__wrapper,
    .header__menu .menu .sub-menu__wrapper ul li .sub-menu__wrapper {
        position: relative;
        top: auto;
        min-width: auto;
        max-width: none;
        display: grid;
        grid-template-rows: 0fr;
        overflow: hidden;
        transform: translate(0) !important;
        border-radius: 30px;
        opacity: 1;
        visibility: visible;
    }
    .header__menu .menu  li  .sub-menu__wrapper {
        /* background: #f3f3f3; */
    }
    .header__menu .menu  li  .sub-menu__wrapper.open {
        grid-template-rows: 1fr;
        margin: 20px 0 0 0;
    }
    /* .header__menu .menu li.menu-item-has-children .icon {
        top: -5px;
        right: -10px;
        padding: 8px;
    }
    .header__menu .menu .sub-menu__wrapper ul li .sub-menu__wrapper.open {
        grid-template-rows: 1fr;
        background: #fff;
        margin: 0;
    } */
    /* .header__menu .menu  li  .sub-menu__wrapper .sub-menu {
        gap: 0;
        min-height: 0;
        background: transparent;
        box-shadow: none;
        padding: 0 0;
    }
    .header__menu .menu  li  .sub-menu__wrapper.open > .sub-menu {
        gap: 20px;
    }
    .header__menu .menu .sub-menu__wrapper .sub-menu li {
        /* padding: 0 10px; */
     
    /* .header__menu .menu .sub-menu__wrapper .sub-menu li a {
        display: block;
        color: #ffffff;
        font-size: 0.9em;
        padding: 0px 20px;
    }
    .header__menu .menu .sub-menu__wrapper .sub-menu li a .icon {
        right: 0;
        top: 0;
        padding: 15px;
    } */

    .header__menu .menu > li:hover > a .icon {
        transform: rotate(0);
    } 
    .header__menu .menu > li.active > a > .icon {
        transform: rotate(180deg);
    } 
    .header__menu .menu .sub-menu__wrapper .sub-menu li.active a .icon {
        transform: rotate(180deg);
    }
    .header__menu .menu .sub-menu__wrapper .sub-menu .sub-menu {
        gap: 5px;
    }
    .header__menu .menu .sub-menu__wrapper .sub-menu .sub-menu li {
        padding: 0 10px;
        border: none;
    }
    .header__menu .menu .sub-menu__wrapper .sub-menu .sub-menu li a {
        padding: 15px 20px;
    }

    /**/

    .other-types {
        grid-template-columns: 1fr;
    }
    .article-content .items__list.col-2 ul,
    .article-content .items__list.col-3 ul {
        grid-template-columns: 1fr;
    }
    
    .about-wrapper::after {
        display: none;
    }
    .about-heading {
        padding: 50px 0 80px;
    }
    .about-heading h1 {
        font-size: 30px;
        margin-bottom: 40px;
    }
    .about-heading h1 span {
        font-size: 40px;
    }
    .about-heading__content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .about-heading__form {
        padding: 32px;
    }
    .about-heading__form img {
        display: none;
    }

    .form-help__grid {
        flex-direction: column;
    }

    .about-info__text {
        padding: 0;
    }
    .about-info__content img {
        display: none;
    }

    .about-form {
        padding: 50px 0 0;
    }

    .form-help {
        margin: 0 -20px;
        border-radius: 0;
        padding: 42px 32px;
    }
    .form-help__grid {
        gap: 44px;
    }
    .form-help__form-wrap {
        padding: 38px;
    }
    .form-help__form-wrap .contact-form__group button {
        height: auto;
        padding: 10px 0;
    }
    
    .footer__main {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }

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

    .related-posts__grid {
        grid-template-columns: 1fr;
    }

    .form-content {
        padding: 25px;
    }
    .form-content__grid {
        flex-direction: column;
        gap: 25px;
    }
    .form-content__form,
    .form-content__content {
        max-width: 100%;
    }

    .contacts-heading {
        margin: 0 0 40px;
        border-radius: 0;
    }
    .contacts-heading__content {
        padding: 40px 0;
    }
    .section-contacts {
        grid-template-columns: 1fr;
    }

    .partners-heading {
        border-radius: 0;
        padding: 40px 0;
        margin: 0 0 15px 0;
        background: #edf8f1;
    }
    .partners-heading__content {
        max-width: 100%;
    }
    .partners-heading__content h1 {
        font-size: 24px;
    }
    .partners-heading__content p {
        font-size: 18px;
        line-height: 1.7;
    }
    .partners-heading__meta {
        flex-direction: column-reverse;
        gap: 50px;
    }
    .partners-heading__perks {
        flex-direction: column;
        gap: 30px;
    }
    .partners-heading__globe {
        display: none;
    }
    .partners-heading__active {
        margin: 0;
    }
    .partners-heading__active button {
        width: 100%;
    }

    .partners-choose__wrap {
        padding: 40px 20px;
        margin: 0 -20px;
        border-radius: 0;
    }
    .partners-choose__others-item--header span {
        display: none;
    }
    .partners-choose__visastore-item--header br {
        display: block;
    }

    .partners-types__grid {
        grid-template-columns: 1fr;
    }
    .partners-types__item {
        padding: 16px;
    }
    .partners-types__item img {
        margin-bottom: 10px;
    }

    .partners-offers {
        padding: 50px 0 !important;
    }
    .partners-offers__flex {
        gap: 20px;
    }
    .partners-offers__item {
        flex-direction: column-reverse;
        padding: 20px;
        gap: 0;
    }
    .partners-offers__item-photo {
        min-width: 0 !important;
    }
    .partners-offers__item-title {
        font-size: 20px;
        max-width: 310px;
    }
    .partners-offers__item-target {
        font-size: 17px;
        margin: 0;
    }
    .partners-offers__item-photo-image {
        display: none;
    }
    .partners-offers__item-photo-form {
        padding: 0 0 10px;
    }
    .partners-offers__item-note {
        display: none;
        padding: 15px 0 0;
    }
    .partners-offers__item-rewards {
        margin: 35px 0;
    }
    .partners-offers__item-perks {
        margin: 35px 0;
    }
    .partners-offers__item-1 {
        background: #F5F4F9 !important;
    }
    .partners-offers__item-2 {
        background: #F4F6FF !important;
    }
    .partners-offers__item-3 {
        background: #FBF6F4 !important;
    }
    .partners-offers__item-4 {
        background: #F4F8F9 !important;
    }
    .partners-offers__item-active .partners-offers__item-note {
        display: block;
    }

    .partners-steps__grid {
        grid-template-columns: 1fr;
        padding: 0 0 50px;
    }
    .partners-steps__item-title br {
        display: none;
    }

}

@media (max-width: 767px) {

    .hero {
        overflow: visible;
        padding: 0;
    }

    .hero:after {
        bottom: 0;
    }

    .hero-image {
        top: 100%;
        max-width: 190px;
    }
}

@media (max-width: 680px) {

    .popular-destinations {
        grid-template-columns: 1fr 1fr;
    }

    .country-lists {
        grid-template-columns: 1fr;
    }

    .blog-list {
        grid-template-columns: 1fr;
    }
    body:not(.home) .news-list {
        grid-template-columns: 1fr;
    }
   
    .visa-options {
        flex-direction: column;
        padding: 30px 0 0;
        gap: 20px;
    }
    .visa-options__item {
        border-radius: 16px !important;
        border: none;
    }
    .visa-options__item.best-offer {
        margin: inherit;
        box-shadow: inherit;
    }

    .we-work {
        padding: 0;
        background: none;
    }
    .we-work__image {
        display: none;
    }
    .we-work::before {
        display: none;
    }
    .we-work__step {
        margin: 0 0 40px;
        flex-direction: column;
        align-items: flex-start;
    }
    .we-work__step--final {
        position: relative;
        width: 100%;
        right: auto;
        top: auto;
        bottom: auto;
    }
    .we-work__step span {
        width: auto;
        min-width: 0;
        font-size: 2.5em;
    }

}

@media (max-width: 600px) {

    .hero__wrapper {
        margin: 0 0 30px;
    }

    .hero-content__title {
        align-items: center;
    }

    .hero-content__description {
        max-width: 400px;
        width: 100%;
        text-align: center;
        margin: 0 auto 38px;
    }
    .hero-content__description p {
        line-height: 2;
    }
    .hero-content__description-date br {
        display: inherit;
    }

    .hero-content__description p:first-child {
        display: none;
    }


    .visa-estimation {
        padding: 24px;
        box-shadow: 0px 16px 76px -26px rgba(18, 78, 22, 0.2);
    }

    .visa-estimation__details {
        margin-bottom: 30px;
    }

    .visa-estimation__dropdowns {
        gap: 16px;
        flex-direction: column-reverse;
        margin-bottom: 30px;
    }

    .visa-estimation__dropdown {
        width: 100%;
    }

    .visa-estimation__label {
        max-width: none;
    }

    .visa-estimation__actions {
        gap: 8px;
        flex-direction: column;
    }

    .visa-estimation__action {
        max-width: none;
    }

    .text-block__content .header-block__title,
    .text-block__content .visa-info__documents {
        text-align: center;
    }

    .popular-destinations {
        display: flex;
        flex-wrap: wrap;
    }

    .popular-destinations__item {
        width: 100%;
    }

    .popular-destinations__title {
        border-bottom: none;
        padding: 16px 16px 4px;
    }

    .popular-destinations__tags a {
        padding: 8px 16px;
        font-size: 14px;
    }

    .country-lists__countries {
        grid-template-columns: 1fr;
    }
    
    /* .popular-destinations__description {
        display: none;
    } */

    /* .country-lists__item.closed {
        background: #FDF0F1;
    }

    .country-lists__item.unfriendly {
        background: #FAF2E8;
    }

    .country-lists__item.without-visa {
        background: #E5F6EC;
    } */

    /* .country-lists__header {
        margin: 0;
    }

    .country-lists__countries {
        gap: 8px 0;
        flex-wrap: wrap;
        flex-direction: row;
    }

    .country-lists__country {
        gap: 8px;
        font-size: 0;
    }

    .country-lists__country:nth-child(n+6) {
        display: none;
    }

    .country-lists__country.other {
        display: flex;
    }

    .country-lists__country .icon {
        width: 36px;
        height: 36px;
    }

    .country-lists__country .status {
        display: none;
    }

    .country-lists__footer {
        display: none;
    } */

    body:not(.home) .article-content .news-list {
        grid-template-columns: 1fr;
    }

    .news-item__image {
        max-width: none;
    }

    .footer {
        padding: 28px 0 0;
    }
    
}

@media (max-width: 480px) {

    .hero__wrapper {
        padding: 50px 0 0px 0;
    }

    .hero-content__title {
        font-size: 1.9em;
        line-height: 1.5;
    }

    .hero-content__title span {
        min-height: 48px;
        line-height: 1;
    }

    .header-block__title {
        font-size: 1.5em;
        line-height: 30px;
    }

    .text-block__content .text-block__image {
        max-width: none;
        height: 200px;
        display: block;
    }

    .visa-info__actions {
        gap: 12px;
        flex-direction: column;
    }

    .visa-info__duration {
        max-width: none;
    }

    .visa-info__duration .btn {
        order: 9;
    }

    .visa-info__image {
        max-width: none;
        height: 200px;
    }

    .visa-info__documents {
        gap: 15px;
    }

    .visa-info__documents .header-block {
        margin: 0;
    }

    .news-container .news-list {
        max-width: none;
    }

    .news-item__image {
        max-width: none;
    }

    .news-short-list {
        gap: 16px;
    }

    .news-short-list__item-title {
        font-weight: 400;
    }

    .blog-item__image {
        display: none;
    }

    .blog-item__country {
        position: relative;
        left: auto;
        top: auto;
        padding: 0;
    }

    .blog-item__country .icon {
        width: 32px;
        height: 32px;
    }

    .other-types {
        grid-template-columns: 1fr;
    }

    .footer__menu {
        gap: 24px;
        align-items: flex-start;
        flex-direction: column;
    }

    .footer__links {
        gap: 15px;
        align-items: flex-start;
        flex-direction: column;
    }

    .footer__link {
        border-right: none;
        padding: 0;
    }

    .footer__copy-payments br {
        display: none;
    }

    .news-list {
        grid-template-columns: 1fr;
    }

    .footer__main {
        grid-template-columns: 1fr;
        gap: 10px;
        margin: 0 0 10px;
    }
    .footer__copyright {
        padding: 25px 0 0;
    }
    
}

@media (max-width: 414px) {

   
   
}
