@import url("https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

*:focus {
  outline: none;
}

:root {
  --transition: 0.4s all linear;
  --main-color: #ffe433;
  --bg-color: #0b0b0b;
}

::-webkit-scrollbar {
  width: 6px;
  height: 4px;
  background: transparent;
}
::-webkit-scrollbar-thumb {
  background-color: var(--main-color);
  -webkit-border-radius: 1ex;
}

body {
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-display: swap;
  font-variation-settings: "slnt" 0;
  background-color: var(--bg-color);
}

.container { 
    max-width: 1280px;
    width: 100%;
    padding-right: 12px;
    padding-left: 12px;
    margin: auto;
}
.header-container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
    transition: .5s;
    background-color: #e50037;
    border-radius:12px;
}
.buttons{
  margin-right: 20px;
}

@media (max-width: 768px) {
  .buttons {
    margin-right: 15px;
  }
}
.button__login {
  padding: 10px 16px;
  border-radius: 8px;
  background: transparent;
  border: 2px solid #ffe433;
  margin-right: 10px;
  color: #ffffff;
  text-decoration: none;
}
.button__login:hover {
  background: #ffe433;
  color: #1c1c1c;
}
.button__registration {
  position: relative;
  padding: 10px 24px;
  border-radius: 8px;
  text-decoration: none;
  background: #ffe433;
  border: 2px solid #ffe433;
  color: #1c1c1c;
  /* box-shadow: 0px 0px 8.9px 0px #E5EAF8 inset; */
}
.button__registration:after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  bottom: -4px;
  right: -20px;
  background-image: url(../images/present.png);
  background-repeat: no-repeat;
  background-position: right bottom;
}
.button__registration:hover {
  background: transparent;
  border: 2px solid #ffe433;
  color: #ffffff;
}

}
    .text {
      float: left; /* Текст остается слева */
      width: 50%; /* Половина ширины экрана */
      text-align: left; /* Выравнивание текста слева */
    }
    .image {
      float: right; /* Изображение справа */
      width: 50%; /* Половина ширины экрана */
      text-align: right; /* Выравнивание изображения справа */
    }
main {
  display: flex;
  flex-direction: column;
  width: 100%;
  min-height: 100%;
}

header {
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
    z-index: 20;
    padding-bottom: 15px;
    color: var(--theme-header-text-color);
    background-color: var(--theme-header-bg);
    border-bottom: 1px solid var(--theme-color-border-header);
}

.logo {
  position: relative;
  display: flex;
  width: 195px;
  height: auto;
  z-index: 9;
  margin-left: 20px;
}

a.logo {
  transition: var(--transition);
}

a.logo:hover {
  transform: scale(1.05);
}

.logo picture,
.logo img,
.logo p {
  display: flex;
  width: auto;
  height: 80px;
}

header nav {
  display: flex;
  justify-content: center;
  align-items: center;
}

.menu {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  list-style: none;
}

header nav .menu {
  justify-content: center;
}
header.header .primary_menu_desktop_ver>ul{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 50px;
    gap: 6px;
    list-style: none;
    margin: 0;
    padding-left: var(--theme-block-padding);
    padding-right: var(--theme-block-padding);
    background-color: var(--theme-section-bg);
    border-radius: var(--theme-rounded-section);
}
.menu li {
  position: relative;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  color: #ffffff;
  transition: var(--transition);
}

header .menu li {
  margin: 0 0 15px 38px;
}
.slot-image {
    display: flex;
    justify-content: center;
    align-items: center;
    height: auto;
    width: auto;
}

.slot-image a {
    display: block;
}

.slot-image img {
    max-width: 100%;
    height: auto;
    display: block;
}
footer.footer {
    padding-top: 40px;
    padding-bottom: 40px;
    color: white;
    background-color: var(--footer_bg_color);
}

footer.footer .logo_row {
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: baseline;
    grid-gap: 24px;
    margin-bottom: 24px;
}

footer.footer .logo_row:after {
    content: "";
    display: block;
    height: 1px;
    background-color: var(--bs-secondary);
}

