/*!
Theme Name: Golden Key
Author: ''
Version: 1.0.0
*/

:root {
    --color-primary: #1E1E1E;
    --color-black: #0F0F0F;
    --color-decorative: #E16A37;
    --color-bg: #FAFAFA;
    --color-bg-dark: #3A3A3A;
    --color-block: #F2F2F2;
    --color-block-dark: #5E5E5E;
    --color-grey: #A4A4A4;
    --color-grey-footer: #9f9f9f;
    --color-font: #363635;
    --font-primary: 'Raleway';
    --font-decorative: 'Vasek';
}

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

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

h2,
h3,
h4 {
    font-weight: 700;
    line-height: 120%;
    margin: 0 0 28px;
}
h2 {
    font-size: 26px;
}
h3 {
    font-size: 24px;
    margin: 34px 0 28px;
}
h4 {
    font-size: 22px;
}

textarea {
    min-width: 280px;
    max-height: 100px;
}

.text ul {
    margin: -8px 0 16px;
    font-size: 18px;
    font-weight: 500;
    line-height: 140%;
}
.text ul li {
    position: relative;
    /* display: inline-flex; */
    /* flex-wrap: wrap; */
    width: 100%;
    padding: 0 0 0 36px;
}
.text ul li:not(:last-of-type) {
    margin: 0 0 8px;
}
.text ul li::before,
.text ol ul li::before {
    content: "\2022";
    display: inline-block;
    position: absolute;
    left: 0;
    top: 0;
    font-weight: bold;
    font-size: 40px;
    line-height: .7;
    color: var(--color-decorative);
    padding: 0 10.66px;
}
.text ul ol {
    margin: 8px 0 0;
}
.text ol ul {
    margin: 8px 0 0 36px;
}
.text ul ol li::before,
.text ol ul li::before {
    margin: 0;
}

.text ol {
    counter-reset: list-counter;
}
.text ol li {
    position: relative;
    padding: 0 0 0 40px;
    counter-increment: list-counter;
    margin-bottom: 16px;
    /* display: flex; */
}
.text ol li::before {
    position: absolute;
    top: 2px;
    left: 0;
    content: counter(list-counter);
    font-family: var(--font-primary), sans-serif;
    font-variant-numeric: lining-nums proportional-nums;
    font-size: 18px;
    font-weight: 700;
    line-height: 140%;
    color: var(--color-decorative);
    margin: 0 16px 0 14px;
}

.table-wrap {
    width: 100%;
    padding: 1px;
    overflow: scroll;
    margin: 0 0 24px;
}
.text table {
    border-radius: 30px;
    box-shadow: 0 0 0 1px var(--color-decorative);
    overflow: hidden;
    font-size: 16px;
    width: 100%;
}
.text table tr {
    font-weight: 500;
    line-height: 140%;
}
.text table tr:nth-child(odd) {
    background-color: var(--color-block);
}
.text table tr:first-child {
    background-color: var(--color-decorative);
    color: #fff;
    font-weight: 700;
    line-height: 120%;
}
.text table tr:first-child td:not(:last-child) {
    border-right: 1px solid #fff;
}
.text table tr:not(:last-child) {
    border-bottom: 1px solid var(--color-decorative);
}
.text table td {
    padding: 12px 16px;
    vertical-align: middle;
}
.text table td:not(:last-child) {
    border-right: 1px solid var(--color-decorative);
}

.text a {
    color: var(--color-decorative);
    text-decoration: underline;
}

.nowrap {
    white-space: nowrap;
}
.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;
}
body .p-20 {
    padding: 20px;
}
body .p-30 {
    padding: 30px;
}
body .mb-80 {
    margin-bottom: 80px;
}
body .mb-60 {
    margin-bottom: 60px;
}

.block {
    background-color: var(--color-block);
    border-radius: 30px;
}
.block-dark {
    background-color: var(--color-block-dark);
    border-radius: 30px;
}

/* header */
.admin-bar header {
    margin-top: 32px;
}
.header {
    position: fixed;
    z-index: 899;
    width: 100%;
    left: 0;
    top: 0;
    height: 70px;
    transition: .3s;
    background: var(--color-block);
}
.home .header,
.home .mega-menu {
    background: var(--color-bg);
}
.header.home-scrolled,
.header.home-scrolled .mega-menu {
    background: var(--color-block);
}
.header.scrolled {
    background: var(--color-bg-dark);
}
.header__content {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 70px;
}
.logo {
    /* width: 162px; */
    width: 130px;
    height: 36px;
}
.logo-white {
    /* width: 162px; */
    width: 130px;
    height: 36px;
}
.header .logo svg {
    fill: #1e1e1e;
}
.header.scrolled .logo svg {
    fill: #fff;
}
.header .menu {
    display: flex;
    align-items: center;
    gap: 24px;
    font-weight: 500;
    line-height: 120%;
}
.header.scrolled .menu {
    color: #fff;
}

.header__content .menu li.menu-item-has-children a {
    position: relative;
    z-index: 2;
    display: flex;
    gap: 2px;
}
.header__content .menu li.menu-item-has-children .icon,
.mega-menu-item .icon,
.header-search__form .icon {
    width: 20px;
    height: 20px;
    padding: 3px;
    transition: 0.3s;
}
.header__menu .menu li.menu-item-has-children .icon {
    transform: rotate(90deg);
}

.header__menu .menu>li>.sub-menu__wrapper {
    visibility: hidden;
    opacity: 0;
    position: absolute;
    top: 42px;
    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;
    padding: 24px;
    border-radius: 30px;
    background: #FAFAFA;
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.15);
    pointer-events: none;
}
.header__menu .menu>li>.sub-menu__wrapper::before {
    content: '';
    display: block;
    width: 100%;
    height: 50px;
    position: absolute;
    top: -42px;
    left: 0;
    z-index: 1;
}
.header__menu .menu>li:hover>.sub-menu__wrapper {
    visibility: visible;
    opacity: 1;
    transform: translateY(18px);
    transition-delay: 0s,0s,0.4s;
    pointer-events: all;
}

.menu li {
    position: relative;
}
.header__contacts {
    display: flex;
    gap: 20px;
}
.header__contacts-socials {
    display: flex;
    gap: 8px;
}
.header__contacts-socials .icon {
    fill: var(--color-decorative);
    width: 24px;
    height: 24px;
}
.header.scrolled .header__contacts-socials .icon {
    fill: #fff;
}
.header__contacts--phone {
    color: var(--color-decorative);
    font-size: 20px;
    font-weight: 700;
    line-height: 140%;
}
.header.scrolled .header__contacts--phone {
    color: #fff;
}
.header__contacts--phone svg {
    display: none;
}
.header__menu-toggle {
    display: flex;
    background-color: unset;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    /* padding: 9px 6px; */
    z-index: 200;
    transition: all 0.5s, background 0s;
}
.header__menu-toggle span {
    width: 36px;
    height: 3px;
    border-radius: 6px;
    background-color: var(--color-decorative);
    transition: all 0.5s;
}
.header.scrolled .header__menu-toggle span {
    background-color: #fff;
}
.header.active .header__menu-toggle span:nth-of-type(1) {
    transform: translate(0px, 8px) rotate(45deg);
}
.header.active .header__menu-toggle span:nth-of-type(2) {
    transform: translate(0px, 0px) rotate(-45deg);
}
.header.active .header__menu-toggle span:last-child {
    opacity: 0;
}
/**/

