:root {
    --White: #fff;
    --Black: #131415;
    --black-70: rgba(19, 20, 21, 0.70);
    --light-blue: #27BFB3;
}

/* Raleway */
@font-face {
    font-family: 'Raleway';
    font-style: normal;
    font-weight: 900;
    src: local("Raleway"), url("fonts/Raleway-Black.ttf") format("truetype");
}

@font-face {
    font-family: 'Raleway';
    font-style: normal;
    font-weight: 800;
    src: local("Raleway"), url("fonts/Raleway-ExtraBold.ttf") format("truetype");
}

@font-face {
    font-family: 'Raleway';
    font-style: normal;
    font-weight: 700;
    src: local("Raleway"), url("fonts/Raleway-Bold.ttf") format("truetype");
}

@font-face {
    font-family: 'Raleway';
    font-style: normal;
    font-weight: 600;
    src: local("Raleway"), url("fonts/Raleway-SemiBold.ttf") format("truetype");
}

@font-face {
    font-family: 'Raleway';
    font-style: normal;
    font-weight: 500;
    src: local("Raleway"), url("fonts/Raleway-Medium.ttf") format("truetype");
}

@font-face {
    font-family: 'Raleway';
    font-style: normal;
    font-weight: 400;
    src: local("Raleway"), url("fonts/Raleway-Regular.ttf") format("truetype");
}

@font-face {
    font-family: 'Raleway';
    font-style: normal;
    font-weight: 300;
    src: local("Raleway"), url("fonts/Raleway-Light.ttf") format("truetype");
}

@font-face {
    font-family: 'Raleway';
    font-style: normal;
    font-weight: 200;
    src: local("Raleway"), url("fonts/Raleway-ExtraLight.ttf") format("truetype");
}

@font-face {
    font-family: 'Raleway';
    font-style: normal;
    font-weight: 100;
    src: local("Raleway"), url("fonts/Raleway-Thin.ttf") format("truetype");
}


body {
    margin: 0;

}

.wrapper {
    font-family: "Raleway", sans-serif;
    font-weight: 400;
    overflow-x: hidden;
    min-height: 100vh;
    display: flex;
    color: var(--Black);
    flex-direction: column;

}

main {
    flex: 1 1 auto;
}

.container {
    max-width: 1570px;
    margin: 0 auto;
    padding: 0 15px;
}

.container-small {
    max-width: 1050px;
    margin: 0 auto;
    padding: 0 15px;
}

ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

aside,
footer,
header,
section {
    display: block;
}

a,
a:visited {
    text-decoration: none;
}

a:hover {
    text-decoration: none;
}

a {
    color: inherit;
}

input,
button,
textarea {
    font-family: inherit;
}

button {
    font-family: inherit;
    cursor: pointer;
    outline: none;
    border: none;

}

button::-moz-focus-inner {
    padding: 0;
    border: 0;
}

img {
    vertical-align: top;
}

h1, h2, h3, h4, p {
    margin: 0;
}

.no-scroll {
    overflow: hidden;
}

/* Components */
/* top-section */
.top {
    display: flex;
    flex-direction: column;
    gap: 16px;
    justify-content: center;
    align-items: center;
    text-align: center;
    text-transform: uppercase;
    font-variant-numeric: lining-nums proportional-nums;
    margin-bottom: 100px;
}

.top-text {
    color: var(--black-70);
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 16px; /* 114.286% */
    letter-spacing: 2px;
}

.top-title {
    position: relative;
    font-size: 52px;
    font-style: normal;
    font-weight: 300;
    line-height: 56px; /* 107.692% */
    letter-spacing: 3px;
    text-transform: uppercase;
    max-width: 1043px;
}

.top-title::before {
    content: "";
    position: absolute;
    bottom: -45px;
    left: 50%;
    transform: translate(-50%, 0%);
    width: 128px;
    height: 1px;
    background: var(--light-blue);
}


