* {
  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;
  width: 20px;
  display: block;
}
svg-icon-sprite svg {
  display: block;
  width: 100%;
  height: 100%;
  fill: rgb(177, 124, 89);
}

svg {
  aspect-ratio: 1/1;
  width: 20px;
  height: auto;
  display: block;
}

body {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.2;
  background-color: rgb(25, 90, 56);
  color: rgb(249, 239, 200);
  font-family: "Lexend Giga", serif;
  letter-spacing: -2px;
}
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;
}
header:before {
  background: linear-gradient(rgb(170, 84, 56) 0%, rgb(80, 44, 21) 100%);
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
}
header:after {
  inset-inline-start: 64px;
  height: 100%;
  background-image: -webkit-image-set(url(../images/header.webp) type("image/webp") 1x, url(../images/header@2x.webp) type("image/webp") 2x);
  background-image: image-set(url(../images/header.webp) type("image/webp") 1x, url(../images/header@2x.webp) type("image/webp") 2x);
  background-position: center;
  background-size: 100% 100%;
  background-repeat: no-repeat;
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
}
header .container {
  height: 100%;
  max-width: none;
  width: calc(100% - 20px);
  margin: 0 20px 0 0;
}

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

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

.burger {
  display: none;
}

.header__logo {
  width: 95px;
  aspect-ratio: 95/54;
}
.header__logo img {
  width: 100%;
  height: 100%;
  display: block;
}

.header__icon {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url(../images/header-menu.webp);
  background-size: 100% 100%;
  background-position: center;
  background-repeat: no-repeat;
}
.header__icon svg-icon-sprite {
  width: 28px;
}
.header__icon svg-icon-sprite svg {
  fill: rgb(255, 241, 127);
}

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

.header__search {
  display: flex;
  align-items: center;
  gap: 8px;
  height: 48px;
  width: 300px;
  padding: 0 16px;
  position: relative;
  border-radius: 12px;
  background-image: url(../images/left.webp), url(../images/center.webp), url(../images/right.webp);
  background-size: 12px 100%, calc(100% - 24px) 100%, 12px 100%;
  background-position: left center, center, right center;
  background-repeat: no-repeat;
  font-size: 14px;
}
.header__search:after {
  background-color: rgb(80, 44, 21);
  mix-blend-mode: hard-light;
  position: absolute;
  z-index: -1;
  inset: 0;
  border-radius: inherit;
  content: "";
}
.header__search svg {
  width: 16px;
}

.header__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 48px;
  font-weight: 900;
  line-height: 1;
  text-align: center;
  text-decoration: none;
  text-transform: capitalize;
  position: relative;
  border-radius: 0 16px;
  padding: 0 28px;
  color: rgb(255, 255, 255);
  text-shadow: -1px -1px 0 var(--stb-button-content-stroke-color, rgb(154, 63, 25)), 1px -1px 0 var(--stb-button-content-stroke-color, rgb(154, 63, 25)), -1px 1px 0 var(--stb-button-content-stroke-color, rgb(154, 63, 25)), 1px 1px 0 var(--stb-button-content-stroke-color, rgb(154, 63, 25)), -1px var(--stb-button-content-shadow-offset, 2px) 0 var(--stb-button-content-shadow-color, rgb(80, 44, 21)), 1px var(--stb-button-content-shadow-offset, 2px) 0 var(--stb-button-content-shadow-color, rgb(80, 44, 21));
}
.header__btn span {
  position: relative;
}
.header__btn:before {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background-image: url(../images/tertiary-left.webp), url(../images/tertiary-center.webp), url(../images/tertiary-right.webp);
  background-repeat: no-repeat;
  background-position: left center, center, right center;
  background-size: 20px 100%, calc(100% - 38px) 100%, 20px 100%;
  content: "";
}
.header__btn:last-child:before {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background-image: url(../images/primary-alt-left.webp), url(../images/primary-alt-center.png), url(../images/primary-alt-right.webp);
  background-repeat: no-repeat;
  background-position: left center, center, right center;
  background-size: 20px 100%, calc(100% - 38px) 100%, 20px 100%;
  content: "";
}