/* Buttons */
a.button-orange {
    color: #fff;
    text-decoration: none;
}
.button-orange {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--color-decorative);
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    line-height: 140%;
    padding: 12px 0;
    border-radius: 30px;
    width: 100%;
    transition: .3s ease;
}
.button-orange:hover {
    background-color: #C25B2F;
}
.button-arrow {
    display: inline-flex;
    align-items: center;
    color: var(--color-decorative);
    font-weight: 600;
    line-height: 120%;
    padding: 12px 20px;
    border-radius: 50px;
    border: 1px solid var(--color-decorative);
    transition: .3s ease;
}
.button-arrow:hover {
    border: 1px solid var(--color-black);
    color: var(--color-black);
}
.button-arrow::after,
.button-arrow-orange::after {
    content: '';
    display: inline-block;
    width: 14px;
    height: 14px;
    margin: 0 0 0 10px;
    transition: .3s ease;
}
.button-arrow::after,
.button-arrow-left::before {
    background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNCIgaGVpZ2h0PSIxNCIgZmlsbD0ibm9uZSI+PHBhdGggZmlsbD0iI2UxNmEzNyIgZD0iTTE0IDEuODQzYTEgMSAwIDAgMC0xLTFINGExIDEgMCAwIDAgMCAyaDh2OGExIDEgMCAxIDAgMiAwdi05ek0yLjM5NCAxMy44NjMgMTMuNzA3IDIuNTVsLTEuNDE0LTEuNDE0TC45NzkgMTIuNDQ5bDEuNDE0IDEuNDE0eiIvPjwvc3ZnPg==");
}
.button-arrow-orange::after {
    background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNCIgaGVpZ2h0PSIxNCIgZmlsbD0ibm9uZSI+PHBhdGggZmlsbD0iI2ZmZiIgZD0iTTEzLjY1NyAxLjg0M2ExIDEgMCAwIDAtMS0xaC05YTEgMSAwIDAgMCAwIDJoOHY4YTEgMSAwIDEgMCAyIDB2LTl6TTIuMDUgMTMuODYzIDEzLjM2NCAyLjU1IDExLjk1IDEuMTM2LjYzNiAxMi40NDlsMS40MTQgMS40MTR6Ii8+PC9zdmc+");
}
.button-arrow:hover::after,
.button-arrow-left:hover::before {
    background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNCIgaGVpZ2h0PSIxNCIgZmlsbD0ibm9uZSI+PHBhdGggZmlsbD0iIzA4MWMzYSIgZD0iTTEzLjY1NyAxLjg0M2ExIDEgMCAwIDAtMS0xaC05YTEgMSAwIDAgMCAwIDJoOHY4YTEgMSAwIDEgMCAyIDB2LTl6TTIuMDUgMTMuODYzIDEzLjM2NCAyLjU1IDExLjk1IDEuMTM1LjYzNiAxMi40NDlsMS40MTQgMS40MTR6Ii8+PC9zdmc+");
}
.button-arrow-left {
    /* display: inline-flex;
    align-items: center;
    color: var(--color-decorative); */
    font-size: 18px;
    font-weight: 700;
    line-height: 140%;
    padding: 12px 40px;
    /* border-radius: 50px; */
    border: 2px solid var(--color-decorative);
}
.button-arrow-left:hover {
    border: 2px solid var(--color-black);
}
.button-arrow-left::before {
    content: '';
    display: inline-block;
    width: 16px;
    height: 16px;
    margin: 0 16px 0 0;
    transform: scale(-1, 1);
    background-size: contain;
    transition: .3s ease;
    /* background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNCIgaGVpZ2h0PSIxNCIgZmlsbD0ibm9uZSI+PHBhdGggZmlsbD0iI2UxNmEzNyIgZD0iTTE0IDEuODQzYTEgMSAwIDAgMC0xLTFINGExIDEgMCAwIDAgMCAyaDh2OGExIDEgMCAxIDAgMiAwdi05ek0yLjM5NCAxMy44NjMgMTMuNzA3IDIuNTVsLTEuNDE0LTEuNDE0TC45NzkgMTIuNDQ5bDEuNDE0IDEuNDE0eiIvPjwvc3ZnPg=="); */
}
.button-arrow-left::after {
    display: none;
}
/**/

.block-header__title,
.page-vnj-content h2,
.page-team-content h2 {
    font-size: 45px;
    font-weight: 700;
    line-height: 120%;
    margin: 30px 0 28px;
}

.breadcrumbs {
    display: flex;
    flex-wrap: wrap;
    gap: 5px 10px;
    color: var(--color-primary);
    font-size: 14px;
    font-weight: 500;
    line-height: 120%;
    padding: 40px 0 0;
    margin: 0 0 40px;
}
.breadcrumbs .arrow-icon {
    max-width: 7px;
    max-height: 15px;
}
.breadcrumbs__link {
    transition: .2s ease;
}
.breadcrumbs__link:hover,
.breadcrumbs > span:last-child span.breadcrumbs__link {
    color: var(--color-decorative);
}

/* Frontpage */
.page-template-tpl-frontpage section {
    margin: 0 0 80px;
}
.hero-block {
    position: relative;
    padding: 74px 0 90px;
    /* border-radius: 30px;
    overflow: hidden; */
}
.hero-block__bg-wrap {
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 30px;
    overflow: hidden;
    width: 100%;
    height: -webkit-fill-content;
}
.hero-block__bg img {
    min-height: 517px;
    border-radius: 30px;
}
.hero-block__grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    position: relative;
    /* margin: 0 0 21px; */
}
.hero-block__text {
    color: #fff;
    letter-spacing: .5px;
}
.hero-block h1 {
    font-size: 52px;
    font-weight: 800;
    line-height: 110%;
    margin: 0 0 35px;
}
.hero-block__text-description {
    font-size: 28px;
    font-weight: 600;
    line-height: 120%;
}
.hero-form {
    padding: 24px 22px;
    justify-self: end;
}
.hero-form__title {
    color: var(--color-decorative);
    font-size: 22px;
    font-weight: 700;
    line-height: 120%;
    margin: 0 0 8px;
}
.hero-form__description {
    font-size: 18px;
    line-height: 120%;
    margin: 0 0 19px;
}
.hero-form form {
    display: flex;
    flex-direction: column;
    gap: 19px;
    margin: 0 0 19px;
}
/* .hero-filter {
    position: relative;
    display: flex;
    gap: 16px;
    border-radius: 30px;
    background: #FFF;
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.15);
}
.hero-filter__choose,
.hero-filter input {
    display: flex;
    align-items: center;
    padding: 8px 11px 8px 16px;
}
.hero-filter__choose {
    flex-grow: 1;
}
.hero-filter input {
    flex-grow: 1.5;
}
.hero-filter .button-orange {
    max-width: 267px;
} */

.filter-by-type__btns {
    display: flex;
    justify-content: space-between;
    margin: 0 0 30px;
}
.filter-by-type__btn {
    text-align: center;
    padding: 12px 24px;
    font-size: 18px;
    font-weight: 500;
    line-height: 120%;
    cursor: pointer;
    transition: .2s;
    max-width: fit-content;
}
.filter-by-type__btn:hover {
    background-color: var(--color-decorative);
    color: #fff;
}
.filter-by-type__btns .top-prod {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4px;
}
.filter-by-type__btns .top-prod::after {
    content: '';
    display: block;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background-repeat: no-repeat;
    background-size: 16px;
    background-position: center;
    background-image: url(./images/fire@4x-min.png);
}
.filter-by-type__countries {
    display: none;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px 68px;
    padding: 24px 48px;
    transition: 0.3s ease;
}
.filter-by-type__countries.active {
    display: grid;
}
.filter-by-type__card {
    opacity: 0;
    transform: scale(0.95);
    transition: opacity 0.3s ease, transform 0.3s ease;
    pointer-events: none;
}
.filter-by-type__countries.active .filter-by-type__card {
    opacity: 1;
    transform: scale(1);
    pointer-events: auto;
}

.filter-by-type__card:hover .flag-wrapper {
    transform: scale(1.1);
}
div.filter-by-type__card-title {
    font-size: 18px;
    font-weight: 500;
    line-height: 140%;
    margin: 0 0 4px;
    transition: 0.3s ease;
}
.filter-by-type__card:hover .filter-by-type__card-title {
    color: var(--color-decorative);
}
.filter-by-type__card-description {
    /* text-align: center; */
    padding: 0 0 0 34px;
    color: var(--color-grey);
    font-weight: 500;
    line-height: 130%;
}
/**/

/* Single */
.page-vnj-header {
    display: flex;
    flex-wrap: wrap;
    gap: 56px;
    margin: 0 0 48px;
    padding: 20px 0 0;
}
.page-vnj-header .breadcrumbs {
    padding: 0;
}
.annotation {
    display: grid;
    grid-template-columns: 28px 1fr;
    gap: 12px;
    align-items: center;
    font-size: 32px;
    font-weight: 500;
    line-height: 100%;
    margin: 0 0 36px;
}
.post-annotation {
    font-size: 18px;
    font-weight: 500;
    line-height: 140%; 
    margin: 0 0 28px;
}
.post-info-section {
    margin: 0 0 16px;
}
.post-info-item {
    font-size: 18px;
}
.post-info-item.category {
    color: var(--color-decorative);
    font-weight: 700;
    line-height: 140%;
    margin: 0 25px 0 0;
}
.post-info-item {
    color: var(--color-grey);
    line-height: 120%;
}
.post-info-item .date {
    margin: 0 30px 0 0;
}
.sgl-arrow-right {
    width: 27px;
    height: 50px;
}
.single-info {
    display: flex;
    gap: 28px;
}
.single-info__item {
    font-size: 20px;
    font-weight: 500;
    line-height: 140%;
    padding: 8px 28px;
    flex-shrink: 0;
    background: var(--color-block);
    border-radius: 20px;
}
.page-vnj-header__image img {
    border-radius: 30px;
}

.single-article-flex {
    display: flex;
    gap: 28px;
}
.single-article__wrap {
    flex-basis: 0;
    flex-grow: 999;
    min-width: calc(100% - 380px);
}
.single-article .post-info-section {
    margin: 0 0 16px;
}
.news-post {
    margin: 0 0 60px;
}
.sidebar-inner {
    position: sticky;
    top: 120px;
    display: flex;
    flex-direction: column;
    gap: 28px;
    /* padding: 0 0 20px; */
}
.sidebar-author {
    display: flex;
    gap: 16px;
}
.sidebar-author img {
    border-radius: 50%;
}
.sidebar-author-text {
    font-size: 18px;
    line-height: 120%; 
}
.sidebar-author-label {
    font-weight: 500;
    margin: 0 0 8px;
}
.sidebar-author-name {
    font-weight: 700;
}

.sidebar .post-content {
    margin: 0;
}.sidebar .post-content__title {
    font-size: 18px;
}

.sidebar .kamatoc {
    max-height: 320px;
}
.sidebar ol.kamatoc li {
    font-size: 16px;
    padding: 0;
}

