* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

input,
button,
textarea {
    border: 0;
    background: none;
    outline: none;
}

a {
    text-decoration: none;
    color: inherit;
}

ul,
ol {
    list-style: none;
}

::-webkit-scrollbar {
    display: none;
}

svg-icon-sprite {
    aspect-ratio: 1/1;
    display: block;
    width: 20px;
}

svg-icon-sprite svg {
    display: block;
    width: 100%;
    height: 100%;
    fill: var(--button-text-color);
}

body {
    background-color: var(--main-theme-color);
    font-size: 16px;
    line-height: 1.2;
    font-weight: 600;
    color: var(--text-color);
    font-family: "Geologica", sans-serif;
}

body.hidden {
    overflow: hidden;
}

.container {
    width: calc(100% - 40px);
    margin: 0 auto;
    max-width: 1920px;
}

header {
    height: 64px;
    position: sticky;
    top: 0;
    z-index: 99;
    background-color: var(--fh-bg-color);
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

header .container {
    height: 100%;
    max-width: none;
    width: 100%;
    padding: 0 2px 0 20px;
}

header.active .header__btn:last-child {
    color: var(--button-text-color);
}

.header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.header__left {
    display: flex;
    align-items: center;
    gap: 30px;
}

.burger {
    display: none;
}

.header__logo {
    width: 143px;
}

.header__logo img {
    width: 100%;
    height: 100%;
    display: block;
}

.header__icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.header__icon svg-icon-sprite {
    width: 100%;
}

.header__right {
    display: flex;
    gap: 2px;
}

.header__search {
    display: flex;
    align-items: center;
    gap: 8px;
    height: 59px;
    width: 300px;
    padding: 0 20px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    background-color: var(--button-bg-color);
    letter-spacing: -0.03em;
    color: var(--button-text-color)
}

.header__search svg-icon-sprite {
    width: 16px;
}

.header__btn {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 59px;
    padding: 0 24px;
    text-align: center;
    position: relative;
    border-radius: 8px;
    letter-spacing: -0.02em;
    line-height: 1;
    text-transform: uppercase;
    border-right: 1px solid var(--border-color);
    border-left: 1px solid var(--border-color);
    text-shadow: 0 1px 0 rgb(0, 0, 0);
    background-color: var(--button-bg-color);
    color: var(--button-text-color);
}

.header__btn:before {
    position: absolute;
    top: 0;
    left: -1px;
    width: calc(100% + 2px);
    height: calc(100% + 1px);
    content: "";
    z-index: 1;
    border-radius: 8px;
    box-shadow: inset 0 -1px 0 rgb(0, 0, 0);
}

.sidebar {
    position: fixed;
    left: 0;
    top: 64px;
    height: calc(100vh - 64px);
    width: 232px;
    z-index: 99;
    overflow: auto;
    display: flex;
    flex-direction: column;
    transition-duration: 0.3s;
    background-color: var(--fh-bg-color);
    border-inline-end: 1px solid rgba(255, 255, 255, 0.08);
}

.sidebar .header__search {
    display: none;
}

.sidebar.active {
    width: 80px;
}

.sidebar.active .sidebar__list a::after {
    display: none;
}

.sidebar.active .sidebar__list a span:nth-child(2) {
    display: none;
}

.sidebar.active .sidebar__footer {
    grid-template-columns: repeat(1, 1fr);
}

.sidebar.active .sidebar__footer a span {
    display: none;
}

.sidebar__menu {
    display: flex;
    flex-direction: column;
    border-top: 1px solid var(--border-color);
}

.sidebar__line {
    height: 1px;
    margin: 0 6px;
    background-color: 1px solid var(--border-color);
}

.sidebar__line:last-child {
    display: none;
}

.sidebar__list {
    display: flex;
    flex-direction: column;
    position: relative;
    padding: 4px 6px;
    gap: 1px;
}

.sidebar__list:nth-child(12)::after {
    display: none;
}

.sidebar__list:nth-child(4) li:first-child a {
    background-color: var(--button-bg-color);
    color: var(--button-text-color);
}

.sidebar__list:nth-child(4) li:first-child a span:nth-child(1) svg-icon-sprite svg {
    fill: var(--button-text-color);
}

.sidebar__list:nth-child(4) li:first-child a:after,
.sidebar__list:nth-child(4) li:first-child a:before {
    background-color: var(--button-bg-color);
    opacity: 1;
}

.sidebar__list li {
    width: 100%;
}

.sidebar__list a {
position: relative;
    display: flex;
    align-items: center;
    height: 52px;
    gap: 12px;
    width: 100%;
    padding: 0 16px;
    color: var(--button-text-color);
    letter-spacing: -0.04em;
    font-weight: 600;
    transition: 0.3s;
    text-transform: uppercase;
    background: var(--button-bg-color);
    border-radius: 8px;
}

.sidebar__list a:after,
.sidebar__list a:before {
    content: "";
    width: 2px;
    height: 18px;
    border-radius: 8px;
    background-color: rgb(252, 252, 252);
    position: absolute;
    left: 0;
    transition-duration: 0.3s;
    opacity: 0;
}

.sidebar__list a::after {
    opacity: 0;
    left: auto;
    right: 0;
}

.sidebar__list a span:nth-child(1) {
    width: 20px;
    min-width: 20px;
    aspect-ratio: 1/1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sidebar__list a span:nth-child(1) svg-icon-sprite {
    width: 100%;
}

.sidebar__list a span:nth-child(1) svg-icon-sprite svg {
    fill: var(--button-text-color);
}

.sidebar__list a span:nth-child(2) {
    min-width: -moz-max-content;
    min-width: max-content;
}


.sidebar__list a:hover:before {
    opacity: 1;
}

.sidebar__footer {
    margin-top: auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    position: sticky;
    bottom: 0;
    z-index: 2;
    padding: 3px 8px 3px 3px;
    gap: 2px;
        background: var(--fh-bg-color);
}

.sidebar__footer a {
    position: relative;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    height: 60px;
    font-size: 12px;
    line-height: 1.2;
    font-weight: 700;
    background: var(--button-bg-color);
    box-shadow: 0 2px rgb(0, 0, 0), 0 2px 0 0 rgba(255, 255, 255, 0.25) inset, 0 -2px 0 0 rgba(0, 0, 0, 0.25);
    gap: 8px;
    color: var(--button-text-color);
    letter-spacing: -0.02em;
    border-right: 1px solid var(--border-color);
    border-left: 1px solid var(--border-color);
    border-radius: 8px;
    text-transform: uppercase;
}

.sidebar__footer a span {
    min-width: -moz-max-content;
    min-width: max-content;
}

.sidebar__footer a img,
.sidebar__footer a svg-icon-sprite {
    width: 16px;
    aspect-ratio: 1/1;
    -o-object-fit: cover;
    object-fit: cover;
    border-radius: 50%;
}

.sidebar__footer a img svg,
.sidebar__footer a svg-icon-sprite svg {
    fill: rgb(255, 255, 255);
}

.wrap {
    padding-left: 232px;
    transition-duration: 0.3s;
}

.wrap.active {
    padding-left: 80px;
}

.banner--wrap .container {
    width: 100%;
}

.banner {
    aspect-ratio: 1816/550;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    border-bottom: 2px solid var(--border-color);
}


.banner__img {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.banner__img img {
    width: 100%;
    height: 100%;
    /* -o-object-fit: cover;
    object-fit: cover; */
    display: block;
}

.banner__img video {
    position: absolute;
    height: 100%;
    width: auto;
    inset: 0;
    right: unset;
    left: 50%;
    transform: translate(-27%);
}

.banner__content {
    z-index: 1;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 600px;
    height: 100%;
    padding-left: 72px;
}

.banner__content p:nth-child(1) {
    font-size: 20px;
    line-height: 1.2;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: -0.04em;
    color: var(--title-color);
}

.banner__content p:nth-child(2) {
margin-top: 8px;
    font-size: 35px;
    line-height: 1.1;
    letter-spacing: -0.05em;
    font-weight: 900;
    text-transform: uppercase;
    max-width: 500px;
    font-family: "Unbounded", sans-serif;
    word-wrap: break-word;
    color: var(--text-color);
}

.banner__content a {
    margin-top: 24px;
    height: 90px;
    width: 430px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    font-size: 24px;
    padding: 0 10px;
    border-width: 0 1px;
    border-style: solid;
    border-color: transparent;
    border-radius: 10px;
    text-align: center;
    font-family: "Unbounded", sans-serif;
    letter-spacing: -0.02em;
    line-height: 1;
    text-shadow: 0 1px 0 rgb(255, 255, 255);
    text-transform: uppercase;
    background-color: var(--button-bg-color);
    text-shadow: 0 1px 0 rgb(255, 255, 255);
    color: var(--button-text-color);
}

.top--menu {
    top: 63px;
    z-index: 9;
    position: sticky;
    overflow: hidden;
    max-width: 1920px;
    margin: 0 auto;
    background-color: var(--fh-bg-color);
    padding: 16px 0 8px 20px;
}

.top__menu {
    position: relative;
}

.top__menu::after {
    content: "";
    position: absolute;
    height: 100%;
    width: 60px;
    right: 0;
    top: 0;
    background-image: linear-gradient(270deg, var(--fh-bg-color) 50%, rgba(255, 255, 25, 0) 100%);
}

.top__menu__row {
    overflow-x: auto;
    padding: 0 20px 8px 0;
}

.top__menu__row::-webkit-scrollbar {
    display: block;
    height: 11px;
}

.top__menu__row::-webkit-scrollbar-thumb {
    background: var(--button-bg-color);
}

.top__menu__row::-webkit-scrollbar-track {
    background: transparent;
}

.top__menu__row ul {
    display: flex;
    gap: 4px;
    min-width: -moz-max-content;
    min-width: max-content;
    justify-content: center;
}

.top__menu__row ul li:last-child {
    position: relative;
    z-index: 2;
}

.top__menu__row ul a {
    display: flex;
    align-items: center;
    flex-direction: column;
    text-align: center;
    gap: 12px;
    min-width: 120px;
    padding: 16px 12px;
    text-transform: uppercase;
    background-color: var(--button-bg-color);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.25), inset 0 -1px 0 rgba(0, 0, 0, 0.25);
    border-right: 1px solid var(--border-color);
    border-left: 1px solid var(--border-color);
    border-radius: 8px;
    font-size: 14px;
    line-height: 1.2;
    font-weight: 700;
    letter-spacing: -0.04em;
    color: var(--button-text-color)
}

.top__menu__row ul a span {
    position: relative;
}

.top__menu__row ul a span:nth-child(1) {
    width: 42px;
    aspect-ratio: 1/1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.top__menu__row ul a span:nth-child(1) img {
    width: 100%;
    height: 100%;
}

.cards {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.cards__row {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.cards__row:nth-child(3) .cards__list {
    grid-template-columns: repeat(3, 1fr);
}

.cards__row:nth-child(3) .cards__item__body {
    aspect-ratio: 614/409;
}

.cards__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.cards__title {
    font-size: 24px;
    font-weight: 900;
    line-height: 1.2;
    letter-spacing: -0.02em;
    font-family: "Unbounded", sans-serif;
    text-transform: uppercase;
}

.cards__line {
    display: none;
}

.cards__nav {
    display: flex;
    align-items: center;
    gap: 12px;
}

.cards__nav p {
    font-size: 12px;
    line-height: 1;
    font-weight: 900;
    font-family: "Unbounded", sans-serif;
    text-transform: uppercase;
    letter-spacing: -0.02em;
    color: var(--button-bg-color);
}

.cards__arrows {
    display: flex;
    align-items: center;
    gap: 1px;
}

.cards__arrows span {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--button-bg-color);
    box-shadow: 0 1px rgba(255, 255, 255, 0.1) inset, 0 1px rgba(0, 0, 0, 0.2) inset, 0 1px rgb(0, 0, 0);
    transition-duration: 0.3s;
    border-radius: 6px;
    border-right: 1px solid linear-gradient(0deg, var(--border-color), var(--border-color)), linear-gradient(238.42deg, var(--border-color) 5%, rgba(73, 73, 73, 0) 76%);
    border-left: 1px solid linear-gradient(0deg, var(--border-color), var(--border-color)), linear-gradient(238.42deg, var(--border-color) 5%, rgba(73, 73, 73, 0) 76%);
}

.cards__arrows span svg-icon-sprite {
    width: 24px;
}

.cards__arrows span svg-icon-sprite svg {
    fill: var(--button-text-color);
}

.cards__arrows span:first-child svg-icon-sprite,
.cards__arrows span:hover svg-icon-sprite {
    width: 24px;
}

.cards__arrows span:first-child svg-icon-sprite svg,
.cards__arrows span:hover svg-icon-sprite svg {
    fill: var(--button-text-color);
}

.cards__list {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    gap: 8px;
}

.cards__item__body {
    position: relative;
    max-height: 235px;
    max-width: 175px;
    overflow: hidden;
    border: 3px solid var(--border-color);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3px;
}

.cards__item__body span {
    display: none;
}

.cards__item__body img {
    width: 100%;
    height: 100%;
    display: block;
    -o-object-fit: cover;
    object-fit: cover;
    border-radius: 4px;
}

.cards__item__title {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 1;
    margin-top: 8px;
    font-size: 14px;
    letter-spacing: -0.04em;
    color: rgb(110, 110, 110);
}

.content--wrap {
    padding: 40px 80px;
    position: relative;
}

.content {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.content__item {
    font-size: 18px;
    line-height: 1.4;
    font-weight: 500;
    color: var(--text-color)
}

.content__item h1,
.content__item h2,
.content__item h3,
.content__item h4 {
    font-weight: 600;
    color: var(--title-color)
}

.content__item h1 {
    font-size: 40px;
    margin-bottom: 10px;
}

.content__item h2 {
    font-size: 35px;
    margin-bottom: 10px;
}

.content__item h3 {
    font-size: 27px;
    margin-bottom: 10px;
}

.content__item h4 {
    font-size: 20px;
    margin-bottom: 10px;
}

.content__item p,
.content__item .content__table {
    margin-bottom: 20px;
}

.content__item ol,
.content__item ul {
    padding-left: 50px;
    list-style: auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 17px;
}

.content__item ol p,
.content__item ul p {
    margin-bottom: 15px;
}

.content__item ol p:first-child,
.content__item ul p:first-child {
    font-weight: 900;
}

.content__item ul {
    list-style: disc;
}

.content__item h3:last-child,
.content__item ol:last-child,
.content__item p:last-child,
.content__item .content__table:last-child {
    margin-bottom: 0;
}

.content__item.faq .faq__item {
    margin-bottom: 25px;
}

.content__item.faq .faq__item p,
.content__item.faq .faq__item ol,
.content__item.faq .faq__item ul,
.content__item.faq .faq__item .content__table {
    margin-bottom: 15px;
}

.content__item.faq .faq__item p:last-child,
.content__item.faq .faq__item ol:last-child,
.content__item.faq .faq__item ul:last-child,
.content__item.faq .faq__item .content__table:last-child {
    margin-bottom: 0;
}

.content__item.faq .faq__item p:first-child {
    margin-bottom: 15px;
    font-size: 25px;
    font-weight: 900;
}

.content__item.faq .faq__item:last-child {
    margin-bottom: 0;
}

.content__item table {
    border-collapse: collapse;
    margin-bottom: 17px;
    width: 100%;
}

.content__item th,
.content__item td {
    padding: 12px;
    border: 1px solid rgb(255, 255, 255);
    text-align: left;
    font-weight: 500;
}



.content__item th {
    background: url(../images/general-btn-texture.eed5816bd7ebd50b.svg) repeat-x left center padding-box, linear-gradient(0deg, var(--border-color), var(--border-color)), linear-gradient(238.42deg, var(--border-color) 5%, rgba(64, 64, 64, 0) 76%);
}

footer {
    padding: 32px 0;
    position: relative;
    background-color: var(--fh-bg-color);
    border-top: 1px solid var(--border-color);
}

.footer {
    display: flex;
    flex-direction: column;
    gap: 40px;
    padding: 0 20px;
}

.footer__top {
    display: flex;
    justify-content: center;
    gap: 2px;
}

.footer__top a {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 48px;
    width: 180px;
    gap: 8px;
    font-size: 12px;
    line-height: 1;
    font-weight: 700;
    background: var(--button-bg-color);
    box-shadow: 0 2px rgb(0, 0, 0), 0 2px 0 0 rgba(255, 255, 255, 0.25) inset, 0 -2px 0 0 rgba(0, 0, 0, 0.25);
    font-family: "Unbounded", sans-serif;
    letter-spacing: -0.02em;
    line-height: 1;
    text-transform: uppercase;
    border-right: 1px solid var(--border-color);
    border-left: 1px solid var(--border-color);
    border-radius: 8px;
    text-shadow: 0 1px 0 rgb(0, 0, 0);
    color: var(--button-text-color);
}

.footer__top a svg-icon-sprite {
    width: 20px;
}

.footer__top a svg-icon-sprite svg {
    fill: var(--button-bg-color);
}

.footer__top a img {
    width: 20px;
    aspect-ratio: 1/1;
    -o-object-fit: cover;
    object-fit: cover;
    border-radius: 50%;
}

.footer__menu {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 40px;
    font-size: 14px;
    line-height: 16px;
    font-weight: 400;
    letter-spacing: -0.03em;
    text-transform: capitalize;
}

.footer__menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 16px;
    display: flex;
    flex-direction: column;
    color: var(--footer-text-color)
}

.footer__menu__title {
    font-size: 12px;
    line-height: 1.2;
    font-weight: 900;
    text-transform: uppercase;
    font-family: "Unbounded", sans-serif;
    letter-spacing: -0.02em;
    color: var(--title-color);
}

.footer__menu__item {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer__menu__item:nth-child(2) {
    margin-top: 60px;
}

.footer__pay {
    display: flex;
    justify-content: center;
    gap: 1px;
}

.footer__pay a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    width: 92px;
    height: 36px;
    padding: 6px;
    border-radius: 32px;
    color: var(--button-text-color);
    background: var(--button-bg-color);
    font-weight: 400;
    line-height: 1.2;
    font-size: 12px;
}

.footer__pay a:last-child {
    width: 80px;
}

.footer__pay a svg-icon-sprite {
    width: 12px;
}

.footer__pay a svg-icon-sprite svg {
    fill: var(--button-bg-color);
}

.footer__pay a img {
    width: 80px;
}

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

.footer__media img {
    width: 40px;
}

.footer__copyright {
    display: flex;
    align-items: center;
    flex-direction: column;
    text-align: center;
    gap: 16px;
    color: rgb(110, 110, 110);
    font-size: 12px;
    line-height: 1.4;
    font-weight: 400;
}

@media (max-width: 1919px) {
    .cards__list {
        grid-template-columns: repeat(7, 1fr);
    }
    .cards__item:nth-child(n+8) {
        display: none;
    }
    .banner {
        aspect-ratio: 1304/450;
    }
    .banner__content {
        width: 510px;
    }
    .banner__content p:nth-child(2) {
        font-size: 30px;
    }
}

@media (max-width: 1279px) {
    .burger {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 24px;
        height: 24px;
    }
    .burger svg-icon-sprite {
        width: 100%;
    }
    .burger span {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        height: 100%;
    }
    .burger span:nth-child(2) {
        display: none;
    }
    .burger.active span:nth-child(1) {
        display: none;
    }
    .burger.active span:nth-child(2) {
        display: flex;
    }
    .header__icon {
        display: none;
    }
    .header__logo {
        width: 96px;
    }
    .header__search {
        display: none;
    }
    header {
        height: 60px;
    }
    .sidebar {
        width: 420px;
        left: -420px;
        transition-duration: 0.3s;
        top: 60px;
        height: calc(100vh - 60px);
    }
    .sidebar.active {
        left: 0;
        width: 420px;
    }
    .sidebar.active .sidebar__list a::after {
        display: block;
    }
    .sidebar.active .sidebar__list a span:nth-child(2) {
        display: block;
    }
    .sidebar.active .sidebar__footer {
        grid-template-columns: repeat(2, 1fr);
    }
    .sidebar.active .sidebar__footer a span {
        display: block;
    }
    .sidebar .header__search {
        display: flex;
        width: 100%;
    }
    .wrap {
        padding-left: 0;
        position: relative;
    }
    .wrap.active {
        padding-left: 0;
    }
    .wrap.active::before {
        opacity: 1;
    }
    .wrap::before {
        content: "";
        pointer-events: none;
        z-index: 50;
        position: absolute;
        width: 100%;
        height: 100%;
        top: 0;
        transition-duration: 0.3s;
        left: 0;
        background: rgba(26, 26, 26, 0.85);
        opacity: 0;
    }
    .cards__list {
        grid-template-columns: repeat(6, 1fr);
    }
    .cards__item:nth-child(n+7) {
        display: none;
    }
    .cards__arrows {
        display: none;
    }
    .footer__menu {
        grid-template-columns: repeat(4, 1fr);
    }
    .footer__column:nth-child(n+5) {
        display: none;
    }
    .content--wrap {
        padding: 40px 0px;
    }
    .footer {
        padding: 0;
    }
    .banner {
        aspect-ratio: 768/250;
    }
    .banner__img video {
        display: none;
    }
    .banner__content {
        padding-left: 20px;
        width: 410px;
    }
    .banner__content p:nth-child(1) {
        font-size: 16px;
    }
    .banner__content p:nth-child(2) {
        font-size: 28px;
    }
    .banner__content a {
        width: 400px;
    }
    .top--menu {
        top: 59px;
        padding: 8px 0 4px 20px;
    }
    .top__menu__row {
        padding: 0 20px 4px 0;
    }
    .top__menu__row::-webkit-scrollbar {
        height: 5px;
    }
    .top__menu__row ul a {
        flex-direction: row;
        padding: 11px 16px;
        min-width: auto;
        gap: 8px;
    }
    .top__menu__row ul a span:nth-child(1) {
        width: 30px;
    }
    .top__menu::after {
        display: none;
    }
    .cards__title {
        font-size: 20px;
    }
    .sidebar__menu {
        padding: 12px 20px 32px;
    }
    .sidebar .header__search {
        margin-bottom: 8px;
    }
}

@media (max-width: 767px) {
    .sidebar {
        width: 100%;
        left: -100%;
    }
    .sidebar.active {
        width: 100%;
    }
    .cards__list {
        grid-template-columns: repeat(3, 1fr);
    }
    .cards__item:nth-child(n+7) {
        display: none;
    }
    .content__item ol,
    .content__item ul {
        padding-left: 30px;
    }
    .content__item {
        font-size: 16px;
    }
    .content__table th,
    .content__table td {
        padding: 8px;
    }
    .footer__menu {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px 20px;
        padding: 0 30px;
    }
    .footer__top {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }
    .footer__top a {
        width: 100%;
    }
    .footer__pay {
        flex-wrap: wrap;
    }
    .cards__row:nth-child(3) .cards__list {
        grid-template-columns: repeat(1, 1fr);
    }
    .banner {
        aspect-ratio: 375/710;
        padding-bottom: 20px;
    }
    .banner:before {
        height: 70%;
        width: 100%;
        bottom: 0;
        left: 0;
    }
    .banner__img {
        /* height: 258px; */
    }
    .banner__content {
        padding: 0px 20px;
        width: 100%;
        justify-content: flex-end;
        align-items: center;
        text-align: center;
    }
    .banner__content p:nth-child(2) {
        margin-top: 4px;
        font-size: 24px;
    }
    .banner__content a {
        width: 100%;
        height: 80px;
        margin-top: 8px;
    }
    .header__left {
        gap: 15px;
    }
    .header__btn {
        height: 55px;
        padding: 0 8px;
        font-size: 12px;
    }
    header .container {
        width: 100%;
        margin: 0 auto;
        padding: 0 2px 0 10px;
        max-width: 1920px;
    }
}

@media (max-width: 370px) {
    .header__btn {
        padding: 0 4px;
        font-size: 10px;
    }
    .sidebar__menu {
        padding: 12px 12px 32px;
    }
}

@media (max-width: 569px) {
    .content__item th, .content__item td {
       padding: 6px 3px;
        font-size: 10px;
        max-width: 60px;
    }
}

.banner__content p {
    text-shadow: 0 0 20px black;
}

.content--wrap img {
    max-width: 100%;
    display: block;
    margin: 17px auto;
}

.main-button {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 350px;
  width: 100%;
  height: 60px;
  font-size: 18px;
  font-weight: 600;
  color: var(--button-text-color);
  cursor: pointer;
  text-align: center;
  border-radius: 6px;
  text-decoration: none;
  background: var(--button-bg-color);
  border-width: initial;
  border-style: none;
  border-color: initial;
  border-image: initial;
  margin: 25px auto;
}

/* contanct form */
.contact-form {
  background: var(--fh-bg-color);
  padding: 2rem;
  border-radius: 12px;
  box-shadow: -2px 1px 8px 5px rgba(0, 0, 0, 0.1);
  max-width: 800px;
  margin: 50px auto;
}

.contact-form label {
  font-size: 14px;
}

.contact-form h2 {
  text-align: center;
  margin-bottom: 1rem;
}
.contact-form input,
.contact-form textarea,
.contact-form button {
  width: 100%;
  padding: 10px;
  margin-top:5px;
  margin-bottom: 15px;
  border-radius: 8px;
  border: 1px solid #ccc;
  background-color: var(--main-theme-color);
  font-size: 1rem;
}
.contact-form button {
  background-color: #a91f09;
  color: var(--text-color);
  border: none;
  cursor: pointer;
  transition: background 0.2s ease;
}
.contact-form button:hover {
  background-color: #691204;
}
.success-contact {
  text-align: center;
  color: green;
  font-weight: 500;
  padding: 50px 0;
  animation: fadeIn 0.4s ease-in;
}

.success-contact h2 {
  color: green;
  font-weight: 500;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

aside {
    font-size: 14px;
}