*,
*::before,
*::after {
  box-sizing: border-box;
}

body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

body {
  min-height: 100vh;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeSpeed;
  font-family: system-ui, -apple-system, 'Segoe UI', Roboto, Helvetica, Arial,
    sans-serif;
  background-color: #fff;
  color: #000;
}

ul,
ol {
  list-style: none;
  margin: 0;
  padding: 0;
}

a {
  text-decoration: none;
  color: inherit;
  -webkit-tap-highlight-color: transparent;
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
  height: auto;
}

input,
button,
textarea,
select {
  font: inherit;
  color: inherit;
  background: none;
  border: none;
  outline: none;
}

button {
  cursor: pointer;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

blockquote,
q {
  quotes: none;
}
blockquote::before,
blockquote::after,
q::before,
q::after {
  content: '';
}

/* :focus {
	outline: 2px solid #005fcc;
	outline-offset: 2px;
} */

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

@font-face {
  font-family: 'Cazinotop10-Inter';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../cazinotop10-fonts/Cazinotop-Inter-Regular.woff2') format('woff2');
}

@font-face {
  font-family: 'Cazinotop10-Inter';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('../cazinotop10-fonts/Cazinotop-Inter-Medium.woff2') format('woff2');
}

@font-face {
  font-family: 'Cazinotop10-Inter';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('../cazinotop10-fonts/Cazinotop-Inter-SemiBold.woff2')
    format('woff2');
}

@font-face {
  font-family: 'Cazinotop10-Inter';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('../cazinotop10-fonts/Cazinotop-Inter-Bold.woff2') format('woff2');
}

@font-face {
  font-family: 'Cazinotop10-Inter';
  font-style: normal;
  font-weight: 900;
  font-display: swap;
  src: url('../cazinotop10-fonts/Cazinotop-Inter-Black.woff2') format('woff2');
}

@font-face {
  font-family: 'Cazinotop10-Inter';
  font-style: italic;
  font-weight: 900;
  font-display: swap;
  src: url('../cazinotop10-fonts/Cazinotop-Inter-BlackItalic.woff2')
    format('woff2');
}

:root {
  --default-font-family: 'Cazinotop10-Inter';
  --default-font-size: 16px;
  --default-font-style: normal;
  --default-font-weight: 400;
  --default-line-height: 120%;

  --bg-black-color: #0d0d0d;
  --bg-dark-gray-color: #313131;
  --bg-brown-color: #2c2200;
  --bg-red-color: #ba0000;
  --bg-yellow-color: #ffc300;
  --bg-white-color: #ffffff;

  --text-black-color: #0d0d0d;
  --text-yellow-color: #ffc300;
  --text-white-color: #ffffff;
}

html,
body {
  height: 100%;
}

body {
  font-family: var(--default-font-family);
  font-size: var(--default-font-size);
  font-style: var(--default-font-style);
  line-height: var(--default-line-height);
  font-weight: var(--default-font-weight);
  color: var(--text-white-color);
  background: var(--bg-black-color);
  position: relative;
  overflow-x: hidden;
}

.cazinotop10-body_betting .cazinotop10-license {
  padding-top: 0;
  padding-bottom: 80px;
}

.cazinotop10-site-wrapper {
  width: 100%;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 1;
}

.cazinotop10-main {
  flex: 1 1 auto;
}

.cazinotop10-container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  position: relative;
}

.cazinotop10-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 10px 50px;
  background: var(--bg-yellow-color);
  border-radius: 6px;
  color: var(--text-black-color);
  font-size: 14px;
  font-style: italic;
  font-weight: 900;
  line-height: normal;
  text-transform: uppercase;
  transition: background 0.25s ease-in-out, color 0.25s ease-in-out;
}

.cazinotop10-btn:hover {
  background: var(--bg-red-color);
  color: var(--text-white-color);
}