.story-block {
    display: flex;
    justify-content: space-evenly;
    gap: 8px;
    padding: 20px 12px;
    text-align: center;
}
.story-item {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 15px;
    align-items: center;
}
.story-item__link {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 76px;
    width: 76px;
    border-radius: 50%;
    background: linear-gradient(145deg, rgba(255, 51, 0, 1) 0%, rgba(244, 219, 57, 1) 100%);
    border-radius: 100px;
    overflow: hidden;
}
.story-item__image {
    height: 70px;
    width: 70px;
    border-radius: 50%;
    border: 3px solid transparent;
    overflow: hidden;
    background-position: 50% 50%;
    background-repeat: no-repeat;
    background-size: auto 85px;
}

.link-to-form {
    display: block;
    width: 470px;
    height: -webkit-fill-available;
    margin: 0 auto;
    position: absolute;
    top: 100px;
    left: 0;
    right: 0;
}

.banner-subscribe-to-tg {
    position: relative;
    display: flex;
    gap: 53px;
    justify-content: end;
    align-items: center;
    padding: 31px 60px 31px 165px;
    margin: 24px 0 0;
    overflow: hidden;
}
.banner-subscribe-to-tg:has(+ p) {
    margin-bottom: 24px;
}
div > .banner-subscribe-to-tg:last-child {
    margin: 0 0 80px;
}
.banner-subscribe-to-tg:has(+ p) {
    margin-bottom: 40px; 
}
.banner-subscribe-to-tg::before {
    content: '';
    position: absolute;
    left: -5px;
    bottom: -18px;
    display: block;
    width: 116px;
    height: 116px;
    border-radius: 50%;
    background-repeat: no-repeat;
    background-size: 140px;
    background-position: 51% 41%;
    background-image: url(./images/tg-icon@2x-min.jpg);
}
.banner-subscribe-to-tg__title {
    font-size: 25px;
    font-weight: 700;
    line-height: 100%;
    margin: 0 0 12px;
}
.banner-subscribe-to-tg__description {
    font-size: 16px;
}
.banner-subscribe-to-tg__btn {
    max-width: 335px;
    width: 100%;
}
.banner-subscribe-to-tg__btn .button-orange {
    padding: 12px 20px;
}

.area {
    display: block;
    padding: 20px;
    margin: 30px 0;
    font-size: 18px;
    font-weight: 500;
    border-radius: 20px;
}
.area--red {
    border: 2px solid var(--color-decorative);
}

.information {
    display: flex;
    gap: 12px;
    align-items: center;
    padding: 12px 20px;
    margin: 24px 0;
    border-radius: 30px;
    border: 1px solid var(--color-decorative);
}
.information svg {
    max-width: 30px;
    height: 20px;
}
.information a {
    color: var(--color-decorative);
    text-decoration-line: underline;
}

.attention {
    margin: 16px 0;
    border-radius: 30px;
    background: #e16a3729;
}

.case {
    display: flex;
    gap: 16px;
    margin: 0 0 20px;
}
.case-label {
    color: #fff;
    height: fit-content;
    border-radius: 20px;
    padding: 5px 20px;
    background-color: var(--color-decorative);
}
.case .button-arrow {
    text-decoration: none;
    justify-content: center;
    max-width: 235px;
    width: 100%;
}

/* Stories */
.story-slider {
    display: block;
    margin: 0;
    padding: 35px 40px;
    max-width: 550px;
    width: 100%;
    background-color: transparent;
}
.story-slider .fancybox-close-small {
    display: none;
}
.story-slider .swiper-container__logo {
    position: absolute;
    top: 30px;
    left: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.story-slider .swiper-slide-ratio {
    position: relative;
    /* padding-top: 177%; */
    width: 100%;
    height: auto;
}
.story-slider .swiper-wrapper {
    position: relative;
}
.story-slider .swiper-wrapper a {
    display: inline-block !important;
}
.swiper-container__logo i {
    height: 48px;
    width: 48px;
    border-radius: 50%;
    background-position: 50% 50%;
    background-repeat: no-repeat;
    overflow: hidden;
    background-size: 50px;
}
.swiper-container__logo span {
    color: #273A58;
    font-family: var(--primary-font);
    font-size: 17px;
    font-weight: 700;
}
.story-slider .swiper-button::after {
    display: none;
}
.story-slider .story-slide-item {
    display: block;
    background-color: transparent;
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 13px;
    overflow: hidden;
    background-color: #fff;
}
.story-slide-item video {
    width: 100%;
}
.story-slider .autoplay-progress {
    position: absolute;
    top: 10px;
    left: 0;
    right: 0;
    width: 100%;
    padding: 0 12px;
    display: flex;
    justify-content: space-between;
    gap: 5px;
}
.story-slider .autoplay-progress span {
    position: relative;
    height: 4px;
    width: 100%;
    border-radius: 1px;
    background: rgba(14, 47, 96, 0.20);
    overflow: hidden;
}
.autoplay-progress span i {
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background-color: #0E2F60;
}
.autoplay-progress .prev-slide i {
    width: 100% !important;
}
.story-popup {
    padding: 0;
    background: transparent;
    overflow: unset;
}
/**/

/* block image */
.block-image__wrapper {
    display: flex;
    flex-direction: row;
    gap: 40px;
    margin: 0 0 12px;
}
.block-image__wrapper-reverse {
    flex-direction: row-reverse;
}
.block-image__picture {
    max-width: 406px;
    width: 100%;
    /* margin: 1em 0; */
}
.block-image__picture a {
    width: 100%;
    height: 100%;
    display: block;
}
.block-image__picture a img {
    width: 100%;
    object-fit: cover;
    border-radius: 30px;
}
.block-image__content {
    flex: 1;
    line-height: 1.25;
}
/**/

/* text row-col */
.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%;
    line-height: 150%;
    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__col .faq__spoiler-item {
    margin: 0 0 20px;
}
/**/

.ready-solution-image {
    padding: 28px;
    margin: 0 0 80px;
}
.ready-solution-image__title,
.form-base__title {
    font-size: 28px;
    font-weight: 700;
    line-height: 100%;
    letter-spacing: 0.56px;
    color: var(--color-decorative);
    margin: 0 0 12px;
}
.ready-solution-image__subtitle,
.form-base__content {
    font-size: 20px;
    font-weight: 500;
    line-height: 140%;
    margin: 0 0 28px;
}
.ready-solution-form,
.form-base__form {
    display: flex;
    gap: 28px;
    margin: 0 0 16px;
}
.ready-solution-image span:has(input),
.ready-solution-image .input-placeholder,
.ready-solution-image .button-orange {
    max-width: 333px;
}

.open-form-attaching {
    position: relative;
    display: flex;
    justify-content: space-between;
    padding: 28px;
    margin: 26px 0;
}
.form-base__form {
    margin: 0;
}
.open-form-attaching__inner {
    max-width: 770px;
}
.form-base__form .ready-solution-form {
    gap: 20px;
}
.form-base__form .button-orange {
    max-width: 240px;
}
.form-base__form p.acceptance {
    font-size: 13px;
    line-height: 100%;
    margin: 0!important;
}
.form-base__img-wrapper {
    position: relative;
    max-width: 200px;
    width: 100%;
    top: -38px;
    bottom: 0;
    right: 0;
    transform: rotate(13deg);
}
.form-base__img-wrapper .form-base__attaching-img {
    position: absolute;
    bottom: 0;
    right: 0;
    /* height: 100%; */
}
.form-base__img-wrapper .form-base__attaching-img img {
    box-shadow: 0px 0px 4px 0px rgba(31, 65, 113, 0.25), 0px 4px 4px 0px rgba(31, 65, 113, 0.35);
    border-radius: 0;
}
.form-base__img-wrapper a {
    position: absolute;
    bottom: -18px;
    left: -20px;
    z-index: 100;
    height: 50px;
    width: 50px;
    background-color: #fff;
    background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI1MCIgaGVpZ2h0PSI1MCIgdmlld0JveD0iMCAwIDUwIDUxIiBmaWxsPSJub25lIj4KCgk8cGF0aCBkPSJNMzYuNzE4OCA0MC45MDQzTDQyLjUwMDcgNDYuNjg2MyIgc3Ryb2tlPSIjMTgzMzkxIiBzdHJva2Utd2lkdGg9IjIuNjk0MTIiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCIvPgoJPHBhdGggZD0iTTEzLjcwNTkgMzEuMDAzTDEzLjc2MjggMjkuNjc1NkMxNC4yOTA3IDE3LjM1OTQgMjkuODU0MyAxMi4zNDUxIDM3LjQ3MjcgMjIuMDM2NlYyMi4wMzY2IiBzdHJva2U9IiMxODMzOTEiIHN0cm9rZS13aWR0aD0iMi42OTQxMiIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIi8+Cgk8cGF0aCBkPSJNNDAuNzQyNCAzMC4zMzg2VjMwLjMzODZDNDAuNDU0NSA0Mi44MzI5IDI0LjgwNTkgNDguMjcyNCAxNi44NDI1IDM4LjY0MDRWMzguNjQwNCIgc3Ryb2tlPSIjMTgzMzkxIiBzdHJva2Utd2lkdGg9IjIuNjk0MTIiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCIvPgoJPHBhdGggZD0iTTI3LjE1NjIgMjQuODAyN0wyNy4xNTYzIDM1Ljg3MjIiIHN0cm9rZT0iIzE4MzM5MSIgc3Ryb2tlLXdpZHRoPSIyLjY5NDEyIiBzdHJva2UtbGluZWNhcD0icm91bmQiLz4KCTxwYXRoIGQ9Ik0yMS42MjEgMzAuMzM2OUwzMi42OTA1IDMwLjMzNjkiIHN0cm9rZT0iIzE4MzM5MSIgc3Ryb2tlLXdpZHRoPSIyLjY5NDEyIiBzdHJva2UtbGluZWNhcD0icm91bmQiLz4KCjwvc3ZnPg==);
    background-position: 26% 8%;
    background-repeat: no-repeat;
    background-size: 79%;
    border-radius: 50%;
    box-shadow: 0px 0px 4px 0px rgba(31, 65, 113, 0.25), 0px 4px 4px 0px rgba(31, 65, 113, 0.35);
}