.sidebar {
  position: fixed;
  left: 0;
  top: 64px;
  height: calc(100vh - 64px);
  width: 232px;
  z-index: 99;
  background-color: rgb(247, 232, 189);
  overflow: auto;
  display: flex;
  flex-direction: column;
}
.sidebar .header__search {
  display: none;
}

.sidebar__menu {
  display: flex;
  flex-direction: column;
  padding: 12px;
  gap: 12px;
}

.sidebar__list {
  display: flex;
  flex-direction: column;
  position: relative;
  background-color: rgb(234, 208, 162);
  border-radius: 12px;
}
.sidebar__list li {
  width: 100%;
}
.sidebar__list a {
  display: flex;
  align-items: center;
  gap: 12px;
  transition-duration: 0.3s;
  height: 48px;
  color: rgb(120, 84, 60);
  font-weight: 800;
  padding: 0 18px;
  position: relative;
}
.sidebar__list a span {
  position: relative;
}
.sidebar__list a img {
  width: 20px;
  aspect-ratio: 1/1;
  position: relative;
}
.sidebar__list a:hover {
  background: rgb(253, 236, 200);
  color: rgb(164, 112, 0);
  width: calc(100% + 24px);
  margin-left: -12px;
  padding: 0 30px;
}
.sidebar__list a:hover:before {
  inset: 0;
  background-image: url(../images/menu-item-bg-left.webp), url(../images/menu-item-bg-center.webp), url(../images/menu-item-bg-right.webp);
  background-size: 0 100%, calc(100% - 0px - 40px) 100%, 40px 100%;
  background-position: left center, 0 center, right center;
  background-repeat: no-repeat;
  position: absolute;
  content: "";
}
.sidebar__list:nth-child(2) a {
  background: rgb(253, 236, 200);
  color: rgb(164, 112, 0);
  width: calc(100% + 24px);
  margin-left: -12px;
  padding: 0 30px;
}
.sidebar__list:nth-child(2) a:before {
  inset: 0;
  background-image: url(../images/menu-item-bg-left.webp), url(../images/menu-item-bg-center.webp), url(../images/menu-item-bg-right.webp);
  background-size: 0 100%, calc(100% - 0px - 40px) 100%, 40px 100%;
  background-position: left center, 0 center, right center;
  background-repeat: no-repeat;
  position: absolute;
  content: "";
}

.sidebar__footer {
  margin-top: auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  position: sticky;
  bottom: 0;
  gap: 2px;
  padding: 0 4px;
}
.sidebar__footer a {
  position: relative;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  height: 60px;
  background-image: -webkit-image-set(url(../images/board-left.webp) type("image/webp")), -webkit-image-set(url(../images/board-center.webp) type("image/webp")), -webkit-image-set(url(../images/board-right.webp) type("image/webp"));
  background-image: image-set(url(../images/board-left.webp) type("image/webp")), image-set(url(../images/board-center.webp) type("image/webp")), image-set(url(../images/board-right.webp) type("image/webp"));
  background-size: 24px 100%, calc(100% - 48px) 100%, 24px 100%;
  background-repeat: no-repeat;
  background-position: left center, center, right center;
  color: rgb(255, 255, 255);
  line-height: 1.2;
  text-align: center;
  font-weight: 800;
  font-size: 12px;
  text-shadow: -1px -1px 0 var(--stb-button-content-stroke-color, rgb(154, 63, 25)), 1px -1px 0 var(--stb-button-content-stroke-color, rgb(154, 63, 25)), -1px 1px 0 var(--stb-button-content-stroke-color, rgb(154, 63, 25)), 1px 1px 0 var(--stb-button-content-stroke-color, rgb(154, 63, 25)), -1px var(--stb-button-content-shadow-offset, 2px) 0 var(--stb-button-content-shadow-color, rgb(80, 44, 21)), 1px var(--stb-button-content-shadow-offset, 2px) 0 var(--stb-button-content-shadow-color, rgb(80, 44, 21));
}
.sidebar__footer a img {
  width: 24px;
  aspect-ratio: 1/1;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 50%;
}