footer.footer .logo_row .custom-logo-link {
    max-width: 100px;
}

footer.footer .logo_row .custom-logo-link .custom-logo {
    max-height: 50px;
}

footer.footer .footer__container {
    display: grid;
    grid-template-columns: 1.3fr repeat(3, 1fr);
    grid-gap: 100px;
    justify-content: space-between;
    margin-bottom: 24px;
}

footer.footer .footer__container .heading {
    margin-bottom: 16px;
    font-size: 20px;
    color: white;
}

footer.footer .footer__container .footer_description .description {
    font-size: .7rem;
    color: white;
}

footer.footer .footer__container nav ul {
    display: flex;
    flex-direction: column;
    gap: 5px;
    list-style: none;
    margin: 0;
    padding: 0;
}

footer.footer .footer__container nav ul li {
    font-size: .8rem;
    padding-bottom: 4px;
    color: white;
}

footer.footer .footer__container nav ul li a {
    color: var(--header_footer_link_color);
    text-decoration: none;
}

footer.footer .footer__container nav ul li a:hover {
    color: var(--bs-primary);
}

footer.footer .footer__container2 {
    display: grid;
    grid-template-columns: repeat(2, auto);
    grid-gap: 10px;
    justify-content: space-between;
    margin-bottom: 24px;
}

footer.footer .footer__container2 .social {
    display: flex;
    gap: 12px;
}

footer.footer .footer__container2 .social a {
    display: grid;
    place-items: center;
    width: 32px;
    height: 32px;
    text-decoration: none;
    text-align: center;
    line-height: normal;
    color: var(--header_footer_link_color);
}

footer.footer .footer__container2 .social a:hover {
    color: var(--bs-primary);
}

footer.footer .footer__container2 .footer_payments {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    max-width: 814px;
}

footer.footer .footer__container2 .footer_payments .item {
    max-width: 75px;
}

footer.footer .footer__container2 .footer_payments img {
    max-height: 32px;
}

footer.footer .footer_logos_police {
    display: flex;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
    border-top: 1px solid var(--bs-secondary);
    border-bottom: 1px solid var(--bs-secondary);
    padding: 24px 0;
    margin-bottom: 24px;
}

footer.footer .footer_logos_police .item {
    max-width: 75px;
}

footer.footer .footer_logos_police img {
    width: auto;
    height: 30px;
}

footer.footer .footer_text2 {
    font-size: .9rem;
    text-align: center;
    color: white;
    margin-bottom: 14px;
}

footer.footer .footer_text3 {
    font-size: .9rem;
    text-align: center;
    color: white;
    margin-bottom: 5px;
}

footer.footer .copyright {
    font-size: .8rem;
    text-align: center;
    color: white;
}

@media (max-width:991px) {
    footer.footer {
        text-align: center;
    }

    footer.footer.panel_mode {
        padding-bottom: 84px;
    }

    footer.footer .footer__container {
        grid-template-columns: none;
        grid-gap: 24px;
    }

    footer.footer .footer__container nav ul {
        gap: 12px;
    }

    footer.footer .footer__container nav ul li {
        font-size: inherit;
    }

    footer.footer .footer__container2 {
        grid-template-columns: none;
        grid-gap: 24px;
        justify-content: center;
        border-top: 1px solid var(--bs-secondary);
        padding: 24px 0;
        margin-bottom: 0;
    }

    footer.footer .footer__container2 .social {
        justify-content: center;
    }

    footer.footer .nav_column .heading {
        opacity: .5;
    }

    footer.footer .footer_logos_police {
        gap: 12px;
    }

    footer.footer .footer_logos_police .item {
        max-width: 42px;
    }
}
.nav_column {
  text-align: center;
}
.menu li a:hover {
  color: #fe7c00;
}

.menu li.active:before {
  width: 100%;
}

.menu li a {
  color: #ffffff;
  text-decoration: none;
}

.burger {
  position: relative;
  display: none;
  z-index: 9;
}

.intro {
  margin: 100px auto 30px;
  background: url("../images/betking.jpeg") center / cover no-repeat;
  border-radius: 12px;
  padding: 65px 44px;
}