/*-------*/
/*button*/
.button {
    display: inline-block;
    width: fit-content;
    padding: 12px 48px;
    font-size: 12px;
    font-weight: 500;
    line-height: 16px; /* 133.333% */
    letter-spacing: 2px;
    text-transform: uppercase;
    background: transparent;
    transition: .3s;
    border-radius: 24px;
    border: 1px solid var(--black-70);
    color: rgba(0, 0, 0, 0.70);
}

.button:hover {
    border: 1px solid var(--light-blue);
    background: var(--light-blue);
    color: var(--White);
}

/*------- */
/* Skeleton */

.skeleton {
    background: linear-gradient(
            90deg,
            #e0e0e0 25%,
            #f0f0f0 50%,
            #e0e0e0 75%
    );
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
    /*height: 100%;*/
    width: fit-content;
    height: 100%;
    border: none;
    color: transparent;
    /*width: 100%;*/
    border-radius: 24px;
}

.skeleton:hover {
    background: linear-gradient(
            90deg,
            #e0e0e0 25%,
            #f0f0f0 50%,
            #e0e0e0 75%
    );
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
    border: none;
    color: transparent;
}

@keyframes shimmer {
    0% {
        background-position: 200% 0;
    }
    100% {
        background-position: -200% 0;
    }
}

/* --------- */
/*pagination*/
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 48px;
}

.pagination-prev, .pagination-page.prev{
    transform: rotate(-180deg);
}

.pagination-page {
    font-variant-numeric: lining-nums proportional-nums;
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: 32px; /* 133.333% */
    transition: 0.3s;
}


.pagination-page:hover {
    color: rgba(19, 20, 21, 0.30);
}

.active-page {
    color: rgba(19, 20, 21, 0.30);

}

/* --------- */
/*input*/
.input-item {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.input-item-label {
    color: var(--black-70);
    font-size: 14px;
    font-weight: 400;
    line-height: 24px; /* 171.429% */
}

.input-item-inner {
    padding: 20px 28px;
    border-radius: 15px;
    border: 1px solid var(--black-70);
    background: rgba(255, 255, 255, 0.70);
    outline: none;
    color: var(--black-70);
    font-variant-numeric: lining-nums proportional-nums;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px; /* 150% */
    width: 100%;
    box-sizing: border-box;
}

.input-item-body {
    position: relative;
    width: 100%;
}

.input-select {
    padding: 20px 100px 20px 28px;
}

.input-item-icons {
    position: absolute;
    top: 50%;
    right: 28px;
    transform: translate(0, -50%);
    display: flex;
    align-items: center;
    z-index: 5;

}

.input-item-icons button {
    background: transparent;
}

.input-item-icons-close {
    display: none;
}

.input-item-body-select {
    box-sizing: border-box;
    width: 100%;
    position: absolute;
    top: 30px;
    left: 0;
    flex-direction: column;
    gap: 17px;
    padding: 20px 28px;
    border-radius: 15px;
    border: 1px solid var(--black-70);
    background: #FFF;
    display: flex;

}

.input-item-icons-arrow img {
    transition: 0.3s;
}

.input-item-icons-arrow.active-arrow img {
    transform: rotate(180deg);
}

/*---------*/
/*form-item*/
.form-politic {
    margin-bottom: 15px;
}

/* -------*/
/*checkbox*/
.checkbox {
    position: absolute;
    z-index: -1;
    opacity: 0;
}


.checkbox + label {
    display: inline-flex;
    user-select: none;
}

.checkbox + label::before {
    content: '';
    display: inline-block;
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    flex-grow: 0;
    border-radius: 4px;
    border: 1px solid var(--black-70);
    background-color: #FFF;
    margin-right: 12px;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 50% 50%;
}

.checkbox:checked + label::before {
    border-color: var(--light-blue);
    background-color: var(--light-blue);
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%23fff' d='M6.564.75l-3.59 3.612-1.538-1.55L0 4.26 2.974 7.25 8 2.193z'/%3e%3c/svg%3e");
}

.checkbox:not(:disabled):active + label::before {
    background-color: #b3d7ff;
    border-color: #b3d7ff;
}

.checkbox-label-inner {
    color: var(--black-70);
    font-variant-numeric: lining-nums proportional-nums;
    font-size: 18px;
    font-weight: 400;
    line-height: 26px; /* 144.444% */
}

.checkbox-label-inner a {
    color: var(--Black);
}


/*tabs*/
.tabs {
    border-bottom: 1px solid var(--black-70);
    margin-bottom: 40px;
}

.tabs__items {
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    overflow-x: scroll;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.tabs__items-btn {
    padding: 0 40px;
    border-radius: 15px 15px 0 0;
    background: #fff;
    font-variant-numeric: lining-nums proportional-nums;
    font-size: 12px;
    font-weight: 500;
    line-height: 40px; /* 333.333% */
    letter-spacing: 2px;
    text-transform: uppercase;
    white-space: nowrap;
}

.active-tab {
    background: rgba(0, 0, 0, 0.70);
    color: var(--White);
}

/*---------*/
/*hero*/
.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    max-height: 500px;
}


/*-------*/
/*Header*/
.header {
    background: rgba(0, 0, 0, 0.20);
    padding: 29px 0;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    transition: 0.3s;
    z-index: 10;
    transform: translateY(0);

}

.black_header {
    background: #000;
}

.header.hidden {
    transform: translateY(-100%);
}

.header__body-logo {
    display: none;
}

.header__inner {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    transition: 0.3s;
}

.header__body-burger {
    display: none;
}

.header__inner-nav {
    margin-right: auto;
}

.header__inner-logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%)
}