.wrap {
  padding-left: 232px;
}

.banner--wrap {
  padding: 40px 0;
}

.banner {
  aspect-ratio: 1880/447;
  position: relative;
}
.banner:after {
  bottom: 0;
  transform: translateY(50%) scaleY(-1);
  border-image-source: image-set(url(../images/main-banner-decor.webp) type("image/webp"));
  border-image-slice: 47;
  border-image-width: 38px;
  border-style: solid;
  position: absolute;
  inset-inline: -1px;
  z-index: 2;
  padding-top: 3%;
  max-height: 70px;
  pointer-events: none;
  content: "";
}
.banner:before {
  top: 0;
  transform: translateY(-50%);
  border-image-source: image-set(url(../images/main-banner-decor.webp) type("image/webp"));
  border-image-slice: 47;
  border-image-width: 38px;
  border-style: solid;
  position: absolute;
  inset-inline: -1px;
  z-index: 2;
  padding-top: 3%;
  max-height: 70px;
  pointer-events: none;
  content: "";
}

.banner__img {
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}
.banner__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

.banner__content {
  position: relative;
  height: 100%;
  width: 850px;
  padding: 0 122px;
  display: flex;
  flex-direction: column;
  z-index: 1;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.banner__content:before {
  top: 0;
  left: 50%;
  z-index: 0;
  height: 275px;
  width: 499px;
  transform: translate(-50%, 6px);
  -o-border-image: unset;
     border-image: unset;
  border-radius: 50%;
  border-style: none;
  background: rgba(66, 165, 245, 0.75);
  filter: blur(45px);
  will-change: transform;
  position: absolute;
  aspect-ratio: 1536/398;
  content: "";
}
.banner__content p:nth-child(1) {
  font-size: 24px;
  line-height: 1.2;
  font-weight: 800;
  color: rgb(249, 239, 200);
  text-shadow: 0 2px rgb(158, 124, 87);
  position: relative;
}
.banner__content p:nth-child(2) {
  position: relative;
  letter-spacing: -4px;
  margin-top: 2px;
  font-weight: 900;
  filter: drop-shadow(0 3px 0 rgb(154, 63, 25));
  font-size: 38px;
  background: linear-gradient(rgb(255, 241, 127) 0%, rgb(254, 233, 35) 32%, rgb(244, 192, 22) 88%, rgb(232, 148, 14) 100%);
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
          background-clip: text;
}
.banner__content a {
  position: relative;
  margin-top: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 406px;
  aspect-ratio: 406/80;
  background-image: url(../images/primary-left.webp), url(../images/primary-center.webp), url(../images/primary-right.webp);
  background-repeat: no-repeat;
  background-position: left center, center, right center;
  background-size: 48px 100%, calc(100% - 94px) 100%, 48px 100%;
  text-shadow: -1px -1px 0 var(--stb-button-content-stroke-color, rgb(154, 63, 25)), 1px -1px 0 var(--stb-button-content-stroke-color, rgb(154, 63, 25)), -1px 1px 0 var(--stb-button-content-stroke-color, rgb(154, 63, 25)), 1px 1px 0 var(--stb-button-content-stroke-color, rgb(154, 63, 25)), -1px var(--stb-button-content-shadow-offset, 2px) 0 var(--stb-button-content-shadow-color, rgb(80, 44, 21)), 1px var(--stb-button-content-shadow-offset, 2px) 0 var(--stb-button-content-shadow-color, rgb(80, 44, 21));
  font-size: 28px;
  text-transform: capitalize;
  font-weight: 900;
  color: rgb(255, 255, 255);
  letter-spacing: -5px;
  padding: 0 0 8px;
}

.top--menu {
  background-color: rgb(25, 90, 56);
  top: 64px;
  z-index: 9;
  position: sticky;
  overflow: hidden;
}

.top__menu {
  position: relative;
}
.top__menu::after {
  content: "";
  position: absolute;
  height: 100%;
  width: 60px;
  right: 0;
  top: 0;
  background-image: linear-gradient(270deg, rgb(25, 90, 56) 0%, rgba(255, 255, 255, 0) 100%);
}

.top__menu__row {
  overflow-x: auto;
  padding: 16px;
}
.top__menu__row::-webkit-scrollbar {
  display: block;
  height: 11px;
}
.top__menu__row::-webkit-scrollbar-thumb {
  background: rgb(25, 122, 66);
}
.top__menu__row::-webkit-scrollbar-track {
  background: transparent;
}
.top__menu__row ul {
  display: flex;
  gap: 12px;
  min-width: -moz-max-content;
  min-width: max-content;
  justify-content: center;
  list-style: none;
}
.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;
  justify-content: center;
  gap: 13px;
  min-width: 100px;
  max-width: 150px;
  text-align: center;
  text-shadow: 0 1px 0 rgb(10, 59, 33);
  font-weight: 800;
  position: relative;
}
.top__menu__row ul a:before {
  width: 88px;
  background: url(../images/glow-hover.webp) center/contain no-repeat;
  position: absolute;
  z-index: -1;
  aspect-ratio: 1/1;
  content: "";
  top: -10px;
  filter: blur(5px);
}
.top__menu__row ul a img {
  width: 64px;
  aspect-ratio: 1/1;
  position: relative;
}