form input {
    display: block;
    width: 100%;
    border-radius: 30px;
    background-color: var(--color-bg);
    padding: 16px;
    font-size: 16px;
    font-weight: 500;
    line-height: 1;
    max-width: 100%;
}
form input::placeholder {
    color: #585858;
    font-size: 18px;
    font-weight: 500;
}
.input-placeholder {
    position: relative;
    transition: 0.3s ease;
}
/* .input-placeholder input:focus + .placeholder,
.input-placeholder input:not(:placeholder-shown) + .placeholder {
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
} */
/* form input:valid + .placeholder {
    display: none;
} */
.placeholder {
    display: flex;
    align-items: center;
    position: absolute;
    pointer-events: none;
    top: 0;
    bottom: 0;
    font-size: 16px;
    font-weight: 500;
    left: 16px;
    margin: auto;
    color: #585858;
    transition: opacity 0.1s;
}
.input-placeholder .placeholder.hidden {
    opacity: 0;
}
.placeholder span {
    color: red;
}
p.acceptance {
    font-size: 13px!important;
    font-weight: 400;
    line-height: 100%;
}

.modal {
    position: relative;
    overflow: visible;
    display: none;
}
.modal-form__close {
    position: absolute;
    right: -17px;
    top: -42px;
    /* top: 0; */
    cursor: pointer;
    transform: rotate(45deg);
}
.modal-form__close .icon {
    padding: 10px;
    width: 42px;
    height: 42px;
    background: #f2f2f2;
    border-radius: 50%;
    fill: #A4A4A4;
}
#form-popup {
    padding: 24px;
    max-width: 414px;
}
.form-popup__title {
    color: var(--color-decorative);
    font-size: 22px;
    font-weight: 700;
    line-height: 140%;
    margin: 0 0 16px;
}
.form-popup__description {
    font-size: 16px;
    font-weight: 500;
    line-height: 140%;
    margin: 0 0 28px;
}
.form-popup form {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin: 0 0 19px;
}

#form-popup .wpcf7-submit {
    margin: 12px 0 0;
}

.single-content .banner-consultation {
    margin-bottom: 36px;
}
.banner-consultation__wrapper {
    position: relative;
    display: flex;
    justify-content: space-between;
    padding: 40px 24px;
}
.banner-consultation__wrapper::after {
    content: '';
    display: block;
    width: 330px;
    height: 280px;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    background-image: url(./images/form-consult-min.png);
}
.single-article .banner-consultation__wrapper::after {
    display: none;
}
.banner-consultation__title-wrapper {
    max-width: 390px;
}
.banner-consultation__title {
    font-size: 25px;
    font-weight: 700;
    line-height: 120%;
    color: var(--color-decorative);
    margin: 0 0 12px;
}
.banner-consultation__subtitle {
    font-size: 18px;
    font-weight: 500;
    line-height: 120%;
    margin: 0 0 44px;
}
.banner-consultation__note {
    font-size: 13px;
    line-height: 100%; 
}
.banner-consultation form {
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-width: 360px;
}

.masked__phone-selector {
    background-color: var(--color-bg);
    border-bottom-left-radius: 30px;
    border-top-left-radius: 30px;
    border-right: unset;
    /* max-height: 50px; */
}
/* .masked__phone-options */
.masked__phone-options .masked__phone-search {
    border-radius: 0;
}

.masked__phone-input {
    font-feature-settings: "lnum", "pnum";
}
.masked__phone-input::placeholder {
    font-size: 16px;
}

.wpcf7-response-output {
    display: none;
}
.wpcf7-not-valid {
    position: relative;
}
span.wpcf7-not-valid-tip {
    position: absolute;
    top: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    right: 15px;
    font-size: 24px;
    font-weight: 600;
}
.wpcf7 form div.wpcf7-response-output {
    font-size: 13px;
    margin: 0 0 -27px;
    padding: 10px 0 0;
    color: #6CD817;
    border: none;
}
.wpcf7 form.invalid .wpcf7-response-output {
    color: #CA1A1A;
}
.submitting button {
    color: transparent;
    pointer-events: none;
} 
.submitting button:hover {
    transform: none;
}
.submitting button:before {
    content: '';
    position: absolute;
    top: 41%;
    left: 0;
    right: 0;
    display: block;
    width: 45px;
    height: 12px;
    background: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4KPHN2ZyB2aWV3Qm94PSIwIDQzLjkxOCA1Mi4wOTkgMTIuMTY0IiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciPgogIDxjaXJjbGUgY3g9IjYiIGN5PSI1MCIgcj0iNiIgZmlsbD0iI2NjYyI+CiAgICA8YW5pbWF0ZSBhdHRyaWJ1dGVOYW1lPSJvcGFjaXR5IiBiZWdpbj0iLjEiIGR1cj0iMXMiIHJlcGVhdENvdW50PSJpbmRlZmluaXRlIiB2YWx1ZXM9IjA7MTswIi8+CiAgPC9jaXJjbGU+CiAgPGNpcmNsZSBjeD0iMjYiIGN5PSI1MCIgcj0iNiIgZmlsbD0iI2NjYyI+CiAgICA8YW5pbWF0ZSBhdHRyaWJ1dGVOYW1lPSJvcGFjaXR5IiBiZWdpbj0iLjIiIGR1cj0iMXMiIHJlcGVhdENvdW50PSJpbmRlZmluaXRlIiB2YWx1ZXM9IjA7MTswIi8+CiAgPC9jaXJjbGU+CiAgPGNpcmNsZSBjeD0iNDYiIGN5PSI1MCIgcj0iNiIgZmlsbD0iI2NjYyI+CiAgICA8YW5pbWF0ZSBhdHRyaWJ1dGVOYW1lPSJvcGFjaXR5IiBiZWdpbj0iLjMiIGR1cj0iMXMiIHJlcGVhdENvdW50PSJpbmRlZmluaXRlIiB2YWx1ZXM9IjA7MTswIi8+CiAgPC9jaXJjbGU+Cjwvc3ZnPg==') no-repeat;
    background-size: 100%;
    margin: 0 auto;
    z-index: 5;
} 
.form__control .wpcf7-spinner {
    display: none;
}

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

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

.privacy-link {
    color: var(--color-decorative);
    text-decoration: underline;
}

.post-content {
    display: block;
    max-width: 542px;
    margin: 0 0 60px;
}
.post-content__title {
    display: flex;
    gap: 12px;
    align-items: center;
    font-size: 24px;
    font-weight: 700;
    line-height: 120%;
    margin: 0 0 15px;
    cursor: pointer;
}
.contents-arrow-down {
    display: inline-flex;
    /* display: inline-block;
    width: 9px;
    height: 9px;
    border-bottom: 2px var(--color-decorative) solid;
    border-right: 2px var(--color-decorative) solid;
    transform: rotate(45deg);
    transition: 0.3s;
    border-radius: 2px; */
    transition: all 0.3s ease;
}
.post-content.active .contents-arrow-down {
    transition: all 0.3s ease;
    transform: rotate(180deg);
}
.contents-arrow-down svg {
    max-width: 24px;
    height: 24px;
}

.kamatoc {
    font-size: 18px;
    font-weight: 500;
    line-height: 140%;
    counter-reset: list-counter;
    padding: 0 12px 0 0;
    max-height: 376px;
    overflow: auto;
}
ol.kamatoc li {
    display: list-item;
    counter-increment: list-counter;
    font-size: 18px;
    padding: 0 0 0 26px;
    transition: .3s ease-in-out;
}
ol.kamatoc li::before {
    content: counter(list-counter) ". "!important;
    font-size: 18px;
    font-weight: 500;
    color: inherit;
    margin: 0 2px 0 0;
    /* margin: 0 5px 0 0; */
}
.sidebar ol.kamatoc li::before {
    font-size: 16px;
}
.kamatoc li:not(:last-of-type) {
    margin: 0 0 8px;
}
.kamatoc li:hover {
    color: var(--color-decorative);
    transition: .3s ease-in-out;
}
.kamatoc a {
    text-decoration: none;
    color: inherit;
}

