@import url("https://fonts.googleapis.com/css2?family=Bitter:ital,wght@0,100..900;1,100..900&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");
body {
  background-color: #FFFFFF;
  position: relative;
  font-family: "Bitter", serif !important;
}
.container {
  width: 100%;
  max-width: 1600px;
  display: grid;
  column-gap: 20px;
  margin: auto;
}
.background {
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 5;
  left: 0;
  right: 0;
}
.main__container {
  grid-template-areas:
    "header header header"
    "banner banner banner"
    "leftbar main main"
    "leftbar main main";
  grid-template-rows: auto 1fr;
  grid-template-columns: 240px 1fr 240px;
}
.bonus__container,
.app__container {
  row-gap: 0;
  grid-template-areas:
    "header header header"
    "banner banner banner"
    "leftbar main main"
    "leftbar main main";
  grid-template-rows: auto 1fr;
  grid-template-columns: 240px 1fr;
}
.header {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
  -ms-grid-column-span: 5;
  grid-area: header;
}
.sidebar-left {
  -ms-grid-row: 3;
  -ms-grid-row-span: 5;
  -ms-grid-column: 1;
  grid-area: leftbar;
}
.bonus-container > .sidebar-left,
.app-container > .sidebar-left {
  -ms-grid-row: 1;
  -ms-grid-row-span: 1;
  -ms-grid-column: 1;
}
.main {
  -ms-grid-row: 5;
  -ms-grid-column: 3;
  -ms-grid-column-span: 3;
  grid-area: main;
  margin-right: 48px;
}
.main-app,
.main-bonus {
  width: 85%;
  margin-right: 20px;
}
.bonus-container > .main,
.app-container > .main {
  -ms-grid-row: 1;
  -ms-grid-column: 3;
  -ms-grid-column-span: 1;
}
.banner {
  -ms-grid-row: 3;
  -ms-grid-column: 3;
  -ms-grid-column-span: 3;
  grid-area: banner;
  overflow: hidden;
}
.footer {
  -ms-grid-row: 7;
  -ms-grid-column: 3;
  -ms-grid-column-span: 3;
  grid-area: footer;
}
.info {
  background: transparent !important;
  margin: 20px 0px !important;
  border: none !important;
}
.bonus-container,
.app-container {
  display: grid;
  grid-template-areas: "leftbar main";
  grid-template-columns: 240px minmax(300px, 1fr);
  grid-template-rows: auto 1fr;
  gap: 10px;
}
.image img,
.logo img {
  display: block;
  max-width: 100%;
  height: auto;
}
.content:first-child {
  margin: 0px 0px 20px 0px;
}
.content {
  padding: 32px 0px;
  margin: 20px 0px;
}
.description p:last-of-type {
  margin-bottom: 16px;
}
.article > p,
.article > ul,
.article > ol {
  font-weight: 400;
  font-size: 15px;
  line-height: 150%;
  color: #1b204f;
  margin-bottom: 16px;
}
.article li {
  text-transform: capitalize;
}
.article > ul li,
.article > ol li {
  margin-bottom: 16px;
}
.article > ol {
  list-style: auto;
  padding-left: 20px;
}
.article ul:first-of-type {
  margin-bottom: 16px;
  list-style: inside;
}
.article > p:first-of-type {
  margin-bottom: 16px;
}
.article__image {
  margin-bottom: 16px;
}
.article__image img {
  border-radius: 8px;
  border: 1px solid #e3f8ff;
}
.content__image {
  margin-top: 16px;
}
.article a {
  color: #ec622b;
}
.article__button {
  display: block;
  margin-top: 16px;
}
.title,
h3 {
  font-weight: 700;

  line-height: 120%;
}
.title.general,
h1 {
  font-size: 40px;
  margin-bottom: 16px;
  color: #ffffff;
}
.title.high,
h2 {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 24px;
  margin-bottom: 20px;
  color: #1b204f;
}
.title img {
  width: 32px;
  height: 32px;
}
.title.medium,
h3 {
  font-size: 15px;
  margin-bottom: 16px;
  border-radius: 6px;
  margin: 16px 0;
  color: #1b204f;
}
.button {
  display: block;
  max-width: 200px;
  width: 100%;
  font-weight: 700;
  font-style: Bold;
  font-size: 15px;
  line-height: 24px;
  letter-spacing: 0%;
  text-align: center;
  color: #2f2f2f !important;
  text-transform: capitalize;
  padding: 16px 24px;
  text-align: center;
  cursor: pointer;
  background: #fbcd2b;
  border-radius: 6px;
  transition: all 0.3s ease-in-out;
}
.button:hover {
  background: #f6c71c;
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
  box-shadow: 0px 6px 24px rgba(215, 175, 16, 0.4);
}
.menu li {
  font-size: 16px;
  line-height: 128%;
  text-transform: uppercase;
}
.header {
  display: flex;
  position: relative;
  padding: 20px 48px;
  align-items: center;
  background-color: #2f2f2f;
}
.header__logo {
  width: 100%;
  max-width: 243px;
  margin-right: auto;
}
.header-app__button {
  display: flex;
  padding: 12px 24px;
  border-radius: 6px;
  background: #1a3769;
  align-items: center;
  margin: 0 24px;
  gap: 8px;
}
.header-app__button:hover {
  background: #1c3d76;
  box-shadow: none;
}
.header-app__button p {
  font-weight: 700;
  font-size: 15px;
  line-height: 22px;
  text-transform: uppercase;
  color: white;
}
.header-app__button img {
  width: 24px;
  height: 24px;
}
.header__button-menu {
  display: none;
  height: auto;
  background: none;
  box-shadow: none;
  padding: 10px;
}
.header__navicon {
  display: block;
  width: 24px;
  height: 2px;
  position: relative;
  background: #ffffff;
  cursor: pointer;
  transition: background 0.4s ease-in-out;
}
.header__navicon::before,
.header__navicon::after {
  content: "";
  width: 100%;
  height: 2px;
  display: block;
  position: absolute;
  background: #ffffff;
  transition: top 0.4s ease-in-out, -webkit-transform 0.4s ease-in-out;
  transition: transform 0.4s ease-in-out, top 0.4s ease-in-out;
  transition: transform 0.4s ease-in-out, top 0.4s ease-in-out,
    -webkit-transform 0.4s ease-in-out;
  transition: transform 0.4s ease-in-out, top 0.4s ease-in-out,
    -webkit-transform 0.4s ease-in-out;
  transition: transform 0.4s ease-in-out, top 0.4s ease-in-out,
    -webkit-transform 0.4s ease-in-out;
  transition: transform 0.4s ease-in-out, top 0.4s ease-in-out,
    -webkit-transform 0.4s ease-in-out;
  transition: transform 0.4s ease-in-out, top 0.4s ease-in-out,
    -webkit-transform 0.4s ease-in-out;
  transition: transform 0.4s ease-in-out, top 0.4s ease-in-out,
    -webkit-transform 0.4s ease-in-out;
  transition: transform 0.4s ease-in-out, top 0.4s ease-in-out,
    -webkit-transform 0.4s ease-in-out;
  transition: transform 0.4s ease-in-out, top 0.4s ease-in-out,
    -webkit-transform 0.4s ease-in-out;
  transition: transform 0.4s ease-in-out, top 0.4s ease-in-out,
    -webkit-transform 0.4s ease-in-out;
}
.header__navicon::before {
  top: -7px;
}
.header__navicon::after {
  top: 7px;
}
.header.nav-visible .header__navicon {
  background: transparent;
}
.header.nav-visible .header__navicon::before {
  top: 0;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.header.nav-visible .header__navicon::after {
  top: 0;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.header__menu,
.header__menu-mobile {
  align-items: center;
  display: flex;
  justify-content: center;
}
.header__menu ul,
.header__menu-mobile ul {
  display: flex;
  gap: 30px;
}
.header__menu a,
.header__menu-mobile a {
  display: flex;
  gap: 5px;
  font-weight: 500;
  font-style: Bold;
  font-size: 15px;
  line-height: 24px;
  letter-spacing: 0%;
  vertical-align: middle;
  text-transform: capitalize;
  align-items: center;
  position: relative;
  color: #fbcd2b;
  text-transform: uppercase;
  transition: color 0.3s ease-in-out;
}
.header__menu-mobile {
  display: none;
}
.header__menu a img {
  width: 18px;
  height: 18px;
}
.header__menu a:hover {
  color: #fbcd2b;
}
.header-app__button:hover,
.header-app__button:hover::after {
  color: inherit;
  font-weight: normal;
  -webkit-transform: none;
  transform: none;
}
.header-app__button:hover::after {
  content: none;
  display: none;
}
.header__menu a:hover::after {
  width: 100%;
  left: 0;
}
.header__actions {
  display: flex;
  align-items: end;
  gap: 16px;
  margin-left: 16px;
}
.header__button-signup,
.header__button-login,
.footer__button-signup,
.footer__button-login {
  font-weight: 700;
  font-size: 15px;
  padding: 8px 24px;
  transition: all 0.3s ease-in-out;
  min-width: 95px;
  text-transform: uppercase;
}
.footer__button-signup,
.header__button-signup {
  min-width: 120px;
}
a.button.header__button-login,
.footer__button-login {
  background: #444444;
  color: #fbcd2b !important;
}
.header__button-login:hover,
.footer__button-login:hover {
  background: #302f2f;
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
  box-shadow: 0 4px 10px rgba(159, 159, 159, 0.4);
  border: none;
}
.header__info {
  display: flex;
  gap: 10px;
  margin-left: auto;
}
.header-info__time {
  display: flex;
  gap: 8px;
  align-items: center;
}
.header-info__time img {
  width: 18px;
  height: 18px;
}
.header-info__time span {
  font-weight: 400;
  font-size: 13px;
  line-height: 32px;
}
.header-info__time span {
  font-weight: 400;
  font-family: "Inter", sans-serif;
  font-size: 13px;
  line-height: 22px;
  color: #ffffff;
}
.menu-item-has-children {
  display: flex;
  align-items: center;
  position: relative;
}
.menu-item-has-children a {
  display: flex;
  align-items: center;
  color: #fbcd2b;
  font-weight: 700;
  font-size: 15px;
  line-height: 24px;
  vertical-align: middle;
  text-transform: capitalize;
  text-transform: uppercase;
}
.arrow-icon {
  width: 12px;
  margin-left: 5px;
  transition: transform 0.3s ease;
}
.sub-menu {
  display: flex;
  flex-direction: column;
  gap: 8px !important;
  position: absolute;
  top: 25px;
  left: -10px;
  background: #ffffff;
  border-radius: 5px;
  padding: 8px 16px;
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
  z-index: 10;
  min-width: 166px;
}
.menu-item-has-children.active .sub-menu {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.sub-menu li a {
  font-weight: 700;
  font-style: Bold;
  font-size: 15px;
  line-height: 24px;
  letter-spacing: 0%;
  vertical-align: middle;
  text-transform: capitalize;
  color: #303030;
}
.header__lang {
  position: relative;
  cursor: pointer;
  display: flex;
  gap: 8px;
  align-items: center;
}
.current-lang {
  display: flex;
  align-items: center;
  gap: 5px;
}
.lang-menu {
  position: absolute;
  top: 30px;
  left: -10px;
  background: #ffffff;
  border-radius: 5px;
  padding: 8px 3px;
  z-index: 100;
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.arrow-icon {
  width: 16px !important;
  height: 16px !important;
}
.header__lang.active .lang-menu {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.lang-item span {
  font-weight: 700;
  font-style: Bold;
  font-size: 15px;
  line-height: 24px;
  letter-spacing: 0%;
  text-align: center;
  vertical-align: middle;
  text-transform: uppercase;
  color: #1b204f;
}
.header__lang .arrow-icon {
  transition: 0.3s;
}
.header__lang.active .arrow-icon {
  content: url(../img/header/arrow-up-language.png);
}
.lang-item {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 5px 10px;
}
.lang-item:hover {
  background-color: #f0f0f0;
}
.header__lang:hover .lang-menu {
  display: block;
}
.header__lang p {
  font-weight: 400;
  font-style: Bold;
  font-size: 15px;
  line-height: 24px;
  letter-spacing: 0%;
  text-align: center;
  vertical-align: middle;
  text-transform: uppercase;
  color: #fbcd2b;
}
.header__lang img {
  width: 24px;
  height: 24px;
  vertical-align: middle;
}
img.lg {
  width: 14px;
  height: 14px;
}
.sidebar-left {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: scroll;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.table-contents__menu {
  margin-left: 20px;
  background: #FAFAFA;
  border-radius: 12px;
  margin-top: 20px;
}
.table-contents__menu--bonus,
.table-contents__menu--app {
  margin-top: 0 !important;
}
.table-contents__menu-app,
.table-contents__menu-bonus {
  margin-top: 0;
}
.table-contents__menu--bonus,
.table-contents__menu--app {
  margin-top: 20px;
}
.table-contents-menu__list {
  max-height: 0;
  opacity: 0;
  transition: max-height 0.5s ease-in-out, opacity 0.3s ease-in-out;
  border-radius: 0 0 12px 12px;
  overflow-y: auto;
  scrollbar-width: none;
  background: #FAFAFA;
}
.table-contents-menu__list li:last-child {
  border-radius: 0px 0px 6px 6px;
}
.table-contents-menu__list::-webkit-scrollbar {
  display: none;
}
.table-contents-menu__list.active {
  max-height: 300px;
  opacity: 1;
}
.table-contents-menu__list a {
  font-weight: 400;
  font-style: Regular;
  font-size: 15px;
  line-height: 24px;
  letter-spacing: 0%;
  vertical-align: middle;
  color: #1b204f;
  text-transform: none;
}
.table-contents-menu__button {
  position: relative;
  width: 100%;
  max-width: 100%;
  background: transparent;
  font-weight: 700;
  font-size: 14px;
  line-height: 24px;
  box-shadow: none;
  border-radius: 3px !important;
  border-radius: 12px;
  color: #ffffff !important;
  padding: 8px 16px;
  text-align: left;
  background: #2f2f2f;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.table-contents-menu__button img {
  width: 16px;
  height: 16px;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.table-contents-menu__button:hover {
  box-shadow: none;
  -webkit-transform: none;
  transform: none;
  background: #272727;
}
.table-contents-menu__list ul {
  padding: 12px 10px;
}
.table-contents-menu__list {
  list-style: none;
  padding-left: 0;
}
.table-contents-menu__list li {
  position: relative;
  padding: 6px 10px 6px 16px;
  color: #2f2f2f;
  transition: color 0.3s ease-in-out, background 0.3s ease-in-out;
}
.table-contents-menu__list li a {
  transition: color 0.3s ease-in-out;
  text-decoration: none;
  color: #2F2F2F;
}
.table-contents-menu__list li:hover a {
  font-weight: 700;
  color: #fbcd2b;
}
.banner {
  position: relative;
  overflow: hidden;
  margin-bottom: 20px;
}
.banner__background img,
.bonus__background img,
.app__background img,
.bonus-card-item__background img,
.login__background img {
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: right;
  object-position: right;
  width: 100%;
  height: 100%;
  box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.12);
}
.banner-bonus__background img,
.banner-app__background img {
  border-radius: 0 !important;
}
.login__background img {
  object-position: center;
}
.bonus-card-item__background img {
  border-radius: 6px;
}
.app {
  border-radius: 6px;
}
.banner__bonus,
.banner__app {
  margin-bottom: 20px;
}
.banner-app__background img {
  object-position: center !important;
}
.bonus__background img {
  object-position: center;
  border-radius: 6px;
}
.banner__wrap,
.bonus__wrap,
.app__wrap,
.bonus-card__wrap,
.login__wrap {
  width: 100%;
  min-height: 380px;
  display: flex;
  align-items: center;
  padding: 40px;
  position: relative;
  z-index: 7;
}
.login__wrap {
  min-height: 440px;
  padding: 40px 128px;
  gap: 100px;
}
.login {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
}
.banner__wrap {
  max-width: 1170px;
  margin: auto;
}
.app__wrap {
  min-height: 200px;
  padding-left: 148px !important;
  padding: 20px;
}
.bonus__wrap {
  min-height: 280px;
  padding-left: 40px;
  justify-content: flex-start;
  border-radius: 20px;
}
.banner__content,
.banner-bonus__content,
.banner-app__content {
  position: relative;
  display: flex;
  flex-direction: column;
  max-width: 490px;
  width: 100%;
  padding: 16px;
  z-index: 0;
  border-radius: 6px;
}
.banner__rating {
  font-weight: 400;
  font-size: 15px;
  line-height: 150%;
  color: #ffffff;
  margin-bottom: 6px;
}
.breadcrumbs,
.breadcrumbs-app {
  display: flex;
  gap: 5px;
  margin-bottom: 16px;
}
.breadcrumbs li a,
.breadcrumbs-app li a {
  font-weight: 400;
  font-size: 16px;
  line-height: 100%;
  color: rgba(255, 255, 255, 1);
  padding-right: 5px;
}
.breadcrumbs-app li:first-child a,
.breadcrumbs li:first-child a {
  opacity: 80%;
}
.breadcrumbs li:last-child,
.breadcrumbs-app li:last-child {
  border-left: 2px solid rgba(255, 255, 255, 1);
  padding-left: 6px;
}
.banner__info {
  font-weight: 400;
  font-size: 15px;
  line-height: 100%;
  margin-bottom: 16px;
  text-align: center;
  color: #ffffff;
}
.banner__text {
  font-family: Inter;
  font-weight: 400;
  font-size: 15px;
  line-height: 24px;
  margin-bottom: 16px;
  color: white;
}
.features,
.top-games {
  margin: 20px 0;
}
.top-games__cards {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}
.top-games-wrapper {
  text-align: center;
  position: relative;
}
.top-games-card {
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s ease;
}
.top-games-card__image img {
  display: block;
  width: 100%;
  height: auto;
  transition: filter 0.3s ease;
}
.top-games-card__buttons {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  gap: 10px;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 2;
}
.top-games-card__button {
  min-width: 120px;
  padding: 8px 16px;
  transition: background 0.3s ease;
}
.top-games-card__button:first-child {
  background: #fbcd2b;
  color: #2f2f2f;
}
.top-games-card__button:last-child {
  color: #fbcd2b !important;
  background: #2f2f2f !important;
}
.top-games-card__title {
  font-weight: 700;
  font-style: Bold;
  font-size: 15px;
  margin-top: 8px;
  line-height: 24px;
  letter-spacing: 0%;
  vertical-align: middle;
  text-align: left;
  color: #1b204f;
  transition: color 0.3s ease, text-decoration 0.3s ease;
}
.top-games-wrapper:hover .top-games-card {
  transform: scale(1.05);
}
.top-games-wrapper:hover .top-games-card__image img {
  filter: brightness(0.6);
}
.top-games-wrapper:hover .top-games-card__buttons {
  opacity: 1;
}
.top-games-wrapper:hover .top-games-card__title {
  color: #fbcd2b;
}
.features__content {
  display: flex;
  flex-direction: row;
  gap: 20px;
}
.features__advantages,
.features__categories {
  width: 100%;
  border-collapse: collapse;
  background: #2f2f2f;
  border-radius: 6px;
}
.features__advantages table,
.features__categories table {
  border-collapse: collapse;
  width: 100%;
}
.features__categories tr,
.features__advantages tr {
  display: flex;
  gap: 20px;
  min-height: 48px;
  padding: 12px 20px;
  margin-bottom: 4px;
}
.features__categories tr:last-child,
.features__advantages tr:last-child {
  border-bottom: none;
}
tbody {
  width: 100%;
}
.features__categories td:last-child {
  width: 50%;
}
.features__categories td,
.features__advantages td {
  width: 60%;
  font-weight: 400;
  font-size: 15px;
  line-height: 24px;
  letter-spacing: 0%;
  vertical-align: middle;
  color: #ffffff;
}
.features__categories td:first-child {
  font-weight: 700;
}
.features__advantages td img {
  width: 24px;
  height: 24px;
}
.features__advantages tr {
  display: block;
}
.features__advantages td {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 20px;
}
.bonus {
  overflow: hidden;
  position: relative;
}
.bonus__content {
  position: relative;
  display: flex;
  flex-direction: column;
  max-width: 600px;
  width: 100%;
  padding: 16px;
  overflow: hidden;
}
.bonus__button {
  background: #2f2f2f;
  color: #fbcd2b !important;
}
.bonus__button:hover {
  color: #fbcd2b !important;
  background: #2f2f2f !important;
}
.bonus__text {
  font-weight: 700;
  font-size: 15px;
}
.bonus__buttons {
  display: flex;
  flex-direction: row;
  gap: 8px;
}
.bonus__title {
  font-weight: 700;
  font-style: Bold;
  font-size: 32px;
  line-height: 40px;
  color: #2f2f2f;
  letter-spacing: 0%;
  vertical-align: middle;
  margin-bottom: 8px;
}
.bonus__subtitle {
  font-weight: 400;
  font-style: Regular;
  font-size: 15px;
  line-height: 24px;
  letter-spacing: 0%;
  vertical-align: middle;
  color: #2f2f2f;
  margin-bottom: 16px;
}
.bonus__title span {
  color: #ffffff;
}
.bonus-card__list {
  display: grid;
  grid-template-rows: auto auto;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin: 20px 0;
}
.bonus-card__list li {
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  width: 100%;
  display: flex;
  gap: 20px;
  flex-direction: column;
  background: #2f2f2f;
  padding: 20px;
}
.bonus-card__wrap {
  min-height: 280px;
}
.bonus-drop__wrap {
  border-radius: 6px !important;
  border: 20px solid #2f2f2f;
}
.bonus-card__content {
  z-index: 10;
  display: flex;
  justify-content: center;
  flex-direction: column;
  width: 100%;
}
.bonus-card__title {
  font-weight: 700;
  font-style: Bold;
  font-size: 24px;
  line-height: 32px;
  letter-spacing: 0%;
  vertical-align: middle;
  margin-bottom: 8px;
  color: #ffffff;
}
.bonus-card__text {
  font-weight: 400;
  font-style: Regular;
  font-size: 15px;
  line-height: 24px;
  letter-spacing: 0%;
  vertical-align: middle;
  color: #ffffff;
  margin-bottom: 16px;
}
.bonus-card__paragraph {
  font-family: Bitter;
  font-weight: 700;
  font-style: Bold;
  font-size: 15px;
  line-height: 24px;
  letter-spacing: 0%;
  vertical-align: middle;
  color: #fbcd2b;
}
.bonus-card__buttons {
  width: 100%;
  display: flex;
  flex-direction: row;
  gap: 12px;
}
.bonus-card__button {
  max-width: 160px;
}
.bonus-card-item__background img {
  object-position: right;
}
.app {
  overflow: hidden;
  position: relative;
}
.app__content {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 140px;
}
.app__buttons {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.app__image {
  display: flex;
  align-items: center;
}
.app__image img {
  max-width: 243px;
}
.app__button {
  display: flex;
  position: relative;
  z-index: 1;
  gap: 10px;
  padding: 14px 32px;
  max-width: 240px;
  align-items: center;
  height: 72px;
  background: #2f2f2f;
}
.app__button:hover {
  background: #464545;
}
.app-button__image img {
  width: 32px;
  height: 32px;
  -o-object-fit: contain;
  object-fit: contain;
}
.app__button p {
  width: 120px;
  text-align: left;
  color: #ffffff;
  font-family: Inter;
  font-weight: 500;
  font-size: 15px;
  line-height: 22px;
  text-transform: uppercase;
}
.app__button:last-child p {
  width: 153px;
  color: #ffffff;
}
.rating-table tbody {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  justify-content: center;
  gap: 16px;
  margin-bottom: 16px;
}
.rating-table {
  width: 100%;
  table-layout: fixed;
  border-collapse: collapse;
  background: #fafafa;
  border-radius: 6px;
}
.rating-table tr {
  display: contents;
}
.rating-table {
  width: 100%;
}
.rating-table tbody > tr {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
  gap: 8px;
  padding: 16px 24px;
}
.rating-table tbody > tr:last-child {
  border-bottom: none;
}
.rating-table td:nth-child(2) {
  width: 100%;
}
.rating-table td:nth-child(2) p {
  font-family: Inter;
  font-weight: 500;
  font-size: 15px;
  line-height: 24px;
  color: #1b204f;
  vertical-align: middle;
}
.rating-table td:first-child p {
  max-width: 100%;
  width: 220px;
  font-family: Inter;
  font-weight: 500;
  font-size: 15px;
  line-height: 24px;
  color: #1b204f;
  vertical-align: middle;
}
.rating-table td:last-child p {
  font-family: Inter;
  font-weight: 500;
  font-size: 15px;
  line-height: 24px;
  letter-spacing: 0%;
  vertical-align: middle;
  text-transform: uppercase;
  color: #1b204f;
}
.rating-content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
.rating-table td:last-child {
  width: 100%;
}
.rating-stars {
  width: 600px;
  display: flex;
  justify-content: center;
}
.rating-stars img {
  width: 40px;
  height: 40px;
  display: block;
}
.rating-stars img:first-child {
  margin-left: 0;
}
.login__content {
  background: #2f2f2f;
  border-radius: 6px;
  width: 100%;
  max-width: 490px;
  padding: 32px 20px;
}
.login__image img {
  width: 100%;
  max-width: 425px;
}
.login__title {
  justify-content: center;
  color: #ffffff !important;
}
.login-input__group {
  display: flex;
  position: relative;
  margin-bottom: 18px;
}
.login-input__group input {
  width: 100%;
  padding: 12px 20px;
  border: none;
  border-radius: 4px;
  background: #444444;
  outline: none;
  font-family: Inter;
  font-weight: 400;
  font-style: Regular;
  font-size: 15px;
  line-height: 24px;
  letter-spacing: 0%;
  color: rgb(255, 255, 255);
}
.login-input__group .login-input__icon {
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 18px;
  color: #ffffff;
}
.login-input__icon img,
.toggle-password img {
  width: 24px;
  height: 24px;
}
.login-input__group .toggle-password {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  font-size: 18px;
  color: #ffffff;
}
.login-forgot__password a {
  display: block;
  font-family: Inter;
  font-weight: 400;
  font-style: Regular;
  line-height: 24px;
  letter-spacing: 0%;
  text-align: center;
  color: rgb(255, 255, 255);
  text-align: center;
  margin-top: 16px;
}
.login__button {
  max-width: 100%;
  padding: 8px;
}

.faq {
  position: relative;
}
.top {
  position: absolute;
  right: 20px;
  top: -60px;
  z-index: 9999;
}
.scroll-to-top {
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s, -webkit-transform 0.3s;
  transition: opacity 0.3s, transform 0.3s, visibility 0.3s;
  transition: opacity 0.3s, transform 0.3s, visibility 0.3s,
    -webkit-transform 0.3s;
  transition: opacity 0.3s, transform 0.3s, visibility 0.3s,
    -webkit-transform 0.3s;
  transition: opacity 0.3s, transform 0.3s, visibility 0.3s,
    -webkit-transform 0.3s;
  transition: opacity 0.3s, transform 0.3s, visibility 0.3s,
    -webkit-transform 0.3s;
  transition: opacity 0.3s, transform 0.3s, visibility 0.3s,
    -webkit-transform 0.3s;
  transition: opacity 0.3s, transform 0.3s, visibility 0.3s,
    -webkit-transform 0.3s;
  z-index: 1000;
  position: -webkit-sticky;
  position: sticky;
}
.scroll-to-top.visible {
  opacity: 1;
  visibility: visible;
}
.scroll-to-top img {
  width: 42px;
  height: 42px;
}
.scroll-to-top:hover {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
  -webkit-transform-origin: center;
  transform-origin: center;
}
.faq__item {
  margin-bottom: 16px;
  border-radius: 8px;
}
.faq__question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  text-align: left;
  padding: 16px 20px;
  font-weight: 700;
  font-size: 15px;
  line-height: 150%;
  border-radius: 6px;
  color: #ffffff;
  background: #2f2f2f;
}
.faq__question.active {
  color: #fbcd2b;
}
.faq-question__image {
  position: relative;
  margin-right: 16px;
}
.faq__answer {
  overflow: hidden;
  box-sizing: content-box;
  max-height: 0;
  opacity: 0;
  visibility: hidden;
  transition: max-height 0.5s ease-out, margin-top 0.5s ease-out,
    opacity 0.1s ease-out, visibility 0.1s ease-out;
  border-radius: 0px 0px 6px 6px;
}
.faq__answer p {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 15px;
  line-height: 150%;
  color: #282b30;
  padding: 12px 20px;
}
.faq-question__image img {
  cursor: pointer;
  width: 32px;
  height: 32px;
}
.faq__answer.active {
  visibility: visible;
  opacity: 1;
  transition: max-height 0.5s ease-out, margin-top 0.5s ease-out,
    opacity 0.1s ease-out, visibility 0.1s ease-out;
}
.footer {
  position: relative;
  margin-top: 20px;
  background: #2f2f2f;
  padding: 32px 48px;
  margin: auto;
}
.footer__content {
  width: 100%;
}
.footer__menu {
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 40px;
  margin-bottom: 32px;
  background: #444444;
  border-radius: 3px;
  padding: 12px;
}
.footer-menu__block a {
  font-weight: 400;
  font-size: 16px;
  line-height: 128%;
  text-transform: none;
  color: #282b30;
}
.footer-menu__title {
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 100%;
  color: #282b30;
  margin-bottom: 8px;
}
.footer__block,
.footer__partners {
  display: flex;
  flex-direction: row;
  gap: 30px;
  justify-content: center;
  margin-bottom: 32px;
  align-items: center;
  flex-wrap: wrap;
}
.footer__block {
  padding: 16px;
}
.footer-menu__block ul {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  justify-content: center;
}
.footer-menu__block li a {
  text-transform: uppercase;
  font-weight: 500;
  font-style: Bold;
  font-size: 15px;
  line-height: 24px;
  letter-spacing: 0%;
  vertical-align: middle;
  color: white;
}
.footer__partners {
  gap: 56px;
  padding: 16px;
}
.footer-icon__block {
  display: flex;
  gap: 40px;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  margin: 32px 0;
}
.footer-block__image img {
  -o-object-fit: contain;
  object-fit: contain;
}
.footer-block__image {
  max-width: 120px;
}
.footer-icon-block__image:first-child {
  max-width: 70px;
}
.footer-icon-block__image:nth-child(2) {
  max-width: 56px;
}
.footer-icon-block__image:nth-child(3) {
  max-width: 80px;
}
.footer-icon-block__image:nth-child(4) {
  max-width: 110px;
}
.footer-icon-block__image:nth-child(5) {
  max-width: 114px;
}
.footer-icon-block__image:nth-child(6) {
  max-width: 106px;
}
.footer-icon-block__image:nth-child(7) {
  max-width: 40px;
}
.footer-icon-block__image:nth-child(8) {
  max-width: 88px;
}
.footer-partner__image img {
  -o-object-fit: contain;
  object-fit: contain;
  width: 120px;
  height: 50px;
}
.footer__copyright {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-bottom: 32px;
}
.footer__information {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
  margin-bottom: 16px;
}
.footer__information img {
  width: 54px;
  height: 54px;
}
.footer__image img {
  width: 100%;
  max-width: 243px;
}
.footer-information__text {
  flex: 1 1 50%;
}
.footer__bottom p {
  font-family: Inter;
  font-weight: 400;
  font-size: 14px;
  line-height: 100%;
  text-align: center;
  color: #6b6b72;
}
.footer-information__text p {
  font-family: Inter;
  font-weight: 400;
  font-style: Regular;
  font-size: 12px;
  line-height: 16px;
  letter-spacing: 0%;
  text-align: center;
  vertical-align: middle;
  color: #6b6b72;
  margin-bottom: 16px;
}
.footer-buttons {
  display: none;
}
