@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap");
body {
  background-color: #102a2e;
  position: relative;
}
.container {
  width: 100%;
  max-width: 1600px;
  display: grid;
  margin: auto;
  -webkit-column-gap: 20px;
  column-gap: 24px;
  grid-template-areas:
    "header header header"
    "sidebar banner banner"
    "sidebar main main"
    "sidebar main main";
  grid-template-rows: auto 1fr;
  grid-template-columns: 240px 1fr 240px;
}
.main-bonus,
.main-app {
  width: 80%;
}
.section {
  scroll-margin-top: 100px;
}
.header {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
  -ms-grid-column-span: 5;
  grid-area: header;
}
.sidebar {
  grid-area: sidebar;
  padding: 0 0 0 20px;
  overflow-y: auto;
}
.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: 32px;
}
.main-app,
.main-bonus {
  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;
  margin-right: 32px;
}
.footer {
  -ms-grid-row: 7;
  -ms-grid-column: 3;
  -ms-grid-column-span: 3;
  grid-area: footer;
}
.footer__bonus,
.footer__app {
  padding-bottom: 10px !important;
}
.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: 20px 0px 20px 0px;
}
.section:first-child {
  margin: 20px 0px 20px 0px;
}
.section {
  margin: 40px 0px;
}
.description p:last-of-type {
  margin-bottom: 16px;
}
.article > p,
.article > ul,
.article > ol {
  font-family: Roboto;
  font-weight: 400;
  font-size: 15px;
  line-height: 150%;
  color: #ffffff;
  margin: 16px 0;
}
.article > ol{
  list-style: auto;
  padding-left: 16px;
}
.article > ol li,
.article > ul li{
  margin-bottom: 5px;
}
.article__paragraph {
  margin-top: 16px;
}
.article ul:first-of-type {
  margin-bottom: 16px;
  list-style: inside;
  color: #ffffff;
}
.article > p:first-of-type {
  margin-bottom: 16px;
}
.article > p:last-of-type {
  margin-top: 16px;
}
.article__image {
  margin: 16px 0;
}
.article__image img {
  width: 100%;
  border-radius: 3px;
}
.content__image {
  margin-bottom: 16px;
}
.article a {
  color: #41b15b;
  font-weight: 600;
}
.title {
  font-weight: 700;
  font-family: "Roboto", sans-serif;
  text-transform: uppercase;
  line-height: 120%;
  margin-bottom: 16px;
}
.title.general,
h1 {
  font-size: 40px;
  color: #e85049;
  text-align: center;
}
.title.high,
h2 {
  font-size: 24px;
  color: #ffffff;
  border-bottom: 1px solid #1e5d65;
  padding: 8px 0;
}
.title.medium,
h3 {
  font-size: 18px;
  color: #ffffff;
  margin-top: 16px;
}
.title.other,
h4 {
  font-size: 15px;
  color: #ffffff;
  margin-top: 16px;
}
.button {
  display: block;
  max-width: 180px;
  width: 100%;
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  font-size: 15px;
  line-height: 100%;
  color: #ffffff !important;
  padding: 12px;
  text-align: center;
  cursor: pointer;
  background: #41b15b;
  border-radius: 3px;
  transition: all 0.3s ease-in-out;
  text-transform: uppercase;
  box-shadow: 0px 4px 4px 0px #00000040;
}
.button:hover {
  background: #35964b;
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
  box-shadow: 0px 6px 24px rgba(7, 179, 64, 0.4);
}
.article__button {
  margin-top: 16px;
}
.menu li {
  font-family: "Roboto", sans-serif;
  font-size: 15px;
  line-height: 100%;
  text-transform: uppercase;
}
.menu a {
  font-weight: 400;
  color: #ffffff;
}
.header {
  display: flex;
  position: fixed;
  overflow: visible;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  padding: 20px 32px;
  height: auto;
  align-items: center;
  background-color: #054146;
}
.header__logo {
  width: 100%;
  max-width: 113px;
  height: 24px;
}
.header__actions.desktop-only {
  display: none;
}
.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: white;
  cursor: pointer;
  transition: background 0.4s ease-in-out;
}
.header__time {
  display: flex;
  gap: 8px;
  align-items: center;
  margin-left: 24px;
  margin-right: 10px;
}
.header__time img {
  width: 16px;
  height: 16px;
}
.header__time p {
  font-family: Roboto;
  font-weight: 400;
  font-size: 15px;
  line-height: 100%;
  text-transform: uppercase;
  color: white;
}
.header__navicon::before,
.header__navicon::after {
  content: "";
  width: 100%;
  height: 2px;
  display: block;
  position: absolute;
  background: rgb(255, 255, 255);
  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 {
  flex: 0.5;
  align-items: start;
  display: flex;
  justify-content: center;
}
.header__menu ul {
  display: flex;
  gap: 30px;
}
.header__menu a {
  display: flex;
  gap: 5px;
  align-items: center;
  position: relative;
  transition: color 0.3s ease-in-out;
}
.header__menu a img {
  width: 18px;
  height: 18px;
}
.header__menu a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -3px;
  width: 0;
  height: 2px;
  background-color: #41b15b;
  transition: width 0.3s ease-in-out, left 0.3s ease-in-out;
}
.header__menu a:hover {
  color: #41b15b;
  font-weight: 700;
}
.header__menu a:hover::after {
  width: 100%;
  left: 0;
}
.header__actions {
  display: flex;
  align-items: end;
  gap: 16px;
  margin-left: auto;
}
.header__button-signup,
.header__button-login,
.footer__button-signup,
.footer__button-login {
  font-weight: 400;
  font-size: 15px;
  padding: 13px;
  transition: all 0.3s ease-in-out;
  box-shadow: 0px 4px 4px 0px #00000040;
}
a.button.header__button-login,
.footer__button-login {
  background: #416064;
  min-width: 115px;
}
.header__button-signup,
.footer__button-signup {
  min-width: 160px;
  background: #41b15b;
}
.header__button-login:hover,
.footer__button-login:hover,
.header__button-signup:hover,
.footer__button-signup:hover {
  background: #3fb95c;
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
  box-shadow: 0 4px 10px rgba(12, 235, 42, 0.4);
  border: none;
}
.header__info {
  display: flex;
  gap: 10px;
  margin-left: 10px;
}
.header-info__time {
  display: flex;
  gap: 8px;
  align-items: center;
}
.header-info__time img {
  width: 18px;
  height: 18px;
}
.header-info__time span {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-size: 13px;
  line-height: 32px;
}
.header-info__time span {
  font-weight: 400;
  font-family: "Roboto", sans-serif;
  font-size: 13px;
  line-height: 22px;
  color: #ffffff;
}
.header__lang {
  height: 32px;
  position: relative;
  cursor: pointer;
  display: flex;
  gap: 8px;
  align-items: center;
  border-left: 1px solid white;
}
.header__lang p {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-size: 15px;
  line-height: 100%;
  text-align: center;
  text-transform: uppercase;
  color: #ffffff;
  margin-left: 16px;
}
.header__lang img {
  width: 24px;
  height: 24px;
  vertical-align: middle;
}
img.lg {
  width: 14px;
  height: 14px;
}
.sidebar {
  position: -webkit-sticky;
  position: sticky;
  top: 100px;
  height: calc(100vh - 100px);
  overflow-y: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  margin-top: 0;
}
.sidebar::-webkit-scrollbar {
  display: none;
}
.sidebar__info {
  display: flex;
  justify-content: center;
  border-top-left-radius: 3px;
  border-top-right-radius: 3px;
  background: #ffffff;
  gap: 2px;
  padding: 16px 8px;
  align-items: center;
}
.sidebar__info img {
  width: 24px;
  height: 24px;
}
.sidebar__subtitle {
  font-family: Roboto;
  font-weight: 700;
  font-size: 12px;
  line-height: 20px;
  text-align: center;
  color: #3c404b;
}
.sidebar__wrap {
  max-height: 158px;
  border-bottom-left-radius: 3px;
  border-bottom-right-radius: 3px;
  background: #ffffff;
  margin-bottom: 10px;
}
.sidebar__description {
  position: relative;
  height: 80px;
  background: linear-gradient(90deg, #0a626a 0%, #2db155 100%);
}
.sidebar__description img {
  position: absolute;
  top: 20%;
  right: 3px;
  width: 50px;
}
.sidebar__description p {
  max-width: 150px;
  font-family: Roboto;
  font-weight: 700;
  font-size: 12px;
  line-height: 20px;
  text-transform: uppercase;
  color: #ffffff;
  padding: 20px 0 0 8px;
}
.sidebar__button {
  display: inline-block;
  max-width: 150px;
  font-size: 12px;
  line-height: 20px;
  border-radius: 19px;
  padding: 10px 24px;
  margin: 15px 10px 10px 10px;
}
.sidebar__card {
  width: 100%;
  gap: 8px;
}
.sidebar__cards {
  margin-bottom: 24px;
}
.sidebar__cards a {
  display: block;
  height: auto;
  text-decoration: none;
  margin-bottom: 15px;
}
.sidebar__cards a img {
  min-height: 84px;
  display: block;
  max-width: 220px;
  margin: 0 auto;
}
.sidebar-card__text {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: Roboto, sans-serif;
  background: #41b15b;
  border-radius: 0 0 3px 3px;
  color: #ffffff;
  font-weight: 500;
  font-size: 11px;
  line-height: 150%;
  text-transform: uppercase;
  overflow: hidden;
  padding: 4px 8px;
  text-align: left;
  border-radius: 0 0 3px 3px;
}
.sidebar__block {
  background: #ffffff;
  margin-left: 20px;
  border-radius: 6px;
}
.sidebar-block__button {
  width: 100%;
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  font-size: 15px;
  line-height: 24px;
  color: #ffffff;
  text-transform: uppercase;
  padding: 8px 16px;
  text-align: left;
  background: #2c0237;
  border-radius: 6px 6px 0 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.sidebar__list {
  border-radius: 0 0 6px 6px;
  padding: 10px 16px;
  background: #ffffff;
}
.sidebar__list li {
  position: relative;
}
.sidebar__list a {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
}
.sidebar-list-item__text {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 140%;
  color: #303338;
}
.sidebar-list-item__image img {
  width: 20px;
  height: 20px;
}
.table-contents__menu,
.table-contents__menu-app,
.table-contents__menu-bonus {
  border-radius: 3px;
  box-shadow: 0px 4px 4px 0px #00000040;
}
.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 {
  transition: max-height 0.5s ease-in-out, opacity 0.3s ease-in-out;
  background: #ffffff;
  border-radius: 0 0 3px 3px;
  border: 1px solid #1e5d65;
  /* overflow-y: auto; */
  /* scrollbar-width: none; */
  /* -ms-overflow-style: none; */
}
.table-contents-menu__list::-webkit-scrollbar {
  display: none;
}
.table-contents-menu__list.active {
  display: block;
  border-radius: 0 0 3px 3px;
}
.table-contents-menu__list{
  display: none;
}
.table-contents-menu__list li:last-child {
  border-radius: 0px 0px 1px 1px;
}
.table-contents-menu__list.active {
  max-height: 800px;
  opacity: 1;
}
.table-contents-menu__list a {
  line-height: 120%;
  font-weight: 400;
  font-size: 14px;
  text-transform: none;
  color: #102a2e;
}
.table-contents-menu__button {
  position: relative;
  width: 100%;
  max-width: 100%;
  background: transparent;
  font-weight: 700;
  font-size: 18px;
  line-height: 24px;
  box-shadow: none;
  border-radius: 3px 3px 0 0;
  padding: 8px 12px;
  text-align: left;
  background: #054146;
  display: flex;
  justify-content: space-between;
}
.table-contents-menu__button img,
.sidebar-block__button img {
  width: 20px;
  height: 20px;
}
.table-contents-menu__button.active img {
  -webkit-transform: rotate(-180deg);
  transform: rotate(-180deg);
  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.active {
  border-radius: 3px;
}
.table-contents-menu__button:hover {
  box-shadow: none;
  -webkit-transform: none;
  transform: none;
  background: #06585f;
}
.table-contents-menu__list ul {
  padding: 12px 10px;
}
.table-contents-menu__list li {
  padding: 6px 12px;
  color: #102a2e;
  border-bottom: 1px solid #1e5d65;
  transition: color 0.3s ease-in-out;
}
.table-contents-menu__list li a {
  transition: color 0.3s ease-in-out;
}
.table-contents-menu__list li a:hover {
  font-weight: 700;
  color: #41b15b;
}
.sidebar__header {
  display: flex;
  flex-direction: row;
  gap: 32px;
  background: #2c0237;
  border-radius: 3px 3px 0 0;
  padding: 0 20px;
}
.sidebar__header span {
  font-family: Roboto;
  font-weight: 700;
  font-size: 14px;
  line-height: 24px;
  text-align: center;
  text-transform: uppercase;
  color: #ffffff;
  padding-top: 5px;
}
.sidebar__game {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  padding: 8px;
  box-shadow: 0px 4px 10px 0px #00000040;
  background: #ffffff;
  gap: 8px;
  border-radius: 0 0 6px 6px;
}
.sidebar-right-game__image:nth-child(2) {
  padding: 5px 0;
  background: url(../img/sidebar/img-2.jpg) no-repeat;
  background-size: cover;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
}
.sidebar-right-game__text,
.sidebar-right-game__text-small {
  font-family: Roboto;
  font-weight: 700;
  font-size: 12px;
  line-height: 20px;
  text-align: center;
  text-transform: uppercase;
  color: #ffffff;
  margin-bottom: 5px;
}
.sidebar-right-game__text-small {
  text-transform: none !important;
  margin-bottom: 3px;
}
.sidebar-right-game__button {
  padding: 8px 4px;
  text-transform: none;
  max-width: 89px;
  font-size: 12px;
  line-height: 20px;
}
.sidebar-right-game__image span {
  font-family: Roboto;
  font-weight: 700;
  font-size: 12px;
  line-height: 100%;
  letter-spacing: 0%;
  text-align: center;
  vertical-align: middle;
  text-transform: capitalize;
  color: #e96e32;
}
.sidebar-right-game__image img {
  width: 100%;
  min-height: 106px;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 6px;
}
.sidebar-right__header span:first-child {
  border-top: 3px solid #e96e32;
}
.sidebar-right__header span:last-child {
  color: #838588;
}
.currency-table {
  margin: 16px 0;
  width: 100%;
  border-collapse: collapse;
}
.currency-table th:first-child {
  width: 415px;
}
.currency-table thead {
  color: #41b15b;
  font-family: Roboto;
  font-weight: 700;
  font-size: 18px;
  line-height: 120%;
  text-transform: uppercase;
}
.currency-table th,
.currency-table td {
  padding: 12px 6px;
  text-align: left;
  border-bottom: 1px solid #1e5d65;
  vertical-align: top;
}
.currency-table th {
  border: none;
}
.currency-table td {
  font-family: Roboto;
  font-weight: 700;
  font-size: 15px;
  line-height: 150%;
  color: #ffffff;
}
.tag {
  display: inline-block;
  color: #ffffff;
  padding: 0px 12px 0 0;
  font-family: Roboto;
  font-weight: 400;
  font-size: 15px;
  line-height: 150%;
}
.pros-tables {
  width: 100%;
  display: flex;
  gap: 20px;
  margin: 16px 0;
  align-items: baseline;
}
.pros-table {
  width: 100%;
  border-collapse: collapse;
}
.table {
  width: 100%;
}
.pros-table__header {
  display: flex;
  gap: 12px;
  align-items: center;
  color: #41b15b;
  padding: 8px 0;
  text-align: left;
  border-radius: 3px;
  font-family: Roboto;
  font-weight: 700;
  font-size: 15px;
  line-height: 120%;
  text-transform: uppercase;
}
.pros-table__header img {
  width: 24px;
  height: 24px;
}
.pros-table__cell {
  padding: 12px 0;
  border-bottom: 1px solid #1e5d65;
  vertical-align: top;
  position: relative;
  font-family: Roboto;
  font-weight: 400;
  font-size: 15px;
  line-height: 150%;
  color: #ffffff;
}
.banner {
  display: flex;
  justify-content: center;
  padding: 40px 32px;
  margin-top: 100px;
}
.banner__title {
  color: white !important;
}
.banner__main {
  background: url(../img/banner-section/banner-section-bg.jpg) no-repeat center;
  background-size: cover;
}
.banner__bonus {
  background: url(../img/banner-section/banner-bonus-bg.jpg) no-repeat center;
  background-size: cover;
  margin-right: 0 !important;
  border-radius: 0;
}
.banner__app {
  background: url(../img/banner-section/banner-app-bg.jpg) no-repeat center;
  background-size: cover;
  border-radius: 0;
}
.banner__content,
.banner-bonus__content,
.banner-app__content {
  max-width: 640px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  background: #1b4045d9;
  border-radius: 3px;
  padding: 40px;
}
.banner__rating {
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  font-size: 15px;
  line-height: 150%;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 8px;
  text-align: center;
  text-transform: uppercase;
}
.banner__rating span {
  color: #ffffff;
  font-weight: 700;
  margin-left: 16px;
}
.breadcrumbs,
.breadcrumbs-app {
  display: flex;
  gap: 5px;
  margin-bottom: 16px;
  text-align: center;
}
.breadcrumbs li a,
.breadcrumbs-app li a {
  font-weight: 400;
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  line-height: 100%;
  color: rgba(255, 255, 255, 1);
  padding-right: 5px;
  text-align: center;
}
.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-family: "Roboto", sans-serif;
  font-weight: 400;
  font-size: 15px;
  line-height: 24px;
  margin-bottom: 16px;
  color: #ffffff;
  text-align: center;
}
.section__app {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: url(../img/app/section-app.jpg) no-repeat center;
  background-size: cover;
  padding: 82px 60px;
  border-radius: 3px;
  margin-top: 40px;
}
.section-app__buttons {
  display: flex;
  gap: 16px;
}
.section-app__image img {
  width: 100%;
  max-width: 258px;
}
.section-card__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.app__button {
  display: flex;
  gap: 16px;
  align-items: center;
  padding: 20px 40px;
  min-width: 245px;
}
.app-button__text {
  font-family: Roboto;
  font-weight: 700;
  font-size: 15px;
  line-height: 130%;
  text-transform: uppercase;
  text-align: left;
}
.section-card__list li {
  display: flex;
  flex-direction: column;
  border-radius: 3px;
}
.app-button__image img {
  width: 32px !important;
  height: 32px !important;
  max-width: 32px !important;
  max-height: 32px !important;
  min-width: 32px !important;
  min-height: 32px !important;
  flex-shrink: 0 !important;
}
.app__button:last-child {
  background: #416064;
}
.app__button:last-child:hover {
  background: #365054;
}
.bonus--first {
  background: url(../img/features/bonus-bg.jpg) no-repeat;
  background-size: cover;
  background-position: center;
}
.bonus {
  padding: 32px;
  display: flex;
  justify-content: center;
  border-radius: 3px;
  margin: 40px 0;
}
.bonus--second {
  background: url(../img/features/bonus--second.png) no-repeat;
  background-size: cover;
  background-position: center;
}
.bonus--third {
  background: url(../img/features/bonus--third.jpg) no-repeat;
  background-size: cover;
  background-position: center;
}
.bonus--fourth {
  background: url(../img/features/bonus--fourth.jpg) no-repeat;
  background-size: cover;
  background-position: center;
}
.bonus--fifth {
  background: url(../img/features/bonus--fifth.jpg) no-repeat;
  background-size: cover;
  background-position: center;
}
.bonus--sixth {
  background: url(../img/features/bonus--sixth.jpg) no-repeat;
  background-size: cover;
  background-position: center;
}
.bonus__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 590px;
  background: #1b4045d9;
  border-radius: 3px;
  padding: 40px 57px;
}
.bonus__text {
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  font-size: 18px;
  line-height: 100%;
  color: #ffffff;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.bonus--sixth__title {
  color: white !important;
  font-size: 40px !important;
  margin-bottom: 24px !important;
}
.bonus__privacy {
  font-family: Roboto;
  font-weight: 300;
  font-size: 10px;
  line-height: 150%;
  text-align: center;
  color: #ffffff;
  margin-top: 8px;
}
.bonus__buttons {
  display: flex;
  flex-direction: row;
  gap: 8px;
}
.bonus__title {
  padding: 0 !important;
  width: 100%;
  font-size: 40px !important;
  background: transparent !important;
  color: #ffda44 !important;
  border: none !important;
  text-align: center !important;
}
.bonus-table {
  margin: 16px 0;
  width: 100%;
  border-collapse: collapse;
}
.bonus-table__cell {
  padding: 12px 6px;
  color: #ffffff;
  font-family: Roboto;
  font-weight: 400;
  font-size: 15px;
  line-height: 150%;
}
.bonus-table__cell--head:first-child {
  /* width: 25%; */
}
.bonus-table__cell--head {
  color: #41b15b;
  font-family: Roboto;
  font-weight: 700;
  font-size: 18px;
  line-height: 120%;
  text-transform: uppercase;
  text-align: left;
}
.bonus-table__row {
  border-bottom: 1px solid #1e5d65;
}
.steps-app {
  display: flex;
  justify-content: flex-start;
  align-items: flex-end;
  padding: 40px;
  background: url(../img/steps/steps-app.jpg) no-repeat center;
  background-size: cover;
  margin: 16px 0;
}
.steps-app__item {
  display: flex;
  position: relative;
  margin-bottom: 12px;
  padding: 24px 16px;
  background: #102a2ebf;
  border: 1px solid #1e5d65;
  border-radius: 3px;
}
.steps-app__item:last-child {
  margin-bottom: 0;
}
.steps__title {
  background: transparent !important;
  padding: 0 !important;
  margin-bottom: 16px !important;
}
.steps__content {
  padding: 0;
  margin: 0 !important;
  background: transparent !important;
}
.steps__list {
  position: relative;
  list-style: none;
  margin-bottom: 0 !important;
}
.steps__item {
  display: flex;
  align-items: baseline;
  margin-bottom: 35px;
  position: relative;
}
.steps__item:last-child {
  margin: 0;
}
.steps__number {
  flex: 0 0 24px;
  width: 24px;
  height: 24px;
  background-color: #41b15b;
  border-radius: 50%;
  color: white;
  font-family: Roboto, sans-serif;
  font-weight: 700;
  font-size: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 16px;
  text-align: center;
  z-index: 1;
}
.steps__text {
  color: white;
  font-family: Roboto;
  font-weight: 400;
  font-size: 15px;
  line-height: 150%;
}
.instruction-steps {
  background: #054146;
  padding: 16px;
}
.instruction-step {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 32px;
  margin: 16px 0;
}
.instruction-steps__item {
  color: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  /* justify-content: center; */
  text-align: center;
  padding: 10px;
  max-width: 250px;
}
.instruction-steps__number {
  font-family: Roboto;
  font-weight: 700;
  font-size: 18px;
  line-height: 120%;
  letter-spacing: 0%;
  text-align: center;
  text-transform: uppercase;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #41b15b;
  margin-bottom: 16px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
}
.instruction-step__line {
  width: 32px;
  height: 1px;
  border-bottom: 1px dashed #41b15b;
  margin-bottom: 16px;
}

.instruction-steps__text {
  font-family: Roboto;
  font-weight: 700;
  font-size: 15px;
  line-height: 150%;
  text-align: center;
  color: #ffffff;
}
.bonus-step {
  margin: 16px 0;
  padding: 32px 16px;
  background: #054146;
  border-radius: 3px;
}
.bonus-steps__content {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.bonus-steps-content--first {
  display: flex;
  gap: 20px;
  background: url(../img/bonus-steps/bonus-steps--bg.jpg) no-repeat 40%
    center/cover;
  padding: 32px;
  border-radius: 3px;
}
.bonus-steps-content--second {
  display: flex;
  gap: 20px;
  background: url(../img/bonus-steps/bonus-steps--bg-second.jpg) no-repeat
    40% center/cover;
  padding: 32px;
  border-radius: 3px;
}
.bonus-steps-content--third {
  display: flex;
  gap: 20px;
  background: url(../img/bonus-steps/bonus-steps--bg-third.jpg) no-repeat 40%
    center/cover;
  padding: 32px;
  border-radius: 3px;
  margin-bottom: 16px;
}
.bonus-steps__item {
  width: 100%;
  color: #fff;
  font-family: Roboto;

}
.bonus-steps__line {
  width: 32px;
  height: 1px;
  border-bottom: 1px dashed #41b15b;
}
.bonus-steps__number {
  width: 40px;
  height: 40px;
  background-color: #41b15b;
  color: #fff;
  font-family: Roboto;
  font-weight: 700;
  font-size: 18px;
  line-height: 120%;
  text-align: center;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
}
.bonus-steps-item__header {
  display: flex;
  gap: 16px;
  align-items: center;
}
.bonus-steps__title {
  font-family: Roboto;
  font-weight: 700;
  font-size: 18px;
  line-height: 120%;
  text-transform: uppercase;
  color: #ffffff;
}
.bonus-steps__list, .bonus-steps__item p:not(.bonus-steps__title) {
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
  list-style: auto !important;
  margin-left: 125px;
  margin-top: 10px;
  max-width: 800px;
}

.bonus-steps__item p:not(.bonus-steps__title) {  
  margin-left: 110px;
}

.bonus-steps__list li {
  font-family: Roboto;
  font-weight: 400;
  font-size: 15px;
  line-height: 150%;
  color: #ffffff !important ;
}
.description {
  background: url(../img/section/article-bg.jpg) no-repeat center;
  padding: 32px 16px;
  background-size: cover;
  background-position: center;
  min-height: 470px;
}
.description__image img {
  max-width: 350px;
}
.description__content {
  margin-top: 16px;
  /* display: flex; */
  /* align-items: center; */
}
.description__title {
  background: none !important;
  padding: 0 !important;
}
.description__article p {
  color: white !important;
}
.app-install {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  background: url(../img/app/app-bg.jpg) no-repeat center center/cover;
  padding: 32px;
  border-radius: 3px;
  color: #fff;
  margin: 16px 0;
}
.app-install-item__header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}
.app-install__title {
  font-family: Roboto;
  font-weight: 700;
  font-size: 18px;
  line-height: 120%;
  text-transform: uppercase;
  color: #ffffff;
}
.app-install__list {
  padding: 0;
  margin-bottom: 32px;
  list-style: auto !important;
}
.app-install__icon img {
  width: 40px;
  height: 40px;
}
.apps-install {
  background: #054146;
  padding: 32px 16px;
}
.app-install__step {
  margin-bottom: 4px;
  font-family: Roboto;
  font-weight: 400;
  font-size: 15px;
  line-height: 150%;
  color: white;
  margin-left: 120px;
}
.app-install__line {
  width: 32px;
  height: 1px;
  border-bottom: 1px dashed #41b15b;
}
.app-install__number {
  flex: 0 0 24px;
  width: 24px;
  height: 24px;
  background-color: #102a2e;
  border-radius: 3px;
  color: white;
  font-family: Roboto, sans-serif;
  font-weight: 700;
  font-size: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 16px;
  text-align: center;
  z-index: 1;
}
.app-install__button {
  display: flex;
  min-width: 245px;
  gap: 16px;
  align-items: center;
  padding: 21px 40px;
  text-align: left;
  margin-left: 104px;
}
.app-install__button img {
  width: 32px;
  height: 32px;
}
.app-install__button--ios {
  background-color: #4caf50;
  color: #fff;
}
.app-install__button--android {
  background: #416064;
  color: #fff;
}
.app-install__button--android:hover {
  background: #3d595d;
}
.app {
  gap: 40px;
  background: url(../img/app/app-with-logo-bg.jpg) no-repeat center center/cover;
  padding: 30px 40px;
  border-radius: 3px;
  color: #fff;
  flex-wrap: wrap;
  margin: 20px 0;
}
.app__content {
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 150px;
}
.app__buttons {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.app-install__button-content {
  margin-left: 0 !important;
}
.app__image {
  width: 100%;
  max-width: 260px;
}
.info {
  background-color: #054146 !important;
  padding: 32px 16px;
}
.steps {
  margin: 16px 0;
}
.process {
  padding: 40px;
  background-size: cover;
  margin: 16px 0;
}
.process--first {
  background: url(../img/process/bg.jpg) no-repeat center;
  background-size: cover;
}
.process--second {
  background: url(../img/process/bg--second.jpg) no-repeat center;
  background-size: cover;
}
.process-content__list {
  display: flex;
  margin-bottom: 0 !important;
  flex-direction: column;
  justify-content: center;
  gap: 24px;
}
.process-content__list li {
  display: flex;
  align-items: center;
  background: #102a2ebf;
  border: 1px solid #1e5d65;
  gap: 16px;
  width: 100%;
  max-width: 403px;
  padding: 24px 16px;
  border-radius: 3px;
}
.process-content-item__number {
  width: 24px;
  min-width: 24px;
  height: 24px;
  min-height: 24px;
  background-color: #41b15b;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: Roboto, sans-serif;
  font-weight: 700;
  font-size: 13px;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
  border-radius: 50%;
  box-sizing: border-box;
}
.process-content__list li p {
  font-family: Roboto;
  font-weight: 400;
  font-size: 15px;
  line-height: 150%;
  color: white;
  text-align: center;
}
.process-content__list li:last-child {
  margin-bottom: 0;
}
.process-content-item__image img {
  width: 24px;
  height: 24px;
}
.game-table {
  width: 100%;
  border-collapse: collapse;
  margin: 16px 0;
  table-layout: fixed;
}
.game-table__head {
  color: white;
  font-family: Roboto;
  font-weight: 700;
  font-size: 18px;
  line-height: 120%;
  text-transform: uppercase;
  padding: 8px 12px;
  border-radius: 3px;
}
.game-table__row {
  border-bottom: 1px solid #1e5d65;
}
.game-table__cell {
  padding: 12px 6px;
  text-align: left;
  vertical-align: middle;
  color: #ffffff;
  font-family: Roboto;
  font-weight: 400;
  font-size: 15px;
  line-height: 150%;
}
.game-table__cell--header {
  font-family: Roboto;
  font-weight: 700;
  font-size: 18px;
  line-height: 120%;
  text-transform: uppercase;
  color: #41b15b;
}
.game-table__game {
  display: flex;
  align-items: center;
  gap: 10px;
}
.game-table__image {
  width: 32px;
  height: 32px;
  -o-object-fit: contain;
  object-fit: contain;
}
.game-table__title {
  display: inline-block;
}
.blackjack-table {
  width: 100%;
  border-collapse: collapse;
  margin: 16px 0;
}
.blackjack-table__head {
  color: #41b15b;
}
.blackjack-table__row {
  border-bottom: 1px solid #1e5d65;
}
.blackjack-table__cell {
  padding: 12px 0;
  text-align: left;
  vertical-align: top;
  font-family: Roboto;
  font-weight: 400;
  font-size: 15px;
  line-height: 150%;
  color: #ffffff;
}
.blackjack-table__cell--header {
  font-family: Roboto;
  font-weight: 700;
  font-size: 18px;
  line-height: 120%;
  text-transform: uppercase;
  color: #41b15b;
}
.blackjack-table__cell--header:first-child {
  width: 31%;
}
.blackjack-table__cell--header:nth-child(2) {
  width: 40%;
}
.blackjack-table__list {
  list-style: none;
  padding-left: 0;
  margin: 0;
}
.blackjack-table__list-item {
  position: relative;
  margin-left: 20px;
  margin-bottom: 4px;
  line-height: 1.4;
  list-style: auto;
}
.bonus__title span {
  color: #ffffff;
}
.section__cards {
  margin: 16px 0;
}
.section-card-item__image {
  flex: 1 1 50%;
}
.section-card-item__image img {
  width: 100%;
  height: 245px;
  border-radius: 3px 3px 0 0;
  -o-object-fit: cover;
  object-fit: cover;
}
.section-card-item__content {
  flex: 1 1 50%;
  padding: 16px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: #054146;
  border-radius: 0 0 3px 3px;
}
.bonus-card__title {
  font-family: Roboto;
  font-weight: 700;
  font-size: 18px;
  line-height: 120%;
  letter-spacing: 0%;
  text-transform: uppercase;
  text-align: left;
  background: none !important;
  padding: 0 !important;
  margin-bottom: 8px !important;
  border: none;
}
.bonus-card__text {
  font-family: Roboto;
  font-weight: 400;
  font-size: 15px;
  line-height: 150%;
  color: white;
  margin-bottom: 16px;
  text-align: center;
}
.bonus-card__buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  gap: 12px;
}
.bonus-card__button {
  max-width: 160px;
  padding: 14px;
}
.bonus-card__list li {
  position: relative;
  border-radius: 3px;
  overflow: hidden;
}
.bonus__title .description p:last-of-type {
  margin-bottom: 32px;
}
.rating__table {
  width: 100%;
}
.rating__table tbody {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  border-collapse: collapse;
  justify-content: center;
  gap: 24px;
}
.rating__row {
  display: flex;
  flex-direction: column;
  background: #054146;
  align-items: center;
  padding: 16px;
  border-radius: 3px;
  max-width: 350px;
}
.rating__title {
  color: #ffffff;
  font-family: Roboto;
  font-weight: 700;
  font-size: 15px;
  line-height: 150%;
  text-align: center;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.rating__stars {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
}
.rating__stars img {
  width: 20px;
  height: 20px;
}
.rating__line {
  width: 32px;
  height: 1px;
  border-bottom: 1px dashed #41b15b;
  margin-bottom: 16px;
}
.rating__description {
  font-family: Roboto;
  font-weight: 400;
  font-size: 15px;
  line-height: 150%;
  text-align: center;
  color: #ffffff;
}
.testimonials__info {
  display: flex;
  gap: 24px;
  align-items: center;
}
.testimonials__content {
  display: flex;
  flex-direction: column;
  margin: 0 auto;
  gap: 16px;
  background: #054146;
  padding: 16px;
  border-radius: 3px;
}
.testimonials__name {
  font-family: Roboto;
  font-weight: 700;
  font-size: 15px;
  line-height: 150%;
  text-transform: uppercase;
  color: white;
  margin-bottom: 8px;
}
.testimonials__position {
  color: #ffffff;
  font-family: Roboto;
  font-weight: 400;
  font-size: 15px;
  line-height: 150%;
}
.testimonials__description {
  font-family: Roboto;
  font-weight: 400;
  font-size: 15px;
  line-height: 150%;
  color: white;
  margin-bottom: 16px;
}
.testimonials__image {
  flex-shrink: 0;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  overflow: hidden;
}
.testimonials__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.faq {
  position: relative;
}
.scroll {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 999;
  display: none;
}
.scroll__button {
  display: block;
  width: 50px;
  height: 50px;
}
.scroll__button img {
  width: 100%;
  height: auto;
  -webkit-filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
  cursor: pointer;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.scroll__button:hover img {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}
.review-card {
  background-color: #054146;
  border-radius: 3px;
  padding: 16px;
  margin-bottom: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.review-card__user {
  display: flex;
  align-items: center;
  gap: 15px;
}
.review-card-user__image {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
}
.review-card__details {
  display: flex;
  flex-direction: column;
}
.review-card__name {
  font-family: Roboto;
  font-weight: 700;
  font-size: 15px;
  line-height: 150%;
  text-transform: uppercase;
  color: #ffffff;
}
.review-card__city {
  font-family: Roboto;
  font-weight: 400;
  font-size: 15px;
  line-height: 150%;
  color: #ffffff;
}
.review-card__info {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.review-card__stars {
  display: flex;
  gap: 8px;
}
.review-card__stars img {
  width: 20px;
  height: 20px;
}
.review-card__text {
  font-family: Roboto;
  font-weight: 400;
  font-size: 15px;
  line-height: 150%;
  color: #ffffff;
}
.faq__item {
  margin-bottom: 16px;
  border-radius: 12px;
}
.faq__question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  text-align: left;
  padding: 16px 0;
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  font-size: 18px;
  line-height: 120%;
  text-transform: uppercase;
  color: #ffffff;
}
.faq__question img {
  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: 3px;
}
.faq__answer p {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-size: 15px;
  line-height: 150%;
  color: #ffffff;
  padding-bottom: 16px;
  border-radius: 0 0 3px 3px;
}
.faq__question 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;
  border-radius: 3px;
}
.faq__question.active {
  border-radius: 3px 3px 0 0;
}
.footer {
  padding: 10px;
}
.footer__locations {
  background: #ffffff;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  padding: 16px;
  gap: 16px;
  border-radius: 8px;
  margin-bottom: 10px;
}
.footer__locations li {
  display: flex;
  padding: 6px 12px;
  background: #f5f5f5;
  justify-content: center;
  align-items: center;
  border-radius: 3px;
}
.footer__locations a {
  display: flex;
  align-items: center;
  gap: 12px;
}
.footer__locations img {
  width: 16px;
  height: 16px;
}
.footer__locations span {
  font-family: Roboto;
  font-weight: 400;
  font-size: 14px;
  line-height: 150%;
  text-transform: uppercase;
  color: #054146;
}
.footer__menu {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  margin-bottom: 32px;
  background: white;
  padding: 16px 24px;
  border-radius: 8px;
  margin-bottom: 10px;
}
.footer-menu__block a {
  font-family: Roboto;
  font-weight: 400;
  font-size: 12px;
  line-height: 14px;
  letter-spacing: 0%;
  margin-bottom: 8px;
  color: #054146;
  text-transform: none;
  text-decoration: none;
  transition: color 0.3s ease, text-shadow 0.3s ease;
}
.footer-menu__block a:hover {
  color: #36a64f;
  text-shadow: 0 0 5px rgba(54, 166, 79, 0.6);
}
.footer-menu__block img {
  width: 14px;
  height: 14px;
}
.footer-menu__title {
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  font-size: 14px;
  line-height: 100%;
  text-transform: uppercase;
  color: #054146;
  margin-bottom: 12px;
}
.footer__payments {
  display: flex;
  gap: 10px;
  margin-bottom: 10px;
}
.footer-payments__text {
  flex: 1 1 80%;
  display: flex;
  align-items: center;
  background: white;
  border-radius: 8px;
  padding: 10px 24px;
}
.footer-payments__text p {
  font-family: Roboto;
  font-weight: 400;
  font-size: 12px;
  line-height: 14px;
  color: #054146;
}
.footer-payments__image {
  background: white;
  padding: 16px;
  border-radius: 8px;
  /* flex: 1 1 30%; */
}
.footer-payments__image img {
  width: 100%;
  max-width: 232px;
}
.footer__block {
  display: flex;
  gap: 8px;
}
.footer-menu__block li {
  margin-bottom: 8px;
}
.footer-block__image {
  width: 20%;
  display: flex;
  background: white;
  padding: 10px;
  align-items: center;
  justify-content: center;
  border-radius: 3px;
  margin-bottom: 10px;
}
.footer-block__image img {
  max-width: 100px;
  max-height: 105px;
}
.footer-block__text p:first-child {
  font-family: Roboto;
  font-weight: 700;
  font-size: 12px;
  line-height: 100%;
  color: #373c47;
  margin-bottom: 5px;
}
.footer-block__text a,
.footer__copyright a {
  cursor: pointer;
  color: #5ba8b3;
  text-decoration: underline;
}
.footer-block__text p:last-child {
  font-family: Roboto;
  font-weight: 400;
  font-size: 12px;
  line-height: 130%;
  color: #9398a0;
}
.footer-block__text {
  background: white;
  padding: 15px;
  margin-bottom: 10px;
  border-radius: 3px;
}
.footer__bottom {
  display: flex;
  gap: 10px;
}
.footer__copyright {
  padding: 24px 30px;
  background: white;
  border-radius: 8px;
  flex: 1 1 70%;
}
.footer-copyright__text {
  font-family: Roboto;
  font-weight: 400;
  font-size: 12px;
  line-height: 14px;
  color: #054146;
}
.footer__copyright a {
  font-size: 12px;
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  text-decoration: underline;
  color: #054146;
}
.footer-bottom__block {
  flex: 1 1 20%;
}
.footer__support {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 16px;
  background: white;
  border-radius: 3px;
}
.footer-support__image {
  width: 48px;
  height: 48px;
}
.footer-support__text {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.footer-support__text p {
  font-family: Roboto;
  font-weight: 700;
  font-size: 14px;
  line-height: 100%;
  text-transform: uppercase;
  color: #373c47;
  margin-bottom: 8px;
}
.footer-support__text a {
  font-family: Roboto;
  font-weight: 400;
  font-size: 20px;
  text-transform: uppercase;
  color: #373c47;
}
.footer-additional__info {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-bottom: 10px;
}
.footer-additional__social {
  display: flex;
  justify-content: space-between;
  padding: 8px 90px;
  border-radius: 3px;
  background: white;
  gap: 20px;
}
.footer-additional__social img {
  width: 32px;
  height: 32px;
}
.footer-additional__age {
  padding: 16px 10px;
  border-radius: 3px;
  background: #e74b4a;
  height: 100%;
}
.footer-additional__age p {
  font-family: Roboto;
  font-weight: 400;
  font-size: 20px;
  line-height: 100%;
  text-align: center;
  text-transform: uppercase;
  color: #ffffff;
}
.footer-bottom__block {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
}
.footer-additional__mobile {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
  background: #799496;
  border-radius: 8px;
}
.footer-additional__mobile p {
  font-family: Roboto;
  font-weight: 400;
  font-size: 14px;
  line-height: 16px;
  letter-spacing: 0%;
  text-align: center;
  text-transform: uppercase;
  color: #ffffff;
}
.footer__age {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
  background: #ffffff;
  border-radius: 8px;
}
.footer__age p {
  font-family: Roboto;
  font-weight: 400;
  font-size: 20px;
  line-height: 24px;
  text-align: center;
  color: #054146;
}
.footer-buttons {
  display: none;
}