.advantages {
    margin: 0 0 80px;
}
.text ol.advantages__list li::before{
    display: none;
}
ol li.advantages__item {
    position: relative;
    display: flex;
    padding: 16px 20px 16px 78px;
    font-size: 18px;
    font-weight: 500;
    line-height: 140%;
    align-items: center;
    min-height: 80px;
}
.advantages__item:not(:last-of-type) {
    margin: 0 0 16px;
}
.advantage-index {
    position: absolute;
    top: 16px;
    left: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--color-decorative);
    font-size: 25px;
    font-weight: 600;
    line-height: 120%;
    max-width: 48px;
    width: 100%;
    height: 48px;
    background-color: #fff;
    border-radius: 50%;
    margin: 0 10px 0 0;
}

.stories-of-clients-section {
    margin: 0 0 100px;
}
.stories-of-clients__grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 28px;
    margin: 0 0 40px;
}
.stories-of-clients__grid .card:hover img,
.services-grid .card:hover img,
.list-news .card-news:hover img,
.list-category .card-blog:hover img {
    scale: 1.05;
}
.stories-of-clients__grid .card:nth-child(n+7)  {
    display: none;
}
.stories-of-clients__grid.active .card:nth-child(n+7) {
    display: block;
}
.stories-of-clients__grid .button-arrow {
    justify-content: center;
}
.stories-of-clients__btn-wrap {
    display: none;
    align-items: center;
    justify-content: center;
}
.stories-of-clients__btn {
    max-width: 370px;
    cursor: pointer;
}

.embassy-page {
    margin: 0 0 100px;
}
.embassy-page-top__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    margin: 0 0 60px;
}
.embassy-page-top__grid-item {
    display: flex;
    flex-direction: column;
    gap: 28px;
}
.embassy-page-top__grid-title {
    font-size: 26px;
    font-weight: 700;
    line-height: 120%;
    margin: 0 0 16px;
}
.embassy-page-top__grid iframe {
    height: 100%;
}
.embassy-page-top__grid-text p {
    line-height: 130%;
}
.block div.embassy-page-top__grid-text p:not(:last-of-type) {
    margin: 0 0 8px;
}
.embassy-page-top__grid-text p:not(:last-of-type) {
    margin: 0 0 16px;
}

.reasons-to-obtain__cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    margin: 0 0 80px;
}
.reasons-to-obtain__cards > .reasons-to-obtain__item:only-child {
    grid-column: span 2;
}
.reasons-to-obtain__way {
    font-weight: 700;
    line-height: 120%;
    color: var(--color-decorative);
    text-align: center;
    background-color: #fff;
    border-radius: 26px;
    width: 120px;
    padding: 6px 0;
    margin: 0 0 16px;
}
.reasons-to-obtain__cards > .reasons-to-obtain__item:only-child .reasons-to-obtain__way {
    display: none;
}
.reasons-to-obtain__card-title {
    font-size: 18px;
    font-weight: 700;
    line-height: 140%;
    margin: 0 0 10px;
}
.reasons-to-obtain__card-description {
    font-size: 18px;
    font-weight: 500;
    line-height: 140%;
}

.banner-download-guide,
.banner-individual-calc,
.closed-form {
    position: relative;
    padding: 28px;
    margin: 52px 0 80px;
}
.banner-download-guide__inner,
.banner-individual-calc__inner {
    max-width: 620px;
}
.banner-download-guide__title,
.banner-individual-calc__title {
    font-size: 30px;
    font-weight: 600;
    line-height: 100%;
    letter-spacing: 0.6px;
    margin: 0 0 20px;
}
.banner-download-guide__description,
.banner-individual-calc__description {
    font-size: 18px;
    font-weight: 500;
    line-height: 140%;
    margin: 0 0 32px;
}
.banner-download-guide .button-orange {
    max-width: 270px;
    width: 100%;
}
.banner-download-guide picture,
.banner-individual-calc picture {
    position: absolute;
    right: 58px;
    top: -42px;
}

.banner-individual-calc .button-orange {
    width: fit-content;
    padding: 12px 40px;
}

.closed-form {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}
.single-content .closed-form {
    gap: 30px;
    margin: 42px 0 60px;
}
.closed-form__title {
    color: var(--color-decorative);
    font-size: 28px;
    font-weight: 700;
    line-height: 100%;
    letter-spacing: 0.56px;
    margin: 0 0 12px;
}
.closed-form__description {
    font-size: 20px;
    font-weight: 500;
    line-height: 140%;
    margin: 0 0 28px;
}
.single-content .closed-form__description {
    font-size: 18px;
    margin: 0;
}
.closed-form .button-orange {
    width: 100%;
}
.single-content .closed-form .button-orange {
    margin: 16px 0 0;
}

.single-content .ready-solution-form {
    gap: 20px;
}
.single-content .ready-solution-form .button-orange {
    max-width: 210px;
}

.single-content .ready-solution-image {
    margin-bottom: 36px;
}
.single-content .ready-solution-image .acceptance {
    margin: 0;
}

.closed-form-image:last-child {
    margin: 42px 0 0;
}
.closed-form-image__inner {
    max-width: 718px;
}
.closed-form-image picture img {
    max-width: 300px;
    margin: -100px 0 -77px;
}
.single-content .closed-form-image picture img {
    margin: -52px 0 -66px;
}
.closed-form-flex__inner {
    max-width: 580px;
}
.closed-form-flex .button-orange {
    max-width: 333px;
    height: fit-content;
}
.closed-form-image .button-orange {
    max-width: 270px;
}

.oct-requirements__content {
    margin: 0 0 80px;
}

.why-we__cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px 28px;
    margin: 0 0 80px;
}
.why-we__item {
    display: flex;
    gap: 20px;
    font-size: 18px;
    line-height: 140%;
    padding: 20px 25px 20px 20px;
}
.why-we__icon {
    flex-shrink: 0;
}
.why-we__item picture {
    flex-shrink: 0;
}
.why-we__card-title {
    font-weight: 700;
    margin: 0 0 10px;
}
.why-we__card-description {
    font-weight: 500;
}

.wide-image {
    margin: 0 0 80px;
}
.wide-image img {
    border-radius: 30px;
}

.wide-image-blog {
    margin: 24px 0;
}

.reviews__cards-wrapper {
    position: relative;
    padding: 0 0 40px;
}
.reviews__cards {
    max-width: 1028px;
}
.reviews__card {
    height: auto;
}
.reviews__card-top_wrap {
    display: flex;
    gap: 12px;
    margin: 0 0 16px;
}
.reviews__card-top_wrap img {
    border-radius: 50%;
}
.reviews__card-name {
    font-size: 18px;
    font-weight: 700;
    line-height: 120%; 
    margin: 0 0 4px;
}
.reviews__card-date {
    color: var(--color-grey);
    font-size: 18px;
    font-weight: 400;
    line-height: 120%; 
}
.reviews__card-text {
    font-size: 18px;
    font-weight: 500;
    line-height: 120%;
}
.reviews__cards-wrapper .swiper-pagination {
    bottom: 0;
}
.swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    opacity: 1;
    border-radius: 10px;
    background-color: var(--color-decorative);
}
.swiper-pagination-bullet-active {
    width: 48px;
}

.blog__quote {
    margin: 20px 0;
}
.blog__quote-wrapper {
    display: flex;
    gap: 8px;
    margin: 0 0 20px;
}
.blog__quote-wrapper .icon {
    max-width: 37px;
    height: 42px;
}
.blog__quote-author {
    display: flex;
    gap: 12px;
    padding: 0 0 0 46px;
    font-size: 14px;
    line-height: 120%;
}
.blog__quote-author-name {
    font-weight: 700;
    margin: 0 0 4px;
}

.fp-text-section {
    font-size: 18px;
    font-weight: 500;
    line-height: 140%;
    margin: 0 0 48px;
}

.single-article-flex {
    margin: 0 0 60px;
}
.single-content {
    font-size: 18px;
    font-weight: 500;
    line-height: 140%;
}
.single-content img {
    max-width: 100%;
    object-fit: contain;
    border-radius: 20px;
}
/* .single-content h2 {
    margin: 0 0 28px;
} */
.single-content p {
    font-size: 18px;
    font-weight: 500;
    line-height: 140%;
    margin: 0 0 12px;
}
.single-content p:not(:last-of-type),
.single-content .block p {
    margin: 0 0 24px;
}
/**/

/* Contacts */
.contacts-page {
    margin: 0 0 60px;
}
.page-template-tpl-contacts .block-header__title {
    margin: 0 0 12px;
}
.contacts-subtitle {
    font-size: 22px;
    font-weight: 500;
    line-height: 140%;
    margin: 0 0 36px;
}
.contacts__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
}
.contacts__grid-item {
    display: flex;
    gap: 28px;
    flex-wrap: wrap;
}
.contacts__grid-block {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
}
.contacts__grid-block-2-items {
    display: flex;
    gap: 28px;
    width: 100%;
}
.contacts__grid-item-title {
    font-size: 26px;
    font-weight: 700;
    line-height: 120%;
}
.contacts__grid-item-text {
    font-size: 18px;
    font-weight: 500;
    line-height: 120%;
}
.contacts__grid-item-text span {
    font-weight: 700;
}
.contacts__grid-item iframe,
.contacts__grid-item picture,
.contacts__grid-item img,
.embassy-page-top__grid-item iframe {
    width: 100%;
    border-radius: 30px;
}
.contacts__grid-item picture {
    overflow: hidden;
    max-height: 360px;
}
/**/

