.breadcrumb {
    color: var(--color-gray);
    font-size: 1.4rem;
    line-height: 2rem;
    padding: 1rem 0;
}
.breadcrumb__list {
    display: flex;
    flex-wrap: wrap;
    row-gap: 0.4rem;
}
.breadcrumb__item {
    cursor: text;
    display: flex;
}
.breadcrumb__item:after {
    content: "–";
    padding: 0 1rem;
}
.breadcrumb__item:last-child:after {
    display: none;
}
.breadcrumb__link {
    color: inherit;
    text-decoration: none;
}
.breadcrumb__link:active {
    color: inherit;
}
.breadcrumb__link--current-page {
    color: var(--color-black);
    pointer-events: none;
} /*! Directions page */
.select-direction__header {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: -2rem;
}
.select-direction__header:after {
    aspect-ratio: 235/128;
    background-image: url(../img/layout/direction-map-235w.jpg);
    background-image: url(../img/layout/direction-map-235w.webp);
    background-repeat: no-repeat;
    background-size: contain;
    content: "";
    display: block;
    max-width: 25.4rem;
    transform: translateY(-1rem);
    width: 100%;
}
.webp .select-direction__header:after {
    background-image: -webkit-image-set(
        url(../img/layout/direction-map-235w.webp) 1x,
        url(../img/layout/direction-map-470w.webp) 2x
    );
    background-image: image-set(
        url(../img/layout/direction-map-235w.webp) 1x,
        url(../img/layout/direction-map-470w.webp) 2x
    );
}
.select-direction__header > * {
    max-width: 55.5rem;
}
.direction-cards {
    columns: 28rem;
    gap: 1rem;
}
.direction-card {
    --color: var(--color-gray-dark);
    border: 1px solid var(--color-divider);
    border-radius: 1rem;
    column-gap: 1.6rem;
    display: grid;
    grid-template-columns: 6.4rem 1fr;
    grid-template-rows: auto 1fr;
    margin-bottom: 1rem;
    padding: 1.1rem 1.5rem;
    row-gap: 0.4rem;
    text-decoration: none;
}
.direction-card:focus-visible,
.direction-card:hover {
    border-color: var(--color-brand);
}
.direction-card:last-child {
    margin-bottom: 0;
}
.direction-card--current {
    --color: var(--color-white);
    background-color: var(--color-brand);
    pointer-events: none;
}
.direction-card__img {
    grid-row: 1/3;
    height: 6.4rem;
    width: 6.4rem;
}
.direction-card__img img {
    aspect-ratio: 1/1;
}
.direction-card__title {
    font-weight: 500;
    line-height: 2.4rem;
    margin-top: 1rem;
}
.direction-card__text {
    font-size: 1.2rem;
    line-height: 1.8rem;
}
.countries-panel {
    margin-bottom: 5rem;
    padding: 3rem 2rem;
}
.countries-panel + .countries-panel {
    margin-top: -2rem;
}
.countries-panel-search {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    max-width: 51rem;
}
.countries-panel-search__caption {
    color: var(--color-gray);
    line-height: 2.2rem;
}
.countries-panel__lists {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}
.countries-panel__col {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}
.countries-panel__direction {
    color: var(--color-gray);
    line-height: 2.2rem;
    opacity: 0.5;
}
.countries-list {
    column-gap: 1rem;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    row-gap: 2rem;
}
.countries-list__item {
    display: flex;
    min-width: 0;
}
.countries-list__link {
    --color: var(--color-black);
    --color-hover: var(--color-brand);
    align-items: center;
    display: inline-flex;
    gap: 1.2rem;
    line-height: 2.2rem;
    max-width: fit-content;
    text-decoration: none;
    width: 100%;
}
.countries-list__link .flag {
    background-position: 50%;
    background-size: cover;
    border: 1px solid var(--color-divider);
    display: block;
    flex-shrink: 0;
    height: 2rem;
    width: 2.8rem;
} /*! Visa page */
.visa-hero {
    gap: 2rem;
    padding: 2rem 0;
}
.visa-hero,
.visa-hero__content {
    display: flex;
    flex-direction: column;
}
.visa-hero__content {
    background-color: var(--color-gray-bg);
    border-radius: 2rem;
    gap: 3rem;
    padding: 5rem 2rem;
}
.visa-hero__button {
    max-width: 32rem;
    width: 100%;
}
.visa-hero__img img {
    border-radius: 2rem;
}
.visa-hero + .advantages .h3 {
    font-size: 2.2rem;
    line-height: 2.9rem;
} /*! Page-list */
.pl-wrapper {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    margin: 0 auto;
    max-width: 55rem;
    padding-top: 3rem;
}
.pl-col,
.pl-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}
.pl-list {
    padding-left: 2rem;
}
.pl-list a {
    --color: var(--color-black);
    --color-hover: var(--color-brand);
    font-size: 1.8rem;
    font-weight: 500;
    line-height: 2.8rem;
    text-decoration: none;
}
.pl-list a span {
    color: var(--color-red);
    font-weight: 400;
}
.dc-page {
    --color-bank: #ff7528;
    --color-bank-hover: #ff7528cc;
    --color-bank-gradient: linear-gradient(90deg, #ff7528, #fa955d 67.8%, #ffac7d);
}
.gonkong-page {
    --color-bank: #ee1c25;
    --color-bank-hover: #ee1c25cc;
    --color-bank-gradient: linear-gradient(90deg, #ee1c25, #fa555c 67.8%, #ff7f85);
}
.solo-page {
    --color-bank: #0f1c2c;
    --color-bank-hover: #0f1c2ccc;
    --color-bank-gradient: linear-gradient(90deg, #0e1b2b, #24374f 67.8%, #2b4565);
}
.umo-page {
    --color-bank: #ff5a1e;
    --color-bank-hover: #ff5a1ecc;
    --color-bank-gradient: linear-gradient(90deg, #ff5a1e, #ff7847 67.8%, #fe8f66);
}
.kg-page {
    --color-bank: #06793a;
    --color-bank-hover: #06793acc;
    --color-bank-gradient: linear-gradient(90deg, #06793a, #379e65 67.8%, #5db484);
}
.ininal-page {
    --color-bank: #000;
    --color-bank-hover: #000c;
    --color-bank-gradient: linear-gradient(90deg, #000, #242424 67.8%, #3f3f3f);
}
.uae-page {
    --color-bank: #00732f;
    --color-bank-hover: #00732fcc;
    --color-bank-gradient: linear-gradient(90deg, #00732f, #018d3a 67.8%, #01c751);
}
.bereke-page {
    --color-bank: #023dff;
    --color-bank-hover: #023dffcc;
    --color-bank-gradient: linear-gradient(90deg, #023dff, #4772ff 67.8%, #4772ff);
}
.idbank-page {
    --color-bank: #f5821e;
    --color-bank-hover: #f5821ecc;
    --color-bank-gradient: linear-gradient(90deg, #ff7d03, #ff9c3f 67.8%, #ff9c3f);
}
.forte-page {
    --color-bank: #0db4c4;
    --color-bank-hover: #0db4c4cc;
    --color-bank-gradient: linear-gradient(90deg, #17a4b2, #1db1bf 67.8%, #42e5f1);
}
.ksb-page {
    --color-bank: #bf1920;
    --color-bank-hover: #bf1920cc;
    --color-bank-gradient: linear-gradient(90deg, #b70d14, #dc363d 67.8%, #dc363d);
}
.bcc-page {
    --color-bank: #21b262;
    --color-bank-hover: #21b262cc;
    --color-bank-gradient: linear-gradient(90deg, #21b262, #2ec873 67%, #2ec873);
}
.deniz-page {
    --color-bank: #1f4fa2;
    --color-bank-hover: #1f4fa2cc;
    --color-bank-gradient: linear-gradient(90deg, #1f4fa2, #3c70c8);
}
.jusan-page {
    --color-bank: #e85322;
    --color-bank-hover: #e85322cc;
    --color-bank-gradient: linear-gradient(90deg, #e85322, #fb774c);
}
.mbank-page {
    --color-bank: #32a64d;
    --color-bank-hover: #32a64dcc;
    --color-bank-gradient: linear-gradient(90deg, #00974b, #35c253 66.5%, #35c253);
}
.freedom-page {
    --color-bank: #4f9d3a;
    --color-bank-hover: #4f9d3acc;
    --color-bank-gradient: linear-gradient(90deg, #4f9d3a, #4f9d3a 66.5%, #4f9d3a);
}
.optima-page {
    --color-bank: #f17d3b;
    --color-bank-hover: #f17d3bcc;
    --color-bank-gradient: linear-gradient(90deg, #f17d3b, #f17d3b 66.5%, #f17d3b);
}
.bakai-page {
    --color-bank: #1a3668;
    --color-bank-hover: #1a3668cc;
    --color-bank-gradient: linear-gradient(90deg, #1a3668, #1a3668 66.5%, #1a3668);
}
.ziraat-page {
    --color-bank: #d80027;
    --color-bank-hover: #d80027cc;
    --color-bank-gradient: linear-gradient(90deg, #e02025, #f77073);
}
.foreign-page {
    --color-bank: #225a7f;
    --color-bank-hover: #225a7fcc;
    --color-bank-gradient: linear-gradient(90deg, #225a7f, #307bad);
}
.bank-page .bank-bg-block {
    background: var(--color-bank);
}
.bank-page .bank-gradient-block {
    background: var(--color-bank-gradient);
}
.bank-page .bank-color-block {
    color: var(--color-bank);
    --color-hover: var(--color-bank);
}
.bank-page .button.bank-bg-block {
    --bg-color: var(--color-bank);
    --border-color: var(--color-bank);
    --bg-color-hover: var(--color-bank-hover);
}
.bank-page .button.bank-bg-block:hover {
    background: var(--bg-color-hover);
}
.thank-you__wrapper {
    align-items: center;
    display: flex;
    flex-direction: column;
    gap: 40px;
    justify-content: center;
}
.thank-you__img {
    max-width: 420px;
    object-fit: contain;
    width: 100%;
}
.thank-you__text {
    color: #64748b;
    display: flex;
    flex-direction: column;
    font-size: 16px;
    gap: 24px;
    text-align: center;
}
.thank-you__button {
    max-width: 300px;
    width: 100%;
} /*! Registration cost */
.reg-cost-section > .container {
    gap: 3rem;
}
.reg-cost {
    background-color: var(--color-white);
    border-radius: 2rem;
}
.reg-cost,
.reg-cost__header {
    display: flex;
    flex-direction: column;
}
.reg-cost__header {
    background: linear-gradient(226deg, #85e6ff, #d6f5fd);
    border-radius: 2rem 2rem 0 0;
    gap: 2rem;
    padding: 3rem 2rem;
}
.reg-cost__flag {
    display: block;
    height: 4.4rem;
    width: 8.2rem;
}
.reg-cost__flag,
.reg-cost__flag img {
    border-radius: 0.5rem;
}
.reg-cost__body {
    gap: 2rem;
    padding: 3rem 2rem 0;
}
.reg-cost__body,
.reg-cost__row {
    display: flex;
    flex-direction: column;
}
.reg-cost__row {
    gap: 1rem;
}
.reg-cost__caption {
    color: var(--color-gray);
    font-size: 1.4rem;
    line-height: 2.1rem;
}
.reg-cost__price {
    font-size: 3.5rem;
    font-weight: 500;
    line-height: 4.2rem;
}
.reg-cost-filter {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    padding: 2rem 2rem 0;
}
.reg-cost-filter__header {
    display: none;
}
.reg-cost__radios {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}
.reg-cost__footer {
    align-items: flex-start;
    border-radius: 0 0 2rem 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 2rem 2rem 3rem;
}
.reg-cost__footer-caption {
    color: var(--color-gray);
    font-size: 1.6rem;
    line-height: 2.2rem;
}
.reg-cost__methods {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}
.reg-cost__apply {
    margin-top: 1rem;
    width: 100%;
}
.reg-cost__text {
    color: var(--color-dark);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
}
.reg-cost__link {
    color: var(--color-brand);
    font-size: 16px;
    font-weight: 500;
    line-height: 1.5;
    text-decoration: none;
    transition: opacity 0.3s;
}
.reg-cost__link:hover {
    opacity: 0.8;
}
.reg-cost__tags {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.reg-cost__tag {
    background: #f3f7fc;
    border-radius: 50px;
    color: var(--color-gray);
    font-size: 16px;
    font-weight: 400;
    gap: 5px;
    line-height: 1.5;
    padding: 5px 10px;
    text-align: center;
}
.reg-cost__tag,
.reg-cost__tag .icon {
    align-items: center;
    display: flex;
    justify-content: center;
}
.reg-cost__tag .icon {
    flex-shrink: 0;
    height: 15px;
    width: 15px;
}
.reg-cost__tag .icon svg {
    height: 100%;
    width: 100%;
} /*! Registration docs */
.reg-docs-section .section__hgroup {
    margin-bottom: -2rem;
}
.reg-docs-section .section__caption {
    color: var(--color-black);
}
.reg-docs .accordion-item {
    background-color: var(--color-gray-bg);
    border-radius: 2rem;
    padding: 2rem;
}
.reg-docs .accordion-item:not(:last-child) {
    margin-bottom: 1rem;
}
.reg-docs .accordion-button {
    column-gap: 1.6rem;
    display: grid;
    grid-template-columns: 1fr 2.4rem;
    row-gap: 1rem;
}
.reg-docs .accordion-button:focus-visible,
.reg-docs .accordion-button:hover {
    color: var(--color-gray-dark);
}
.reg-docs .accordion-button .button-text {
    font-size: 2rem;
    font-weight: 500;
    line-height: 2.6rem;
}
.reg-docs .accordion-button .icon {
    align-self: flex-start;
    font-size: 2.4rem;
    grid-column: 2;
    grid-row: 1/3;
}
.reg-docs .accordion-content {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding: 2rem 0 0;
}
.reg-docs__item {
    background-color: var(--color-white);
    border-radius: 1rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 1rem;
}
.reg-docs__type {
    font-weight: 500;
}
.reg-docs__desc {
    font-size: 1.4rem;
    line-height: 2.1rem;
}
.installment-label {
    background: #e4ecf7;
}
.installment-label--light {
    background-color: #f0f4f9;
}
.installment-label__wrapper {
    align-items: center;
    display: flex;
    flex-direction: column;
    gap: 10px;
    justify-content: center;
    padding: 20px 0;
    text-align: center;
}
.installment-label__title {
    color: #64748b;
    font-size: 16px;
}
.installment-label__row {
    gap: 30px;
}
.installment-label__img,
.installment-label__row {
    align-items: center;
    display: flex;
    justify-content: center;
}
.installment-label__img {
    height: 45px;
    max-width: 100%;
    width: auto;
}
.installment-label__img img,
.installment-label__img picture {
    height: 100%;
    object-fit: contain;
    width: auto;
}
.installment-promo__wrapper {
    align-items: center;
    background: linear-gradient(90deg, #12c2e9, #c471ed 50%, #f64f59);
    border-radius: 20px;
    display: flex;
    gap: 30px;
    justify-content: space-between;
    padding: 50px 110px;
}
.installment-promo__content {
    display: flex;
    flex-direction: column;
    gap: 30px;
    max-width: 640px;
    width: 100%;
}
.installment-promo__banks {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.installment-promo__title {
    color: #fff;
    font-size: 50px;
    font-weight: 500;
    line-height: 1.2;
}
.installment-promo__text {
    color: #fff;
    font-size: 16px;
    line-height: 1.5;
}
.installment-promo__row {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}
.installment-promo__img {
    align-items: center;
    display: flex;
    height: 35px;
    max-width: 100%;
    width: auto;
}
.installment-promo__img img,
.installment-promo__img picture {
    height: 100%;
    object-fit: contain;
    width: auto;
}
.installment-promo__main {
    align-items: center;
    display: flex;
    justify-content: center;
    max-width: 370px;
    width: 100%;
}
.installment-promo__main img,
.installment-promo__main picture {
    height: 100%;
    object-fit: contain;
    width: 100%;
}
.installment-card__wrapper {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.installment-card__title {
    color: #64748b;
    font-size: 16px;
    line-height: 150%;
}
.installment-card__row {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}
.installment-card__img {
    align-items: center;
    display: flex;
    height: 24px;
    justify-content: center;
    width: auto;
}
.installment-card__img img,
.installment-card__img picture {
    height: 100%;
    object-fit: contain;
    width: auto;
}
.comparison-cards__wrapper {
    border-radius: 12px;
    position: relative;
}
.comparison-cards__title {
    line-height: 120%;
    margin-bottom: 30px;
    text-align: center;
}
.comparison-cards__subtitle {
    margin-bottom: 50px;
    text-align: center;
}
.comparison-cards__table {
    display: block;
    overflow-x: auto;
    white-space: nowrap;
    width: 100%;
}
.comparison-cards__content {
    border: 1px solid var(--color-divider);
    border-radius: 20px;
    overflow: hidden;
}
.comparison-cards__table-item {
    display: flex;
    gap: 30px;
    justify-content: space-between;
    padding: 20px 30px;
}
.comparison-cards__table-item:nth-child(odd) {
    background: var(--color-gray-bg);
}
.comparison-cards__table-item-optima {
    height: 120px;
}
.comparison-cards__table-bank {
    line-height: 140%;
}
.comparison-cards__table-possibilities {
    color: var(--color-gray);
}
.comparison-cards__table-possibilities,
.comparison-cards__table-text {
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    width: 50%;
}
.comparison-cards__table-text {
    color: var(--color-dark);
    text-wrap: wrap;
}
.comparison-cards__explanation {
    background: var(--color-gray-bg);
    border-radius: 0 0 20px 20px;
    display: flex;
    flex-direction: column;
    gap: 30px;
    justify-content: center;
    padding: 30px;
}
.comparison-cards__explanation-box {
    align-items: center;
    display: flex;
    gap: 20px;
    justify-content: center;
}
.comparison-cards__explanation-title {
    color: var(--color-gray);
    font-size: 30px;
    font-style: normal;
    font-weight: 500;
    line-height: 150%;
}
.comparison-cards__explanation-text {
    align-self: flex-end;
    color: var(--color-gray);
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    max-width: 615px;
}
.comparison-cards__signature {
    align-items: center;
    background-color: #0000;
    color: #a8b8c5;
    display: flex !important;
    font-weight: 500;
    gap: 8px;
    justify-content: center;
    line-height: 160%;
}
.comparison-cards__signature img {
    height: 20px;
    width: 20px;
}
.comparison-cards__mark {
    height: 16px;
    width: 16px;
}
.comparison-cards__delimiter {
    margin-left: 8px;
    margin-right: 8px;
}
.comparison-cards-optima {
    margin-top: 0;
}
.intro {
    background-color: #f0f4f9;
    overflow: hidden;
}
.intro--dark {
    background: #e5edf7;
}
.intro__wrapper {
    border-radius: 12px;
    display: flex;
    padding: 114px 0 107px;
    position: relative;
}
.intro__wrapper-bank {
    padding: 85px 0 129px;
}
.intro__wrapper-country {
    padding: 55px 0 80px;
}
.intro__content {
    position: relative;
    z-index: 5;
}
.intro__content-bank,
.intro__content-country {
    display: flex;
    flex-direction: column;
    gap: 30px;
    max-width: 661px;
}
.intro__title {
    font-size: 50px;
    font-weight: 500;
    line-height: 120%;
    margin: 0;
    max-width: 720px;
}
.intro__title-main {
    margin-bottom: 32px;
}
.intro__text {
    color: #64748b;
    font-size: 16px;
    line-height: 150%;
    max-width: 610px;
}
.intro__text-bank,
.intro__text-country {
    max-width: 591px;
}
.intro__button {
    font-size: 16px;
    max-width: 300px;
}
.intro__button-main {
    margin-top: 74px;
}
.intro__button-bank {
    margin-top: 0;
    max-width: 300px;
    width: 100%;
}
.intro__button-country {
    margin-top: 20px;
}
.intro__decor-img {
    bottom: 0;
    height: auto;
    position: absolute;
    right: 1%;
    z-index: 1;
}
.intro__decor-img-bank {
    bottom: 0;
    right: -8%;
    width: 58.2%;
}
.intro__decor-img-msk,
.intro__decor-img-page {
    align-items: center;
    bottom: unset;
    display: flex;
    height: 100%;
    justify-content: center;
    right: -12%;
    top: 50%;
    transform: translateY(-50%);
    width: 60%;
}
.intro__decor-img-msk img,
.intro__decor-img-msk picture,
.intro__decor-img-page img,
.intro__decor-img-page picture {
    height: 100%;
    object-fit: contain;
    object-position: center center;
    width: 100%;
}
.intro__decor-img-msk {
    height: 100%;
    right: 0;
    width: 55%;
}
.intro__decor-img-msk img,
.intro__decor-img-msk picture {
    object-position: bottom right;
}
.intro__decor-cards-country {
    bottom: 19.8%;
    height: auto;
    right: -13.3%;
    width: 59.3%;
}
.intro__decor-cards-moscow-cards {
    bottom: 10.2%;
    right: 7.9%;
    width: 40.6%;
    z-index: 2;
}
.intro__decor-cards-moscow-banner {
    bottom: 0;
    right: -24.3%;
    width: 38.5%;
    z-index: 1;
}
.title-signature {
    align-items: center;
    color: var(--color-black);
    display: inline-flex;
    font-size: 30px;
    font-style: normal;
    font-weight: 500;
    gap: 15px;
    line-height: 100%;
}
.country-img {
    height: 45px;
    width: 45px;
}
.title-signature .country-img {
    height: 60px;
    width: 60px;
}
.сard-issuance {
    background: var(--color-gray-bg);
    padding-top: 100px;
}
.card-issuance__wrapper {
    position: relative;
}
.card-issuance__title {
    line-height: 120%;
    margin-bottom: 50px;
    text-align: center;
}
.card-issuance__card-info {
    display: flex;
    gap: 30px;
    width: 100%;
}
.card-issuance__card-info--mobile {
    display: none;
}
.card-issuance__card-option {
    background-color: var(--color-white);
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    height: auto;
    padding: 40px;
    width: 100%;
}
.card-issuance__title-block {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 30px;
}
.card-issuance__title-info {
    color: var(--color-dark);
    font-size: 22px;
    font-weight: 500;
    line-height: 28.6px;
}
.card-issuance__subtitle-info {
    color: var(--color-gray);
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
}
.card-issuance__condition-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    list-style-type: none;
    margin: 0 0 30px;
    padding: 0;
}
.card-issuance__condition-list.reg-cost-filter {
    padding: 0;
}
.card-issuance__condition-list-country {
    margin-top: 10px;
}
.card-issuance__condition-item {
    display: flex;
    flex-direction: column;
    gap: 5px;
}
.card-issuance__condition-title {
    align-self: flex-start;
    color: var(--color-gray);
    font-size: 14px;
    font-weight: 400;
    line-height: 150%;
}
.card-issuance__variants-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.card-issuance__condition-item button {
    cursor: pointer;
    -webkit-user-select: none;
    user-select: none;
}
.card-issuance__variants-text {
    align-items: center;
    background-color: var(--color-white);
    border: 1px solid var(--color-gray-light-2);
    border-radius: 10px;
    color: var(--color-gray-dark);
    display: flex;
    font-size: 16px;
    font-weight: 400;
    gap: 10px;
    height: 35px;
    line-height: 150%;
    padding: 0 10px;
}
.card-issuance__variants-text:hover {
    background-color: #f2f6f9;
}
.card-issuance__variants-text.active {
    color: var(--color-white);
}
.card-issuance__variants-text.active,
.card-issuance__variants-text.active:hover {
    background-color: var(--color-gray-dark);
}
.card-issuance__description-item {
    align-items: center;
    background-color: #f2f6f9;
    border-radius: 30px;
    color: var(--color-gray);
    display: flex;
    font-size: 16px;
    font-weight: 400;
    gap: 8px;
    height: 35px;
    line-height: 150%;
    padding: 0 10px;
    text-wrap: nowrap;
}
.card-issuance__description-item svg {
    height: 14px;
    width: 14px;
}
.card-issuance__payment-system {
    color: #0a0d14;
    font-size: 16px;
    line-height: 150%;
    text-align: start;
}
.card-issuance__tariff {
    display: inline-flex;
    font-size: 16px;
    font-weight: 500;
    line-height: 150%;
    text-align: start;
    text-decoration: none;
}
.card-issuance__tariff:hover {
    opacity: 0.8;
}
.card-issuance__card-description {
    background-color: var(--color-white);
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    height: auto;
    max-width: 520px;
    width: 100%;
}
.card-issuance__header {
    background-image: var(--bg-bank-card);
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 20px 20px 0 0;
    flex-direction: column;
    gap: 30px;
    min-height: 179px;
    overflow: hidden;
    padding: 30px 30px 25px;
    position: relative;
}
.card-issuance__header,
.card-issuance__header-content {
    display: flex;
    justify-content: space-between;
}
.card-issuance__header-bank {
    height: 48px;
    width: 48px;
}
.card-issuance__header-bank svg {
    height: 100%;
    width: 100%;
}
.card-issuance__header-type {
    height: 25px;
    position: absolute;
    right: 30px;
    top: 40px;
    width: 80px;
}
.card-issuance__header-type svg {
    height: 100%;
    width: 100%;
}
.card-issuance__header-type--mastercard {
    height: 50px;
    top: 30px;
    width: 70px;
}
.card-issuance__header-content--align-main {
    align-items: center;
}
.card-issuance__header-content--align-start {
    align-items: flex-start;
}
.card-issuance__currencies-list {
    align-items: flex-end;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    list-style-type: none;
    margin: 0;
    padding: 0;
}
.card-issuance__currencies-item {
    color: var(--color-white);
    font-size: 16px;
    font-weight: 500;
    line-height: 150%;
}
.card-issuance__tariff-price {
    color: var(--color-dark);
    font-size: 35px;
    font-weight: 500;
    line-height: 1.2;
}
.card-issuance__item-info {
    align-items: flex-start;
    background-color: var(--color-white);
    border-radius: 20px;
    display: flex;
    flex: 1 1 auto;
    flex-direction: column;
    gap: 20px;
    padding: 30px;
}
.card-issuance__botton {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: auto;
    width: 100%;
}
.card-issuance__button {
    width: 100%;
}
.card-issuance__item-title {
    color: var(--color-dark);
    font-size: 35px;
    font-style: normal;
    font-weight: 500;
    line-height: 1.2;
}
.card-issuance__item-text {
    color: var(--color-gray);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
}
.card-issuance__botton-top {
    display: flex;
    gap: 16px;
    justify-content: space-between;
    margin-top: 10px;
}
.card-issuance__botton-right-tablet-768 {
    min-height: 54px;
}
.card-issuance__botton-right-tablet-768 .button {
    height: 100%;
    min-height: 54px;
}
.card-issuance__item-signature {
    align-items: center;
    display: flex;
    gap: 15px;
    margin-bottom: 10px;
}
.card-issuance__country {
    align-items: flex-start;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.card-issuance__country-name {
    color: var(--color-gray);
    font-size: 24px;
    font-weight: 500;
    line-height: 100%;
}
.opening-steps {
    background: #f3f7fc;
}
.opening-steps__wrapper {
    position: relative;
}
.opening-steps__title {
    line-height: 120%;
    margin-bottom: 30px;
    text-align: center;
}
.opening-steps__subtitle {
    margin-bottom: 50px;
    text-align: center;
}
.opening-steps__list {
    background: var(--color-brand);
    border-radius: 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    overflow: hidden;
    padding: 60px;
    position: relative;
}
.opening-steps__list--msk:before {
    background: url(../img/steps/msk-1026w.png) 100% 100% / contain no-repeat;
    bottom: 0;
    content: "";
    height: 900px;
    pointer-events: none;
    position: absolute;
    right: 0;
    width: 500px;
}
.opening-steps__item {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 370px;
    z-index: 1;
}
.opening-steps__item-num {
    color: var(--color-white);
    font-size: 80px;
    font-style: normal;
    font-weight: 500;
    line-height: 100%;
    -webkit-user-select: none;
    user-select: none;
}
.opening-steps__item-title {
    color: var(--color-white);
    font-size: 22px;
    font-weight: 500;
    line-height: 150%;
}
.opening-steps__item-text {
    color: var(--color-white);
    font-size: 16px;
    font-weight: 400;
    line-height: 150%;
}
.opening-steps__item-img {
    bottom: 0;
    height: 489px;
    position: absolute;
    right: 0;
    width: 514px;
}
.card-recharge {
    background: #f3f7fc;
    padding: 100px 0;
}
.card-recharge__title {
    line-height: 120%;
    margin-bottom: 30px;
    text-align: center;
}
.card-recharge__subtitle {
    margin-bottom: 50px;
    text-align: center;
}
.card-recharge__list {
    column-gap: 30px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    row-gap: 30px;
}
.card-recharge__item {
    background-color: var(--color-white);
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    min-height: 325px;
    padding: 30px 30px 50px;
}
.card-recharge__item-title {
    color: var(--color-dark);
    font-size: 22px;
    font-style: normal;
    font-weight: 500;
    line-height: 150%;
}
.card-recharge__item-text {
    color: var(--color-gray);
    font-weight: 400;
    line-height: 150%;
}
.card-recharge__item-img {
    height: 100px;
    width: 100px;
}
.card-recharge__item-img svg {
    height: 100%;
    width: 100%;
}
.detailed-bank__wrapper {
    background-color: var(--color-brand);
    border-radius: 20px;
    display: flex;
    min-height: 385px;
    overflow: hidden;
    padding: 70px 110px;
    position: relative;
}
.detailed-bank__left {
    display: flex;
    flex-direction: column;
    gap: 30px;
    max-width: 680px;
    position: relative;
    z-index: 1;
}
.detailed-bank__title {
    color: var(--color-white);
    font-size: 50px;
    font-weight: 500;
    line-height: 130%;
}
.detailed-bank__text {
    color: var(--color-white);
    font-size: 16px;
    font-weight: 400;
    line-height: 150%;
}
.detailed-bank__button {
    color: #fff;
}
.detailed-bank__img-wrapper--small .detailed-bank__img {
    bottom: 50%;
    max-height: 310px;
    max-width: 383px;
    right: 75px;
    transform: translateY(50%);
}
.detailed-bank__img {
    bottom: 0;
    height: 100%;
    position: absolute;
    right: 0;
    width: auto;
}
.detailed-bank__img--middle {
    height: 310px;
    right: 75px;
    top: 50%;
    transform: translateY(-50%);
}
.detailed-bank__logo {
    height: 60px;
    object-fit: contain;
    object-position: left center;
}
.extra-services__list {
    display: grid;
    gap: 30px;
    grid-template-columns: 1fr 1fr 1fr;
    list-style-type: none;
    margin: 0;
    padding: 0;
}
.extra-services__item {
    border-radius: 20px;
    display: flex;
    flex-direction: column;
}
.extra-services__item-country {
    min-height: 540px;
}
.extra-services__item-layout {
    display: flex;
    flex: 1 1 auto;
    flex-direction: column;
}
.extra-services__header {
    background-color: var(--color-brand);
    border-radius: 20px 20px 0 0;
    color: var(--color-white);
    display: flex;
    flex-direction: column;
    font-size: 35px;
    font-weight: 400;
    gap: 10px;
    height: 170px;
    justify-content: space-between;
    padding: 30px;
}
.extra-services__price {
    font-size: 35px;
    font-weight: 500;
    line-height: 1.2;
}
.extra-services__main {
    background-color: var(--color-white);
    border-radius: 0 0 20px 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    gap: 40px;
    padding: 30px;
}
.extra-services__country {
    align-items: center;
    display: flex;
    gap: 16px;
    margin-bottom: 30px;
}
.extra-services__country-img {
    height: 45px;
    object-fit: contain;
    width: 45px;
}
.extra-services__country-name {
    color: var(--color-black);
    font-size: 22px;
    font-weight: 500;
    line-height: 1.3;
}
.extra-services__info {
    display: flex;
    flex: 1 1 auto;
    flex-direction: column;
    gap: 20px;
    padding-bottom: 20px;
}
.extra-services__info-issuance {
    display: flex;
    flex-direction: column;
    gap: 5px;
}
.extra-services__info-caption {
    color: var(--color-gray);
    font-size: 14px;
    font-weight: 400;
    line-height: 150%;
}
.extra-services__info-date-issue {
    align-items: center;
    background-color: var(--color-gray-dark);
    border-radius: 10px;
    color: var(--color-white);
    display: flex;
    font-size: 16px;
    font-weight: 500;
    gap: 10px;
    height: 35px;
    line-height: 150%;
    padding: 0 10px;
    width: max-content;
}
.extra-services__description {
    color: var(--color-black);
    font-size: 16px;
    font-weight: 400;
    line-height: 150%;
}
.extra-services__description-country {
    font-weight: 600;
}
.extra-services__name {
    font-size: 22px;
    font-weight: 500;
    line-height: 1.3;
}
.extra-services__button {
    font-size: 16px;
}
.detailed-cards__wrapper {
    background: var(--color-gray-bg);
    border-radius: 20px;
    display: flex;
    min-height: 385px;
    padding: 70px 110px;
    position: relative;
}
.detailed-cards__left {
    max-width: 720px;
    z-index: 1;
}
.detailed-cards__title {
    color: var(--color-black);
    font-size: 50px;
    font-weight: 500;
    line-height: 130%;
    margin-bottom: 30px;
    max-width: 670px;
}
.detailed-cards__text {
    color: var(--color-gray);
    font-size: 16px;
    font-weight: 400;
    line-height: 150%;
    margin-bottom: 30px;
    max-width: 480px;
}
.detailed-cards__button-box {
    display: flex;
    gap: 20px;
}
.detailed-cards__button {
    align-items: center;
    display: inline-flex;
    gap: 10px;
    justify-content: center;
}
.detailed-cards__img-wrapper {
    align-items: center;
    display: flex;
    height: 310px;
    justify-content: center;
    object-fit: contain;
    position: absolute;
    right: 0;
    top: 35px;
    width: 460px;
}
.button-country {
    align-items: center;
    display: flex;
    kerning-mode: center;
    background-color: #fff;
    border: none;
    border-radius: 12px;
    color: var(--color-black);
    cursor: pointer;
    font-size: 16px;
    font-weight: 500;
    gap: 10px;
    line-height: 150%;
    min-width: 175px;
    padding: 15px 30px;
    text-align: center;
    transition:
        0.3s ease-out,
        color 0.3s ease-out;
    -webkit-user-select: none;
    user-select: none;
}
.button-country:active,
.button-country:hover {
    background-color: #e3e9f0;
}
.detailed-cards__country-img {
    height: 30px;
    object-fit: contain;
    width: 30px;
}
.what-can__title {
    line-height: 120%;
    margin-bottom: 30px;
    text-align: center;
}
.what-can__subtitle {
    line-height: 120%;
    margin-bottom: 50px;
    text-align: center;
}
.what-can__list {
    column-gap: 30px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    row-gap: 30px;
}
.what-can__item {
    border: 1px solid var(--color-divider);
    border-radius: 20px;
    min-height: 270px;
    overflow: hidden;
    padding: 30px;
    position: relative;
}
.what-can__item-title {
    color: var(--color-dark);
    font-size: 20px;
    font-weight: 500;
    line-height: 150%;
}
.what-can__item-text {
    color: var(--color-gray);
    font-weight: 400;
    line-height: 150%;
    margin-top: 20px;
}
.what-can__item-text-break {
    display: inline-block;
}
.what-can__item-text-break--mobile {
    display: none;
}
.what-can__item-img {
    bottom: 0;
    position: absolute;
    right: 0;
    width: auto;
    z-index: -1;
}
.what-can__item-img--position-1 {
    bottom: -17%;
    height: 150px;
    right: -8%;
    width: 198px;
}
.what-can__item-img--position-2 {
    bottom: -19%;
    height: 150px;
    right: 0;
    width: 163px;
}
.what-can__item-img--position-3 {
    bottom: -11%;
    height: 150px;
    right: 0;
    width: 171px;
}
.what-can__item-img--position-4 {
    bottom: -14%;
    height: 130px;
    right: 0;
    width: 157px;
}
.what-can__item-img--position-5 {
    height: 121px;
    width: 150px;
}
.what-can__item-img--position-6 {
    height: 147px;
    width: 150px;
}
.cards__list {
    display: grid;
    gap: 30px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}
.bank-card.hidden {
    display: none;
}
.bank-card__wrapper {
    background: var(--color-white);
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    height: 100%;
    overflow: hidden;
}
.bank-card__grid {
    display: grid;
    gap: 30px;
    grid-template-columns: 6fr 4fr;
}
.bank-card__header {
    display: flex;
    flex-direction: column;
    gap: 30px;
    height: 180px;
    justify-content: space-between;
    padding: 30px;
    position: relative;
}
.bank-card__bg {
    height: 100%;
    left: 0;
    object-fit: cover;
    pointer-events: none;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 1;
}
.bank-card__item {
    background: #fff;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}
.bank-card__item--info {
    padding: 40px;
}
.bank-card__payment {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.bank-card__row {
    align-items: center;
    display: flex;
    gap: 30px;
    justify-content: space-between;
    position: relative;
    z-index: 2;
}
.bank-card__network {
    align-self: flex-start;
    height: 50px;
    margin-left: auto;
    object-fit: contain;
    width: 80px;
}
.bank-card__network svg {
    height: 100%;
    width: 100%;
}
.bank-card__tag {
    align-items: center;
    border: 1px solid var(--color-white);
    border-left: none;
    border-radius: 0 8px 8px 0;
    bottom: 0;
    color: var(--color-white);
    display: flex;
    font-size: 16px;
    font-weight: 400;
    gap: 10px;
    left: 0;
    padding: 12px 16px 12px 30px;
    position: absolute;
    transform: translateY(50%);
    z-index: 3;
}
.bank-card__tag--disabled {
    background: #858a95;
}
.bank-card__tag--red {
    background: #ff2d55;
}
.bank-card__tag--purple {
    background: #6a2cd9;
}
.bank-card__tag .icon {
    flex-shrink: 0;
    height: 20px;
    width: 20px;
}
.bank-card__tag .icon svg {
    height: 100%;
    width: 100%;
}
.bank-card__logo {
    height: 45px;
    object-fit: contain;
    width: 45px;
}
.bank-card__desc {
    display: flex;
    flex-direction: column;
    gap: 5px;
}
.bank-card__desc:has(:checked) .bank-card__text {
    height: 100%;
}
.bank-card__desc:has(:checked) .bank-card__text:before {
    opacity: 0;
}
.bank-card__desc:has(:checked) .bank-card__more span:before {
    content: attr(data-open);
}
.bank-card__more {
    align-items: center;
    color: var(--color-dark);
    display: flex;
    font-size: 16px;
    font-weight: 400;
    position: relative;
}
.bank-card__more:hover {
    cursor: pointer;
}
.bank-card__more input {
    height: 100%;
    left: 0;
    pointer-events: none;
    position: absolute;
    top: 0;
    visibility: hidden;
    width: 100%;
}
.bank-card__more span {
    display: block;
}
.bank-card__more span:before {
    content: attr(data-close);
}
.bank-card__price {
    color: var(--color-white);
    flex-shrink: 0;
    font-size: 35px;
    font-weight: 500;
    line-height: 1.2;
}
.bank-card__price--black {
    color: var(--color-dark);
}
.bank-card__currencies {
    align-items: center;
    color: var(--color-white);
    display: flex;
    flex-wrap: wrap;
    font-size: 16px;
    font-weight: 500;
    gap: 10px;
}
.bank-card__content {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    gap: 30px;
    padding: 30px;
}
.bank-card__flag {
    align-items: center;
    color: var(--color-gray);
    display: flex;
    font-size: 22px;
    font-weight: 500;
    gap: 16px;
}
.bank-card__flag .icon {
    flex-shrink: 0;
    height: 45px;
    width: 45px;
}
.bank-card__info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.bank-card__title {
    color: var(--color-dark);
    font-size: 22px;
    font-weight: 500;
    line-height: 1.3;
}
.bank-card__text {
    color: var(--color-gray);
    font-size: 16px;
    font-weight: 400;
    height: 72px;
    line-height: 1.5;
    overflow: hidden;
    position: relative;
    transition: height 0.3s;
}
.bank-card__text:before {
    background: linear-gradient(180deg, #fff0, #fff);
    bottom: 0;
    content: "";
    display: block;
    height: 24px;
    left: 0;
    position: absolute;
    transition: opacity 0.3s;
    width: 100%;
    z-index: 2;
}
.bank-card__text--full {
    height: 100%;
}
.bank-card__text--full:before {
    display: none;
}
.bank-card__footer {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: auto;
}
.bank-card__filter.reg-cost-filter {
    padding: 0;
}
.cards__filter-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: space-between;
    margin: 50px 0;
    width: 100%;
}
.cards__filter-button {
    font-weight: 400;
    padding-left: 30px;
    padding-right: 30px;
    text-wrap: nowrap;
}
.cards__filter-button--active,
.cards__filter-button--active:hover {
    background-color: var(--color-gray-dark);
    color: var(--color-white);
}
.cards__filter-caption {
    color: var(--color-gray);
    font-size: 16px;
    margin: 30px 0 50px;
    text-align: center;
}
.detailed-cards-moscow__wrapper {
    background-color: #f3f7fc;
    border-radius: 20px;
    display: flex;
    min-height: 385px;
    overflow: hidden;
    padding: 70px 110px;
    position: relative;
}
.detailed-cards-moscow__left {
    display: flex;
    flex-direction: column;
    gap: 30px;
    position: relative;
    width: 70%;
    z-index: 1;
}
.detailed-cards-moscow__title {
    color: var(--color-black);
    font-size: 50px;
    font-weight: 500;
    line-height: 130%;
}
.detailed-cards-moscow__text {
    color: #64748b;
    font-size: 16px;
    font-weight: 400;
    line-height: 150%;
    max-width: 600px;
}
.detailed-cards-moscow__button {
    font-size: 16px;
    font-weight: 500;
    line-height: 150%;
    padding-bottom: 18px;
    padding-top: 18px;
    width: 215px;
}
.detailed-cards-moscow__img {
    bottom: 0;
    height: auto;
    position: absolute;
    right: 2%;
    width: 35.5%;
}
.recommends__title {
    margin-bottom: 50px;
    text-align: center;
}
.recommends {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    margin-bottom: 30px;
}
.recom-item {
    background-color: #f3f7fc;
    border-radius: 20px;
    height: 140px;
    max-width: 410px;
    padding: 25px 72px;
}
.recom-item img {
    height: 100%;
    object-fit: contain;
    width: 150px;
}
.yandex {
    margin: auto auto 100px;
    width: fit-content;
}
.yandex img {
    height: 100%;
    object-fit: none;
}
.order-total {
    display: flex;
    flex-direction: column;
    gap: 2.4rem;
}
.order-total__content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}
.order-total__row {
    display: grid;
    gap: 2rem 1.6rem;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}
.order-total__caption {
    color: var(--color-gray);
    font-size: 1.4rem;
    font-weight: 400;
    line-height: 1.5;
}
.order-total__text {
    font-size: 1.6rem;
    font-weight: 400;
}
.order-total__price,
.order-total__text {
    color: var(--color-black);
    line-height: 1.2;
}
.order-total__price {
    font-size: 2.9rem;
    font-weight: 500;
}
.order-total__title {
    color: var(--color-black);
    font-size: 2.8rem;
    font-weight: 500;
}
.order-total__block {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.order-total__block--full {
    grid-column: 1/-1;
}
.order-total__footer {
    display: flex;
    flex-direction: column;
    gap: 2.4rem;
}
.order-total__subtext {
    color: var(--color-gray);
    font-size: 1.4rem;
}
.order-total__subtext a {
    color: var(--color-gray);
    text-decoration-color: var(--color-gray);
    text-decoration: underline;
    text-underline-position: under;
}
.store-info__wrapper {
    background: var(--color-gray-bg);
    border-radius: 20px;
    display: flex;
    justify-content: space-between;
    min-height: 520px;
    padding: 50px 20px 50px 50px;
}
.store-info__title-block {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    max-width: 360px;
    width: 100%;
}
.store-info__title {
    color: var(--color-black);
    font-size: 50px;
    font-weight: 500;
    line-height: 120%;
}
.store-info__subtitle {
    color: var(--color-gray);
    font-size: 16px;
    font-weight: 400;
    line-height: 150%;
}
.store-info__slider {
    max-width: 864px;
    padding: 0 100px;
    position: relative;
    width: 100%;
}
.store-info-slider {
    border-radius: 20px;
    overflow: hidden;
}
.store-info-slider__slide img {
    border-radius: 20px;
    width: 100%;
}
.store-info-bullets.swiper-pagination {
    align-items: center;
    bottom: 30px;
    display: flex;
    justify-content: center;
    z-index: 1;
}
.store-info-bullets.swiper-pagination .swiper-pagination-bullet {
    background-color: #0000;
    border: 1px solid var(--color-black);
    border-radius: 50%;
    height: 8px;
    opacity: 1;
    width: 8px;
}
.store-info-bullets.swiper-pagination .swiper-pagination-bullet-active {
    background-color: var(--color-brand-hover);
    height: 16px;
    width: 16px;
}
.store-info__button {
    align-items: center;
    border-radius: 20px;
    bottom: 0;
    display: flex;
    height: 80px;
    justify-content: center;
    position: absolute;
    width: 80px;
    z-index: 2;
}
.store-info__button svg {
    min-height: 40px;
    min-width: 40px;
}
.store-info__button--prev {
    left: 0;
}
.store-info__button--next {
    right: 0;
}
@media (min-width: 500px) {
    .countries-list {
        grid-template-columns: repeat(3, 1fr);
    }
    .visa-hero {
        text-align: center;
    }
    .visa-hero__button {
        margin: 0 auto;
    }
    .reg-docs-section .section__hgroup {
        margin-left: 0;
        text-align: left;
    }
    .reg-docs-section .section__hgroup > * {
        text-align: left;
    }
}
@media (min-width: 768px) {
    .direction-cards {
        columns: 30rem;
        gap: 2rem;
        margin-bottom: -1rem;
    }
    .direction-card {
        margin-bottom: 2rem;
    }
    .pl-wrapper {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        max-width: fit-content;
    }
}
@media screen and (min-width: 768px) {
    .order-total {
        background-color: #fff;
        border-radius: 2rem;
        gap: 2rem;
        padding: 2rem;
    }
}
@media (min-width: 960px) {
    .breadcrumb {
        font-size: 1.6rem;
        line-height: 2.2rem;
        padding: 3rem 0;
    }
    .select-direction__header {
        display: grid;
        grid-template-columns: 1fr 23.5rem;
        grid-template-rows: auto 1fr;
        margin-bottom: -2rem;
    }
    .select-direction__header:after {
        aspect-ratio: 235/138;
        grid-column: 2;
        grid-row: 1/3;
        transform: translateY(0);
    }
    .direction-cards {
        columns: 35.6rem;
        gap: 3rem;
        margin-bottom: -2rem;
    }
    .direction-card {
        margin-bottom: 3rem;
        padding: 1.5rem;
    }
    .direction-card__title {
        font-size: 2rem;
        margin-top: 0.7rem;
    }
    .direction-card__text {
        font-size: 1.4rem;
        line-height: 2rem;
    }
    .countries-panel {
        margin-bottom: 10rem;
        padding: 5rem;
    }
    .countries-panel + .countries-panel {
        margin-top: -7rem;
    }
    .countries-panel__lists {
        display: grid;
        gap: 2rem;
        grid-template-columns: repeat(4, 1fr);
    }
    .countries-panel__lists:has(.countries-panel__col:only-child) {
        display: flex;
    }
    .countries-panel__col:only-child .countries-list {
        display: grid;
        gap: 2rem;
        grid-template-columns: repeat(4, 1fr);
    }
    .countries-list {
        display: flex;
        flex-direction: column;
    }
    .visa-hero {
        display: grid;
        gap: 3rem;
        grid-template-columns: 1fr 1fr;
        padding: 0;
        text-align: left;
    }
    .visa-hero__content {
        gap: 4rem;
        justify-content: center;
        min-width: 0;
        padding: 2rem 5rem;
    }
    .visa-hero__button {
        margin: 0;
    }
    .pl-wrapper {
        max-width: none;
        padding-top: 10rem;
    }
    .reg-cost-section > .container {
        gap: 4rem;
    }
    .reg-cost {
        background-color: #0000;
        column-gap: 3rem;
        display: grid;
        grid-template-areas: "filter panel";
        grid-template-columns: 1fr min(50% - 1.5rem, 52rem);
        grid-template-rows: auto auto 1fr;
    }
    .reg-cost > * {
        grid-area: panel;
    }
    .reg-cost__header {
        background: var(--color-white);
        gap: 3rem;
        grid-row: 1;
        padding: 3rem;
    }
    .reg-cost__body {
        background-color: var(--color-white);
        grid-row: 2;
        padding: 0 3rem;
    }
    .reg-cost__body .reg-cost__caption {
        font-size: 1.6rem;
        line-height: 2.2rem;
    }
    .reg-cost-filter {
        background-color: var(--color-white);
        border-radius: 2rem;
        grid-area: filter;
        grid-row: 1/4;
        padding: 3rem 3rem 4rem;
    }
    .reg-cost-filter .reg-cost__caption {
        font-size: 1.4rem;
        line-height: 2rem;
    }
    .reg-cost-filter .form__field {
        align-self: auto;
        flex: initial;
        max-width: none;
        min-width: auto;
    }
    .reg-cost-filter .label-radio {
        font-size: 1.6rem;
        line-height: 2.2rem;
    }
    .reg-cost-filter__header {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }
    .reg-cost__footer {
        background-color: var(--color-white);
        grid-row: 3;
        height: 100%;
        padding: 2rem 3rem 3rem;
    }
    .reg-cost__footer .reg-cost__caption {
        font-size: 1.6rem;
        line-height: 2.2rem;
    }
    .reg-cost__apply {
        margin-top: auto;
    }
    .reg-docs-section .section__hgroup {
        margin-bottom: -6rem;
    }
    .reg-docs .accordion-item {
        padding: 2.5rem;
    }
    .reg-docs .accordion-button {
        display: flex;
        flex-wrap: wrap;
        gap: 1rem;
    }
    .reg-docs .accordion-button .button-text {
        flex: 1 0 0;
        font-size: 2.2rem;
        line-height: 2.9rem;
    }
    .reg-docs .accordion-button .button-caption {
        flex: 1 0 0;
    }
    .reg-docs .accordion-button .icon {
        align-self: center;
    }
    .reg-docs__item {
        flex-direction: row;
        flex-wrap: wrap;
        padding-right: 4.4rem;
        padding-top: 1.1rem;
    }
    .reg-docs__type {
        flex: 1 0 0;
        font-size: 1.8rem;
        line-height: 2.3rem;
    }
    .reg-docs__desc {
        flex: 1 0 0;
        font-size: 1.6rem;
        line-height: 2.2rem;
    }
}
@media screen and (min-width: 1025px) {
    .bank-card__price--mobile {
        display: none;
    }
    .bank-card__title--big {
        font-size: 35px;
    }
    .bank-card__footer--mobile {
        display: none;
    }
}
@media (min-width: 1330px) {
    .countries-panel {
        padding: 5rem 8rem;
    }
    .visa-hero__content {
        padding: 2rem 8rem;
    }
}
@media (max-width: 1250px) {
    .store-info__wrapper {
        min-height: auto;
    }
    .store-info__slider {
        max-width: 664px;
    }
}
@media screen and (max-width: 1240px) {
    .cards__list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}
@media (max-width: 1230px) {
    .detailed-bank__img-wrapper--small {
        opacity: 0.5;
    }
}
@media (max-width: 1200px) {
    .detailed-bank__img {
        right: -5%;
    }
    .detailed-bank__img--middle {
        right: 0;
    }
}
@media (max-width: 1100px) {
    .card-issuance__card-info {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }
    .card-issuance__card-description {
        max-width: 100%;
    }
}
@media screen and (max-width: 1024px) {
    .bank-card__grid {
        border-radius: 20px;
        gap: 0;
        grid-template-columns: minmax(0, 1fr);
        overflow: hidden;
    }
    .bank-card__item {
        border-radius: 0;
    }
    .bank-card__item--info {
        grid-row-start: 2;
        padding: 0 20px 30px;
    }
    .bank-card__payment,
    .bank-card__price--desktop {
        display: none;
    }
    .bank-card__content {
        gap: 20px;
        padding: 30px 20px;
    }
    .bank-card__content--page {
        padding-bottom: 20px;
    }
    .bank-card__footer--desktop {
        display: none;
    }
}
@media (max-width: 1023px) {
    .intro__title {
        font-size: 35px;
    }
    .intro__title-main {
        margin-bottom: 30px;
    }
    .intro__decor-img {
        opacity: 0.2;
        width: 38%;
    }
    .opening-steps__list {
        padding: 30px 20px;
    }
    .card-recharge {
        padding: 50px 0;
    }
    .card-recharge__list {
        grid-template-columns: 1fr 1fr;
    }
    .detailed-bank__wrapper {
        padding: 70px 30px 65px;
    }
    .detailed-bank__title {
        font-size: 35px;
    }
    .detailed-bank__img-wrapper {
        opacity: 0.5;
    }
    .extra-services__list {
        grid-template-columns: 1fr 1fr;
    }
    .detailed-cards__wrapper {
        padding: 30px 20px;
    }
    .detailed-cards__title {
        font-size: 35px;
        margin-bottom: 20px;
    }
    .detailed-cards__img-wrapper {
        opacity: 0.2;
        right: 0;
        top: 35px;
    }
    .what-can__list {
        grid-template-columns: 1fr 1fr;
    }
    .cards__filter-list {
        flex-wrap: nowrap;
        margin: 30px 0 20px;
        overflow-x: auto;
    }
    .detailed-cards-moscow__wrapper {
        padding: 50px 20px;
    }
    .detailed-cards-moscow__title {
        font-size: 30px;
    }
    .store-info__wrapper {
        flex-direction: column;
        gap: 30px;
        padding: 0;
    }
    .store-info__title-block {
        gap: 14px;
        max-width: 100%;
    }
    .store-info__title {
        font-size: 35px;
    }
    .store-info__slider {
        max-width: 100%;
        padding: 0 0 100px;
    }
    .store-info-bullets.swiper-pagination {
        bottom: 40px;
        min-height: 16px;
    }
    .store-info__button {
        bottom: 20px;
        height: 60px;
        min-width: 60px;
        width: 60px;
    }
    .store-info__button svg {
        min-height: 32px;
        min-width: 32px;
    }
    .store-info__button--prev {
        left: 20px;
    }
    .store-info__button--next {
        right: 20px;
    }
}
@media (hover: none) and (pointer: coarse) and (max-width: 959.98px) {
    .breadcrumb {
        max-height: 4rem;
        overflow: hidden;
        width: 100%;
    }
    .breadcrumb__list {
        flex-wrap: nowrap;
        overflow: auto hidden;
        padding-bottom: 3rem;
    }
    .breadcrumb__item {
        white-space: nowrap;
    }
}
@media (max-width: 820px) {
    .card-issuance__botton {
        width: 100%;
    }
}
@media (max-width: 802px) {
    .card-issuance__botton {
        width: 310px;
    }
    .card-issuance__botton-top {
        gap: 12px;
    }
}
@media (max-width: 767px) {
    .comparison-cards__title {
        margin-bottom: 20px;
        text-align: left;
    }
    .comparison-cards__subtitle {
        margin-bottom: 30px;
        text-align: left;
    }
    .comparison-cards__table-item {
        flex-direction: column;
        padding: 15px 20px;
        row-gap: 10px;
        gap: 5px;
    }
    .comparison-cards__table-possibilities,
    .comparison-cards__table-text {
        width: 100%;
    }
    .comparison-cards__explanation {
        padding: 20px;
    }
    .comparison-cards__explanation-box {
        align-items: flex-start;
        flex-direction: column;
        gap: 30px;
    }
    .comparison-cards__explanation-text {
        font-size: 16px;
    }
    .intro__wrapper {
        flex-direction: column;
        gap: 30px;
    }
    .intro__wrapper,
    .intro__wrapper-bank {
        padding-bottom: 0;
        padding-top: 57px;
    }
    .intro__wrapper-country {
        padding-bottom: 50px;
        padding-top: 57px;
    }
    .intro__content-bank {
        max-width: 100%;
    }
    .intro__content-country {
        align-items: center;
        max-width: 100%;
    }
    .button-aos {
        width: 100%;
    }
    .intro__button {
        max-width: unset;
    }
    .intro__button-main {
        margin-top: 34px;
    }
    .intro__button-bank {
        margin-top: 15px;
    }
    .intro__button-country {
        margin-top: 0;
    }
    .intro__decor-img {
        align-items: center;
        display: flex;
        justify-content: center;
        margin-top: 6px;
        opacity: 1;
    }
    .intro__decor-img-bank {
        margin-top: 0;
    }
    .intro__decor-img-country {
        margin-top: 46px;
    }
    .intro__decor-img-moscow {
        margin-top: 115px;
        position: relative;
    }
    .intro__decor-img {
        max-width: unset;
        position: relative;
        right: 0;
        width: 356px;
    }
    .intro__decor-img-bank {
        bottom: 0;
        left: calc(50% - 191px);
        right: unset;
        width: 382px;
    }
    .intro__decor-img-msk,
    .intro__decor-img-page {
        bottom: 0;
        right: 0;
        transform: translateY(0);
        width: 100%;
    }
    .intro__decor-cards-country {
        bottom: 0;
        opacity: 1;
        right: -1%;
        width: 96%;
    }
    .intro__decor-cards-moscow-cards {
        bottom: 5.2%;
        position: absolute;
        right: 33%;
        width: 329px;
    }
    .intro__decor-cards-moscow-banner {
        bottom: -19px;
        height: 291px;
        right: -24.3%;
        width: 296px;
    }
    .card-issuance__title {
        margin-bottom: 30px;
    }
    .card-issuance__card-info {
        grid-template-columns: 1fr;
    }
    .card-issuance__card-info--desktop {
        display: none;
    }
    .card-issuance__card-info--mobile {
        display: flex;
    }
    .card-issuance__card-info--mobile .card-issuance__content {
        width: 100%;
    }
    .card-issuance__condition-list {
        margin-bottom: 0;
    }
    .card-issuance__condition-list-country {
        margin-top: 0;
    }
    .card-issuance__header {
        padding: 30px 20px 20px;
    }
    .card-issuance__header-content {
        align-items: center;
    }
    .card-issuance__header-type {
        right: 20px;
        top: 30px;
    }
    .card-issuance__header-type--mastercard {
        top: 20px;
    }
    .card-issuance__header-content--align-main {
        align-items: flex-start;
    }
    .card-issuance__tariff-price {
        color: var(--color-white);
    }
    .card-issuance__item-info {
        border-radius: 0 0 20px 20px;
        padding: 30px 20px;
    }
    .card-issuance__item-title {
        font-size: 22px;
        line-height: 29px;
    }
    .card-issuance__botton-top .buttonV2 {
        min-height: 54px;
        padding: 10px 13px;
        width: 100%;
    }
    .card-issuance__item-signature {
        margin-bottom: 0;
    }
    .card-issuance__country-name {
        font-size: 22px;
    }
    .opening-steps__item-img-wrapper {
        min-height: 158px;
    }
    .opening-steps__item-img {
        bottom: -2px;
        height: 290px;
        position: absolute;
        right: -6px;
        width: 309px;
    }
    .card-recharge__list {
        grid-template-columns: 1fr;
        row-gap: 30px;
    }
    .detailed-bank__wrapper {
        align-items: center;
        flex-direction: column;
        padding: 30px 20px 0;
    }
    .detailed-bank__button,
    .detailed-bank__left {
        width: 100%;
    }
    .detailed-bank__img-wrapper--small .detailed-bank__img {
        display: block;
        height: 239px;
        margin-bottom: 49px;
        margin-top: 53px;
        max-width: unset;
        position: relative;
        right: unset;
        transform: none;
        width: 295px;
    }
    .detailed-bank__img-wrapper {
        opacity: 0;
        opacity: 1;
    }
    .detailed-bank__img {
        display: block;
        height: 271px;
        max-width: unset;
        position: relative;
        width: 332px;
    }
    .extra-services__list {
        grid-template-columns: 1fr;
    }
    .extra-services__item,
    .extra-services__item-country {
        min-height: 100%;
    }
    .extra-services__header {
        height: 100%;
        padding: 30px 20px;
    }
    .extra-services__info {
        gap: 16px;
        padding-bottom: 40px;
    }
    .detailed-cards__wrapper {
        align-items: center;
        flex-direction: column;
    }
    .detailed-cards__left {
        margin-bottom: 14px;
    }
    .detailed-cards__text-country {
        font-size: 15px;
    }
    .detailed-cards__button-box {
        flex-direction: column;
    }
    .detailed-cards__img-wrapper {
        height: 190px;
        opacity: 1;
        position: relative;
        right: 0;
        width: 275px;
    }
    .what-can__list {
        grid-template-columns: 1fr;
        row-gap: 20px;
    }
    .what-can__item {
        padding: 30px 20px;
    }
    .what-can__item-text-break {
        display: none;
    }
    .what-can__item-text-break--mobile {
        display: inline-block;
    }
    .what-can__item-img--position-1 {
        bottom: -16%;
        right: 0;
        transform: translateX(50%);
    }
    .what-can__item-img--position-2 {
        bottom: -17%;
        height: 147px;
        right: 0;
        transform: translateX(15%);
        width: 155px;
    }
    .what-can__item-img--position-3 {
        bottom: -5%;
        height: 133px;
        right: -7.5%;
        width: 155px;
    }
    .what-can__item-img--position-4 {
        right: 0;
        transform: translateX(20%);
    }
    .what-can__item-img--position-5 {
        bottom: -12px;
        right: -32px;
    }
    .what-can__item-img--position-6 {
        bottom: -12px;
        right: -21px;
    }
    .detailed-cards-moscow__left {
        width: 100%;
    }
    .detailed-cards-moscow__text {
        font-size: 16px;
    }
    .store-info__wrapper {
        align-items: center;
        flex-direction: column;
        min-width: 100%;
        padding: 30px 20px;
    }
}
@media screen and (max-width: 767px) {
    .thank-you__img {
        max-width: 280px;
    }
    .thank-you__text {
        gap: 0;
    }
    .installment-label__wrapper {
        padding: 15px 0;
    }
    .installment-label__row {
        gap: 20px;
    }
    .installment-label__img {
        height: 25px;
    }
    .installment-promo__wrapper {
        align-items: flex-start;
        background: linear-gradient(180deg, #12c2e9, #c471ed 50%, #f64f59);
        flex-direction: column;
        padding: 30px 20px;
    }
    .installment-promo__banks {
        gap: 20px;
    }
    .installment-promo__title {
        font-size: 35px;
    }
    .installment-promo__row {
        gap: 10px;
    }
    .installment-promo__img {
        height: 25px;
    }
    .comparison-cards__explanation-button {
        gap: 1rem;
    }
    .title-signature {
        font-size: 22px;
    }
    .title-signature .country-img {
        height: 45px;
        width: 45px;
    }
    .сard-issuance {
        padding-top: 50px;
    }
    .opening-steps__title {
        margin-bottom: 20px;
        text-align: left;
    }
    .opening-steps__subtitle {
        margin-bottom: 30px;
        text-align: left;
    }
    .opening-steps__list--msk {
        padding-bottom: 200px;
    }
    .opening-steps__list--msk:before {
        width: 400px;
    }
    .card-recharge__title {
        margin-bottom: 20px;
        text-align: left;
    }
    .card-recharge__subtitle {
        margin-bottom: 30px;
        text-align: left;
    }
    .card-recharge__item {
        min-height: unset;
        padding: 30px 20px;
    }
    .detailed-bank__img--middle {
        height: 100%;
        margin: 45px 0 25px;
        top: 0;
        transform: translateY(0);
        width: 100%;
    }
    .detailed-bank__logo {
        height: 40px;
    }
    .extra-services__main {
        padding: 30px 20px;
    }
    .extra-services__country {
        margin-bottom: 20px;
    }
    .extra-services__country-name {
        color: var(--color-gray);
        font-size: 20px;
    }
    .extra-services__name {
        font-size: 20px;
    }
    .cards__list {
        gap: 20px;
        grid-template-columns: minmax(0, 1fr);
    }
    .bank-card__header {
        padding: 20px;
    }
    .bank-card__tag,
    .cards__filter-caption {
        display: none;
    }
    .cards .h1 {
        margin-bottom: 20px;
        text-align: left;
    }
    .recommends__title {
        margin-bottom: 30px;
        text-align: left;
    }
    .recom-item {
        align-items: center;
        display: flex;
        height: 160px;
        justify-content: center;
        max-width: 100%;
        width: 100%;
    }
    .yandex {
        margin-bottom: 50px;
        padding: 20px 0;
    }
    .order-total__content {
        background-color: #f3f7fc;
        border-radius: 2rem;
        display: flex;
        flex-direction: column;
        gap: 1.2rem;
        padding: 2rem;
    }
    .order-total__row {
        grid-template-columns: minmax(0, 1fr);
    }
    .order-total__title {
        font-size: 3.5rem;
    }
    .order-total__subtext {
        text-align: left;
    }
}
@media (max-width: 500px) {
    .card-issuance__currencies-list {
        max-width: 100px;
    }
}
@media (max-width: 375px) {
    .intro__decor-cards-moscow-cards {
        bottom: 31.2%;
        position: absolute;
        right: -3.7%;
        width: 332px;
    }
    .card-issuance__botton {
        width: 295px;
    }
    .detailed-cards-moscow__img {
        right: -10%;
        width: 60%;
    }
}
.intro__button-bank:hover {
    color: #000;
}
.button-country:hover {
    color: #000 !important;
}