.cards--wrap {
  margin-top: 16px;
}

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

.cards__row {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.cards__row:first-child {
  padding-bottom: 12px;
  border-bottom: 3px solid rgb(165, 126, 13);
}

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

.cards__title {
  font-size: 24px;
  line-height: 1.25;
  font-weight: 800;
  position: relative;
  text-shadow: 0 1px 1px rgb(80, 44, 21);
}

.cards__nav {
  display: flex;
  align-items: center;
  gap: 16px;
}
.cards__nav p {
  font-size: 14px;
  font-weight: 800;
  line-height: 1.4;
  color: rgb(105, 253, 219);
}

.cards__arrows {
  display: flex;
  gap: 2px;
}
.cards__arrows span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background-image: url(../images/button-icon-bg.webp);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  transition-duration: 0.3s;
  padding: 0 0 3px 1px;
}
.cards__arrows span svg-icon-sprite {
  width: 16px;
}
.cards__arrows span svg-icon-sprite .icon {
  fill: rgb(255, 241, 127);
}
.cards__arrows span:first-child, .cards__arrows span:hover {
  opacity: 0.5;
}

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

.cards__item__body {
  aspect-ratio: 221/330;
  position: relative;
  border-radius: 4px;
}
.cards__item__body::before {
  content: "";
  border-image-source: image-set(url(../images/card-frame.webp) type("image/webp"));
  border-image-slice: 46 fill;
  border-image-width: 22px;
  border-style: solid;
  position: absolute;
  inset: -4px -4px -10px -7px;
  pointer-events: none;
}
.cards__item__body img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.cards__item__body span {
  position: absolute;
  z-index: 1;
  inset: auto auto 26px -1px;
  width: 57px;
  height: 45px;
  padding: 9px 15px 4px 8px;
  font-size: 28px;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  color: rgb(255, 255, 255);
  background-image: url(../images/index-label.svg);
  background-size: cover;
  pointer-events: none;
  filter: drop-shadow(0 7px 16px rgb(80, 44, 21));
}

.cards__item__title {
  margin-top: 10px;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.35;
  text-align: center;
  color: rgb(234, 208, 162);
  filter: drop-shadow(0 1px 1px rgb(80, 44, 21));
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 1;
}