/* О компании */
.page-team-content {
    padding: 0 0 20px;
}
.page-template-tpl-team .wide-image,
.page-template-tpl-team .why-we__cards,
.page-template-tpl-team .spoilers-section,
.page-template-tpl-team .stories-of-clients {
    margin: 0 0 60px;
}
.about__company-description {
    margin: 0 0 40px;
}
.team-section {
    margin: 0 0 60px;
}
.team-description,
.team-grid {
    margin: 0 0 40px;
}
.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}
.team-grid a {
    text-decoration: none;
    color: inherit;
}
.team-card {
    text-align: center;
    border-radius: 20px;
}
.team-card:nth-child(n+4) {
    display: none;
}
.team-grid.active .team-card:nth-child(n+4) {
    display: block;
}
.team-card img {
    border-radius: 20px;
    margin: 0 0 20px;
}
.team-card__text-inner {
    padding: 0 12px;
}
.team-name {
    font-size: 18px;
    font-weight: 700;
    line-height: 120%;
    margin: 0 0 8px;
}
.team-function {
    font-size: 16px;
    font-weight: 500;
    line-height: 120%;
    margin: 0 0 8px;
}

.employees__card-meta-rating {
    display: flex;
    align-items: center;
    width: fit-content;
    margin: 0 auto 20px;
    font-size: 0;
    line-height: 0.75;
  }
.rating__body {
    position: relative;
    width: 140px;
    height: 28px;
}
.team-card .rating__body::before{
    content: ' ';
    display: block;
    height: 26px;
    width: 100%;
    background-image: url(./images/stars-40@2x-copy.png);
    /* background-image: url(./images/stars-40@2x.png); */
    background-position: 0 99%;
    background-size: 28px;
    background-repeat: repeat-x;
}
.rating__active {
    position: absolute;
    width: 0%;
    height: 100%;
    top: 0;
    left: 0;
    overflow: hidden;
    transition: 1.5s;
}
.rating__active::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 94%;
    background-image: url(./images/stars-40@2x-copy.png);
    /* background-image: url(./images/stars-40@2x.png); */
    background-position: 0 0%;
    background-size: 28px;
    background-repeat: repeat-x;
}
.rating__items {
    display: flex;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    line-height: 1;
}
.rating__item {
    flex: 0 0 20%;
    height: 100%;
    opacity: 0;
    line-height: 1;
}
.rating__value {
    font-size: 50%;
    line-height: 1;
    font-family: var(--font-primary);
    font-size: 16px;
}
.employees__card-meta-rating .rating__value {
    font-size: 0;
}

.team-load__more {
    display: none;
    text-align: center;
    font-weight: 700;
    line-height: 140%;
    max-width: 370px;
    margin: 0 auto;
    background-color: var(--color-decorative);
    border-radius: 30px;
    cursor: pointer;
    padding: 12px 0;
    color: #fff;
}
/**/

/* Разводящая программы/продукта */
.page-razvodyashhaya-content section {
    margin: 0 0 80px;
}
/**/

/* Страница специалиста */
.team-single__title-wrap {
    display: flex;
    gap: 24px;
    margin: 0 0 12px;
}
.team-single__title-wrap h1,
.team-single__title-wrap .employees__card-meta-rating {
    margin: 0;
}
.team-single__position {
    font-style: italic;
    font-weight: 500;
    line-height: 120%;
    margin: 0 0 40px;
}
.team-single__content__image {
    max-width: 352px;
    width: 100%;
}
.team-single__content__image img {
    border-radius: 20px;
}
.team-single__content {
    display: flex;
    gap: 28px;
    margin: 0 0 60px;
}
.team-single__content__description p {
    margin: 0 0 24px;
    font-weight: 500;
    font-size: 18px;
    line-height: 140%;
}
/**/

/* categories */
ul.blog-page__categories {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin: 0 0 40px;
    padding: 0;
}
.blog-page__categories li a.current_category,
.blog-page__categories li a:hover {
    color: var(--color-decorative);
}
.blog-page__categories li a {
    display: block;
    font-size: 18px;
    font-weight: 500;
    border-radius: 30px;
    background-color: var(--color-block);
    padding: 12px 20px;
    margin: 0;
    transition: 0.3s;
}

.category-cards-section {
    margin: 0 0 100px;
}
.list-news {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: auto;
    gap: 28px;
}
.list-news,
.list-category {
    margin: 0 0 46px;
}
.list-news div {
    line-height: 120%;
}
div.category-card:nth-child(n+7)  {
    display: none;
}
.list-category.active div.category-card:nth-child(n+7) {
    display: flex;
}
.card-news:first-child {
    grid-row: span 3;
}
.card-news:not(:first-child) {
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
    gap: 20px;
}
.card-news:not(:first-child) .card-news__header {
    margin: 0;
    max-width: 195px;
}
.card-news:not(:first-child) img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
}
.card-news:not(:first-child) .card-news__date {
    font-size: 14px;
}
.card-news:not(:first-child) .card-news__cat {
    font-size: 18px;
    margin: 0 0 16px;
}
.card-news:not(:first-child) .card-news__title {
    font-size: 20px;
}
.card-news__header {
    margin: 0 0 20px;
}
.card-news__header-inner,
.card-blog__inner {
    display: flex;
    justify-content: center;
    overflow: hidden;
    border-radius: 20px;
}
.card-news img {
    border-radius: 20px;
}
.card-news__date {
    color: var(--color-grey);
    font-size: 18px;
    font-weight: 500;
    margin: 0 0 8px;
}
.card-news__cat {
    color: var(--color-decorative);
    font-size: 20px;
    font-weight: 700;
    margin: 0 0 20px;
}
.card-news a {
    text-decoration: none;
    color: inherit;
}
.card-news__title {
    font-size: 25px;
    font-weight: 500;
}
.category-read_more__btn-wrap {
    display: none;
    align-items: center;
    justify-content: center;
}
.category-read_more__btn {
    max-width: 370px;
    cursor: pointer;
}

.category-read_more__wrap {
    display: flex;
    align-items: center;
    justify-content: center;
}

.back-to-categories__wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin: 0 0 40px;
}

.cards-blog {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 28px;
}
.card-blog {
    display: flex;
    flex-direction: column;
}
.card-blog img {
    margin: 0 auto;
    border-radius: 20px;
}
.card-blog .date {
    color: var(--color-grey);
    font-size: 14px;
    font-weight: 500;
    line-height: 120%;
    margin: 0 0 8px;
}
.card__content-wrapper {
    display: flex;
    flex-direction: column;
    flex: auto;
}
.card-blog__content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.card-blog .card-blog__content-title {
    color: var(--color-decorative);
    font-size: 18px;
    font-weight: 700;
    line-height: 140%;
    margin: 0 0 16px;
}
.card-blog__content-excerpt {
    color: var(--color-primary);
    font-size: 20px;
    font-weight: 500;
    line-height: 120%;
}
/**/

/* Цены */
ul.prices-page__categories {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin: 0 0 40px;
    padding: 0;
}
.prices-page__category-title {
    cursor: pointer;
}
.prices-page__category-title.active,
.prices-page__category-title:hover {
    color: #fff;
    background-color: var(--color-decorative);
}
.prices-page__category-title {
    display: block;
    font-size: 18px;
    font-weight: 500;
    border-radius: 30px;
    background-color: var(--color-block);
    padding: 12px 20px;
    margin: 0;
    transition: 0.3s;
}
.category-blog li[data-category-id="28"],
.categories-wrap[data-current_category_parent-id="21"] li[data-category-id="28"],
.category-blog li[data-category-parent-id="28"],
.categories-wrap[data-current_category_parent-id="21"] li[data-category-parent-id="28"],
.category-news li[data-category-id="21"],
.categories-wrap[data-current_category_parent-id="28"] li[data-category-id="21"],
.category-news li[data-category-parent-id="21"],
.categories-wrap[data-current_category_parent-id="28"] li[data-category-parent-id="21"] {
    display: none;
}

/* .blog-page__categories-all,
.blog-page__categories li {
    display: none;
} */

div.prices-table {
    display: none;
    transition: .2s;
}
div.prices-table.active {
    display: grid;
}
.prices-table .country-info div {
    font-size: 18px;
    font-weight: 500;
    line-height: 140%;
}
/**/

