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

::-webkit-scrollbar-thumb {
  background: #3b3d54;
  border-radius: 100px;
  border: 5px solid rgb(10, 13, 15);
}

::-webkit-scrollbar-track {
  background: rgb(10, 13, 15);
}

svg {
  display: block;
  width: 24px;
  height: auto;
  aspect-ratio: 1/1;
}
svg path {
  stroke: rgb(155, 144, 124);
}

html {
  font-size: 16px;
}

body {
  background-color: rgb(10, 13, 15);
  color: rgb(255, 255, 255);
  font-family: "Overpass", sans-serif;
}

.container {
  width: calc(100% - 3rem);
  margin: 0 auto;
  max-width: 1872px;
}

header {
  height: 84px;
  position: sticky;
  top: 0;
  z-index: 99;
  background-color: rgb(26, 26, 26);
}
header .container {
  height: 100%;
}

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

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

.header__logo {
  width: 100px;
  aspect-ratio: 100/52;
  margin-right: 1.5rem;
}
.header__logo img {
  width: 100%;
  height: 100%;
  display: block;
}

.burger {
  display: none;
}

.header__menu {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-weight: 500;
  text-transform: uppercase;
  color: rgb(155, 144, 124);
  font-size: 0.875rem;
  line-height: 1.25rem;
}

.header__right {
  display: flex;
  align-items: center;
}
.header__right div {
  display: flex;
  align-items: center;
}
.header__right div:nth-child(1) {
  justify-content: center;
  font-size: 0.875rem;
  line-height: 1.25rem;
  padding: 0 1rem;
  height: 39px;
  text-transform: uppercase;
  border-radius: 9999px;
  background-color: rgb(26, 26, 26);
  border: 2px solid rgb(55, 55, 55);
}
.header__right div:nth-child(2) {
  justify-content: center;
  font-size: 0.875rem;
  line-height: 1.25rem;
  padding: 0 1rem;
  height: 39px;
  text-transform: uppercase;
  border-radius: 9999px;
  background-color: rgb(248, 158, 26);
  border: 2px solid rgb(248, 158, 26);
  color: #000;
  margin-left: 1rem;
}
.header__right div:nth-child(3) {
  gap: 0.25rem;
  margin-left: 1.5rem;
  color: rgb(155, 144, 124);
  font-size: 0.875rem;
  line-height: 1.25rem;
}
.header__right div:nth-child(4) {
  border-left: 2px solid rgb(55, 55, 55);
  padding: 0 1rem;
  margin-left: 1rem;
}
.header__right div:nth-child(4) svg {
  width: 20px;
}

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