.header__inner-nav-list {
    display: flex;
    align-items: center;
    gap: 32px;
}

.header__inner-button {
    margin-left: auto;
}

.header__inner-nav-list-item-link {
    color: var(--White);
    font-size: 14px;
    font-weight: 500;
    line-height: 24px;
    transition: .3s;
}

.header__inner-nav-list-item-link:hover {
    color: #27BFB3
}


.header__inner-bottom {
    display: none;
}

.header__inner-button {
    color: var(--White);
    border-radius: 35px;
    border: 1px solid rgba(255, 255, 255, 0.70);
}

.header__inner-auth {
    display: flex;
    align-items: center;
    gap: 29px;
}

.header__inner-auth-balance {
    display: flex;
    align-items: center;
    gap: 14px;

    color: var(--White);
    font-variant-numeric: lining-nums proportional-nums;
    font-size: 14px;
    font-weight: 500;
    line-height: 130%;
    font-variant: small-caps;
}

/*--------*/
/*footer*/

.footer {
    padding: 56px 0;
    background: #131415;
}

.footer__top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #fff;
    padding-bottom: 56px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.10);
    margin-bottom: 56px;
}

.footer__top-info {
    display: flex;
    gap: 40px;
}

.footer__top-info-item {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer__top-info-item span {
    color: rgba(255, 255, 255, 0.70);
    font-variant-numeric: lining-nums proportional-nums;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px; /* 155.556% */
}

.footer__top-info-link {
    font-variant-numeric: lining-nums proportional-nums;
    font-size: 28px;
    font-weight: 400;
    line-height: 34px; /* 121.429% */
    transition: 0.3s;
}

.footer__top-info-link:hover {
    color: #27BFB3;
}


.footer__top-info-social {
    display: flex;
    justify-content: end;
    gap: 24px;
}

.footer__nav {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding-right: 200px;
    padding-bottom: 56px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.10);
    margin-bottom: 56px;
}

.footer__nav-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer__nav-list-item {
    font-variant-numeric: lining-nums proportional-nums;
    font-size: 18px;
    font-weight: 400;
    line-height: 28px; /* 155.556% */
}

.footer__nav-body-item {
    color: rgba(255, 255, 255, 0.70);
    font-variant-numeric: lining-nums proportional-nums;
    font-size: 18px;
    font-weight: 400;
    line-height: 28px;
    margin-bottom: 16px;
}

.footer__nav-list-item-link {
    color: var(--White);
    transition: 0.3s;
}

.footer__nav-list-item-link:hover {
    color: var(--light-blue);
}

.footer__about-text {
    color: rgba(255, 255, 255, 0.70);
    font-variant-numeric: lining-nums proportional-nums;
    font-size: 14px;
    font-weight: 400;
    line-height: 24px; /* 171.429% */
}