/* Услуги */
.services-page-section {
    margin: 0 0 100px;
}
.services-grid-wrap {
    margin: 0 0 30px;
}
.services-grid {
    display: grid;
    grid-template-columns: 1.64fr 1fr 1fr;
    gap: 30px 28px;
}
.services-grid.reverse {
    grid-template-columns: 1fr 1fr 1.64fr;
    margin: 30px 0 0;
}
.services-grid .card {
    display: flex;
    flex-direction: column;
}
.card__content-wrap {
    display: flex;
    flex: 1;
    padding: 0 20px 20px 20px;
    flex-direction: column;
    justify-content: space-between;
}
.services-grid .card__content {
    margin: 0 0 20px;
}
.card-narrow-img-wrap {
    display: flex;
    justify-content: center;
    margin: 0 0 20px;
    height: 100%;
    border-radius: 20px;
    overflow: hidden;
}
.card .card-narrow-img-wrap picture {
    margin: 0;
    height: 100%;
}
.services-grid img {
    transition: 0.3s;
}
.card.card-narrow img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.services-grid .card__info-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}
.services-grid .card__info-wrap .price {
    font-weight: 700;
}
.services-page-bottom {
    display: flex;
    justify-content: space-between;
    gap: 28px;
}
.services-page-bottom * {
    line-height: 120%;
}
.services-page-bottom .block {
    width: 100%;
}
.services-page-bottom-title {
    font-size: 26px;
    font-weight: 700;
    margin: 0 0 16px;
}
.services-page-bottom-descr {
    margin: 0 0 16px;
    font-weight: 500;
}
.services-page-bottom-btn-wrap {
    width: 200px;
}
.services-page-bottom-btn-wrap a {
    font-weight: 600;
    padding: 10px 0;
    width: 100%;
    justify-content: center;
}
/**/

/* Отзывы о компании */
.review-page section {
    margin: 0 0 60px;
}
.review-page__header-wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0 0 28px;
}
.review-page__header-wrap h1 {
    margin: 0;
}
.review-page__header__rating {
    display: flex;
    gap: 16px;
}
.review-page__header__rating .rating {
    height: fit-content;
}
.review-page__header__rating .rating a {
    display: flex;
    align-items: center;
    padding: 10px 45px;
    height: 45px;
}
.review-page__header__rating .rating__value {
    font-size: 16px;
    font-weight: 600;
    line-height: 114.023%;
    margin: 0 4px 0 0;
}
.review-page__header__rating .rating__star {
    margin: 0 6px 0 0;
}
.rating__star {
    height: 17px;
    width: 18px;
    background-image: url(./images/stars-40@2x-copy.png);
    /* background-image: url(./images/stars-40@2x.png); */
    background-position: 50% 0;
    background-repeat: no-repeat;
    background-size: cover;
}
.review-page__header__rating .rating__logo:has(.yandex) {
    height: 18px;
}
.rating__logo .yandex {
    width: 66px;
    height: 18px;
}
.review-page__header__rating .rating__logo:has(.google) {
    height: 26px;
}
.rating__logo .google {
    width: 66px;
    height: 26px;
}
.review-page__description {
    font-size: 18px;
    font-weight: 500;
    line-height: 140%;
}
.reviews-carousel__section {
    position: relative;
}
.reviews-carousel {
    /* max-width: 1028px; */
    margin: 0 42px;
}
.reviews-carousel .screenshot-image {
    height: 464px;
    background-position: 50% 50%;
    background-repeat: no-repeat;
    background-size: contain;
    border-radius: 30px;
}
.review-page__content {
    display: grid;
    grid-template-columns: 6.4fr 4.5fr;
    gap: 28px;
    margin: 0 0 100px;
}

.review-item,
.review-item__answer-of-company_collapse {
    display: flex;
    gap: 24px;
}
.review-item:not(:last-child) {
    margin: 0 0 28px;
}
.review-item__logo {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 60px;
    min-width: 60px;
    color: #FFF;
    font-size: 27px;
    font-weight: 400;
    border-radius: 50%;
    overflow: hidden;
}
/* .review-item__header {
    margin: 0 0 16px;
} */
.review-item__header,
.review-item__content__review:not(:last-child) {
    margin: 0 0 12px;
}
.review-item__header__name {
    font-size: 18px;
    font-weight: 700;
    line-height: 120%;
    margin: 0 0 16px;
}
.review-item__header__name span {
    font-size: 18px;
    line-height: 120%;
    font-weight: 400;
    color: var(--color-grey);
    margin: 0 0 0 24px;
}
.review-item__content {
    font-size: 18px;
    font-weight: 500;
    line-height: 120%; 
    margin: 0 0 16px;
}
.review-item__review__title {
    font-weight: 700;
    margin: 0 0 8px;
}
.review-item__header__rating-value .employees__card-meta-rating {
    margin: 0;
}
.review-item__answer-of-company_toggle {
    display: flex;
    align-items: center;
    gap: 4px;
    color: var(--color-decorative);
    font-size: 18px;
    font-weight: 700;
    line-height: 120%;
    margin: 0 0 16px;
    cursor: pointer;
}
.review-item__answer-to {
    font-size: 18px;
    font-weight: 700;
    line-height: 120%;
    color: var(--color-decorative);
    text-decoration: underline;
}
.review-item__answer-of-company svg {
    width: 24px;
    height: 24px;
    transition: 0.3s ease;
    transform: rotate(180deg);
}
.review-item__answer-of-company.active svg {
    transform: rotate(0deg);
}
.review-item__answer-of-company_collapse {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}
.review-item__answer-of-company.active .review-item__answer-of-company_collapse {
    max-height: 1500px;
}

.reviews-form {
    position: sticky;
    display: flex;
    flex-direction: column;
    top: 65px;
}
.reviews-form__title {
    font-size: 26px;
    color: var(--color-decorative);
    font-weight: 700;
    line-height: 120%;
    margin: 0 0 28px;
}
.reviews-form input {
    position: relative;
}
.placeinput {
    position: relative;
}
.placeinput:not(:last-of-type) {
    margin: 0 0 16px;
}
.placeinput input:invalid + .place_holder {
    display: flex;
    gap: 7px;
}
.place_holder {
    position: absolute;
    top: 0;
    left: 20px;
    bottom: 0;
    display: none;
    align-items: center;
    z-index: 100;
    width: 100%;
    cursor: text;
    color: #585858;
}
.reviews-form__line__title {
    font-size: 18px;
    font-weight: 500;
    line-height: 120%;
    margin: 28px 0 12px;
}
.reviews-form__rating {
    margin: 0 0 28px;
    display: flex;
    flex-direction: row-reverse;
    justify-content: flex-end;
    position: relative;
    /* z-index: 10; */
    font-size: 0;
}
.reviews-form__rating input {
    display: none;
}
.reviews-form__rating input + label {
    display: inline-block;
    overflow: hidden;
    text-indent: 9999px;
    white-space: nowrap;
    cursor: pointer;
    margin: 0 4px 0 0;
    text-indent: -9999px;
    width: 25px;
    height: 25px;
}
.reviews-form__rating input + label:before {
    display: block;
    content: '';
    width: 25px;
    height: 25px;
    background: url(./images/stars-40@2x-copy.png) 0 -24px no-repeat;
    background-size: 25px;
    transition: .2s;
}
.reviews-form__rating input.reviews-form-rating-hidden+label {
    display: none;
}
.reviews-form__line.active textarea {
    display: block;
    margin: 0 0 28px;
}
.reviews-form__line textarea {
    display: none;
    font-family: var(--font-primary);
    margin: 0 0 28px;
    padding: 16px 24px;
    max-width: 388px;
    height: 100px;
    width: 100%;
    border: none;
    border-radius: 30px;
    background: #FFF;
}
.reviews-form__line textarea::placeholder {
    font-size: 16px;
    line-height: 140%;
    color: #585858;
}
.reviews-form__rating input:checked~label:before,
.reviews-form__rating input+label:hover~label:before,
.reviews-form__rating input+label:hover:before {
    background-position: 0 1px;
    transition: .2s;
}

.review-page__content .pagination {
    grid-area: 2 / 1 / 2 / 3;
}
.page-numbers,
.wp-pagenavi {
    display: flex;
    gap: 12px;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
}
.page-numbers li,
.wp-pagenavi a,
.wp-pagenavi .current {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 25px;
    font-weight: 600;
    line-height: 120%;
    width: 100%;
    max-width: 48px;
    height: 48px;
    border-radius: 10px;
    color: var(--color-decorative);
    background-color: var(--color-block);
    transition: .2s ease;
}
.page-numbers li:has(.current),
.page-numbers li:hover,
.wp-pagenavi .current,
.wp-pagenavi a:hover {
    color: #fff;
    background-color: var(--color-decorative);
}
.page-numbers li:has(.prev),
.page-numbers li:has(.next),
.wp-pagenavi a.prev,
.wp-pagenavi a.next {
    max-width: fit-content;
    background-color: unset;
    color: var(--color-decorative);
}

.page-numbers.prev:hover,
.page-numbers.next:hover,
.wp-pagenavi a.prev:hover,
.wp-pagenavi a.next:hover {
    text-decoration: underline;
}

.wp-pagenavi i {
    display: none;
}
/**/

/* search page */
.search-page {
    padding: 40px 0 0;
    margin: 0 0 100px;
}
form#results-search {
    display: flex;
    align-items: center;
    background: var(--color-block);
    border-radius: 30px;
    margin: 0 0 20px;
    width: 100%;
}
#results-search svg {
    width: 24px;
    height: 24px;
}
#results-search label {
    width: 100%;
    display: flex;
    align-items: center;
    width: 100%;
    padding: 13px 18px;
}
#results-search label .icon {
    padding: 2px;
    display: flex;
}
#results-search input {
    font-size: 18px;
    /* min-width: 304px; */
    padding: 0 0 0 8px;
    border-radius: 0;
    background: var(--color-block);
}
#results-search input::placeholder {
    color: #585858;
    opacity: 1; /* Firefox */
    font-size: 14px;