.intro h1 {
  margin: 0 0 8px 0;
  font-size: 36px;
  font-style: normal;
  font-weight: 700;
  line-height: 43px;
  color: #ffffff;
  flex: 1;
  width: 50%;
}

.intro p {
  margin: 0 0 23px 0;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  color: #ffffff;
  width: 50%;
}

.intro .button {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 300px;
  border-radius: 8px;
  padding: 10px;
  cursor: pointer;
  color: #1c1c1c;
  background: #ffe433;
  border: 2px solid #ffe433;
}
.intro .button:hover {
  background: transparent;
  color: #ffffff;
}
.button-text{
  text-align: center;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 300px;
  border-radius: 8px;
  padding: 10px;
  cursor: pointer;
  color: #E8ECF2;
  background: #cc0031;
  border: 2px solid #ffe433;
  margin: 10px auto;
}
.button-text:hover{
  background: transparent;
  color: #ffffff;
}
.content {
  margin: 0px 0;
  border-radius: 20px;
      padding: 20px;
    overflow: hidden; /* Для предотвращения коллапса родителя */
}
  .text {
    float: left; /* Расположение текста слева */
    width: 50%; /* Ширина текста */
    box-sizing: border-box; /* Учет отступов в ширину */
    padding-right: 10px; /* Отступ между текстом и изображением */
  }
  .image {
    float: right; /* Расположение изображения справа */
    width: 50%; /* Ширина изображения */
    text-align: right; /* Выравнивание изображения внутри блока */
  }
  .content-image {
    max-width: 100%; /* Адаптивная ширина изображения */
    height: auto; /* Сохранение пропорций изображения */
  }

.content.error {
  justify-content: center;
  align-items: center;
  min-height: 45vh;
}

.content .img-text,
.img-big {
  display: flex;
  margin: 30px 0;
  width: 100%;
  height: auto;
  border-radius: 54px;
  overflow: hidden;
}


.img-big {
  height: 410px;
}
.img-big img {
  /* object-fit: cover; */
  border-radius: 12px;
}

.content .img-text:hover img {
  transform: scale(1.02);
  filter: brightness(80%);
}

.content .img-cov {
  width: 200px;
  height: 200px;
  border-radius: 25px;
  overflow: hidden;
  margin: 20px auto;
}

.content .img-cov p,
.content .img-cov picture,
.content .img-cov img {
  display: flex;
  width: 100%;
  height: 100%;
  transition: var(--transition);
}

.content .img-cov:hover img {
  transform: scale(1.02);
  filter: brightness(80%);
}

.content h2 {
  width: 100%;
  text-align: center;
  margin: 30px 0 15px 0;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  color: #1c1c1c;
  background: #ffe433;
  border-radius: 12px;
  padding: 19px 0;
}
.content h3,
.content h4 {
width: 100%;
  text-align: center;
  margin: 30px 0 15px 0;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  color: #1c1c1c;
  background: #ffe433;
  border-radius: 12px;
  padding: 10px 0;
}

.content h5 {
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  color: #ffffff;
}

.content h2 {
  font-size: 24px;
}

.content ul,
.content ol {
  margin: 0 0 15px 15px;
}

.content ul li:last-child,
.content li ol:last-child {
  margin: 0;
}

.content .table-responsive {
  display: flex;
  overflow: auto;
  margin: 20px 0;
  width: 100%;
  background: #2a2a2a;
  padding: 16px;
  border-radius: 12px;
}

.content .table-responsive table {
  display: table;
  width: 100%;
  border-collapse: separate;
  border-spacing: 0 8px;
}
.table-responsive .headling {
  font-size: 14px;
  color: #969baa;
  font-weight: 600;
}
.table-responsive .text {
  font-size: 16px;
  color: #ffffff;
  font-weight: 600;
}

.content .table-responsive td:first-child {
  border-radius: 8px 0 0 8px;
}
.content .table-responsive td:last-child {
  border-radius: 0 8px 8px 0;
}
.content .table-responsive tr {
  background: #1c1c1c;
}