.footer__about-link {
    margin-top: 20px;
    border-radius: 35px;
    border: 1px solid rgba(255, 255, 255, 0.70);
    color: var(--White);

}

.footer__about {
    padding-bottom: 56px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.10);
    margin-bottom: 56px;
}

.footer__bottom {
    display: flex;
    justify-content: space-between;
    color: rgba(255, 255, 255, 0.70);
    font-variant-numeric: lining-nums proportional-nums;
    font-size: 12px;
    font-weight: 400;
    line-height: 20px; /* 166.667% */
    gap: 30px;
}

.footer__bottom-up {
    display: flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: rgba(255, 255, 255, 0.70);
}

.footer__bottom-politic {
    display: flex;
    align-items: center;
    gap: 30px;

}

.footer__bottom-politic-link {
    transition: 0.3s;

}

.footer__bottom-politic-link:hover {
    color: var(--light-blue);
}

.footer__nav-body-item-arrow {
    display: none;
}

.footer__bottom-politic-mobile {
    display: none;
}

/*filter*/
.filter {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 40px;
}

.filter__item label {

    padding: 0 10px;
    border-radius: 23px;
    border: 1px solid rgba(19, 20, 21, 0.10);
    max-width: fit-content;

    color: var(--black-70);
    font-variant-numeric: lining-nums proportional-nums;
    font-size: 12px;
    font-weight: 500;
    line-height: 40px; /* 333.333% */
    font-variant: small-caps;
    letter-spacing: 2px;
}


.filter__item-checkbox {
    position: absolute;
    z-index: -1;
    opacity: 0;
}

.filter__item-checkbox + label {
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    user-select: none;
}

.filter__item-checkbox + label::before {
    content: '';
    display: inline-block;
    width: 22px;
    height: 22px;
    flex-shrink: 0;
    flex-grow: 0;
    border-radius: 100%;
    margin-left: 10px;
    border: 1px solid var(--black-70);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 50% 50%;
}

.filter__item-checkbox:checked + label {
    border: 1px solid rgba(0, 0, 0, 0.00);
    background: rgba(0, 0, 0, 0.10);
}

.filter__item-checkbox:checked + label::before {
    background-color: var(--light-blue);
    border-color: var(--light-blue);
    background-image: url("components/icons/filter-icon.svg");
}

.filter__item-checkbox:not(:disabled):active + label::before {
    background-color: var(--light-blue);
}

/*modal*/
.modal-news {
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 21;
    background: rgba(0, 0, 0, 0.9);
    overflow-y: scroll;

}


.active-modal.modal-news {
    opacity: 1;
    visibility: visible;
}

.modal-news-close {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    background: transparent;
}

.modal-news__body {
    background: #f8f8f8;
    display: flex;
    flex-direction: column;
    max-width: 1048px;
    margin: 60px auto;
    position: relative;
}


.modal-news__body-header {
    background: var(--White);
    padding: 15px;
    text-align: end;
}

.modal-news__body-img {
    width: 100%;
    height: 100%;
    max-height: 544px;
    object-fit: cover;
}

.modal-news__body-inner {
    padding: 40px 30px;
}

.modal-news__body-inner-date {
    color: var(--black-70);
    text-align: center;
    font-variant-numeric: lining-nums proportional-nums;
    font-size: 14px;
    font-weight: 500;
    line-height: 16px; /* 114.286% */
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.modal-news__body-inner-title {
    text-align: center;
    font-variant-numeric: lining-nums proportional-nums;
    font-size: 36px;
    font-weight: 400;
    margin-bottom: 30px;
    line-height: 44px; /* 122.222% */
}

.modal-news__body-inner-text {
    color: var(--black-70);
    font-variant-numeric: lining-nums proportional-nums;
    font-size: 18px;
    font-weight: 400;
    line-height: 28px;
    margin-bottom: 70px;
}

.modal-news__body-inner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    max-height: 494px;
    margin-bottom: 30px;
}


.modal-support__body {
    background: var(--White);
    padding: 40px 179px;
}