.block {
  margin: 16px 0;
  aspect-ratio: 1880/180;
  position: relative;
}
.block:after {
  border-image-source: url(../images/frame.webp);
  border-image-source: image-set(url(../images/frame.webp) type("image/webp"));
  border-image-slice: 49%;
  border-image-width: 30px;
  border-style: solid;
  position: absolute;
  inset: -9px -6px;
  content: "";
  pointer-events: none;
}

.block__img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.block__img img {
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  width: 100%;
  height: 100%;
}

.block__content {
  position: relative;
  z-index: 1;
  padding: 0 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
  width: 600px;
  text-align: center;
}
.block__content p {
  filter: drop-shadow(0 3px 0 rgb(154, 63, 25));
  font-size: 24px;
  font-weight: 800;
  line-height: 1.2;
  background: linear-gradient(rgb(255, 241, 127) 0%, rgb(254, 233, 35) 32%, rgb(244, 192, 22) 88%, rgb(232, 148, 14) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.block__content a {
  position: relative;
  margin-top: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 290px;
  aspect-ratio: 290/48;
  background-image: url(../images/primary-left.webp), url(../images/primary-center.webp), url(../images/primary-right.webp);
  background-repeat: no-repeat;
  background-position: left center, center, right center;
  background-size: 48px 100%, calc(100% - 94px) 100%, 48px 100%;
  text-shadow: 1px 1px 5px rgb(154, 63, 25);
  font-size: 18px;
  text-transform: capitalize;
  font-weight: 900;
  color: rgb(255, 255, 255);
  letter-spacing: -3px;
  box-shadow: 0 7px 16px rgb(80, 44, 21);
}

.content--wrap {
  margin-top: 40px;
  padding: 48px 80px;
  position: relative;
}
.content--wrap:before {
  z-index: -1;
  height: 24px;
  background-image: url(../images/divider-left.webp), url(../images/divider-right.webp), url(../images/divider-middle.webp);
  background-position: left bottom, right, bottom, center, bottom;
  background-size: 56px 20px, 56px 20px, calc(100% - 112px) 20px;
  background-repeat: no-repeat;
  mix-blend-mode: overlay;
  position: absolute;
  inset-block: 0;
  inset-inline: calc(-1 * (100vw - 100% - 232px) / 2);
  content: "";
}

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

.content__item {
  font-weight: 400;
  font-size: 18px;
  line-height: 1.4;
}
.content__item h1,
.content__item h2,
.content__item h3 {
  font-weight: 600;
}
.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 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;
}
.content__item ol p,
.content__item ul p {
  margin-bottom: 15px;
}
.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__table table {
  border-collapse: collapse;
}
.content__table th,
.content__table td {
  padding: 12px;
  border: 1px solid rgb(249, 239, 200);
  font-weight: 400;
  text-align: left;
}

.table--style th {
  background: rgb(16, 142, 58);
  color: #fff;
}

footer {
  padding: 40px 0 32px;
  border-radius: 100px 100px 0 0;
  position: relative;
}
footer:before {
  border: 2px solid transparent;
  background: linear-gradient(rgb(19, 85, 50), rgb(19, 85, 50)) padding-box, linear-gradient(rgb(100, 189, 32) 0%, rgb(25, 90, 56) 100%) border-box;
  inset: 0 calc(-1 * (100vw - 100% - 232px) / 2);
  position: absolute;
  border-radius: inherit;
  content: "";
  z-index: -1;
  pointer-events: none;
}
footer:after {
  background-size: auto 388px;
  background-position: center 18px;
  background-image: url(../images/clovers-pattern.webp);
  background-repeat: repeat-x;
  opacity: 0.24;
  inset: 0 calc(-1 * (100vw - 100% - 232px) / 2);
  position: absolute;
  z-index: -1;
  border-radius: inherit;
  content: "";
}

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

.footer__top {
  display: flex;
  justify-content: center;
  gap: 12px;
}
.footer__top a {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 48px;
  width: 185px;
  text-align: center;
  font-size: 18px;
  font-weight: 900;
  line-height: 1;
  background-image: url(../images/tertiary-left.webp), url(../images/tertiary-center.webp), url(../images/tertiary-right.webp);
  background-repeat: no-repeat;
  background-position: left center, center, right center;
  background-size: 20px 100%, calc(100% - 38px) 100%, 20px 100%;
  gap: 8px;
  color: rgb(255, 255, 255);
}
.footer__top a svg-icon-sprite {
  width: 16px;
}
.footer__top a svg-icon-sprite svg {
  fill: rgb(255, 255, 255);
}
.footer__top a img {
  border-radius: 50%;
  width: 16px;
  height: 16px;
  -o-object-fit: cover;
     object-fit: cover;
}

.footer__menu {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 40px;
  font-size: 12px;
  line-height: 1.2;
  font-weight: 800;
  color: rgb(135, 174, 121);
}
.footer__menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 16px;
  display: flex;
  flex-direction: column;
}