.content .table-responsive td,
.content .table-responsive th {
  text-align: center;
  padding: 7px;
  width: 30px;
  height: 25px;
}
.content .table-responsive th {
  font-weight: bold;
  background-color: #ffffff;
  color: var(--main-color);
}

.content p,
.content li {
  margin: 0 0 15px 0;
}

.content p,
.content td,
.content th,
.content li {
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  color: #ffffff;
}
.row {
  margin: 0 auto;
  max-width: 85%;
  width: 100%;
}


.row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.payment svg {
  width: 30px;
  height: 30px;
}
.social svg {
  width: 15px;
  height: 15px;
  fill: #8e8e8e;
}
.social svg:hover {
  fill: #ffffff;
}

.spoiler-list {
  background-color: #1c1c1c;
  border-radius: 8px;
  margin-bottom: 24px;
}

.spoiler-list .spoiler-btn {
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 16px;
}
.spoiler-list .spoiler-list-content {
  display: none;
}
.spoiler-list .spoiler-list-content ol {
  padding-left: 33px;
  padding-bottom: 10px;
  margin-top: 4px;
}
.spoiler-btn p {
  margin-bottom: 0;
}
.spoiler-list .spoiler-list-content.show {
  display: block;
}

.spoiler-list .spoiler-btn .arrow.open {
  transform: rotate(180deg);
}
.spoilerContentJs a {
  text-decoration: none;
  color: inherit;
}
.spoilerContentJs a:hover {
  color: var(--main-color);
}
.faq .faq-item h3 {
  cursor: pointer;
  border-radius: 12px;
  padding: 14px 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
  margin-top: 0 !important;
  font-weight: 600;
  background: #1c1c1c !important;
  text-align: left;
}
.faq .faq-item .faq-item-content {
  padding: 12px 16px;
  background-color: #1c1c1c;
  border-radius: 12px;
  display: none;
  margin-bottom: 8px;
}
.faq .faq-item .faq-item-content.show {
  display: block;
}
.faq .faq-item .faq-item-content p {
  margin: 0;
}
.faq .faq-item h3::after {
  content: url(../images/arrow-down.svg);
  margin-right: 5px;
}
.faq .faq-item.show h3::after {
  content: url(../images/arrow-up.svg);
  margin-right: 5px;
}

@media screen and (max-width: 1024px) {
  header {
    position: relative;
  }

  .logo {
    margin: 0 0 10px 0;
    height: 20px;
  }

  .burger {
    display: flex;
    width: 50px;
    height: 50px;
    border: none;
    transition: var(--transition);
  }

  header .menu {
    position: absolute;
    top: -700%;
    left: 0;
    flex-direction: column;
    align-items: flex-start;
    padding: 50px 0;
    width: 100%;
    background-color: var(--bg-color);
    transition: 0.55s all linear;
    z-index: 8;
  }

  header.active .menu {
    top: 100%;
  }

  header .menu li {
    margin: 0 0 35px 0;
  }

  .menu li {
    font-size: 25px;
  }

  .intro {
    margin: 40px 0 0 0;
    width: 100%;
    flex-direction: column-reverse;
    padding: 50px 13px 5px 13px;
  }

  .intro .bg {
    margin: 25px 0 0 0;
    width: 100%;
  }

  .intro .body {
    width: 100%;
  }

  .intro h1 {
    margin: 0 0 15px 0;
  }

  .intro p {
    font-size: 22px;
  }

  .content.error {
    min-height: 55vh;
  }

  .content h2 {
    font-size: 40px;
  }
  .content h2, .content p { 
    flex: 1;
    max-width: 60%;
  }
  .content-image {
    width: 100%;
    max-width: 400px; 
}

  .content h3 {
    font-size: 35px;
  }

  .content p,
  .content li {
    margin: 0 0 20px 0;
  }

  .content ul,
  .content ol {
    margin: 0 0 20px 15px;
  }

  .content p,
  .content td,
  .content th,
  .content li {
    font-size: 22px;
  }
  .img-big {
    height: auto;
  }

}