.modal-support__body-subtitle {
    color: var(--White);
    text-align: center;
    font-size: 14px;
    font-weight: 500;
    line-height: 16px; /* 114.286% */
    letter-spacing: 2px;
    text-transform: uppercase;
}

.modal-support__body-title {
    text-align: center;
    font-variant-numeric: lining-nums proportional-nums;
    font-size: 36px;
    font-weight: 300;
    line-height: 56px; /* 155.556% */
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 70px;
}

.modal-support__body-form {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.modal-support__body-form-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

/*modal-info__body-inner*/
.modal-info__body-inner {
    padding: 40px 20px 80px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background: var(--White);
}

.modal-info__body-inner-title {

    font-variant-numeric: lining-nums proportional-nums;
    font-size: 36px;
    font-weight: 300;
    line-height: normal;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 30px;
}

.modal-info__body-inner-text {
    color: #000;
    font-variant-numeric: lining-nums proportional-nums;
    font-size: 14px;
    font-weight: 500;
    line-height: 16px; /* 114.286% */
    font-variant: small-caps;
    margin-bottom: 45px;
}

.d-none{
    display: none;
}

@media(max-width: 1500px){
    .header__inner-nav-list{
        gap: 15px;
    }

    .header__inner-nav-list-item-link{
        font-size: 12px;
    }
}

@media (max-width: 1280px) {
    .header__inner {
        position: fixed;
        top: 76px;
        left: -120%;
        height: 100vh;
        z-index: 10;
        display: flex;
        flex-direction: column;
        width: 100%;
        align-items: start;
        margin-right: unset;
        gap: 60px;
        justify-content: start;
        background: rgba(0, 0, 0, 0.70);
        padding: 30px;
        backdrop-filter: blur(40px);
    }

    .header__inner-nav-list {
        flex-direction: column;
        align-items: start;
    }

    .header__inner-button {
        margin-left: unset;
    }

    .header__body-logo {
        display: block;
    }

    .header__inner-logo {
        display: none;
    }

    .header__body {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .header__body-burger {
        position: relative;
        width: 24px;
        height: 9px;
        z-index: 20;
        display: block;
        background: transparent;
    }

    .header__body-burger::after,
    .header__body-burger::before {
        content: "";
        transition: all 0.3s ease 0s;
        right: 0;
        position: absolute;
        width: 100%;
        height: 2px;
        background-color: var(--White);
    }

    .header__body-burger::before {
        top: 0;
    }

    .header__body-burger::after {
        bottom: 0;
    }

    .opened-burger.header__body-burger::before {
        top: calc(50% - 1px);
        transform: rotate(-45deg);
    }

    .opened-burger.header__body-burger span {
        width: 0;
    }

    .opened-burger.header__body-burger::after {
        bottom: calc(50% - 1px);
        transform: rotate(45deg);
    }

    .opened-menu {
        left: 0;
    }

    .hidden-body {
        overflow: hidden;
    }

    .header__inner-nav-list-item-link {
        font-size: 18px;
        color: rgba(255, 255, 255, 0.70);

    }

    .header__inner-bottom {
        display: flex;
        flex-direction: column;
        gap: 34px;
        margin-top: auto;
        margin-bottom: 160px;
    }

    .header__inner-bottom-body {
        display: flex;
        flex-direction: column;
        gap: 4px;
    }

    .header__inner-bottom-body span {
        color: rgba(255, 255, 255, 0.70);
        font-size: 12px;
        font-weight: 500;
        line-height: 16px; /* 133.333% */
        letter-spacing: 2px;
        text-transform: uppercase;
    }

    .header__inner-bottom-body-link {
        color: #FFF;
        font-size: 22px;
        font-weight: 400;
        line-height: 24px; /* 109.091% */
        font-variant-numeric: lining-nums proportional-nums;

    }

    .header__inner-bottom-body-social {
        display: flex;
        gap: 20px;
    }

}

@media (max-width: 1103px) {
    .modal-news__body {
        margin: 30px;
    }

}

@media (max-width: 1024px) {
    .footer__nav {
        padding-right: 0;
    }

    .footer__bottom {
        align-items: baseline;
    }

    .footer__bottom-politic {
        align-items: start;
        gap: 5px;
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .footer {
        padding: 30px 0;
    }

    .footer__top {
        flex-direction: column;
        align-items: start;
        padding-bottom: 30px;
        margin-bottom: 30px;
    }

    .footer__top-info {
        flex-direction: column;
    }

    .footer__top-logo {
        margin-bottom: 30px;
    }

    .footer__top-info-item {
        gap: 5px;
    }

    .footer__top-info-social {
        justify-content: start;
    }

    .footer__top-info {
        gap: 30px;
    }

    .footer__nav {
        flex-direction: column;
        border-bottom: unset;
        padding-bottom: 0;
        margin-bottom: 32px;
    }

    .footer__nav-body {
        padding-bottom: 16px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.10);
    }

    .footer__nav-list {
        display: none;
    }

    .footer__nav-body-item {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .footer__nav-body-item-arrow {
        display: block;
        transition: 0.3s;
    }

    .active-footer-item .footer__nav-body-item-arrow {
        transform: rotate(-180deg);
    }

    .modal-support__body {
        padding: 40px;
    }

    .modal-support__body-title {
        margin-bottom: 40px;
    }
}

@media (max-width: 650px) {
    .top-title {
        font-size: 42px;
    }
}

@media (max-width: 550px) {
    .top-title {
        font-size: 32px;
        line-height: 36px
    }

    .top-text {
        font-size: 12px;
        line-height: 16px; /* 133.333% */

    }

    .pagination {
        gap: 30px;
    }

    .checkbox-label-inner {
        font-size: 16px;
    }

    .tabs__items-btn {
        font-size: 10px;
        padding: 0 20px;
    }

    .tabs-possiblities {
        border-bottom: none;
        margin-bottom: 40px;
    }

    .tabs-possiblities__items {
        flex-direction: column;
        gap: 10px;
    }

    .tabs-possiblities__items-btn {
        font-size: 12px;
        font-weight: 500;
        line-height: 40px; /* 333.333% */
        letter-spacing: 2px;
        text-transform: uppercase;
        border-radius: 20px;
        white-space: wrap;
        width: 100%;
    }

    .hero-img {
        height: 250px;
    }

    .footer__nav-body-item {
        font-size: 16px;
        margin-bottom: 0;
    }

    .footer__top-info-item {
        gap: 0;
    }

    .footer__nav-list-item {
        font-size: 16px;
    }

    .footer__top-info-item span {
        font-size: 16px;
    }

    .footer__top-info-link {
        font-size: 22px;
    }

    .footer__nav {
        gap: 16px;
    }

    .footer__about {
        padding-bottom: 30px;
        margin-bottom: 32px;
    }

    .footer__bottom-politic {
        display: none;
    }

    .footer__bottom-politic-mobile {
        display: flex;
        flex-direction: column;
        align-items: center;

        color: rgba(255, 255, 255, 0.70);
        font-variant-numeric: lining-nums proportional-nums;
        font-size: 12px;
        font-style: normal;
        font-weight: 400;
        gap: 15px;
        line-height: 20px; /* 166.667% */
        padding-bottom: 32px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.10);
        margin-bottom: 32px;
    }

    .modal-news__body-inner {
        padding: 20px 15px;
    }

    .modal-news__body-inner-title {
        font-size: 20px;
        line-height: 27px;
        margin-bottom: 15px;
    }

    .modal-news__body-inner-text {
        font-size: 14px;
        line-height: 22px;
        margin-bottom: 30px;
    }

    .modal-support__body-subtitle {
        font-size: 12px;
        line-height: 16px; /* 133.333% */

    }

    .modal-support__body-title {
        font-size: 30px;
        line-height: 34px; /* 113.333% */
    }

    .modal-support__body-form-buttons {
        flex-direction: column;
    }


    .filter__item label{
        font-size: 10px;
        padding: 0 8px;
        letter-spacing: 1px;
    }
}

@media (max-width: 432px) {
    .header__inner-auth {
        flex-direction: column;
        align-items: start;
        gap: 10px;
    }
}