font-size: 18px;
font-weight: 500;
line-height: 140%; 
}
#results-search input::-ms-input-placeholder { /* Edge 12 -18 */
    color: #585858;
}
.search-page-title h2 {
    font-size: 28px;
    margin: 0 0 8px;
}
.search-page__item {
    padding: 16px 0;
}
.search-page__item a {
    transition: 0.3s ease;
}
.search-page__item a:hover {
    color: var(--color-decorative);
}
.search-page__item:not(:last-of-type) {
    border-bottom: 1px solid var(--color-grey);
}
.search-page__item-title h4{
    font-size: 18px;
    margin: 0 0 8px;
}
.search-page__item-meta {
    margin: 0 0 8px;
}
.search-page__item--date {
    font-size: 14px;
    font-weight: 500;
    line-height: 120%;
    color: var(--color-grey);
}
.search-page__item--date .read_more {
    margin: 0 0 0 15px;
}
.search-page__none h2 {
    font-size: 45px;
    margin: 0 0 28px;
}
.search-page__none .text p {
    font-size: 18px;
    font-weight: 500;
    line-height: 140%; 
    margin: 0 0 18px;
}
/**/

/* 404 */
body.error404 {
    background-color: var(--color-block);
}
.errorpage__title-desktop {
    display: flex;
    justify-content: center;
    padding: 0 0 0 195px;
}
.errorpage {
    text-align: center;
    padding: 0 0 100px;
    margin: -55px 0 0;
}
.errorpage__title {
    font-size: 36px;
    font-weight: 700;
    line-height: 120%;
    margin: 0 0 24px;
}
.errorpage__description {
    font-size: 22px;
    font-weight: 700;
    line-height: 140%;
    margin: 0 0 40px;
}
.errorpage__butttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    max-width: 475px;
    margin: 0 auto;
}
.errorpage__butttons a {
    font-size: 18px;
    font-weight: 500;
    line-height: 120%; 
    padding: 12px 24px;
    background-color: #fff;
    border-radius: 30px;
    transition: 0.3s;
}
.errorpage__butttons a:hover {
    color: var(--color-decorative);
    transition: 0.3s;
}
/**/

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

.expenses__table {
    width: 100%;
}
/* th.expenses__items-title {
    display: inline-block;
} */
.expenses__table-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
}
.expenses__items-title,
.expenses__costs-title {
    font-size: 18px;
    font-weight: 700;
    line-height: 140%;
    margin: 0 0 20px;
}
.expenses__item {
    display: block;
    padding: 0 30px 0 0;
}
.expenses__item:not(:last-of-type) {
    margin: 0 0 15px;
}


.flag-wrapper {
    transition: 0.3s ease;
}
.flag-wrapper img {
    transform: scale(1.4);
}
.similar-programs_btn-bottom .similar-programs__table-content:nth-child(n+4),
.similar-programs__show-more {
    display: none;
}
.similar-programs_btn-bottom.active .similar-programs__table-content:nth-child(n+4) {
    display: flex;
}
.similar-programs_btn-bottom:has(.similar-programs__table-content:nth-child(n+4)) .similar-programs__show-more {
    display: flex;
    cursor: pointer;
}

.similar-programs__grid {
    display: grid;
    grid-template-columns: 206px 182px 145px 272px 178px;
    justify-content: space-between;
    font-size: 18px;
    line-height: 140%;
    margin: 0 0 24px;
}
.similar-programs__table-header {
    font-weight: 700;
    align-items: center;
    padding: 11px 12px 11px 20px;
}
.similar-programs__table-content {
    padding: 20px 12px 20px 20px;
    font-weight: 500;
}
.similar-programs__table-content .country-inner,
.visas-table .country-inner,
.filter-by-type__card-title {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0 0 12px;
}
.country-hashtag {
    color: var(--color-decorative);
    font-size: 14px;
    font-weight: 500;
    line-height: 120%; 
}
.similar-programs__table-content .flag-wrapper,
.visas-table .flag-wrapper,
.filter-by-type__card-title .flag-wrapper {
    position: relative;
    max-width: 25px;
    width: 100%;
    height: 25px;
    border-radius: 50%;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}
.similar-programs__table-content .flag-wrapper svg,
.visas-table .flag-wrapper svg,
.filter-by-type__card-title .flag-wrapper svg {
    position: absolute;
    width: 38px;
}
/* ul.program-advantages {
    
} */
.similar-programs__grid .btn {
    font-size: 16px;
    font-weight: 600;
    line-height: 120%;
    text-decoration: none;
}

.similar-programs__button {
    margin: 24px auto 0;
    max-width: 370px;
}
/**/

/* visas-table */
.visas-table {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}
.visas-table__item {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.visas-table__item .country-inner {
    font-size: 18px;
    font-weight: 700;
    line-height: 140%;
    margin: 0 0 12px;
}
.visas-table__item .country-inner span{
    white-space: nowrap;
}
.visas-table .flag-wrapper {
    min-width: 25px;
}
.visas-table__item .country-info {
    display: flex;
    gap: 16px;
}
.visas-table .button-wrap {
    width: 178px;
}
.visas-table .button-wrap a {
    width: 100%;
    justify-content: center;
    text-decoration: none;
}
/**/

/* cards */
.carousel__cards-wrapper,
.read-more__cards-wrapper {
    position: relative;
}
.carousel__cards,
.read-more__cards {
    max-width: 1028px;
}
.read-more__cards a {
    text-decoration: none;
}
.swiper-slide {
    height: auto;
}
.carousel__cards .swiper-slide {
    display: flex;
}
.read-more__cards .swiper-slide {
    display: flex;
    flex-direction: column;
}
.read-more__cards .card__content-wrapper {
    display: flex;
    flex-direction: column;
    flex: 1;
    justify-content: space-between;
}
.carousel__cards .swiper-slide .card {
    display: flex;
    flex-direction: column;
    height: auto;
}
.carousel__cards .swiper-slide .card__content-wrapper {
    display: flex;
    flex-direction: column;
    flex: 1;
    justify-content: space-between;
}
.carousel__cards .swiper-slide a {
    text-decoration: none;
}
.card picture,
.card__content {
    display: block;
    margin: 0 0 20px;
}
.card picture {
    border-radius: 20px;
    overflow: hidden;
}
.card img,
.card-news img,
.card-blog img {
    border-radius: 20px;
    transition: .3s;
}
.card__content {
    font-size: 18px;
    font-weight: 500;
    line-height: 120%; 
}
.card__content-title {
    font-weight: 700;
    margin: 0 0 20px;
}
.card .button-wrap {
    text-align: end;
}
.swiper-pagination-wrap {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.swiper-pagination-wrap > div {
    width: 27px;
    height: 50px;
}
.swiper-button-prev {
    transform: rotate(180deg);
}
#story-slider .swiper-button-prev {
    transform: rotate(0);
}
.swiper-button-prev,
.swiper-rtl .swiper-button-next {
    left: 0;
}
.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 0;
}
.swiper-button-next,
.swiper-rtl .swiper-button-prev {
    right: 0;
}
/**/

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

/* footer */
.footer {
    color: #fff;
    background-color: var(--color-bg-dark);
    border-radius: 30px 30px 0px 0px;
    padding: 60px 0 28px;
    margin: 60px 0 0;
}
.footer__main {
    margin: 0 0 28px;
    display: grid;
    grid-template-columns: 1.5fr 1.2fr 1.4fr 1fr;
    gap: 44px;
}
.footer__column-title {
    font-size: 18px;
    font-weight: 700;
    line-height: 140%;
    margin: 0 0 16px;
}
.footer__column .menu {
    font-weight: 500;
    line-height: 120%;
}
.footer__column .menu li:not(:last-of-type) {
    margin: 0 0 12px;
}
.footer .logo {
    fill: #fff;
}
.footer__contacts {
    display: grid;
    grid-template-columns: 1fr 218px 1.8fr;
    justify-content: space-between;
    gap: 44px;
    padding: 28px 40px;
    margin: 0 0 28px;
}
.footer__contacts-column .phone_number {
    display: block;
    margin: 0 0 8px;
}
.footer__contacts-column .phone_number,
.footer__schedule span {
    font-size: 20px;
    font-weight: 700;
    line-height: 120%;
}
.footer__email {
    margin: 0 0 12px;
}
.footer__email,
.footer__address,
.footer__schedule {
    font-size: 18px;
    font-weight: 500;
    line-height: 120%;
}
.footer__schedule span {
    font-size: 18px;
    font-weight: 700;
    line-height: 120%;
}
.ready-solutions {
    display: none;
}
.location__address {
    display: flex;
    gap: 4px;
    margin: 0 0 16px;
}
.location__address svg {
    width: 24px;
    height: 24px;
}
.social-links {
    display: flex;
    gap: 12px;
}
.footer-bottom {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    font-weight: 500;
    line-height: 120%;
}
.footer-bottom .privacy-link {
    color: inherit;
}
/**/

.hidden-desktop {
    display: none;
}
.hidden-mobile {
    display: flex;
}

/* .grecaptcha-badge { visibility: hidden; } */

@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;
    }
}