* {
  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 {
  width: 15px;
}

::-webkit-scrollbar-thumb {
  background: #513b36;
  border-radius: 100px;
  border: 4px solid #250a04;
}

::-webkit-scrollbar-track {
  background: #250a04;
}

svg {
  display: block;
  width: 16px;
  height: auto;
  aspect-ratio: 1/1;
}
svg path {
  fill: #e59839;
}

body {
  font-family: "Alegreya SC", serif;
  background: #250a04;
  color: #fff5e9;
  font-weight: 600;
  font-size: 16px;
  line-height: 1.5;
}

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

header {
  height: 64px;
  position: sticky;
  top: 0;
  z-index: 99;
  background: #250a04;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2392156863), 0 0 1px 0 rgba(0, 0, 0, 0.3215686275);
}
header .container {
  height: 100%;
  max-width: none;
}

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

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

.logo {
  width: 141px;
  aspect-ratio: 141/24;
}
.logo img {
  width: 100%;
  height: 100%;
  display: block;
}

.header__left__menu {
  display: flex;
  align-items: center;
  overflow: hidden;
  height: 36px;
  background: rgba(255, 255, 255, 0.1019607843);
  border-radius: 16px;
}
.header__left__menu li {
  height: 100%;
  color: #e59839;
  font-size: 14px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 0 12px 0 8px;
}
.header__left__menu li svg {
  width: 20px;
}
.header__left__menu li svg path {
  fill: #9f5e0f;
}
.header__left__menu li:nth-child(1) {
  border-radius: 1000px;
  background: #77400b;
  color: #ffffff;
}
.header__left__menu li:nth-child(1) svg path {
  fill: #ffdbae;
}
.header__left__menu li:nth-child(2) {
  padding: 0 14px 0 12px;
}

.header__right {
  display: flex;
  align-items: center;
  gap: 8px;
}
.header__right div {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.header__right div:nth-child(1) {
  width: 28px;
  aspect-ratio: 1/1;
}
.header__right div:nth-child(1) svg {
  width: 100%;
}
.header__right div:nth-child(2) {
  border-radius: 16px;
  box-shadow: inset 0 0 0 4px #77400b;
  font-size: 14px;
  font-weight: 600;
  height: 36px;
  padding: 0 12px;
  color: #ffffff;
}
.header__right div:nth-child(3) {
  height: 36px;
  padding: 0 12px;
  box-shadow: inset 0 0 0 4px #77400b;
  background: linear-gradient(180deg, #e0d500 0%, #ff8c00 100%);
  border-radius: 1000px;
  color: #000;
  font-size: 14px;
  font-weight: 600;
}
.header__right div:nth-child(3) span:nth-child(2) {
  position: absolute;
  font-size: 8px;
  line-height: 1;
  padding: 2px 3px;
  color: #f3f4fd;
  border-radius: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2px;
  background: #355be2;
  right: -5px;
  top: -5px;
}
.header__right div:nth-child(3) span:nth-child(2) img {
  width: 10px;
  aspect-ratio: 1/1;
}

.sidebar {
  position: fixed;
  left: 0;
  top: 0;
  height: 100vh;
  width: 64px;
  z-index: 99;
  background-color: #402002;
  background-image: url(../images/bg.svg);
  background-repeat: repeat;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.sidebar__burger {
  width: 100%;
  aspect-ratio: 1/1;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2392156863), 0 0 1px 0 rgba(0, 0, 0, 0.3215686275);
  background: #402002;
}
.sidebar__burger svg {
  width: 28px;
}

.sidebar__menu {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 8px;
  gap: 4px;
}
.sidebar__menu li {
  aspect-ratio: 1/1;
  width: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.sidebar__menu li:nth-child(1):after {
  background: #693708;
  bottom: -8px;
  content: "";
  height: 1px;
  position: absolute;
  width: 100%;
}
.sidebar__menu li:nth-child(2) {
  margin-top: 12px;
  border-radius: 8px;
}
.sidebar__menu li:nth-child(6) {
  margin-top: 12px;
}
.sidebar__menu li:nth-child(6)::before {
  background: #693708;
  top: -8px;
  content: "";
  height: 1px;
  position: absolute;
  width: 100%;
}
.sidebar__menu li:nth-child(6) svg path {
  fill: #09e41f;
}
.sidebar__menu li img {
  width: 40px;
  aspect-ratio: 1/1;
}
.sidebar__menu li svg {
  width: 24px;
}

.wrap {
  padding-left: 64px;
}

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

.banner {
  position: relative;
  height: 192px;
  overflow: hidden;
  border-radius: 16px;
  padding: 12px;
}

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

.banner__content {
  z-index: 1;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}
.banner__content div {
  width: -moz-max-content;
  width: max-content;
}
.banner__content div:nth-child(1) {
  padding: 0 8px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #86480d;
  border-radius: 6px;
  box-shadow: inset 0 0 0 2px rgba(0, 0, 0, 0);
  color: #ffffff;
  font-weight: 700;
  font-size: 14px;
}
.banner__content div:nth-child(2) {
  font-size: 24px;
  font-weight: 900;
  color: #f6da24;
  line-height: 1.2;
}
.banner__content div:nth-child(2) p:nth-child(2) {
  font-weight: 600;
  font-size: 20px;
}
.banner__content a {
  background: linear-gradient(180deg, #e0d500 0%, #ff8c00 100%);
  box-shadow: inset 0 0 0 4px #77400b;
  width: -moz-max-content;
  width: max-content;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  font-weight: 600;
  font-size: 14px;
  color: #000;
  padding: 0 12px;
  height: 36px;
}

.gros {
  margin-top: 32px;
}

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

.cards__title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 32px;
}
.cards__title svg {
  width: 32px;
}

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

.cards__nav__btns {
  display: flex;
  align-items: center;
  gap: 4px;
}
.cards__nav__btns span {
  background: #77400b;
  box-shadow: inset 0 0 0 4px rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  width: 48px;
  aspect-ratio: 1/1;
}
.cards__nav__btns span svg {
  width: 24px;
}
.cards__nav__btns span svg path {
  fill: #fff;
}

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

.gros__card {
  display: flex;
  align-items: center;
  background: #402002;
  border-radius: 12px;
  height: 84px;
}

.gros__img {
  width: auto;
  height: 100%;
  aspect-ratio: 1/1;
  border-radius: 12px;
}

.gros__info {
  padding: 8px 12px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}
.gros__info p:nth-child(1) {
  font-weight: 700;
  font-size: 14px;
}
.gros__info p:nth-child(2) {
  display: flex;
  align-items: center;
  gap: 8px;
}
.gros__info p:nth-child(2) img {
  width: 20px;
  aspect-ratio: 1/1;
}
.gros__info p:nth-child(2) span {
  font-weight: 600;
  font-size: 12px;
  color: #e59839;
}
.gros__info p:nth-child(3) {
  color: #09e41f;
  font-weight: 700;
  font-size: 14px;
}

.cards {
  display: flex;
  flex-direction: column;
  margin-top: 32px;
  gap: 32px;
}

.cards__nav__title {
  display: flex;
  align-items: center;
  gap: 8px;
  border-radius: 24px;
  box-shadow: inset 0 0 0 4px #77400b;
  color: #ffffff;
  height: 48px;
  padding: 0 20px;
  font-size: 20px;
}
.cards__nav__title span:nth-child(2) {
  background: #86480d;
  border-radius: 12px;
  box-shadow: inset 0 0 0 2px rgba(0, 0, 0, 0);
  font-weight: 700;
  font-size: 14px;
  padding: 0 4px;
  display: flex;
  align-items: center;
  height: 20px;
}

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

.cards__item {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.cards__item__img {
  aspect-ratio: 1/1;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 14px;
}

.cards__item__info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}
.cards__item__info svg {
  width: 24px;
  min-width: 24px;
}
.cards__item__info svg path {
  fill: #ffdbae;
}
.cards__item__info div {
  position: relative;
  width: 100%;
}
.cards__item__info div:after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;
  width: 20px;
  height: 100%;
}
.cards__item__info div p {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 1;
  font-size: 14px;
}
.cards__item__info div p:nth-child(2) {
  font-weight: 500;
  font-size: 12px;
  color: #9f5e0f;
}

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

.content__item {
  font-weight: 400;
}
.content__item h1,
.content__item h2,
.content__item h3,
.content__item h4 {
  font-weight: 700;
}
.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,
.content__item ul,
.content__item ol {
  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,
.content__item ul: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__table table {
  border-collapse: collapse;
}
.content__table th,
.content__table td {
  padding: 12px;
  border: 1px solid #fff5e9;
  text-align: left;
  vertical-align: top;
}
.table--style tr:first-child td {
  text-align: center;
  font-weight: 900;
}
.table--style th {
  background: linear-gradient(180deg, rgb(219, 255, 0) 0%, rgb(180, 197, 0) 100%);
  color: rgb(3, 10, 10);
}

footer {
  padding: 24px 0 54px;
  position: relative;
}

.footer__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  border-bottom: 1px solid rgba(88, 92, 131, 0.3019607843);
  margin-bottom: 40px;
  padding: 30px 0 40px;
}

.footer__top__left .logo {
  width: 150px;
  margin-bottom: 33px;
}

.footer__top__list p {
  color: #cbcbd6;
  margin-bottom: 8px;
  font-weight: 600;
  font-size: 14px;
}
.footer__top__list ul {
  display: flex;
  gap: 8px;
}
.footer__top__list ul li {
  border-radius: 50%;
  height: 32px;
  width: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #402002;
}
.footer__top__list ul li svg {
  width: 20px;
}
.footer__top__list ul li svg path {
  fill: rgba(255, 255, 255, 0.8);
}

.footer__left__title {
  margin-top: 30px;
  color: #cbcbd6;
  font-size: 18px;
  font-weight: 500;
}

.footer__menu {
  grid-gap: 14px;
  align-items: start;
  display: grid;
  flex: 0 0 55%;
  grid-auto-flow: column;
  grid-template-rows: repeat(4, auto);
  --rowsCount: 4;
  --colsCount: 4;
  font-weight: 600;
  color: #e59839;
  font-size: 12px;
}

.footer__top__right div:nth-child(1) {
  color: #dcdce7;
  font-weight: 600;
  font-size: 18px;
}
.footer__top__right div:nth-child(1) p:nth-child(2) {
  color: #a8a8b2;
  font-weight: 500;
  font-size: 14px;
}
.footer__top__right div:nth-child(2) {
  margin-top: 18px;
  display: flex;
  gap: 8px;
  font-weight: 600;
  font-size: 16px;
}
.footer__top__right div:nth-child(2) svg {
  width: 18px;
}
.footer__top__right div:nth-child(2) svg path {
  fill: #e59839;
}
.footer__top__right div:nth-child(3) {
  margin-top: 17px;
  display: flex;
  align-items: center;
  color: #dcdce7;
  gap: 8px;
  font-weight: 500;
  font-size: 14px;
}

.footer-row {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 24px;
}
.footer-row div {
  display: flex;
  align-items: center;
  position: relative;
}
.footer-row div:nth-child(1) {
  background: #35353d;
  overflow: hidden;
  border-radius: 4px;
  height: 32px;
  font-weight: 700;
  font-size: 12px;
  gap: 4px;
  padding: 0 8px 0 0;
}
.footer-row div:nth-child(1) img {
  width: 28px;
  aspect-ratio: 1/1;
}
.footer-row div:nth-child(1):before {
  background: #e59839;
  content: "";
  filter: blur(30px);
  height: 45px;
  left: -15px;
  opacity: 1;
  position: absolute;
  top: -15px;
  width: 45px;
}
.footer-row div:nth-child(2) {
  gap: 16px;
}
.footer-row div:nth-child(3) {
  gap: 4px;
  height: 32px;
  background: #35353d;
  border-radius: 16px;
  padding: 0 12px;
  font-weight: 600;
  font-size: 12px;
}

.footer-disclaimer {
  margin-top: 17px;
}
.footer-disclaimer div {
  display: flex;
  align-items: center;
  color: #869dee;
  font-size: 14px;
  gap: 4px;
}
.footer-disclaimer div svg path {
  fill: #869dee;
}
.footer-disclaimer p {
  margin: 16px 0 0;
  color: #e59839;
  font-weight: 500;
  font-size: 14px;
}

.suport {
  position: fixed;
  z-index: 9;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3019607843);
  width: 60px;
  aspect-ratio: 1/1;
  bottom: 16px;
  right: 0px;
  background: #77400b;
}
.suport svg {
  width: 32px;
}
.suport svg path {
  fill: #fff;
}

.burger {
  display: none;
}

.mobile-header,
.mobile-menu {
  display: none;
}

@media (max-width: 1279px) {
  .sidebar {
    display: none;
  }
  .wrap {
    padding-left: 0px;
  }
  .logo {
    aspect-ratio: 70/24;
    width: 70px;
  }
  .burger {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    aspect-ratio: 1/1;
  }
  .burger svg {
    width: 100%;
  }
  .header__left {
    gap: 8px;
  }
  .header__left .header__left__menu {
    display: none;
  }
  .header__right div:nth-child(2) {
    display: none;
  }
  .header__right div:nth-child(1) {
    position: fixed;
    bottom: 16px;
    right: 16px;
    z-index: 9;
  }
  .suport {
    right: 16px;
    bottom: 16px;
    width: 48px;
  }
  .suport svg {
    width: 26px;
  }
  .footer__top {
    flex-direction: column;
  }
  .footer__top__left .logo {
    display: none;
  }
  .footer__menu {
    width: 100%;
    margin-top: 30px;
  }
  .footer__top__right {
    margin-top: 30px;
  }
  .footer-row {
    justify-content: flex-start;
  }
  .gros__list {
    overflow-x: auto;
    width: calc(100% + 16px);
    padding-right: 16px;
  }
  .gros__list::-webkit-scrollbar {
    display: none;
  }
  .gros__info {
    min-width: -moz-max-content;
    min-width: max-content;
  }
  .cards__list {
    display: flex;
    width: calc(100% + 16px);
    padding-right: 16px;
    overflow-x: auto;
  }
  .cards__list::-webkit-scrollbar {
    display: none;
  }
  .cards__item {
    width: 124px;
    min-width: 124px;
  }
  .header__right div:nth-child(1) {
    display: none;
  }
  .banners {
    width: calc(100% + 16px);
    padding-right: 16px;
    overflow-x: auto;
    display: flex;
  }
  .banners::-webkit-scrollbar {
    display: none;
  }
  .banner {
    width: 100%;
    min-width: 100%;
    height: 315px;
  }
}
@media (max-width: 767px) {
  .content__item ol,
  .content__item ul {
    padding-left: 30px;
  }
  .content__table th,
  .content__table td {
    padding: 8px;
  }
  header {
    height: 54px;
  }
  .header__right {
    gap: 4px;
  }
  .cards__title {
    font-size: 24px;
  }
  .cards {
    gap: 24px;
  }
  .cards__list {
    display: flex;
    gap: 8px;
    width: calc(100% + 16px);
    padding-right: 16px;
    overflow-x: auto;
  }
  .cards__list::-webkit-scrollbar {
    display: none;
  }
  .cards__item {
    width: 35vw;
    min-width: 35vw;
  }
  .content__table {
    width: calc(100% + 16px);
    padding-right: 16px;
    overflow-x: auto;
  }
  .content__table::-webkit-scrollbar {
    display: none;
  }
  .footer__menu {
    --rowsCount: 8;
    --colsCount: 2;
    flex: 0 0 100%;
    grid-template-rows: repeat(8, auto);
  }
  .footer-row {
    flex-wrap: wrap;
  }
  .footer-row div:nth-child(1) {
    width: 100%;
  }
  .header__right div:nth-child(2) {
    display: flex;
  }
  .mobile-header {
    display: block;
    margin-top: 6px;
  }
  .mobile-header .header__left__menu {
    display: flex;
    width: 100%;
    height: 48px;
  }
  .mobile-header .header__left__menu li {
    width: 50%;
    justify-content: center;
  }
  .mobile-header__row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
  }
  .mobile-search {
    width: 36px;
    height: 48px;
    min-width: 36px;
    border-radius: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #77400b;
    box-shadow: inset 0 0 0 4px rgba(0, 0, 0, 0.6);
  }
  .mobile-search svg {
    width: 20px;
  }
  .mobile-search svg path {
    fill: #fff;
  }
  .banner {
    aspect-ratio: 343/147;
    width: 90vw;
    min-width: 90vw;
    padding: 12px;
    height: 148px;
  }
  .cards__nav__btns {
    display: none;
  }
  .gros__list {
    display: flex;
    gap: 8px;
  }
  .cards__title {
    font-size: 20px;
  }
  .cards__nav__title {
    gap: 0;
    border-radius: 0;
    box-shadow: none;
    color: #ffffff;
    height: auto;
    padding: 0;
    color: #aebef3;
    font-size: 16px;
  }
  .cards__nav__title span:nth-child(2) {
    display: none;
  }
  .cards__title svg {
    display: none;
  }
  .banner__content div:nth-child(1) {
    padding: 0 4px;
    height: 18px;
    border-radius: 4px;
    font-weight: 700;
    font-size: 10px;
  }
  .gros {
    margin-top: 16px;
  }
  .cards__top {
    margin-bottom: 16px;
  }
  .cards__item {
    gap: 2px;
  }
  .cards__item__info svg {
    display: none;
  }
  .cards__item__info div p {
    font-size: 12px;
  }
  .cards {
    margin-top: 16px;
    gap: 16px;
  }
  .suport {
    bottom: 70px;
  }
  .mobile-menu {
    display: grid;
    align-items: center;
    grid-template-columns: repeat(5, 1fr);
    width: 100%;
    position: fixed;
    bottom: 0;
    left: 0;
    z-index: 9;
    height: 55px;
    background-color: #402002;
    border-radius: 16px 16px 0 0;
  }
  .mobile-menu div {
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2px;
    font-size: 10px;
    font-weight: 600;
    color: #b5711e;
  }
  .mobile-menu div:nth-child(1) {
    color: #ff8c00;
  }
  .mobile-menu div:nth-child(1) svg path {
    fill: #ff8c00;
  }
  .mobile-menu div:nth-child(3) span:nth-child(1) {
    box-shadow: 0 2px 7px -1px #ff8c00, 0 -4px 8px 0 rgba(0, 0, 0, 0.2392156863), 0 0 1px 0 rgba(0, 0, 0, 0.3215686275);
    border-radius: 50%;
    background: linear-gradient(180deg, #e0d500 0%, #ff8c00 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    height: 44px;
    margin-top: -20px;
    width: 44px;
  }
  .mobile-menu div:nth-child(3) span:nth-child(1) svg {
    width: 20px;
  }
  .mobile-menu div:nth-child(3) span:nth-child(1) svg path {
    fill: #000;
  }
  .mobile-menu div svg {
    width: 24px;
  }
  footer {
    padding: 24px 0 74px;
  }
  .banner__content div:nth-child(2) p:nth-child(2) {
    font-size: 16px;
  }
}
@media (max-width: 374px) {
  .header__right div:nth-child(2) {
    display: none;
  }
  .header__left__menu li {
    font-size: 9px;
  }
}/*# sourceMappingURL=styles.css.map */