.cazinotop10-mobile {
  display: none;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.cazinotop10-header {
  width: 100%;
  position: fixed;
  top: 0;
  left: 50%;
  transform: translate(-50%, 0);
  background: rgba(21, 21, 21, 0.8);
  border-bottom: 1px solid rgba(21, 21, 21, 0.8);
  z-index: 10;
  transition: background 0.25s ease-in-out, border-bottom 0.25s ease-in-out;
}

.cazinotop10-header_scroll {
  background: var(--bg-black-color);
  border-bottom: 1px solid var(--bg-yellow-color);
}

.cazinotop10-header__top {
  padding: 5px 0;
  font-size: 14px;
  line-height: 100%;
}

.cazinotop10-header__top-content {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.cazinotop10-header__top-icon {
  width: 30px;
  height: 30px;
  background: url('../cazinotop10-imgs/cazinotop10-18plus-icon.svg') no-repeat
    center / contain;
  flex: none;
}

.cazinotop10-header__body {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 11px 0;
}

.cazinotop10-header__logo {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translate(0, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  opacity: 1;
  transition: opacity 0.25s ease-in-out;
}

.cazinotop10-header__logo:hover {
  opacity: 0.6;
}

.cazinotop10-header__logo-img {
  display: block;
  width: 40px;
  height: 40px;
  object-fit: contain;
  object-position: center;
}

.cazinotop10-header__logo-text {
  font-size: 14px;
  font-weight: 700;
  line-height: 100%;
  text-transform: uppercase;
}

.cazinotop10-header__menu {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
}

.cazinotop10-header__menu-link {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-white-color);
  transition: color 0.25s ease-in-out;
}

.cazinotop10-header__menu-link:hover {
  color: var(--text-yellow-color);
}

.cazinotop10-header__burger {
  display: none;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.cazinotop10-cover {
  background: url('../cazinotop10-imgs/cazinotop10-cover-bg.webp') no-repeat
    center / cover;
  padding: 11.51vw 0 1.56vw 0;
  min-height: 410px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.cazinotop10-cover__wrapper {
  width: 100%;
}

.cazinotop10-cover__content {
  width: 100%;
  max-width: 1000px;
}

.cazinotop10-cover__title {
  font-size: 50px;
  font-weight: 700;
  line-height: 100%;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.cazinotop10-cover__description {
  font-size: 20px;
}

.cazinotop10-choice {
  padding-top: 80px;
}

.cazinotop10-choice__title {
  font-size: 20px;
  font-weight: 600;
  line-height: 100%;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.cazinotop10-choice__list {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 20px;
}

.cazinotop10-choice__list-item {
  width: 100%;
}

.cazinotop10-choice__card {
  width: 100%;
  border-radius: 10px;
  border: 1px solid var(--bg-yellow-color);
  background: var(--bg-black-color);
  box-shadow: 0 0 10px 0 rgba(255, 255, 255, 0.5);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  height: 200px;
}

.cazinotop10-choice__card-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  transition: opacity 0.25s ease-in-out;
}

.cazinotop10-choice__card-logo:hover {
  opacity: 0.6;
}

.cazinotop10-choice__card-img {
  width: 200px;
  height: auto;
  object-fit: contain;
  object-position: center;
}

.cazinotop10-choice__card-name {
  display: block;
  font-size: 30px;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
  margin-bottom: 10px;
  color: var(--text-white-color);
  transition: color 0.25s ease-in-out;
}

.cazinotop10-choice__card-name:hover {
  color: var(--text-yellow-color);
}

.cazinotop10-choice__card-rating {
  display: flex;
  align-items: center;
  justify-content: center;
}

.cazinotop10-choice__card-designation {
  font-size: 14px;
  margin-right: 10px;
}

.cazinotop10-choice__card-number {
  font-size: 20px;
  font-weight: 700;
  margin-right: 5px;
}

.cazinotop10-choice__card-stars {
  display: flex;
  align-items: center;
  justify-content: center;
}

.cazinotop10-choice__card-star {
  width: 27px;
  height: 27px;
}

.cazinotop10-choice__card-star {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.cazinotop10-choice__card-description {
  display: block;
  width: 295px;
  color: var(--text-white-color);
  font-size: 20px;
  font-style: italic;
  font-weight: 900;
  line-height: 120%;
  text-transform: uppercase;
  transition: color 0.25s ease-in-out;
}

.cazinotop10-choice__card-description:hover {
  color: var(--text-yellow-color);
}

.cazinotop10-choice__card-btn {
  margin-bottom: 10px;
}

.cazinotop10-choice__card-pays {
  max-width: 140px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 5px 10px;
  border-radius: 2px;
  border: 1px solid #454545;
}

.cazinotop10-choice__slider {
  width: 100%;
  height: 100%;
}

.cazinotop10-choice__slider-slide {
  width: 100%;
  height: 100%;
}

.cazinotop10-choice__slider-next {
  width: 30px;
  height: 100%;
  background: var(--bg-black-color);
  top: 0 !important;
  right: -7px !important;
  margin-top: 0 !important;
}

.cazinotop10-choice__slider-next svg {
  display: none;
}

.cazinotop10-choice__card-bank {
  width: 100%;
  height: 100%;
  border-radius: 1px;
  object-fit: contain;
  object-position: center;
}

.cazinotop10-choice__card-plus {
  width: 15px;
  height: 15px;
  background: url('../cazinotop10-imgs/cazinotop10-yellow-plus-icon.svg')
    no-repeat center / contain;
}

.cazinotop10-license {
  padding-top: 80px;
}

.cazinotop10-license__title {
  font-size: 20px;
  font-weight: 700;
  line-height: 100%;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.cazinotop10-about {
  padding-top: 80px;
}

.cazinotop10-about__wrapper {
  padding: 40px 0;
  background: var(--bg-brown-color);
}

.cazinotop10-about__content {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
}

.cazinotop10-about__column_1 {
  width: calc(34% - 15px);
}

.cazinotop10-about__column_2 {
  width: calc(66% - 15px);
}

.cazinotop10-about__title {
  text-align: center;
  font-size: 32px;
  font-weight: 700;
  line-height: 100%;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.cazinotop10-about__items {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 14px;
}

.cazinotop10-about__item-title {
  font-weight: 700;
}

.cazinotop10-about__img {
  width: 100%;
  height: 266px;
  border-radius: 20px;
  border: 1px solid var(--bg-white-color);
  background: url('../cazinotop10-imgs/cazinotop10-about-team-img.webp')
    no-repeat center top / cover;
}

.cazinotop10-faq {
  padding: 80px 0;
}

.cazinotop10-faq__title {
  text-align: center;
  font-size: 32px;
  font-weight: 700;
  line-height: 100%;
  text-transform: uppercase;
  margin-bottom: 30px;
}

.cazinotop10-faq__list {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 20px;
}

.cazinotop10-faq__item {
  width: 100%;
  border-radius: 10px;
  border: 1px solid var(--bg-yellow-color);
  background: linear-gradient(90deg, #373737 0%, #131414 100%);
  padding: 24px;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  transition: box-shadow 0.25s ease-in-out;
}

.cazinotop10-faq__item-top {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: center;
  gap: 24px;
}

.cazinotop10-faq__item-title {
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 100%;
  text-transform: uppercase;
  text-align: center;
}

.cazinotop10-faq__item-button {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 100%;
  height: 24px;
  padding: 0;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translate(0, -50%);
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.cazinotop10-faq__item-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.cazinotop10-faq__item-button span {
  display: block;
  width: 24px;
  height: 24px;
  position: relative;
}

.cazinotop10-faq__item-button span::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, 0);
  width: 4px;
  height: 100%;
  border-radius: 5px;
  background: var(--bg-white-color);
  opacity: 1;
  transition: opacity 0.25s ease-in-out;
}

.cazinotop10-faq__item-button span::after {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translate(0, -50%);
  width: 100%;
  height: 4px;
  border-radius: 5px;
  background: var(--bg-white-color);
}

.cazinotop10-faq__item-bottom {
  height: 0;
  overflow: hidden;
  -webkit-transition: height 0.25s ease-in-out;
  transition: height 0.25s ease-in-out;
}

.cazinotop10-faq__item-texts {
  padding-top: 20px;
  text-align: center;
}

.cazinotop10-faq__item.active .cazinotop10-faq__item-button span::before {
  opacity: 0;
}

.cazinotop10-faq__item:has(.cazinotop10-faq__item-button:focus) {
  -webkit-box-shadow: 0px 0px 10px 3px var(--bg-yellow-color);
  -moz-box-shadow: 0px 0px 10px 3px var(--bg-yellow-color);
  box-shadow: 0px 0px 10px 3px var(--bg-yellow-color);
}

.cazinotop10-guide {
  padding: 30px 0;
  border-top: 1px solid var(--bg-yellow-color);
  border-bottom: 1px solid var(--bg-yellow-color);
}

.cazinotop10-guide__heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 20px;
  margin-bottom: 30px;
}

.cazinotop10-guide__title {
  font-size: 32px;
  font-weight: 700;
  line-height: 100%;
  text-transform: uppercase;
}

.cazinotop10-guide__list {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 30px;
}

.cazinotop10-guide__item {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.cazinotop10-guide__item-title {
  text-align: center;
  font-size: 20px;
  font-weight: 700;
  line-height: 100%;
  text-transform: uppercase;
}

.cazinotop10-cta {
  padding: 40px 0;
  background: url('../cazinotop10-imgs/cazinotop10-cover-bg.webp') no-repeat
    center / cover;
}

.cazinotop10-cta__content {
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
}

.cazinotop10-cta__title {
  text-align: center;
  font-size: 32px;
  font-weight: 700;
  line-height: 100%;
  text-transform: uppercase;
  margin-bottom: 30px;
}

.cazinotop10-cta__form {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 20px;
}

.cazinotop10-cta__form-group {
  width: 100%;
}

.cazinotop10-cta__form-label {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.cazinotop10-cta__form-title {
  font-weight: 600;
}

.cazinotop10-cta__form-input,
.cazinotop10-cta__form-textarea {
  width: 100%;
  padding: 15px 10px 15px 20px;
  border: 1px solid var(--bg-white-color);
  background-color: var(--bg-black-color);
  border-radius: 10px;
}

.cazinotop10-cta__form-textarea {
  height: 80px;
  resize: none;
}

.cazinotop10-cta__form-btn {
  width: 100%;
  border-radius: 10px;
  background: linear-gradient(
    88deg,
    #e0ad08 6.47%,
    #ce7800 49.8%,
    #d4a20b 95.09%
  );
  padding: 15px 20px;
  font-weight: 900;
  text-align: center;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  transition: box-shadow 0.25s ease-in-out;
}

.cazinotop10-cta__form-btn:hover {
  -webkit-box-shadow: 0px 0px 10px 3px var(--bg-yellow-color);
  -moz-box-shadow: 0px 0px 10px 3px var(--bg-yellow-color);
  box-shadow: 0px 0px 10px 3px var(--bg-yellow-color);
}

.cazinotop10-age {
  padding: 30px 0;
  background: var(--bg-red-color);
  color: var(--text-black-color);
}

.cazinotop10-age__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.cazinotop10-age__number {
  font-variant-numeric: lining-nums proportional-nums;
  font-size: 32px;
  font-weight: 700;
  line-height: 100%;
  flex: none;
}

.cazinotop10-age__text {
  width: 100%;
}

.cazinotop10-footer {
  padding: 40px 0;
}

.cazinotop10-footer__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 30px;
}

.cazinotop10-footer__column {
  width: calc(50% - 10px);
}

.cazinotop10-footer__column-title {
  font-size: 18px;
  font-weight: 700;
  line-height: 100%;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.cazinotop10-footer__nav {
  margin-bottom: 30px;
}

.cazinotop10-footer__menu {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.cazinotop10-footer__menu-title {
  font-size: 30px;
  font-weight: 800;
  line-height: normal;
}

.cazinotop10-footer__menu-link {
  font-weight: 500;
  text-decoration: underline;
  opacity: 1;
  transition: opacity 0.25s ease-in-out;
}

.cazinotop10-footer__menu-link:hover {
  opacity: 0.5;
}

.cazinotop10-footer__centers {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 30px;
}

.cazinotop10-footer__center-link {
  opacity: 1;
  transition: opacity 0.25s ease-in-out;
}

.cazinotop10-footer__center-link:hover {
  opacity: 0.5;
}

.cazinotop10-footer__center-img {
  display: block;
  object-fit: contain;
  object-position: center;
  width: 100%;
  max-width: 300px;
  height: 50px;
}

.cazinotop10-footer__bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.cazinotop10-footer__bottom-text {
  font-size: 14px;
  text-align: center;
}

.cazinotop10-footer__bottom-menu {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  list-style-type: disc;
  font-size: 14px;
  text-align: center;
}

.cazinotop10-footer__bottom-menu a {
  opacity: 1;
  transition: opacity 0.25s ease-in-out;
}

.cazinotop10-footer__bottom-menu a:hover {
  opacity: 0.5;
}

.cazinotop10-heading {
  padding: 120px 0 40px 0;
}

.cazinotop10-heading__content {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.cazinotop10-heading__title {
  font-feature-settings: 'salt' on, 'liga' off, 'calt' off, 'rclt' off;
  font-size: 50px;
  font-weight: 700;
  line-height: 100%;
  text-transform: uppercase;
}

.cazinotop10-texts {
  padding: 40px 0;
  background: var(--bg-dark-gray-color);
}

.cazinotop10-texts__content p {
  margin-bottom: 1em;
}

.cazinotop10-texts__content ul {
  padding-left: 1em;
  margin-bottom: 1em;
  list-style-type: disc;
}

.cazinotop10-texts__content h2 {
  margin-bottom: 1rem;
  font-size: 32px;
  font-weight: 700;
  line-height: 100%;
  text-transform: uppercase;
}

@media screen and (max-width: 1400px) {
  .cazinotop10-container {
    padding: 0 16px;
  }
}

@media screen and (max-width: 1200px) {
  .cazinotop10-header__body {
    justify-content: space-between;
  }

  .cazinotop10-header__logo {
    position: relative;
    top: 0;
    transform: none;
  }

  .cazinotop10-choice__card {
    gap: 16px;
  }
}

@media screen and (max-width: 992px) {
  .cazinotop10-cover__title {
    font-size: 36px;
  }

  .cazinotop10-faq__item-title {
  }

  .cazinotop10-mobile {
    display: block;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    position: fixed;
    left: 0;
    top: -100%;
    width: 100%;
    padding: 116px 0 16px 0;
    background: var(--bg-black-color);
    z-index: 5;
    transition: top 0.25s ease-in-out;
    border-bottom: 1px solid var(--bg-yellow-color);
  }

  .cazinotop10-mobile_open {
    top: 0;
  }

  .cazinotop10-mobile__menu {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  .cazinotop10-mobile__menu-link {
    font-weight: 700;
    text-transform: uppercase;
    transition: color 0.25s ease-in-out;
  }

  .cazinotop10-mobile__menu-link:hover {
    color: var(--text-yellow-color);
  }

  .cazinotop10-header__container {
    display: flex;
    flex-direction: column-reverse;
  }

  .cazinotop10-header__body {
    justify-content: center;
    padding: 8px 0;
  }

  .cazinotop10-header__top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    padding: 0 0 8px 0;
  }

  .cazinotop10-header__top-content {
    width: auto;
    align-items: flex-start;
    gap: 5px;
  }

  .cazinotop10-header__top-text {
    font-variant-numeric: lining-nums proportional-nums;
    font-size: 12px;
    line-height: 100%;
  }

  .cazinotop10-header__top-icon {
    width: 20px;
    height: 20px;
  }

  .cazinotop10-header__burger {
    display: block;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    width: 42px;
    height: 18px;
    flex: none;
    padding: 0;
    position: relative;
  }

  .cazinotop10-header__burger-strip {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--bg-white-color);
    border-radius: 4px;
    position: absolute;
    left: 0;
    opacity: 1;
    transition: opacity 0.25s ease-in-out, transform 0.25s ease-in-out,
      top 0.25s ease-in-out, bottom 0.25s ease-in-out;
  }

  .cazinotop10-header__burger-strip_1 {
    top: 0;
  }

  .cazinotop10-header__burger-strip_2 {
    top: 50%;
    transform: translate(0, -50%);
  }

  .cazinotop10-header__burger-strip_3 {
    top: 50%;
    transform: translate(0, -50%);
  }

  .cazinotop10-header__burger-strip_4 {
    bottom: 0;
  }

  .cazinotop10-header__burger_click .cazinotop10-header__burger-strip_1 {
    top: -3px;
    opacity: 0;
  }

  .cazinotop10-header__burger_click .cazinotop10-header__burger-strip_2 {
    transform: translate(0, -50%) rotate(45deg);
  }

  .cazinotop10-header__burger_click .cazinotop10-header__burger-strip_3 {
    transform: translate(0, -50%) rotate(-45deg);
  }

  .cazinotop10-header__burger_click .cazinotop10-header__burger-strip_4 {
    bottom: -3px;
    opacity: 0;
  }

  .cazinotop10-header__nav {
    display: none;
  }

  .cazinotop10-cover {
    padding: 140px 0 50px 0;
  }

  .cazinotop10-choice__card {
    flex-wrap: wrap;
    align-items: flex-start;
    padding: 10px;
    gap: 10px;
    height: auto;
  }

  .cazinotop10-choice__card-part {
    width: calc(50% - 8px);
  }

  .cazinotop10-choice__card-rating {
    justify-content: flex-start;
  }

  .cazinotop10-about__content {
    flex-direction: column-reverse;
  }

  .cazinotop10-about__column_1 {
    width: 100%;
  }

  .cazinotop10-about__column_2 {
    width: 100%;
  }

  .cazinotop10-about__img {
    height: 400px;
  }

  .cazinotop10-footer__top {
    flex-direction: column;
  }

  .cazinotop10-footer__column {
    width: 100%;
  }

  .cazinotop10-footer__menu {
    flex-direction: column;
    gap: 8px;
    align-items: flex-start;
  }
}

@media screen and (max-width: 576px) {
  :root {
    --default-font-size: 14px;
  }

  .cazinotop10-body_betting .cazinotop10-license {
    padding-top: 0;
    padding-bottom: 60px;
  }

  .cazinotop10-btn {
    padding: 10px;
    font-size: 12px;
  }

  .cazinotop10-mobile__menu {
    gap: 10px;
  }

  .cazinotop10-header__body {
    padding: 8px 0 5px 0;
  }

  .cazinotop10-header__logo-img {
    width: 30px;
    height: 30px;
  }

  .cazinotop10-header__logo-text {
    font-size: 12px;
  }

  .cazinotop10-cover {
    min-height: auto;
  }

  .cazinotop10-cover__title {
    font-size: 28px;
  }

  .cazinotop10-cover__description {
    font-size: 14px;
  }

  .cazinotop10-choice {
    padding-top: 60px;
  }

  .cazinotop10-choice__title {
    font-size: 14px;
    margin-bottom: 10px;
  }

  .cazinotop10-choice__card {
    gap: 0px 10px;
  }

  .cazinotop10-choice__card-part {
    width: calc(50% - 5px);
  }

  .cazinotop10-choice__card-part_1 {
    transform: translateY(20px);
  }

  .cazinotop10-choice__card-part_3 {
    transform: translateY(25px);
  }

  .cazinotop10-choice__card-img {
    width: auto;
    height: 47px;
  }

  .cazinotop10-choice__card-description {
    width: auto;
    font-size: 10px;
  }

  .cazinotop10-choice__card-name {
    margin-bottom: 5px;
    font-size: 14px;
  }

  .cazinotop10-choice__card-designation {
    font-size: 10px;
    margin-right: 5px;
  }

  .cazinotop10-choice__card-number {
    font-size: 12px;
    margin-right: 5px;
  }

  .cazinotop10-choice__card-btn {
    margin-bottom: 5px;
  }

  .cazinotop10-license {
    padding-top: 60px;
  }

  .cazinotop10-license__title {
    font-size: 14px;
  }

  .cazinotop10-license__content p {
    line-height: 150%;
  }

  .cazinotop10-about {
    padding-top: 60px;
  }

  .cazinotop10-about__title {
    font-size: 20px;
    margin-bottom: 10px;
  }

  .cazinotop10-about__content {
    gap: 20px;
  }

  .cazinotop10-about__img {
    height: 185px;
  }

  .cazinotop10-faq {
    padding: 60px 0;
  }

  .cazinotop10-faq__title {
    font-size: 20px;
    margin-bottom: 20px;
  }

  .cazinotop10-faq__list {
    gap: 10px;
  }

  .cazinotop10-faq__item {
    padding: 24px 12px;
  }

  .cazinotop10-faq__item-title {
    padding-right: 48px;
    font-size: 16px;
  }

  .cazinotop10-faq__item-button {
    height: 100%;
    align-items: flex-start;
  }

  .cazinotop10-faq__item-texts {
    padding-top: 5px;
    text-align: left;
    padding-right: 48px;
    line-height: 150%;
  }

  .cazinotop10-guide__heading {
    gap: 5px;
    margin-bottom: 20px;
  }

  .cazinotop10-guide__title {
    font-size: 14px;
  }

  .cazinotop10-guide__description {
    text-align: left;
    line-height: 150%;
  }

  .cazinotop10-guide__list {
    gap: 20px;
  }

  .cazinotop10-guide__item {
    gap: 5px;
  }

  .cazinotop10-guide__item-title {
    font-size: 14px;
  }

  .cazinotop10-guide__item-text {
    line-height: 150%;
  }

  .cazinotop10-cta__title {
    font-size: 20px;
    margin-bottom: 20px;
  }

  .cazinotop10-cta__form {
    gap: 10px;
  }

  .cazinotop10-age {
    padding: 40px 0;
  }

  .cazinotop10-age__number {
    font-size: 20px;
  }

  .cazinotop10-age__text {
    line-height: 100%;
  }

  .cazinotop10-footer__top {
    gap: 24px;
    margin-bottom: 20px;
  }

  .cazinotop10-footer__column-title {
    font-size: 14px;
  }

  .cazinotop10-footer__column-text {
    font-size: 12px;
  }

  .cazinotop10-footer__nav {
    margin-bottom: 20px;
  }

  .cazinotop10-footer__menu-title {
    font-size: 20px;
    font-weight: 700;
    line-height: 100%;
  }

  .cazinotop10-footer__centers {
    justify-content: flex-start;
    gap: 14px 30px;
    margin-bottom: 20px;
  }

  .cazinotop10-footer__center-img {
    max-width: 180px;
    height: 40px;
  }

  .cazinotop10-footer__bottom-text {
    text-align: left;
  }

  .cazinotop10-footer__bottom {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
  }

  .cazinotop10-footer__bottom-menu {
    align-items: flex-start;
    justify-content: flex-start;
    text-align: left;
    padding-left: 1em;
  }

  .cazinotop10-heading {
    padding: 140px 0 50px 0;
  }

  .cazinotop10-heading__title {
    font-size: 28px;
  }

  .cazinotop10-texts__content h2 {
    font-size: 20px;
  }
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  border: 0;
  clip: rect(0 0 0 0);
}

.cazinotop10-cta__success {
  margin-top: 16px;
  background-color: #2ecc71;
  color: #fff;
  font-family: 'Barlow', sans-serif;
  font-size: 15px;
  font-weight: 500;
  text-align: center;
  padding: 12px 20px;
  border-radius: 8px;
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
  opacity: 0;
  transition: opacity 0.4s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

@media screen and (max-width: 992px) {
  .cazinotop10-cover__title {
    font-size: 36px;
  }

  .cazinotop10-faq__item-title {
    font-size: 14px;
  }

  .cazinotop10-faq__item-texts {
    font-size: 14px;
  }
}