@media screen and (max-width: 600px) {
  header {
    padding: 10px 20px;
  }

  .logo {
    margin: 0;
    height: 52px;
    align-items: center;
    width: auto;
    margin-left: 15px;
  }
 
  /* .logo picture, .logo img, .logo p {
        height: 15px;
    } */
  .butons{
    margin-right: 15px;
  }
  .button__registration,
  .button__login {
    font-size: 12px;
  }
  .burger {
    width: 20px;
    height: 20px;
  }

  header .menu {
    padding: 25px;
  }

  .menu li {
    margin: 0 0 31px 0;
    font-size: 12px;
  }

  .intro {
    margin: 20px 0;
    width: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
      url("../images/betking.jpeg") center / cover no-repeat;
  }

  .intro .body {
    min-height: auto;
    width: 100%;
    padding: 10px 20px;
    border-radius: 10px;
  }

  .intro .body h1 {
    margin: 0 0 30px 0;
  }

  .intro .body p {
    font-size: 12px;
  }

  .intro .bg {
    width: 100%;
    height: 200px;
    border-radius: 10px;
  }

  .intro h1 {
    font-size: 24px;
    line-height: 29px;
    width: 100%;
    text-align: center;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
  }

  .intro p {
    margin: 0 0 20px 0;
    font-size: 12px;
    width: 100%;
    text-align: center;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
  }

  .intro .button {
    width: 100%;
    padding: 15px;
    border-radius: 6px;
    max-width: 100%;
  }

  .content {
    padding: 20px 0;
    border-radius: 10px;
    flex-direction: column;
    align-items: center;
  }

  .content.error {
    min-height: 60vh;
  }

  .content .img-text {
    border-radius: 24px;
  }
  .img-big {
    height: 195px;
    border-radius: 8px;
  }
  .content h2, .content p {
      max-width: 100%;
    }

  .content h2 {
    font-size: 18px;
    border-radius: 8;
  }

  .content h3 {
    font-size: 16px;
  }

  .content ul,
  .content ol {
    margin: 0 0 10px 10px;
  }

  .content p,
  .content li {
    margin: 0 0 10px 0;
  }

  .content p,
  .content td,
  .content th,
  .content li {
    font-size: 12px;
  }
  .img-big {
    height: auto;
    width: 100%;
  }

  .content .img-cov {
    width: 150px;
    height: 150px;
    border-radius: 20px;
    margin: 20px auto !important;
  }
  .content .table-responsive {
    border-radius: 8px;
  }
  .row {
    flex-wrap: wrap;
  }
  .row .logo {
    order: 1;
    height: 25px;
  }
  .social {
    order: 2;
  }
  .payment {
    order: 3;
  }
  .faq .faq-item h3 {
    border-radius: 8px;
  }
  .faq .faq-item .faq-item-content {
    border-radius: 8px;
  }
}

@media screen and (max-width: 600px) {
  .img-cov {
    float: none !important;
  }
}
a {
  text-decoration: none;
}
.intro-error {
  text-align: center;
  margin: 100px 0 80px 0;
  min-height: 70vh;
}
.intro-error h1 {
  color: #ffe433;
  font-size: 150px;
}
.intro-error h1 span {
  color: #ffffff;
}
.intro-error p {
  margin: 50px 0;
  color: #ffffff;
}
.intro-error .button {
  max-width: 300px;
  border-radius: 8px;
  padding: 10px;
  cursor: pointer;
  color: #1c1c1c;
  background: #ffffff;
}
@media screen and (max-width: 600px) {
  .intro-error h1 {
    font-size: 96px;
  }
}
/* @media screen and (max-width: 600px) {
    .content .table-responsive tbody {
        display: flex;
    }
    .content .table-responsive tr {
        display: block;
    }
    .content .table-responsive td {
        width: 100%;
        float: left;
        height: auto;
    }
    .table-responsive .headling {
        font-size: 12px;
    }
    .table-responsive .text {
        font-size: 12px;
    }
} */

#code-root {
  text-decoration: none;
  color: black;
}

body > main > div > section.content > p.code-root {
  cursor: pointer;
}