.top__item {
  position: relative;
  height: 430px;
  border-radius: 1.5rem;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.top__item img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.top__item__info {
  position: relative;
  padding-left: 2.5rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 80%;
  gap: 12px;
}
.top__item__info p:nth-child(1) {
  font-size: 18px;
  font-style: normal;
  font-weight: 800;
  line-height: 21px;
  color: #b7c7e5;
  text-shadow: 4px 4px 8px rgba(0, 0, 0, 0.25);
  text-transform: uppercase;
  position: relative;
}
.top__item__info p:nth-child(1):after {
  background-color: rgb(248, 158, 26);
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  width: 40%;
  left: 0;
  height: 4px;
  -webkit-clip-path: polygon(0 0, 100% 15%, 98% 100%, 1% 100%);
          clip-path: polygon(0 0, 100% 15%, 98% 100%, 1% 100%);
}
.top__item__info p:nth-child(2) {
  font-size: 36px;
  font-style: normal;
  font-weight: 900;
  line-height: 40px;
  text-transform: uppercase;
}
.top__item__info a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.top__item__info a span:nth-child(1) {
  font-size: 0.875rem;
  line-height: 1.25rem;
  padding: 0 1rem;
  background-color: rgb(248, 158, 26);
  height: 39px;
  border-radius: 9999px;
  color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: -moz-max-content;
  min-width: max-content;
  font-weight: 700;
}
.top__item__info a span:nth-child(2) {
  font-size: 0.75rem;
  line-height: 1rem;
  font-weight: 700;
}

.cards__menu {
  margin-top: 2rem;
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cards__menu__list {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.cards__menu__list div {
  display: flex;
  align-items: center;
}
.cards__menu__list div svg {
  width: 40px;
  min-width: 40px;
}
.cards__menu__list div svg path {
  stroke: rgb(210, 31, 63);
  fill: rgb(210, 31, 63);
}
.cards__menu__list div p {
  margin-left: 1rem;
  display: flex;
  flex-direction: column;
}
.cards__menu__list div p span:nth-child(1) {
  font-size: 1rem;
  line-height: 1.5rem;
  font-weight: 500;
}
.cards__menu__list div p span:nth-child(2) {
  font-size: 0.75rem;
  line-height: 1rem;
  color: rgb(155, 144, 124);
}

.cards__menu__links {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.cards__menu__links div {
  display: flex;
  align-items: center;
  height: 43px;
  border-radius: 0.5rem;
  border: 1px solid rgb(55, 55, 55);
}
.cards__menu__links div:nth-child(1) {
  color: rgb(155, 144, 124);
  gap: 10px;
  padding: 0 2.25rem 0 0.75rem;
  font-size: 0.875rem;
  line-height: 1.25rem;
}
.cards__menu__links div:nth-child(1) svg {
  width: 18px;
}
.cards__menu__links div:nth-child(2) {
  padding: 0 0.75rem;
  justify-content: space-between;
  background: rgb(26, 26, 26);
  font-size: 0.875rem;
  line-height: 1.25rem;
}
.cards__menu__links div:nth-child(2) svg {
  width: 20px;
  margin-left: 2.5rem;
}

.cards__row {
  display: flex;
  flex-direction: column;
  margin-top: 1rem;
}

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

.cards__title {
  display: flex;
  align-items: center;
}
.cards__title span {
  position: relative;
}
.cards__title span:nth-child(1) {
  font-size: 1.5rem;
  line-height: 2rem;
  font-weight: 700;
  padding-bottom: 0.25rem;
}
.cards__title span:nth-child(1):after {
  --tw-bg-opacity: 1;
  background-color: rgb(248, 158, 26);
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  width: 75%;
  left: 0;
  height: 4px;
  -webkit-clip-path: polygon(0 0, 100% 15%, 98% 100%, 1% 100%);
          clip-path: polygon(0 0, 100% 15%, 98% 100%, 1% 100%);
}
.cards__title span:nth-child(2) {
  margin-left: 1.5rem;
  color: rgb(155, 144, 124);
}

.cards__arrows {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.cards__arrows span {
  width: 2.25rem;
  height: 2.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgb(26, 26, 26);
  transition-duration: 0.3s;
  border: 1px solid rgb(55, 55, 55);
  border-radius: 0.5rem;
}
.cards__arrows span svg {
  width: 20px;
}
.cards__arrows span:first-child, .cards__arrows span:hover {
  opacity: 0.5;
}

.cards__list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1rem;
}

.cards__list__row {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  overflow-x: auto;
}
.cards__list__row::-webkit-scrollbar {
  display: none;
}

.cards__item {
  width: 320px;
  min-width: 320px;
}

.cards__item__body {
  position: relative;
  aspect-ratio: 320/220;
  overflow: hidden;
  border-radius: 0.75rem;
}
.cards__item__body img {
  width: 100%;
  height: 100%;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}

.cards__item__title {
  margin-top: 0.5rem;
  display: flex;
  flex-direction: column;
}
.cards__item__title span:nth-child(1) {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 1;
  font-size: 16px;
  line-height: 1.5rem;
  font-weight: 500;
}
.cards__item__title span:nth-child(2) {
  font-size: 0.875rem;
  line-height: 1.25rem;
  color: rgb(155, 144, 124);
}

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

.content__item {
  font-size: 18px;
  line-height: 1.5;
}
.content__item h1,
.content__item h2,
.content__item h3,
.content__item h4 {
  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 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 td {
  padding: 12px;
  border: 1px solid rgb(255, 255, 255);
  text-align: left;
  vertical-align: top;
}

.table--style tr:first-child td {
  background: linear-gradient(180deg, rgb(219, 255, 0) 0%, rgb(180, 197, 0) 100%);
  color: rgb(3, 10, 10);
}

footer {
  padding: 1.5rem 0;
  position: relative;
  background: rgb(26, 26, 26);
}

.footer__top {
  display: block;
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
  max-width: 1536px;
  margin-left: auto;
  margin-right: auto;
}
.footer__top ul {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  font-size: 0.75rem;
  line-height: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.footer__imgs {
  border-top: 1px solid rgb(55, 55, 55);
  padding-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  padding-bottom: 1rem;
  margin-top: 1rem;
}
.footer__imgs div {
  width: 116px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 0.375rem;
}
.footer__imgs div img {
  height: 100%;
  width: 100%;
}

.footer__imgs--2 {
  border-top: 1px solid rgb(55, 55, 55);
  padding-top: 1rem;
  padding-bottom: 1rem;
  margin-top: 1rem;
}
.footer__imgs--2 p {
  font-size: 0.75rem;
  line-height: 1rem;
  text-align: center;
  color: rgb(155, 144, 124);
  padding-left: 4rem;
  padding-right: 4rem;
}

.footer__imgs__list {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-top: 1rem;
}
.footer__imgs__list div {
  width: 128px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 0.375rem;
}
.footer__imgs__list div img {
  width: 104px;
  -o-object-fit: contain;
     object-fit: contain;
  height: 48px;
}

.footer__copyright {
  border-top: 1px solid rgb(55, 55, 55);
  color: rgb(155, 144, 124);
  padding-top: 1.5rem;
  font-size: 0.75rem;
  line-height: 1rem;
  text-align: center;
  margin-top: 1rem;
}

@media (max-width: 1200px) {
  .burger {
    display: block;
    margin-right: 1.5rem;
  }
  .header__menu,
  .header__right div:nth-child(3),
  .header__right div:nth-child(4) {
    display: none;
  }
  .container {
    width: calc(100% - 2rem);
  }
  .header__right div:nth-child(1) {
    border: 0;
    background: none;
    color: rgb(155, 144, 124);
    padding: 0;
  }
  .header__right div:nth-child(2) {
    border: 0;
    background: none;
    color: rgb(248, 158, 26);
    padding: 0;
  }
  .top {
    display: flex;
    overflow-x: auto;
  }
  .top::-webkit-scrollbar {
    display: none;
  }
  .top__item {
    width: calc(50% - 0.5rem);
    min-width: calc(50% - 0.5rem);
    height: 330px;
  }
  .top__item__info {
    padding-left: 1.5rem;
  }
  .cards__menu {
    flex-direction: column;
    gap: 1rem;
  }
  .cards__menu__links {
    display: grid;
    width: 100%;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    order: 0;
  }
  .cards__menu__list {
    order: 1;
    overflow-x: auto;
    max-width: 100%;
  }
  .cards__menu__list::-webkit-scrollbar {
    display: none;
  }
  .cards__menu__list div {
    min-width: -moz-max-content;
    min-width: max-content;
  }
}
@media (max-width: 767px) {
  .content__item ol,
  .content__item ul {
    padding-left: 30px;
  }
  .content__item {
    font-size: 16px;
  }
  .content__table th,
  .content__table td {
    padding: 8px;
  }
  header {
    height: 81px;
  }
  .container {
    width: calc(100% - 1.5rem);
  }
  .header__logo {
    width: 57px;
    aspect-ratio: 1/1;
    margin-right: 0;
  }
  .top__item {
    width: 100%;
    min-width: 100%;
    height: 190px;
  }
  .top__item__info {
    padding-left: 1rem;
  }
  .top__item__info p:nth-child(1) {
    font-size: 10px;
    padding-bottom: 0.25rem;
  }
  .top__item__info p:nth-child(2) {
    font-size: 20px;
  }
  .top__item__info a span:nth-child(1) {
    font-size: 0.75rem;
    line-height: 1rem;
    height: 31px;
  }
  .cards__title span:nth-child(1) {
    font-size: 1.125rem;
    line-height: 1.75rem;
    padding-bottom: 0.25rem;
  }
  .cards__title span:nth-child(2) {
    display: none;
  }
  .cards__item {
    width: 200px;
    min-width: 200px;
  }
  .cards__item__title span:nth-child(1) {
    font-size: 0.875rem;
    line-height: 1.25rem;
  }
  .cards__item__title span:nth-child(2) {
    font-size: 0.75rem;
    line-height: 1rem;
  }
  .cards__menu__links {
    gap: 0.5rem;
  }
}/*# sourceMappingURL=styles.css.map */