.footer__menu__title {
  font-size: 14px;
  color: rgb(234, 208, 162);
}

.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: 8px;
}
.footer__pay a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 36px;
  gap: 6px;
  background: rgb(249, 239, 200);
}
.footer__pay a:last-child {
  background: none;
}
.footer__pay a svg-icon-sprite {
  width: 12px;
}
.footer__pay a svg-icon-sprite svg {
  width: 100%;
  height: 100%;
  fill: rgb(105, 253, 219);
}
.footer__pay a img {
  width: 66px;
}
.footer__pay a span {
  font-size: 12px;
  color: rgb(105, 253, 219);
  font-weight: 600;
  line-height: 1.4;
}

.footer__media {
  display: flex;
  justify-content: center;
}
.footer__media img {
  width: 40px;
  aspect-ratio: 1/1;
}

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

@media (max-width: 1919px) {
  .banner {
    aspect-ratio: 1264/342;
  }
  .cards__list {
    grid-template-columns: repeat(7, 1fr);
  }
  .cards__item:nth-child(n+8) {
    display: none;
  }
  .block {
    aspect-ratio: 1264/198;
  }
}
@media (max-width: 1279px) {
  .sidebar__list a:hover:before {
    background-size: 40px 100%, calc(100% - 40px - 40px) 100%, 40px 100%;
    background-position: left center, 40px center, right center;
    background-repeat: no-repeat;
    will-change: opacity;
  }
  .sidebar__list:nth-child(2) a:before {
    background-size: 40px 100%, calc(100% - 40px - 40px) 100%, 40px 100%;
    background-position: left center, 40px center, right center;
    background-repeat: no-repeat;
    will-change: opacity;
  }
  .burger {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background-image: url(../images/header-menu.webp);
    background-size: 100% 100%;
    background-position: center;
    background-repeat: no-repeat;
  }
  .burger svg,
  .burger svg-icon-sprite {
    width: 28px;
  }
  .burger svg-icon-sprite svg {
    fill: rgb(255, 241, 127);
  }
  .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: 72px;
    aspect-ratio: 72/40;
  }
  .header__search {
    display: none;
  }
  .sidebar {
    width: 420px;
    left: -420px;
    transition-duration: 0.3s;
  }
  .sidebar.active {
    left: 0;
  }
  .sidebar .header__search {
    width: calc(100% - 24px);
    display: flex;
    margin: 12px auto 0;
    min-height: 48px;
  }
  .wrap {
    padding-left: 0;
    position: relative;
  }
  .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(10, 59, 33, 0.9);
    opacity: 0;
  }
  .cards__list {
    grid-template-columns: repeat(6, 1fr);
    gap: 12px;
  }
  .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;
  }
  footer {
    overflow: hidden;
  }
  footer:before {
    top: 0;
    height: 100%;
    width: 100%;
    left: 0;
  }
  .banner--wrap {
    padding: 20px 0;
  }
  .banner--wrap .container {
    width: 100%;
  }
  .banner__content:before {
    height: 50%;
    width: 100%;
  }
  .banner {
    aspect-ratio: 768/278;
  }
  .banner__content {
    width: 50%;
    padding: 0 16px;
  }
  .banner__content p:nth-child(1) {
    font-size: 20px;
  }
  .banner__content p:nth-child(2) {
    font-size: 24px;
  }
  .banner__content a {
    width: 374px;
    aspect-ratio: 374/80;
  }
  .top__menu__row ul a {
    flex-direction: row;
    background: linear-gradient(rgb(16, 142, 58), rgb(16, 142, 58)) padding-box, linear-gradient(rgb(71, 187, 41), rgb(71, 187, 41)) border-box;
    border-radius: 12px;
    gap: 8px;
    height: 54px;
    color: rgb(255, 255, 255);
    max-width: none;
    min-width: auto;
    padding: 0 8px;
  }
  .top__menu__row ul a img {
    width: 40px;
  }
  .top__menu__row ul a:before {
    display: none;
  }
  .content--wrap:before {
    left: 0;
    top: 0;
    width: 100%;
  }
  .content--wrap {
    padding: 30px 0;
    margin-top: 30px;
  }
}
@media (max-width: 767px) {
  .sidebar {
    width: 100%;
    left: -100%;
    top: 120px;
    height: calc(100vh - 120px);
  }
  header {
    height: 120px;
    padding: 10px 0 12px;
  }
  header .container {
    margin: 0 auto;
  }
  .header {
    flex-direction: column;
  }
  .container {
    width: calc(100% - 20px);
  }
  .header__left {
    width: 100%;
    justify-content: center;
  }
  .burger {
    position: absolute;
    left: 0px;
    top: 0;
  }
  .header__right {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 4px;
  }
  .header__btn {
    height: 36px;
    font-size: 14px;
  }
  .banner {
    aspect-ratio: 375/422;
  }
  .top__menu__row {
    padding: 6px 10px;
  }
  .cards__list {
    grid-template-columns: repeat(3, 1fr);
  }
  .content__table {
    overflow-x: auto;
  }
  .content__item ol,
  .content__item ul {
    padding-left: 30px;
  }
  .footer__menu {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 20px;
  }
  .top--menu {
    top: 120px;
  }
  .banner__content {
    width: 100%;
    padding: 10px;
    justify-content: flex-end;
  }
  .banner:before,
  .banner:after {
    display: none;
  }
  .banner--wrap {
    padding: 0;
  }
  .banner__content:before {
    display: none;
  }
  .banner__content p:nth-child(2) {
    font-size: 20px;
  }
  .banner__content a {
    padding: 0 0 7px;
    font-size: 24px;
    width: 342px;
    aspect-ratio: 342/64;
    margin-top: 10px;
  }
  .cards__item__body span {
    position: absolute;
    z-index: 1;
    inset: auto auto 26px -1px;
    width: 30px;
    height: 25px;
    font-size: 18px;
    padding: 2px 4px 0 2px;
  }
  .cards__title {
    font-size: 16px;
  }
  .block {
    aspect-ratio: 335/368;
    display: flex;
    flex-direction: column;
  }
  .block__img {
    width: 100%;
    height: 50%;
    position: static;
    order: 0;
  }
  .block__content {
    width: 100%;
    height: 50%;
    order: 1;
  }
  .block__content p {
    font-size: 18px;
  }
  .content__item {
    font-size: 16px;
  }
  footer {
    border-radius: 64px 64px 0 0;
  }
  .footer {
    padding: 0 5px;
  }
}
@media (max-width: 365px) {
  .footer__top {
    flex-direction: column;
    align-items: center;
  }
  .footer {
    padding: 0;
  }
  .banner__content a {
    width: 100%;
  }
}/*# sourceMappingURL=styles.css.map */