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

html,
body {
  height: 100%;
  font-family: Verdana, sans-serif;
  position: relative;
}

main {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  background: #fff;
}

main p,
main span,
main h1,
main h2,
main h3,
main h4,
main h5,
main figcaption,
main li {
  color: #383737;
  font-family: Verdana, sans-serif;
}

main h1,
main h2,
main h3,
main h4,
main h5,
main h6,
main p,
main ol,
main ul,
main figure,
main .general-table-wrapper,
main .faq-container {
  color: #383737;
  margin: 0 auto;
  max-width: 1400px;
}

main .general-table-wrapper {
  overflow-x: overlay;
}

main figure {
  margin: 0 auto;
  margin-bottom: 20px;
}

main p {
  font-size: 16px;
  line-height: 20px;
  font-weight: 400;
  line-height: normal;
}

main .wrapper {
  margin: 0 auto;
  max-width: 1400px;
  width: 100%;
  padding: 0 20px;
}

body {
  overflow-x: hidden;
  position: relative;
  background: #f5f5f5;
}

a {
  text-decoration: none;
  transition: 0.3s;
}

table,
tr,
td,
tbody,
thead {
  font-family: Verdana, sans-serif;
}

input,
button {
  font-family: Verdana, sans-serif;
  border: none;
  box-shadow: none;
  transition: 0.3s;
}

input {
  outline: none;
}

p,
span,
li,
a {
  font-size: 18px;
  line-height: normal;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  text-align: center;
  padding: 24px 0 20px 0;
  color: #1e1e24;
}

h1 {
  font-size: 22px;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 1.32px;
}

h2 {
  font-size: 20px;
  line-height: 24px;
}

h3 {
  font-size: 18px;
  line-height: 20px;
}

h4 {
  font-size: 16px;
  line-height: 18px;
}

h5,
h6 {
  font-size: 14px;
  line-height: 16px;
}

p,
span,
li,
h1,
h2,
h3,
b,
i,
label,
input,
button,
td,
tr,
figcaption {
  color: #1e1e24;
}

a{
 color: #D12E2E;
}


p {
  padding-bottom: 20px;
}

li {
  list-style: none;
}

button {
  cursor: pointer;
  background: rgba(0, 0, 0, 0);
}

img {
  max-width: 100%;
  display: block;
}

i {
  font-style: normal;
}

main .breadcrumbs.wrapper {
  display: flex;
  align-items: center;
  padding-top: 25px;
  overflow-x: hidden;
  flex-wrap: wrap;
}
main .breadcrumbs.wrapper a {
  color: #ffc300;
  font-size: 14px;
}
main .breadcrumbs.wrapper a:hover {
  text-decoration: none;
}
main .breadcrumbs.wrapper .last {
  position: relative;
  margin-left: 10px;
  font-size: 14px;
}
main .breadcrumbs.wrapper a:after {
  display: inline-block;
  width: 11px;
  height: 11px;
  background-image: url(/arrow-right.svg);
  background-size: cover;
  background-repeat: no-repeat;
  margin-left: 10px;
  content: no-open-quote;
}
@media screen and (max-width: 1250px) {
  main .breadcrumbs.wrapper {
    margin-top: 15px;
  }
}

@media screen and (max-width: 550px) {
  main .breadcrumbs.wrapper .last { margin-left: 0; }
}

#__next {
  min-height: 100%;
  display: flex;
  flex-direction: column;
}

.content {
  position: relative;
  flex-grow: 1;
  padding-top: 0px;
}

.content .content-block {
  margin-bottom: 20px;
  margin-top: 10px;
  padding: 10px;
  box-shadow: 0 0 1px 0 #333333;
}

.content .general-ol {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  margin-bottom: 20px;
  counter-reset: counter-ol;
  padding-left: 20px;
  border: 1px solid #C8C8C8;
  box-shadow: 4px 4px 2px 2px #C5C5C5;
  padding: 24px 36px;
}

.content .general-ol li {
  position: relative;
  padding-left: 10px;
  margin-bottom: 10px;
  counter-increment: counter-ol;
}

.content .general-ol li::before {
  position: absolute;
  content: counter(counter-ol);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  color: #fff;
  border-radius: 1px;
  top: -2px;
  left: -26px;
  background: #01A96A;
  font-size: 14px;
}

.content .general-ul {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  margin-bottom: 20px;
  border: 1px solid #C8C8C8;
  box-shadow: 4px 4px 2px 2px #C5C5C5;
  padding: 24px 16px;
}

.content .general-ul li {
  position: relative;
  padding-bottom: 10px;
  padding-left: 32px;
}

.content .general-ul li::before {
  content: url(cards/li_green.svg);
  position: absolute;
  width: 20px;
  height: 20px;
  left: 4px;
  top: 0px;
}

.pageError {
  min-height: calc(100vh - 70px);
}

.buttons {
  display: flex;
  align-items: center;
  gap: 20px;
}

.imgWrap {
  display: block;
  position: relative;
}

figure {
  margin-bottom: 20px;
  text-align: center;
}

figure span {
  height: 50%;
  width: 100%;
  position: absolute;
  left: 0;
  top: -50%;
}

figcaption {
  color: #1e1e24;
  font-size: 14px;
}

.general-image {
  display: block;
  border-radius: 15px;
  max-height: 500px;
  width: auto;
  height: auto;
  margin: 0 auto 10px auto;
}

.general-image.vertical {
  max-height: 500px;
  max-width: 70%;
}

.general-image.horizontal {
  max-width: 100%;
}

.general-table {
  border-collapse: collapse;
  width: 100%;
  overflow: hidden;
  text-align: center;
  font-size: 14px;
  line-height: 18px;
  margin: 20px auto;
}

.general-table .general-tr {
  background: rgba(0, 0, 0, 0);
}

/* .general-table .general-tr .general-td {
  padding: 16px;
  text-align: start;
  color: #383737;
  font-size: 16px;
  line-height: 20px;
  background-color: rgba(0, 0, 0, 0);
  padding-left: 20px;
  border: 1px solid #f0b249;
} */
/* 
.general-table thead tr th {
  padding: 16px;
  color: #383737;
  font-size: 20px;
  font-weight: 700;
  border-right: 1px solid #3959d9;
  border-top: 1px solid #3959d9;
  border-bottom: 1px solid #3959d9;
}

.general-table thead tr th:first-child {
  border-right: 1px solid #3959d9;
  border-left: 1px solid #3959d9;
  border-top: 1px solid #3959d9;
}

.general-table thead tr th:last-child {
  border-right: 1px solid #3959d9;
  border-top: 1px solid #3959d9;
} */

.faq-container .faq-item {
  margin: 0 auto;
  position: relative;
  min-height: 54px;
  margin-bottom: 16px;
  background-color: #fff;
  z-index: 5;
  transition: all 0.4s ease;
  border: 1px solid #C8C8C8;
  padding: 24px 16px 24px 0px;
  box-shadow: 4px 4px 2px 2px #C5C5C5;
}
/* 
.faq-container .faq-item:hover .icon::before,
.faq-container .faq-item:hover .icon::after {
  background: #0e121c;
} */

.faq-container .faq-item:hover {
  border-color: #989898;
}

.faq-container .faq-item:hover .faq-question {
  color: #989898;
}

.faq-container .faq-question {
  color: #0e121c;
  position: relative;
  padding-bottom: 0;
  font-weight: 700;
  font-size: 16px;
  top: 15px;
  width: 96%;
  line-height: 22px;
  padding-left: 36px;
}

.faq-container .faq-question::before {
  content: url(cards/faq-arrow.svg);
  position: absolute;
  width: 20px;
  height: 20px;
  left: 0;
  top: 0px;
} 


.faq-container .faq-answer {
  width: 96%;
  padding: 10px 0 22px 0;
  height: 0;
  overflow: hidden;
  z-index: -1;
  position: relative;
  opacity: 0;
  top: 16px;
}

/* .faq-container .icon {
  height: 18px;
  position: absolute;
  width: 18px;
  right: 25px;
  top: 25px;
  z-index: 2;
}

.faq-container .icon::before,
.faq-container .icon::after {
  background: #0e121c;
  content: no-open-quote;
  height: 4px;
  right: 0;
  position: absolute;
  top: 0;
  width: 18px;
  transition: transform 0.4s ease;
} */

.faq-container .toggle {
  width: 100%;
  height: 100%;
  margin: 0;
  opacity: 0;
  cursor: pointer;
  position: absolute;
  top: 0;
  z-index: 3;
}

.faq-container .bg-active {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(242, 141, 36, 0.0784313725);
  border-radius: 26px;
  z-index: -1;
  opacity: 0;
}

.faq-container .toggle:checked ~ .bg-active {
  opacity: 1;
}

/* 
.faq-container .toggle:checked ~ .icon::before,
.faq-container .toggle:checked ~ .icon::after {
  background: #f28d24;
} */

.faq-container .toggle:checked ~ .faq-question {
  color: #1F1F1F;
}

.faq-container .toggle:checked ~ .faq-answer {
  color: #1F1F1F;
}

/* .faq-container .toggle:not(:checked) ~ .icon:before {
  transform: rotate(180deg);
}

.faq-container .toggle:not(:checked) ~ .icon:after {
  transform: rotate(90deg);
} */

.faq-container .toggle:checked ~ .faq-answer {
  height: auto;
  opacity: 1;
  z-index: 2;
}

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

.columns p {
  width: 100%;
}

.columns .column {
  width: 48%;
}

.columns .column-header {
  padding-top: 0;
  text-align: left;
}

.columns .column-p {
  position: relative;
  margin-left: 15px;
  padding-left: 25px;
}

.columns .column-p::before {
  content: no-open-quote;
  position: absolute;
  width: 20px;
  height: 20px;
  background-image: url(/list.svg);
  background-repeat: no-repeat;
  background-size: cover;
  left: 0;
  top: 8px;
}

.bannerSlots {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-column-gap: 60px;
  grid-row-gap: 40px;
  max-width: 1158px;
  margin: 0 auto;
  margin-bottom: 20px;
  margin-top: 20px;
}

.slot {
  position: relative;
}

.slot .slot-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
}

.slot .slot-footer p {
  color: #0e121c;
  font-family: 'Tahoma';
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-transform: uppercase;
  padding-bottom: 0px;
  margin: 0;
  width: 100%;
}

.slot .slot-footer button,
.slot-back button {
  min-width: 203px;
  border-radius: 4px;
  background: #c7351e;
  padding: 8px 28px;
  color: #fff;
  font-family: 'Tahoma';
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
}

.slot-back button:before {
  position: absolute;
  width: 30px;
  height: 30px;
  background: url(/wp-content/uploads/2023/12/arrow.svg) no-repeat;
  background-size: cover;
  content: '';
  left: 30px;
  bottom: 35px;
}

.slot-img {
  overflow: hidden;
  border-radius: 4px;
  position: relative;
}

.slot-img img {
  display: block;
  width: 340px;
  height: 180px;
  object-fit: cover;
  transition: 0.3s;
  border-radius: var(--border);
}

.slot-back {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  background-color: rgba(0, 0, 0, 0.8);
  transition: 0.3s;
  z-index: 2;
}

.slot-img:hover .slot-back {
  opacity: 1;
}

.slot-img amp-img {
  object-fit: cover !important;
}

p.new-male a {
  color: #C70000;
}

p.new-male a:hover {
  transition: 0.3s;
  text-decoration: underline;
}

@media screen and (max-width: 1250px) {
  .bannerSlots {
    grid-template-columns: repeat(3, 1fr);
    grid-column-gap: 10px;
    grid-row-gap: 20px;
    max-width: 100%;
  }

  .slot {
    width: 170px;
    margin: 0 auto;
  }

  .slot-img img {
    min-width: 170px;
    height: 110px;
  }

  .slot .slot-footer {
    flex-direction: column;
    padding: 0px;
  }

  .slot .slot-footer p {
    padding: 8px 0 14px;
    font-size: 18px;
    text-transform: capitalize;
  }

  .slot .slot-footer button {
    font-size: 14px;
    min-width: 170px;
  }

  .slot-back button {
    min-width: 120px;
    font-size: 14px;
  }

  .slot-back button:before {
    width: 15px;
    height: 15px;
    left: 5px;
    bottom: 25px;
  }
}

@media screen and (max-width: 600px) {
  .bannerSlots {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (max-width: 366px) {
  .bannerSlots {
    grid-template-columns: repeat(1, 1fr);
  }
}

.frame {
  width: 640px;
  max-width: 98%;
  margin: 32px auto;
  aspect-ratio: 4/3;
}

.frame iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.table_of_contents_wrapper {
  max-width: 1128px;
  margin: 0 auto;
  width: 96%;
  margin-top: 20px;
  margin-bottom: 20px;
}

.table_of_contents {
  max-width: 400px;
  border-radius: 8px;
  border: 1px solid #f28d24;
}

.table_of_contents .toggle {
  display: none;
}

.table_of_contents .lbl-toggle {
  display: inline-block;
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
  text-align: center;
  padding: 10px;
  color: #fff;
  background: #f28d24;
  width: 100%;
  cursor: pointer;
  border-radius: 7px;
  transition: all 0.25s ease-out;
}

.table_of_contents .table_box {
  max-height: 0px;
  overflow: hidden;
  transition: max-height 0.25s ease-in-out;
  display: flex;
  width: 100%;
  max-width: 500px;
  flex-direction: column;
}

.table_of_contents .toggle:checked + .lbl-toggle + div {
  max-height: 1000px;
  padding: 20px;
  background: #181616;
  border-radius: 8px;
  gap: 20px;
}

.table_of_contents .table_link {
  position: relative;
  padding-left: 15px;
  font-weight: 500;
  font-size: 18px;
  line-height: 22px;
  color: #fff;
}

.table_of_contents .table_link:hover {
  color: #f28d24;
}

.content404Page.wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  max-width: 100%;
  width: 100%;
  background: #fff;
}

.content404Page.wrapper .content404 {
  display: flex;
  flex-direction: column;
  width: 280px;
}

.content404Page.wrapper .content404 img {
  display: block;
  margin: 0 auto;
}

.content404Page.wrapper .content404 h1 {
  color: #000;
}

.content404Page.wrapper .content404 button {
  display: inline-block;
  background: #000000;
  padding: 5px 15px;
  border-radius: 5px;
  font-size: 18px;
  line-height: 28px;
  color: #fff;
  color: #fff;
}

.content404Page.wrapper .content404 button:hover {
  background: #a10000;
}

.contentMap {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100vh;
  max-width: 100%;
  width: 100%;
  background: #205685;
}

.contentMap h1 {
  text-align: left;
  color: #1e1e24;
  margin-bottom: 64px;
}

.contentMap .sitemapLinks {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 640px;
}

.contentMap .sitemapLinks a {
  display: inline-block;
  color: #fff;
  margin: 0 auto 12px;
  position: relative;
}

.contentMap .sitemapLinks a:before {
  position: absolute;
  left: -16px;
  top: 10px;
  content: no-open-quote;
  width: 8px;
  height: 8px;
  background: #fff;
  border-radius: 50%;
}

.contentMap .sitemapLinks a:hover {
  color: #92c637;
}

.img-overlay {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.7);
  transition: opacity 500ms;
  visibility: hidden;
  opacity: 0;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.img-overlay:target {
  visibility: visible;
  opacity: 1;
}

.img-overlay .img-popup {
  margin: 70px auto;
  padding: 20px;
  border-radius: 5px;
  width: 100%;
  position: relative;
  transition: all 5s ease-in-out;
}

.img-overlay .img-popup.horizontal {
  aspect-ratio: 1/0.2;
}

.img-overlay .img-popup.vartical {
  aspect-ratio: 0.5/1;
}

.button-block {
  padding: 24px 16px;
  text-align: center;
  margin: 10px 0;
  background-color: rgba(0, 0, 0, 0);
}

.button-block button {
  position: relative;
  overflow: hidden;
  width: 620px;
  max-width: 100%;
  padding: 16px 34px;
  color: #fff;
  font-size: 24px;
  font-weight: 700;
  line-height: 26px;
  text-transform: uppercase;
  border-radius: 8px;
  background: #fe3079;
  box-shadow: 0px 0px 12px 0px rgba(11, 54, 0, 0.16);
}

.button-block button::after,
.button-block button::before {
  position: absolute;
  content: no-open-quote;
  background-repeat: no-repeat;
  background-size: cover;
}

.button-block button::after {
  width: 78px;
  height: 52px;
  background-image: url(/circle_1.svg);
  left: 0;
  top: 0;
}

.button-block button::before {
  width: 135px;
  height: 68px;
  background-image: url(/circle_2.svg);
  right: -30px;
  bottom: 0;
}

.quote {
  position: relative;
  margin: 0 auto;
  margin-top: 30px;
  margin-bottom: 40px;
  width: 96%;
  max-width: 600px;
  border-radius: 12px;
  background: #e50539;
}

.quote p {
  padding: 40px;
  width: 100%;
  text-align: center;
  font-size: 14px;
  line-height: 18px;
  font-weight: 500;
  color: #fff;
}

.quote::after,
.quote::before {
  position: absolute;
  content: no-open-quote;
  width: 24px;
  height: 20px;
  background-image: url(/quote-icon.svg);
  background-repeat: no-repeat;
  background-size: cover;
}

.quote::after {
  left: -5px;
  top: -10px;
}

.quote::before {
  right: -5px;
  bottom: -10px;
  transform: rotate(180deg);
}

.reviews {
  max-width: 1128px;
  margin: 0 auto;
  width: 96%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.reviews .review {
  border: 1px solid #000;
  padding: 20px 20px 0 20px;
  border-radius: 20px;
  border-left: 5px solid #df0000;
  margin-bottom: 20px;
  width: 48%;
}

.reviews .review p {
  max-width: 100%;
  width: 100%;
}

.reviews .review .name {
  font-weight: bold;
}

.reviews .review .date {
  color: rgba(0, 0, 0, 0.5);
}

.reviews .review .answer {
  padding-left: 10px;
  border-left: 1px solid rgba(0, 0, 0, 0.5);
  padding-bottom: 0;
  margin-bottom: 20px;
}

.slots-wrapper {
  background: #000;
  margin-bottom: 30px;
}

.slots-wrapper .slots-list {
  max-width: 1128px;
  margin: 0 auto;
  width: 96%;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.slots-wrapper .slots-list .slot {
  position: relative;
  border-radius: 4px;
  width: 300px;
  height: 188px;
  margin: 20px;
}

.slots-wrapper .slots-list .slot .slot-text {
  position: absolute;
  bottom: 10px;
  left: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.7);
  padding: 5px 0;
}

.slots-wrapper .slots-list .slot .slot-text p {
  color: #fff;
  text-align: center;
  font-size: 16px;
  z-index: 3;
  position: relative;
  padding-bottom: 0;
}

.slots-wrapper .slots-list .slot .slot-img {
  overflow: hidden;
  border-radius: 4px;
  position: relative;
}

.slots-wrapper .slots-list .slot .slot-img img {
  display: block;
  width: 100%;
  height: 100%;
}

.slots-wrapper .slots-list .slot .slot-img amp-img {
  object-fit: cover;
}

.slots-wrapper .slots-list .slot .slot-back {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  background-color: rgba(0, 0, 0, 0.4);
  z-index: 2;
}

.slots-wrapper .slots-list .slot .slot-back .slot-review {
  padding: 16px 20px;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  line-height: 22px;
  text-transform: uppercase;
  border-radius: 50px;
  background: #a91704;
  transition: 0.4s;
}

.slots-wrapper .slots-list .slot .slot-back .slot-review:hover {
  background: linear-gradient(135deg, #df0000 0%, #a10000 100%);
}

.slots-wrapper .slots-list .slot .slot-back .toggle {
  display: none;
}

.slots-wrapper .slots-list .slot .slot-back .lbl-toggle {
  display: inline-block;
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
  text-align: center;
  padding: 10px;
  color: #fff;
  background: #df0000;
  cursor: pointer;
  border-radius: 7px;
  transition: all 0.25s ease-out;
}

.slots-wrapper .slots-list .slot .slot-back .lbl-toggle:hover {
  background: linear-gradient(135deg, #df0000 0%, #a10000 100%);
}

.slots-wrapper .slots-list .slot .slot-back .toggle:checked + .lbl-toggle {
  display: none;
}

.slots-wrapper .slots-list .slot .slot-back .slot-box {
  max-height: 0px;
  overflow: hidden;
  transition: max-height 0.25s ease-in-out;
  display: flex;
  width: 100%;
  max-width: 500px;
  flex-direction: column;
}

.slots-wrapper .slots-list .slot .slot-back .slot-box a {
  text-align: center;
  padding: 10px;
  color: #fff;
  background: #df0000;
  width: 48%;
  color: #fff;
  border-radius: 8px;
}

.slots-wrapper .slots-list .slot .slot-back .slot-box button {
  width: 48%;
  border: 1px solid #fff;
  border-radius: 8px;
  color: #fff;
  font-size: 18px;
}

.slots-wrapper .slots-list .slot .slot-back .slot-box button:hover {
  color: #a91704;
  border: 1px solid #a91704;
  background: #fff;
}

.slots-wrapper .slots-list .slot .slot-back .toggle:checked + .lbl-toggle + div {
  max-height: 300px;
  background: #000;
  padding: 20px 10px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

@media screen and (max-width: 1250px) {
  main h1,
  main h2,
  main h3,
  main h4,
  main h5,
  main h6,
  main p,
  main ol,
  main ul,
  main figure,
  main .general-table-wrapper,
  main .content,
  main .faq-container {
    width: 100%;
  }

  main .wrapper {
    padding: 0;
    width: calc(100% - 32px);
  }

  h1 {
    font-size: 26px;
    line-height: 30px;
  }

  h2 {
    font-size: 22px;
    line-height: 32px;
  }

  h3 {
    font-size: 20px;
    line-height: 30px;
  }

  h4 {
    font-size: 18px;
    line-height: 28px;
  }

  h5,
  h6 {
    font-size: 16px;
    line-height: 26px;
  }

  h1,
  h2,
  h3,
  h4,
  h5,
  h6 {
    padding: 10px 0;
  }

  .general-table .general-tr .general-td {
    padding-left: 10px;
    padding-right: 10px;
  }

  .content .contentMain {
    width: 100%;
  }

  .content .general-ol li,
  .content .general-ul li {
    width: 100%;
  }

  .columns {
    flex-wrap: wrap;
  }

  .columns .column {
    width: 100%;
  }

  .column-p {
    margin-left: 0;
  }

  .button-block button {
    padding: 14px 5px;
  }

  .quote {
    width: calc(100% - 32px);
  }

  .faq-container .faq-item {
    border-radius: 14px;
  }

  .faq-container .faq-question {
    width: 100%;
    padding-left: 20px;
    padding-right: 30px;
  }

  .faq-container .faq-answer {
    width: 100%;
    padding-left: 20px;
  }

  .faq-container .bg-active {
    border-radius: 14px;
  }

  .faq-container .icon {
    right: 15px;
  }
}

@media screen and (max-width: 600px) {
  .reviews .review {
    width: 100%;
  }
}

@media screen and (max-width: 400px) {
  .general-table {
    max-width: 100%;
  }

  .general-table-wrapper {
    max-width: 100%;
  }
}

.banner-home .banner-title span {
  color: #fff;
  font-size: 42px;
  line-height: 51.04px;
  width: 100%;
  text-align: left;
  padding: 0;
}

.footer {
  padding: 32px;
  background: #363636;
  margin-top: 30px;
}

.footer .footerInner {
  display: flex;
  justify-content: space-between;
}
.footer .footerInner .footerLeft {
  width: 100%;
}
.footer .footerInner .footerMenu {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-auto-flow: column;
  grid-template-rows: repeat(7, auto);
  gap: 12px;
}
.footer .footerInner .footerMenu a {
  font-family: 'Tahoma';
  font-weight: 400;
  font-size: 18px;
  line-height: 110%;
  color: #b9b9b9;
}
.footer .footerInner .footerMenu p {
  font-family: 'Tahoma';
  font-weight: 700;
  font-size: 18px;
  line-height: 110%;
  color: #ffffff;
  padding-bottom: 0;
  margin: 0;
  max-width: 100%;
  margin-bottom: 8px;
}
.footer .footerInner .footerRight {
  padding-left: 24px;
  border-left: 1px solid #4d4d4d;
  max-width: 410px;
}
.footer .footerInner .footerRight .imgs {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px 20px;
  margin-bottom: 16px;
}
.footer .footerInner .footerRight .imgs img {
  height: 32px;
}
.footer .footerInner .footerRight p {
  font-family: 'Tahoma';
  font-weight: 400;
  font-size: 18px;
  line-height: 110%;
  color: #b9b9b9;
  margin-bottom: 16px;
  padding-bottom: 0;
}
.footer .footerInner .footerRight span {
  font-family: 'Tahoma';
  font-weight: 400;
  font-size: 18px;
  line-height: 110%;
  color: #b9b9b9;
}
.footer .scrollTop {
  background: #860000;
  width: 30px;
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  bottom: 100px;
  right: 20px;
  opacity: 0;
  cursor: pointer;
  border-radius: 50%;
  z-index: 5;
}

.footer .scrollTop.pam_content {
  opacity: 1;
}

.footer-block-btn {
  z-index: 5;
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  height: 80px;
  padding-right: 16px;
  padding-left: 16px;
  width: 100%;
  left: 50%;
  transform: translate(-50%, 0);
  display: none;
  justify-content: center;
  align-items: center;
  background-color: #080059;
}

.footer-block-btn .buttons {
  display: flex;
  justify-content: center;
  width: 100%;
}

.footer-block-btn .buttons .regButton {
  background: url(/button-reg.svg) no-repeat;
  background-size: contain;
  width: 253px;
  height: 57px;
}

.footer-block-btn .buttons .regButton:hover {
  opacity: 0.8;
}

.footer-block-btn .buttons .logButton {
  background: url(/button-log.svg) no-repeat;
  background-size: contain;
  width: 205px;
  height: 57px;
}

.footer-block-btn .buttons .logButton:hover {
  opacity: 0.8;
}

@media (max-width: 1250px) {
  .footer {
    padding: 24px 20px;
  }
  .footer .footerInner {
    flex-direction: column;
  }
  .footer .footerInner .footerLeft {
    padding-bottom: 16px;
  }
  .footer .footerInner .footerRight {
    padding-left: 0;
    padding-top: 16px;
    border-left: none;
    max-width: 100%;
    border-top: 1px solid #4d4d4d;
  }
  .footer .footerInner .footerRight p {
    font-size: 14px;
    line-height: 15px;
  }
  .footer .footerInner .footerRight span {
    font-size: 14px;
    line-height: 15px;
  }
  .footer .footerInner .footerMenu a {
    font-size: 14px;
    line-height: 15px;
  }
  .footer .footerInner .footerMenu p {
    font-size: 16px;
    line-height: 17px;
    margin-bottom: 4px;
  }
  .footer .footerInner .footerMenu {
    gap: 8px;
  }
  .footer .footerInner .footerRight .imgs img {
    height: 30px;
  }
}

@media screen and (max-width: 390px) {
  .footer .footerInner .footerMenu {
    grid-template-columns: repeat(1, 1fr);
    grid-auto-flow: row;
    grid-template-rows: auto;
  }
  .footer .footerInner .footerRight .imgs {
    margin-bottom: 12px;
  }
  .footer .footerInner .footerRight p {
    margin-bottom: 12px;
  }
  .footer .footerInner .footerMenu p.p-mt {
    margin-top: 8px;
  }
}

/* .icon {
  position: relative;
  width: 28px;
  height: 28px;
} */

.icon span {
  position: absolute;
  display: block;
  width: 100%;
  height: 1px;
  background-color: #fff;
  transition: all 0.3s ease;
}

.icon span:nth-child(1) {
  top: 5px;
}

.icon span:nth-child(2) {
  top: 47%;
}

.icon span:nth-child(3) {
  bottom: 50%;
}

.icon span:nth-child(4) {
  bottom: 5px;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 10;
  padding: 0;
  background-color: #696969;
}

.header .headerInner {
  height: 100%;
}

.header .headerInner .headerWrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  background-color: #696969;
}

.header .headerInner .toggle {
  width: 28px;
  height: 28px;
  left: 40px;
  top: 4px;
  margin: 0;
  opacity: 0;
  cursor: pointer;
  position: absolute;
  z-index: 3;
}

.header .headerInner .toggle:checked ~ .headerWrapper .icon span:nth-child(1) {
  transform: scaleX(0);
}

.header .headerInner .toggle:checked ~ .headerWrapper .icon span:nth-child(2) {
  transform: rotate(45deg);
}

.header .headerInner .toggle:checked ~ .headerWrapper .icon span:nth-child(3) {
  transform: rotate(-45deg);
}

.header .headerInner .toggle:checked ~ .headerWrapper .icon span:nth-child(4) {
  transform: scaleX(0);
}

.header .headerInner .toggle:checked ~ .menu {
  height: 100%;
  opacity: 1;
  padding-bottom: 40px;
  padding-top: 37px;
}

.header .headerInner .logo a {
  display: block;
}

.header .headerInner .logo .ampLogo {
  position: relative;
}

.header .headerInner .logo .ampLogo button {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

.header .headerInner .menu {
  height: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  transition: all 0.3s ease;
}

.header .headerInner .menu ul {
  display: flex;
  justify-content: space-between;
  gap: 70px;
}

.header .headerInner .menu ul li {
  position: relative;
}

.header .headerInner .menu ul .plusMenu {
  display: none;
}

.header .headerInner .menu ul .plusMenu li {
  position: unset;
}

.header .headerInner .menu ul .plusMenu {
  position: absolute;
  top:20px;
  left: 0;
  background-color: #696969;
  width: 300px;
  padding: 20px;
}

.header .headerInner .menu ul li:hover .plusMenu {
  display: block;
}

.header .headerInner .menu a {
  text-align: center;
  color: #f0b249;
  font-size: 15px;
  font-weight: 700;
  line-height: 22px;
  text-transform: uppercase;
}

.header .headerInner .menu a:hover {
  color: #3959d9;
}

.header .headerInner .menu a.active {
  color: #3959d9;
}

.buttons .regButton {
  background: url(/button-reg.svg) no-repeat;
  background-size: contain;
  width: 253px;
  height: 57px;
}

.buttons .regButton:hover {
  opacity: 0.8;
}

.buttons .logButton {
  background: url(/button-log.svg) no-repeat;
  background-size: contain;
  width: 205px;
  height: 57px;
}

.buttons .logButton:hover {
  opacity: 0.8;
}

@media screen and (max-width: 1960px) {
  .header {
    position: relative;
    padding: 8px 0;
    border-bottom: solid 1px #000;
  }
}

@media screen and (max-width: 1250px) {
  .header .buttons {
    display: none;
  }

  .header .headerInner .headerWrapper {
    justify-content: space-between;
  }

  .header .headerInner .menu {
    display: none;
  }
}

@media screen and (max-width: 750px) {
  .header .buttons .regButton {
    display: none;
  }
}

.burger {
  display: none;
  position: relative;
}

.mobileMenu {
  position: fixed;
  top: 0;
  right: 0%;
  display: block;
  z-index: 5;
  background: #ffffff;
  width: 100%;
  max-width: 350px;
  min-height: 100vh;
  padding: 30px 20px;
  transition: right 0.8s;
}

.mobileMenu .buttons {
  display: block;
  margin-top: 32px;
}

.mobileMenu .buttons button {
  display: block;
  margin: 0 auto 12px;
  width: 50%;
}

.mobileMenu[hidden] {
  right: -200%;
}

.mobileMenu .mobileMenuTop {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 75px;
}

.mobileMenu .mobileMenuLinks {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.mobileMenu .mobileMenuLinks a {
  color: #f0b249;
  font-size: 20px;
  text-align: center;
  font-weight: 700;
  line-height: 22px;
  text-transform: uppercase;
  display: block;
  text-align: left;
  margin-bottom: 10px;
}

.mobileMenu .mobileMenuLinks a:active {
  color: #3959d9;
}

.mobileMenu .plusMenu li a {
  font-size: 16px;
  color: #f6a417;
  margin-left: 20px;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
  display: block;
}

.overlay[hidden] {
  display: none;
}

@media screen and (max-width: 1250px) {
  .burger {
    display: block;
  }
}

.breadcrumbs {
  display: flex;
  align-items: center;
  padding-top: 25px;
  overflow-x: hidden;
}

.breadcrumbs a {
  color: #3959d9;
  font-size: 14px;
}

.breadcrumbs a:hover {
  text-decoration: none;
}

.breadcrumbs .last {
  position: relative;
  margin-left: 10px;
  font-size: 14px;
}

.breadcrumbs a:after {
  display: inline-block;
  width: 11px;
  height: 11px;
  background-image: url(/arrow-right.svg);
  background-size: cover;
  background-repeat: no-repeat;
  margin-left: 10px;
  content: no-open-quote;
}

@media screen and (max-width: 1250px) {
  .breadcrumbs.wrapper {
    margin-top: 15px;
  }
}

.bannerApp {
  margin-top: 130px;
  background: url(/uploads/img/app_banner_bg.webp) no-repeat;
  background-size: cover;
}

.bannerApp .bannerAppWripper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1128px;
  margin: 0 auto;
}

.bannerApp .bannerAppInfo {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.bannerApp .bannerAppInfo p {
  padding-bottom: 0;
  color: #fff;
  font-size: 80px;
  font-weight: 700;
  line-height: 80px;
  text-transform: uppercase;
  width: 100%;
}

.bannerApp .bannerAppBtns {
  display: flex;
  align-items: center;
  gap: 20px;
}

.bannerApp .bannerAppBtns button {
  position: relative;
  padding: 18px 14px 40px 40px;
  width: 340px;
  color: #2f5fdc;
  font-size: 18px;
  font-weight: 500;
  line-height: 22px;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0px 0px 8px 0px rgba(41, 114, 199, 0.45);
  text-align: left;
}

.bannerApp .bannerAppBtns button::before {
  position: absolute;
  content: no-open-quote;
  width: 18px;
  height: 18px;
  top: 18px;
  left: 14px;
  background-image: url(/uploads/img/android-logo.svg);
  background-repeat: no-repeat;
  background-size: cover;
}

.bannerApp .bannerAppBtns button:hover {
  color: #fff;
  background: #2f5fdc;
  box-shadow: 0 0 8px 0 rgba(41, 114, 199, 0.45);
}

.bannerApp .bannerAppBtns button:hover::before {
  background-image: url(/uploads/img/android_white.svg);
}

.bannerApp .bannerAppBtns button:after {
  content: '158003 скачиваний';
  position: absolute;
  top: 44px;
  left: 15px;
}

.bannerApp .bannerAppBtns .ios-btn:before {
  background-image: url(/uploads/img/apple.svg);
  left: 14px;
}

.bannerApp .bannerAppBtns .ios-btn:after {
  content: '35356 скачиваний';
  position: absolute;
  top: 44px;
  left: 15px;
}

.bannerApp .bannerAppBtns .ios-btn:hover::before {
  background-image: url(/uploads/img/apple_white.svg);
}

.bannerApp .bannerAppImg {
  width: 262px;
  margin-top: -30px;
}

.bannerApp {
  margin-top: 130px;
  background: url(/uploads/img/app_banner_bg.webp) no-repeat;
  background-size: cover;
}

@media screen and (max-width: 1250px) {
  .bannerApp {
    margin-top: 110px;
  }

  .bannerApp .bannerAppWripper {
    padding: 0 20px;
    justify-content: center;
  }

  .bannerApp .bannerAppInfo {
    align-items: flex-start;
    gap: 10px;
    padding: 15px 10px 15px 0;
  }

  .bannerApp .bannerAppInfo p {
    max-width: 250px;
    margin: 0;
    font-size: 26px;
    line-height: normal;
  }

  .bannerApp .bannerAppImg {
    margin-top: 15px;
    width: 105px;
    height: 214px;
  }

  .bannerApp .bannerAppImg img {
    width: 100%;
    height: 100%;
  }

  .bannerApp .bannerAppBtns {
    flex-direction: column;
    gap: 10px;
  }

  .bannerApp .bannerAppBtns button {
    padding: 10px 14px 30px 30px;
    width: 280px;
    font-size: 14px;
    line-height: 18px;
    border-radius: 8px;
  }

  .bannerApp .bannerAppBtns button::before {
    top: 10px;
    left: 8px;
  }

  .bannerApp .bannerAppBtns button:after {
    left: 11px;
    top: 30px;
  }

  .bannerApp .bannerAppBtns .ios-btn:after {
    left: 30px;
    top: 30px;
  }

  .bannerApp .bannerAppBtns .ios-btn::before {
    left: 8px;
  }
}

@media screen and (max-width: 550px) {
  .bannerApp {
    position: relative;
  }

  .bannerApp .bannerAppWripper {
    justify-content: flex-start;
  }

  .bannerApp .bannerAppWripper .bannerAppImg {
    position: absolute;
    right: 5px;
    bottom: 0;
  }

  .bannerApp .bannerAppWripper .bannerAppInfo {
    width: 200px;
  }
}

@media screen and (max-width: 450px) {
  .bannerApp .bannerAppBtns button {
    width: 180px;
  }

  .bannerApp .bannerAppBtns button:after {
    top: 35px;
  }

  .bannerApp .bannerAppBtns .ios-btn:after {
    top: 35px;
    left: 10px;
  }
}

@media screen and (max-width: 360px) {
  .bannerApp .bannerAppInfo p {
    font-size: 22px;
  }
}

.banner-home {
  background: linear-gradient(90deg, #000000 0%, #666666 100%);
  height: 335px;
}

.banner-home .wrapper {
  width: 100%;
  max-width: 1920px;
}

.banner-home .banner-name {
  position: relative;
  display: block;
}

.banner-home .banner-name h2 {
  color: #fff;
  padding-bottom: 0;
  margin: 0;
}

.banner-home .banner-name p {
  color: #fff;
}

.banner-home .banner-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
}

.banner-home .banner-title .banner-title-desc {
  width: 54%;
}

.banner-home .banner-title img {
  max-width: 571px;
}

.banner-home .banner-title h1 {
  color: #fff;
  font-size: 42px;
  line-height: 51.04px;
  width: 100%;
  text-align: left;
  padding: 0;
}

.banner-home .banner-title p {
  color: #fff;
  margin-top: 24px;
  font-size: 16px;
  line-height: 19.45px;
  padding-bottom: 0;
}

@media (max-width: 1350px) {
  .banner-home {
    height: auto;
  }
}

@media (max-width: 1250px) {
  .banner-home .banner-title {
    display: block;
  }

  .banner-home .banner-title .banner-title-desc {
    width: 100%;
  }

  .banner-home .banner-title img {
    margin: 0 auto;
    max-height: 180px;
    max-width: 100%;
  }

  .banner-home .banner-title h1 {
    font-size: 36px;
    line-height: 44px;
  }

  .banner-home .banner-title p {
    font-size: 14px;
    line-height: 18px;
    width: 100%;
  }
}

@media (max-width: 880px) {
  .banner-home {
    margin: 0;
    height: auto;
  }

  .banner-home .banner-title {
    padding: 5px 0;
    display: block;
  }

  .banner-home .banner-title h1 {
    font-size: 20px;
    line-height: 38px;
  }

  .banner-home .banner-title p {
    font-size: 12px;
    line-height: 18px;
  }
}

@media (max-width: 550px) {
  .banner-home .banner-title h1 {
    font-size: 24px;
    line-height: 32px;
    padding-top: 0px;
  }

  .banner-home .banner-title p {
    font-size: 12px;
    line-height: 16px;
    width: 100%;
  }
}

.nav-submenu {
  position: relative;
  height: 100%;
}

.nav-submenu:hover .nav-submenu-list {
  display: flex;
}

.nav-submenu .nav-submenu-link {
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  line-height: normal;
  height: 55px;
  display: flex;
  align-items: center;
}

.nav-submenu .nav-submenu-list {
  position: absolute;
  background: #000;
  top: 40px;
  left: -10px;
  width: 160px;
  flex-direction: column;
  padding: 10px 10px 0px 10px;
  display: none;
}

.nav-submenu .nav-submenu-list a {
  margin-bottom: 10px;
  margin-right: 0px;
}

@media screen and (max-width: 1250px) {
  #mobileMenu .nav-submenu {
    margin-top: 20px;
  }

  #mobileMenu .nav-submenu-link {
    color: #df0000;
    font-size: 20px;
    text-align: center;
    font-weight: 700;
    line-height: 22px;
    text-transform: uppercase;
    display: block;
    height: auto;
  }

  #mobileMenu .nav-submenu-list {
    display: flex;
    width: 100%;
    left: 0;
    position: relative;
    top: 0;
  }
}

.promo {
  margin-top: 60px;
  background: #000 url(/uploads/img/mask.webp);
  padding: 20px 0;
}

.promo p {
  width: 100%;
}

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

.promo .promo_wrapper .promo_info {
  text-align: center;
  width: 300px;
}

.promo .promo_wrapper .promo_info .promo_title {
  margin-bottom: 10px;
  padding: 0;
  text-transform: uppercase;
  font-size: 50px;
  line-height: 60px;
  font-weight: 700;
}

.promo .promo_wrapper .promo_info .promo_text {
  text-align: center;
  margin-bottom: 10px;
  padding: 0;
  font-size: 22px;
}

.promo .promo_wrapper .promo_info .promo_date {
  margin-bottom: 10px;
  padding: 0;
  font-size: 20px;
}

.promo .promo_wrapper .promo_info .promo_date span {
  border-bottom: 2px dotted #fff;
}

.promo .promo_wrapper .promo_info .promo_percent {
  width: 100%;
  margin-bottom: 10px;
  padding: 0;
  font-size: 40px;
  font-weight: bold;
  line-height: 42px;
  color: #ec2a0a;
}

.promo .promo_wrapper .promo_code-info {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.promo .promo_wrapper .promo_code-info .promo_text {
  text-align: center;
  margin-bottom: 10px;
}

.promo .promo_wrapper .promo_code-info .promo_code {
  margin-bottom: 20px;
  padding: 15px;
  font-weight: 600;
  text-align: center;
  font-size: 42px;
  text-transform: uppercase;
  letter-spacing: 10px;
  background: #000;
  border: 5px dashed #fff;
  border-radius: 10px;
}

.promo .promo_wrapper .promo_code-info .promo_btn {
  color: #fff;
  font-weight: 500;
  font-size: 22px;
  position: relative;
  display: inline-block;
  background: #a91704;
  padding: 8px 12px;
  border-radius: 8px;
}

@media screen and (max-width: 1250px) {
  .promo .promo_wrapper .promo_img {
    display: none;
  }
}

@media screen and (max-width: 700px) {
  .promo {
    padding: 0 0 10px 0;
  }

  .promo .promo_wrapper {
    flex-wrap: wrap;
  }

  .promo .promo_wrapper .promo_info {
    width: 100%;
  }

  .promo .promo_wrapper .promo_info .promo_title {
    font-size: 30px;
    line-height: 40px;
    margin-bottom: 0px;
  }

  .promo .promo_wrapper .promo_info .promo_text {
    margin-bottom: 0;
    font-size: 18px;
  }

  .promo .promo_wrapper .promo_info .promo_percent {
    font-size: 30px;
    line-height: 40px;
    margin-bottom: 0px;
  }

  .promo .promo_wrapper .promo_info .promo_date {
    font-size: 16px;
  }

  .promo .promo_wrapper .promo_code-info {
    width: 100%;
  }

  .promo .promo_wrapper .promo_code-info .promo_text {
    margin-bottom: 0;
  }

  .promo .promo_wrapper .promo_code-info .promo_code {
    width: auto;
    font-size: 20px;
    border: 2px dashed #fff;
  }

  .promo .promo_wrapper .promo_code-info .promo_btn {
    font-size: 20px;
  }
}

.advantages {
  padding: 20px 0;
}

.advantages ul {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
}

.advantages ul li {
  width: 300px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.advantages ul li img {
  width: 60px;
  height: 60px;
}

.advantages ul li p {
  width: 100%;
  padding-bottom: 0;
  text-align: center;
  font-size: 18px;
  font-weight: 500;
  line-height: 24px;
}

@media (max-width: 1250px) {
  .advantages {
    overflow-x: scroll;
    flex-wrap: nowrap;
  }

  .advantages ul {
    justify-content: flex-start;
  }

  .advantages ul li {
    max-width: 160px;
    flex: 0 0 auto;
  }
}

.mirror-block {
  max-width: 600px;
  margin: 0 auto 20px auto;
  width: 96%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 20px 0;
  background-color: #0e121c;
  border-radius: 16px;
}

.mirror-block img {
  margin-bottom: 16px;
  width: 60px;
  height: 60px;
}

.mirror-block span {
  color: #fff;
  text-align: center;
  margin-bottom: 8px;
  font-size: 20px;
  font-weight: 700;
  line-height: 24px;
}

.mirror-block p {
  margin-bottom: 20px;
  padding-bottom: 0;
  text-align: center;
  font-size: 16px;
  font-weight: 400;
  line-height: 20px;
  color: #fff;
}

.mirror-block p span {
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
  color: #fff;
}

.mirror-block button {
  max-width: 400px;
  width: 100%;
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  line-height: 22px;
  padding: 12px 24px;
  border-radius: 52px;
  background: #c01414;
}

@media (max-width: 1250px) {
  .mirror-block button {
    padding: 12px 24px;
  }
}

@media (max-width: 630px) {
  .mirror-block {
    padding: 20px;
    width: calc(100% - 32px);
  }
}

.cupon-banner {
  max-width: 600px;
  margin: 0 auto;
  width: 96%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 40px 15px;
  background-color: #0e121c;
  border-radius: 26px;
  margin-bottom: 20px;
}

.content-side {
  width: 100%;
}

.content-side__title {
  padding-bottom: 0;
  margin: 0;
  width: 100%;
  margin-bottom: 20px;
  color: #fff;
  text-align: center;
  font-size: 28px;
  font-weight: 700;
  line-height: 28px;
}

.content-side__promocode {
  display: flex;
  width: 100%;
}

.content-side__promocode-button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 68px;
  border-radius: 0px 52px 52px 0px;
  background: #fff;
  cursor: pointer;
}

.content-side__promocode-copy {
  width: 100%;
  padding: 12px;
  text-align: center;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  line-height: 22px;
  border-radius: 52px 0px 0px 52px;
  border: 2px solid #fff;
}

@media (max-width: 630px) {
  .promo-block {
    width: calc(100% - 32px);
  }

  .content-side__title {
    max-width: 300px;
    margin: 0 auto;
    margin-bottom: 20px;
    font-size: 24px;
  }
}

.navButtons.wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 30px;
  margin-bottom: 30px;
  padding: 26px;
  border-radius: 20px;
  border: 1px solid #3959d9;
}

.navButtons.wrapper .navButtonsItem {
  position: relative;
}

.navButtons.wrapper .navButtonsItem button {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  z-index: 5;
}

@media screen and (max-width: 1250px) {
  .navButtons.wrapper .navButtonsItem {
    width: 120px;
    height: 90px;
  }

  .navButtons.wrapper .navButtonsItem img {
    width: 100%;
    height: 100%;
  }

  .navButtons.wrapper .navButtonsItem button {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    z-index: 5;
  }

  .navButtons.wrapper .navButtonsItem:nth-child(5),
  .navButtons.wrapper .navButtonsItem:nth-child(6) {
    display: none;
  }
}

@media screen and (max-width: 750px) {
  .navButtons.wrapper {
    padding: 10px;
    gap: 5px;
  }

  .navButtons.wrapper .navButtonsItem {
    margin: 0 auto;
  }

  .navButtons.wrapper .navButtonsItem:nth-child(4) {
    display: none;
  }
}

@media screen and (max-width: 540px) {
  .navButtons.wrapper {
    display: grid;
    grid-template-columns: repeat(2, 2fr);
  }

  .navButtons.wrapper .navButtonsItem {
    margin: 0 auto;
  }

  .navButtons.wrapper .navButtonsItem:nth-child(4) {
    display: none;
  }
}
.casinos-date {
  font-size: 16px;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 10px;
}
.casinos-date span {
  font-weight: 700;
}
.casinos {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 20px 10px;
  gap: 24px;
  display: flex;
  flex-direction: column;
  padding-top: 10px;
}

.casinos-wrapper {
  background: #696969;
  border-radius: 4px;
  box-shadow: 0px 4px 4px 0px #00000040;
  width: 100%;
  max-width: 1400px;
  padding: 20px 24px;
}

.casino {
  background: #FFFFFF;
  border-radius: 4px;
  padding: 20px 24px 20px 24px;
  display: grid;
  grid-template-columns: 160px 25% 350px auto;
  align-items: center;
  gap: 20px;
}

.casino .img {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  max-width: 160px;
}

.casino .img span {
  color: #002147;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  font-size: 16px;
  line-height: 28px;
}

.casino .img .img_img {
  width: 160px;
  height: 66px;
  border-radius: 4px;
}

.casino .img .img_img_20bet {
  background: url(/cards/20bet.webp) no-repeat;
  background-size: contain;
  background-position: 0 center;
  width: 100%;
  height: 66px;
  max-width: 160px;
}
.casino .img .img_img_verdecasino {
  background: url(/cards/verde.webp) no-repeat;
  background-size: contain;
  background-position: 0 center;
  width: 100%;
  height: 66px;
  max-width: 160px;
}

.casino .img .img_img_powbet {
  background: url(/cards/powbet.webp) no-repeat;
  background-size: contain;
  background-position: 0 center;
  width: 100%;
  height: 66px;
  max-width: 160px;
}
.casino .img .img_img_boomerang {
  background: url(/cards/boomerang.webp) no-repeat;
  background-size: cover;
  background-position: center;
  width: 100%;
  height: 66px;
  max-width: 160px;
  border-radius: 4px;
}
.casino .img .img_img_divaspin {
  background: url(/cards/divaspin.webp) no-repeat;
  background-size: contain;
  background-position: 0 center;
  width: 100%;
  height: 66px;
  max-width: 160px;
}
.casino .img .img_img_spinbetter {
  background: url(/cards/spinbetter.webp) no-repeat;
  background-size: contain;
  background-position: 0 center;
  width: 100%;
  height: 66px;
  max-width: 160px;
}
.casino .img .img_img_duospin {
  background: url(/cards/DuoSpin.webp) no-repeat;
  background-size: contain;
  background-position: 0 center;
  width: 100%;
  height: 66px;
  max-width: 160px;
}
.casino .img .img_img_leonbet {
  background: url(/cards/leon.webp) no-repeat;
  background-size: contain;
  background-position: 0 center;
  width: 100%;
  height: 66px;
  max-width: 160px;
}
.casino .img .img_img_22bet {
  background: url(/cards/22bet.webp) no-repeat;
  background-size: contain;
  background-position: 0 center;
  width: 100%;
  height: 66px;
  max-width: 160px;
}

.casino .img .img_img_starzino {
  background: url(/cards/Starzino_1x.webp) no-repeat;
  background-size: contain;
  background-position: 0 center;
  width: 100%;
  height: 66px;
  max-width: 160px;
}

.casino .img .img_img_kinbet {
  background: url(/cards/KinBet_1x.webp) no-repeat;
  background-size: contain;
  background-position: 0 center;
  width: 100%;
  height: 66px;
  max-width: 160px;
}

.casino .img .img_img_ivibet {
  background: url(/cards/Ivibet_1x.webp) no-repeat;
  background-size: contain;
  background-position: 0 center;
  width: 100%;
  height: 66px;
  max-width: 160px;
}

.casino .img .img_img_betizy {
  background: url(/cards/Betizy_1x.webp) no-repeat;
  background-size: contain;
  background-position: 0 center;
  width: 100%;
  height: 66px;
  max-width: 160px;
}
.casino .img .img_img_naobet {
  background: url(/cards/naobet.png) no-repeat;
  background-size: contain;
  background-position: 0 center;
  width: 100%;
  height: 66px;
  max-width: 160px;
  background-color: #636363;
  border-radius: 5px;
}
.casino .img .img_img_mafiacasino {
  background: url(/cards/mafiacasino.webp) no-repeat;
  background-size: contain;
  background-position: 0 center;
  width: 100%;
  height: 66px;
  max-width: 160px;
}
.casino .img .img_img_casinoinfinity {
  background: url(/cards/casinoinfinity.webp) no-repeat;
  background-size: contain;
  background-position: 0 center;
  width: 100%;
  height: 66px;
  max-width: 160px;
}
.casino .img .img_img_rtbet {
  background: url(/cards/rtbet.webp) no-repeat;
  background-size: contain;
  background-position: 0 center;
  width: 100%;
  height: 66px;
  max-width: 160px;
}
.casino .img .img_img_mafia {
  background: url(/cards/mafia.webp) no-repeat;
  background-size: contain;
  background-position: 0 center;
  width: 100%;
  height: 66px;
  max-width: 160px;
}
.casino .img .img_img_beonbet {
  background: url(/cards/beonbet.webp) no-repeat;
  background-size: contain;
  background-position: 0 center;
  width: 100%;
  height: 66px;
  max-width: 160px;
}
.casino .img .img_img_robocat {
  background: url(/cards/robocat.webp) no-repeat;
  background-size: contain;
  background-position: 0 center;
  width: 100%;
  height: 66px;
  max-width: 160px;
}
.casino .img .img_img_oceanspin {
  background: url(/cards/oceanspin.webp) no-repeat;
  background-size: contain;
  background-position: 0 center;
  width: 100%;
  height: 66px;
  max-width: 160px;
}
.casino .img .img_img_oscarspin {
  background: url(/cards/oscarspin.webp) no-repeat;
  background-size: contain;
  background-position: 0 center;
  width: 100%;
  height: 66px;
  max-width: 160px;
}
.casino .img .img_img_playjonny {
  background: url(/cards/playjonny.webp) no-repeat;
  background-size: contain;
  background-position: 0 center;
  width: 100%;
  height: 66px;
  max-width: 160px;
}
.casino .img .img_img_betovo {
  background: url(/cards/betovo.webp) no-repeat;
  background-size: contain;
  background-position: 0 center;
  width: 100%;
  height: 66px;
  max-width: 160px;
}
.casino .img .img_img_cashed {
  background: url(/cards/cashed.webp) no-repeat;
  background-size: contain;
  background-position: 0 center;
  width: 100%;
  height: 66px;
  max-width: 160px;
}
.casino .img .img_img_tikitaka {
  background: url(/cards/TikiTaka_1x.webp) no-repeat;
  background-size: contain;
  background-position: 0 center;
  width: 100%;
  height: 66px;
  max-width: 160px;
}

.casino .img .img_img_goldspin {
  background: url(/cards/Goldspin.webp) no-repeat;
  background-size: contain;
  background-position: 0 center;
  width: 100%;
  height: 66px;
  max-width: 160px;
}

.casino .img .img_img_mafia {
  background: url(/cards/mafia.webp) no-repeat;
  background-size: contain;
  background-position: 0 center;
  width: 100%;
  height: 66px;
  max-width: 160px;
}

.casino .img .img_img_glitchspin {
  background: url(/cards/Glitchspin.webp) no-repeat;
  background-size: contain;
  background-position: 0 center;
  width: 100%;
  height: 66px;
  max-width: 160px;
}

.casino .rating {
  height: 53px;
  display: flex;
  justify-content: center;
  gap: 10px;
  align-items: flex-start;
  flex-direction: column;
}
.casino .rating .title {
  font-family: 'Tahoma';
  font-size: 16px;
  font-weight: 700;
  line-height: 18px;
  text-align: left;
  color: #1F1F1F;
}

.casino .rating img {
  width: 15px;
}

.casino .rating span {
  color: #1F1F1F;
  font-family: 'Tahoma';
  font-size: 14px;
  font-weight: 400;
  line-height: 16px;
  padding-left: 4px;
}
.casino .rating .rating-info {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.casino .rating .license {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.casino .bonus span {
  font-family: 'Tahoma';
  font-size: 12px;
  font-weight: 400;
  line-height: 13.2px;
  text-align: left;
  color: #1F1F1F;
}

.casino .bonus p {
  font-family: 'Tahoma';
  font-size: 20px;
  font-weight: 700;
  line-height: 22px;
  text-align: left;
  color: #860000;
  padding-top: 8px;
  margin: 0;
  width: 100%;
  max-width: 300px;
}

.casino .button {
  width: 100%;
  display: flex;
  gap: 24px;
  justify-content: center;
  align-items: center;
  margin-top: 0;
  text-transform: unset;
}
.casino .button .rezension {
  font-family: 'Tahoma';
    font-size: 16px;
    font-weight: 700;
    text-align: center;
    color: #fff;
    position: relative;
    cursor: pointer;
    font-family: 'Tahoma';
    font-size: 16px;
    font-weight: 700;
    line-height: 18px;
    text-align: center;
    color: #FFFFFF;
    background: #C70000;
    border: none;
    width: 100%;
    max-width: 150px;
    padding: 14px 24px;
    cursor: pointer;
    transition: 0.4s;
    text-align: center;
    opacity: 1;
    filter: drop-shadow(5px 5px 0 #860000);
}

.casino .button button, .headerWrapper .button button, .main-info .button button, .popup-right button, .general-td button {
  font-family: 'Tahoma';
  font-size: 16px;
  font-weight: 700;
  line-height: 18px;
  text-align: center;
  color: #FFFFFF;
  background: #C70000;
  border: none;
  width: 100%;
  max-width: 150px;
  padding: 14px 24px;
  cursor: pointer;
  transition: 0.4s;
  text-align: center;
  opacity: 1;
  filter: drop-shadow(5px 5px 0 #860000);
}
.casino .button .info-casino {
  font-family: 'Tahoma';
  font-size: 16px;
  font-weight: 700;
  text-align: center;
  color: #fff;
  position: relative;
  cursor: pointer;
}
/* .casino .button .info-casino::after {
  content: url(/cards/down.svg);
  width: 8px;
  height: 8px;
  position: absolute;
  padding-left: 5px;
} */

.casino .button button:hover {
  opacity: 0.8;
}

.more-info {
  display: none;
  margin-top: 16px;
  gap: 17px;
  grid-template-columns: 50% 25% auto;
}
.more-info .info-deposit {
  background: #ffffff;
  border-radius: 4px;
  padding: 12px;
  width: 100%;
  max-width: 778px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 0;
}
.more-info .min-dep,
.more-info .max-dep {
  background: #fff;
  border-radius: 4px;
  padding: 12px;
  width: 100%;
  max-width: 420px;
}
.more-info .min-dep .more-info-title,
.more-info .max-dep .more-info-title {
  font-family: 'Tahoma';
  font-size: 14px;
  font-weight: 700;
  line-height: 16px;
  text-align: left;
  color: #1F1F1F;
  margin: 0;
  padding-bottom: 8px;
  width: 100%;
}

.more-info .min-dep span,
.more-info .max-dep span {
  font-family: 'Tahoma';
  font-size: 14px;
  font-weight: 400;
  line-height: 16px;
  text-align: left;
  color: #1F1F1F;
}

.more-info .info-deposit .more-info-title {
  font-family: 'Tahoma';
  font-size: 14px;
  font-weight: 700;
  line-height: 16px;
  text-align: left;
  color: #1F1F1F;
  margin: 0;
  padding-bottom: 8px;
}
.more-info .info-deposit span {
  font-family: 'Tahoma';
  font-size: 14px;
  font-weight: 400;
  line-height: 19px;
  text-align: left;
  color: #1F1F1F;
}

.more-info.visible {
  display: grid;
}


@media (max-width: 1370px) {
  .casino {
    grid-template-columns: 50% 50%;
    padding: 20px 20px 14px 20px;
    gap: 14px;
  }
  .casino .bonus p {
    max-width: unset;
  }

  .casino .bonus {
    padding-left: 0;
  }

  .casino .button {
    margin: 0 auto;
    justify-content: flex-start;
  }
}
@media (max-width: 750px) {
  .more-info {
    flex-direction: column;
  }
}

@media (max-width: 900px) {
  .casino {
    margin-bottom: 12px;
    grid-template-columns: 160px 1fr;
  }

  .casino .rating {
    height: auto;
  }

  .casino .bonus {
    grid-column-start: 1;
    grid-column-end: 3;
  }

  .casino .button {
    grid-column-start: 1;
    grid-column-end: 3;
    margin-left: 0;
  }
  .more-info {
    grid-template-columns: 1fr 1fr;
  }
  .more-info .info-deposit {
    grid-column-start: 1;
    grid-column-end: 3;
  }
  .more-info .min-dep,
  .more-info .max-dep {
    padding: 5px 12px 5px 12px;
  }
}

@media (max-width: 520px) {
  .casino {
    padding: 12px;
    grid-template-columns: 90px 1fr;
  }
  .casino .rating {
    gap: 2px;
  }
  .casino .rating .title {
    font-size: 14px;
    line-height: 15px;
  }
  .casino .bonus {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .casino .img .img_img {
    width: 90px;
  }
  .casino .bonus p {
    text-align: center;
    font-size: 16px;
    line-height: 22px;
    padding: 5px 5px 5px 5px;
  }
  .casino .bonus span {
    text-align: center;
  }
  .casino .rating span {
    font-size: 10px;
    line-height: 15px;
  }
  .casino .button {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .casino .rating img {
    width: 10px;
    height: 10px;
  }

  .more-info .min-dep .more-info-title,
  .more-info .max-dep .more-info-title {
    font-size: 9px;
  }
}

@media (max-width: 380px) {
  .casino {
    padding: 10px 10px 10px 10px;
    gap: 8px;
  }
}

.burger {
  display: none;
  position: relative;
}
.mobileMenu {
  position: fixed;
  top: 0;
  right: 0%;
  display: block;
  z-index: 5;
  background: #fff;
  width: 100%;
  max-width: 350px;
  min-height: 100vh;
  padding: 30px 20px;
  transition: right 0.8s;
}
.mobileMenu .buttons {
  display: block;
  margin-top: 32px;
}
.mobileMenu .buttons button {
  display: block;
  margin: 0 auto 12px;
  width: 50%;
}
.mobileMenu[hidden] {
  right: -200%;
}
.mobileMenu .mobileMenuTop {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 75px;
}
.mobileMenu .mobileMenuLinks {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
  display: block;
}
.overlay[hidden] {
  display: none;
}
@media screen and (max-width: 1250px) {
  .burger {
    display: block;
  }
}

main h2, main h3 {
  color: #860000;
  text-align: left;
}

main h2 {
  font-weight: 700;
  font-size: 28px;
}

main h3 {
  font-weight: 700;
  font-size: 24px;
}

main p, main li {
  font-family: 'Tahoma', sans-serif;
  
}

/*  casino card  */

.casino-info {
  display: flex;
  flex-direction: row;
  gap: 12px;
  margin-bottom: 20px;
}

.main-info, .plus-minus-list, .info-items {
  background-color: #FFFFFF;
  box-shadow: 4px 4px 2px 2px #C5C5C5;
  border: 1px solid #C8C8C8;
  padding: 24px;
}

.casino-info .main-info {
  max-width: 477px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  text-align: center;
  align-items: center;
}

.casino-info .plus-minus-list {
  max-width: 400px;
}

/* .casino-info .info-items {
  max-width: 485px;
} */

.main-info .name-casino, .main-info .bonus-text span, .plus-minus-list span {
  font-family: 'Tahoma';
  font-weight: 700;
  font-size: 18px;
  text-align: center;
  vertical-align: middle;
  color: #1F1F1F;
  padding: 0;
}

.main-info .bonus-text span, .plus-minus-list span {
  font-size: 14px;
}

.main-info .payment-gallery {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.main-info .img-casino  {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 100%;
  height: 117px;
  max-width: 403px;
  border-radius: 8px;
}

.main-info .img-20bet {
   background-image: url(cards/20bet_card.png);
}

.main-info .img-leonbet {
  background-image: url(cards/leon_card.png);
}

.main-info .img-22bet {
  background-image: url(cards/22bet_card.png);
}

.main-info .img-ivibet {
  background-image: url(cards/ivibet_card.png);
}

.main-info .img-n1bet {
  background-image: url(cards/n1bet_card.png);
}

.main-info .img-naobet {
  background-image: url(cards/naobet_card.webp);
}

.main-info .img-powbet {
  background-image: url(cards/powbet_card.webp);
}

.main-info .img-cashed {
  background-image: url(cards/cashed_card.webp);
}

.main-info .img-leonbet {
  background-image: url(cards/leonbet_card.webp);
}

.main-info .img-betovo {
  background-image: url(cards/betovo_card.webp);
}

.main-info .img-spinbetter {
  background-image: url(cards/spinbeter_card.webp);
}

.main-info .img-duospin {
  background-image: url(cards/duospin_card.webp);
}

.main-info .img-divaspin {
  background-image: url(cards/divaspin_card.webp);
}

.main-info .img-tikitaka {
  background-image: url(cards/tikitaka_card.webp);
}

.main-info .img-betizy {
  background-image: url(cards/betizy_card.webp);
}

.main-info .img-starzino {
  background-image: url(cards/starzino_card.webp);
}


.main-info .bonus-text {
  display: flex;
  flex-direction: column;
  gap: 12px;

}

.main-info .bonus-text p {
  border-bottom: 1px solid #BEBEBE;
  border-top: 1px solid #BEBEBE;
  padding-top: 12px;
  padding-bottom: 16px;
  color: #860000;
  font-weight: 700;
  font-size: 16px;
}

.plus-minus-list span {
  text-decoration: underline;
  text-decoration-color: #BEBEBE;
  text-underline-offset: 4px;
  margin-bottom: 20px;
}

.plus-minus-list ul {
  list-style: none;
  margin-top: 20px;
  margin-bottom: 20px;
}

.plus-minus-list ul li {
  position: relative;
  margin-bottom: 8px;
  padding-left: 24px;
  font-size: 14px;
  color: #333333;
}

.plus-minus-list .items-plus li::before {
  content: url(cards/marker-green.png);
  position: absolute;
  width: 16px;
  height: 16px;
  left: 0;
  margin-right: 8px;
}

.plus-minus-list .items-minus li::before {
  content: url(cards/marker-red.png);
  position: absolute;
  width: 16px;
  height: 16px;
  left: 0;
  margin-right: 8px;
}

.casino-table {
  border-collapse: separate; 
  border-spacing: 12px 20px; 
}

.casino-table td {
  font-family: 'Tahoma';
  font-weight: 400;
  font-size: 12px;
  text-align: left;
  vertical-align: middle;
  color: #333333;  
}

.casino-table td:first-child {
  font-weight: 700;
  text-decoration: underline;
  text-decoration-color: #BEBEBE;
  text-underline-offset: 4px;
  white-space: nowrap;
  color: #333;
}

.general-table {
  width: 100%;
  border-collapse: collapse;
  box-shadow: 4px 4px 2px 0px #C5C5C5;
}

.general-table th:nth-child(1),
.general-table td:nth-child(1) {
    width: 340px; 
}

/* .reg-table th:nth-child(2),
.reg-table td:nth-child(2) {
    width: auto; 
}

.reg-table th:nth-child(3),
.reg-table td:nth-child(3) {
    width: 254px; 
} */

.general-table th {
  background-color: #C70000;
  color: #fff; 
  padding: 12px;
  padding-left: 24px;
  text-align: left;
  border: 1px solid #C5C5C5;
}

.general-table th:nth-child(2),.general-table th:nth-child(4) {
  background-color: #860000;
}

.general-table th, .general-table td {
  border: 1px solid #C5C5C5;
}

.general-table td {
  padding: 10px;
  text-align: left;
  padding: 12px 24px;
  font-family: 'Tahoma';
  font-weight: 400;
  font-size: 14px;
}

.general-table tr:nth-child(even) {
  background-color: #F0F0F0; 
}

.features-list-wrapper {
  display: flex;
  flex-direction: row;
}

.general-table-wrapper span {
  text-decoration: underline;
  text-decoration-color: #BEBEBE;
  text-underline-offset: 4px;
  margin-bottom: 20px;
}

.general-table-wrapper ul {
  list-style: none;
  margin-top: 20px;
  margin-bottom: 20px;
}

.general-table-wrapper ul li {
  position: relative;
  margin-bottom: 8px;
  padding-left: 24px;
  font-size: 14px;
  color: #333333;
}

.features-list-wrapper .features-pros span {
  background-color: #01A96A;
  box-shadow: 4px 4px 2px 2px #006F46;
  color: #fff;
  font-family: 'Tahoma';
  font-weight: 700;
  font-size: 18px;
  padding: 12px 24px;

}

.features-list-wrapper .features-cons span {
  background-color: #C70000;
  box-shadow: 4px 4px 2px 2px #860000;
  color: #fff;
  font-family: 'Tahoma';
  font-weight: 700;
  font-size: 18px; 
  padding: 12px 24px;

}

.features-list {
  display: flex;
  flex-direction: column;
  width: 100%;

}

.features-list .items-plus li::before {
  content: url(cards/li_green.svg);
  position: absolute;
  width: 16px;
  height: 16px;
  left: 0;
  margin-right: 8px;
}

.features-list .items-minus li::before {
  content: url(cards/li_red.svg);
  position: absolute;
  width: 16px;
  height: 16px;
  left: 0;
  margin-right: 8px;
}

.features-pros {
  margin-right: 16px;
}

.features-list .items-plus, .features-list .items-minus {
  border: 1px solid #C8C8C8;
  box-shadow: 4px 4px 2px 2px #C5C5C5;
  width: 100%;
  padding: 24px;
}

.features-list ul {
  height: 374px;
}

.features-list ul li {
  position: relative;
  margin-bottom: 16px;
  padding-left: 24px;
  font-size: 18px;
  color: #333333;
}

.registration {
  display: flex;
  flex-direction: row;
  gap: 20px;
}

.registration p, .list-items li {
  color: #1F1F1F;
  font-family: 'Tahoma';
  font-weight: 400;
  font-size: 18px; 
}

.list-items {
  list-style: none; 
  counter-reset: list-counter; 
  padding-left: 0;
  box-shadow: 4px 4px 2px 2px #C5C5C5 ;
  padding: 24px 16px;
  border: 1px solid #C8C8C8;
  height: 360px;
}

.list-items li {
  counter-increment: list-counter; 
  position: relative;
  padding-left: 48px; 
  margin-bottom: 20px;
}

.list-items li::before {
  content: counter(list-counter); 
  position: absolute;
  left: 0;
  top: 0;
  
  width: 20px; 
  height: 20px;
  line-height: 20px; 
  
  background-color: #01A96A; 
  color: #fff; 
  
  border-radius: 1px;
  text-align: center;
  font-weight: 700;
  font-size: 12px;
} 

.img-reg {
  max-width: 340px;
}

.reg-wrapper {
  width: 100%;
}



.payments-list {
  display: grid;
  grid-template-columns: auto 1fr; /* Левая колонка (авто), правая (растягивается) */
  gap: 20px;
  align-items: start;
}

.payments-image img {
  max-width: 562px;
  width: 100%;
  height: auto;
}

.payments-wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* Две колонки */
  gap: 20px; /* Отступ между карточками */
  align-items: stretch; /* Карточки растягиваются равномерно */
}

.payment-card {
  background: #fff;
  padding: 24px 16px;
  border: 1px solid #C8C8C8;
  box-shadow: 4px 4px 2px 2px #C5C5C5;
  height: 140px; 
  width: 100%;

}

.sport-items {
  background: #fff;
  padding: 24px 16px;
  border: 1px solid #C8C8C8;
  box-shadow: 4px 4px 2px 2px #C5C5C5;
  height: 140px; 
  max-width: 379px; 
}

.bonus-items {
  background: #fff;
  padding: 24px 16px;
  border: 1px solid #C8C8C8;
  box-shadow: 4px 4px 2px 2px #C5C5C5;
  min-height: 156px; 
}

.bonus-red {
  background: #860000;
}


.payments-title img {
  width: 40px;
  height: auto;
}

.payment-card p {
  font-size: 14px;
}


.payments-wrapper {
  display: flex;
  flex-direction: row;
  gap: 20px;
  flex-wrap: wrap;
  max-height: 300px;
}


.payments-title, .sports-title, .bonus-title {
  display: flex;
  flex-direction: row;
  gap: 12px;
}

.payments-title .img-card {
  width: 44px;
  height: 44px;
}


.payments-title span, .sports-title span, .bonus-title h3 {
  color: #1F1F1F;
  font-family: 'Tahoma';
  font-weight: 700;
  font-size: 16px; 
}

.bonus-title h3 {
  padding: 0;
  margin: 0;
  line-height: 100%;
}

.payment-card p, .sport-items p, .bonus-items p {
  color: #1F1F1F;
  font-family: 'Tahoma';
  font-weight: 400;
  font-size: 16px; 
  margin-top: 12px;
  padding: 0;
}


.bonus-red p, .bonus-red .bonus-title span {
  color: #fff;
}

.sports-wrapper {
display: grid;
grid-template-columns: repeat(4, 1fr); 
grid-template-rows: repeat(2, auto); 
gap: 20px; 
}

.bonuses {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px; 
  justify-items: center; 
}

.bonuses_app {
    grid-template-columns: repeat(2, 1fr);
} 



@media screen and (max-width: 1250px) {
   .faq-container .faq-question {
    padding-left: 40px;
  }

  .faq-container .faq-question::before {
    left: 10px;
  }
}



@media screen and (max-width: 850px) {
  
  .casino-info {
    flex-direction: column;
  }

  .casino-info .main-info, .casino-info .plus-minus-list, .casino-info .info-items {
    max-width: none;
    padding: 12px;
    border-radius: 12px;
    box-shadow: 0px 4px 4px 0px #C5C5C5;
  }

  .list-items {
    height: 310px ;
  }

  .list-items li {
    font-size: 14px;
  }

  .plus-minus-list {
    display: flex;
    flex-direction: column;
  }

  .general-table-wrapper {
    overflow-x: auto;
  }

  .general-table th:nth-child(1), .general-table td:nth-child(1) {
    width: 172px;
  }


  

  .features-list-wrapper {
    flex-direction: column;
  }

  .features-pros {
    margin-right: 0px;
    margin-bottom: 12px;
  }

  .features-list ul {
    height: auto;
  }

  .sports-wrapper {
    grid-template-columns: repeat(3, 1fr); 
    grid-template-rows: repeat(3, auto); 
  }

  .payments-wrapper {
    max-height: none;;
  }

  .payments-title span {
    font-size: 14px;

  }

  .payment-card p {
    font-size: 12px;
  }

 .payments-list {
    flex-direction: column;
  }

  .payments-list {
    grid-template-columns: 1fr; 
}

.payments-image {
    text-align: center;
}

.payments-wrapper {
    grid-template-columns: 1fr; 
    justify-items: center; 
}

.bonuses {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px; 
  justify-items: center; 
}

}

@media screen and (max-width: 550px) {
  .registration {
    flex-direction: column;
  }

  .payments-list img {
    max-width: 292px;
  }

  .sports-wrapper {
    grid-template-columns: repeat(2, 1fr); 
    grid-template-rows: repeat(4, auto); 
  }

  .bonuses {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 20px; 
    justify-items: center; 
  }
  
}

@media screen and (max-width: 360px) {

  .sport-items {
    padding: 5px 10px;
  }

  .casinos{
    padding: 0;
  }

  .casinos-wrapper{
    padding: 18px;
  }

  .casino .button {
    gap: 15px;
  }
}

.author{
  margin: 20px 0px;
  border: 1px solid #C8C8C8;
  box-shadow: 4px 4px 2px 2px #C5C5C5;
  padding: 24px;
  display: flex;
  flex-direction: row;
  /* justify-content: center; */
  align-items: center;
  gap: 40px;
}

.author img{
  border-radius: 100px;
}

.author-container {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.author-name{
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 16px;
}



.author-container .author-name p{
  padding: 0;
  font-size: 24px;
  font-weight: 700;
  color: #1F1F1F;
  text-transform: uppercase;
  margin: 0;
  width: auto;
}


.author-container p{
  font-weight: 400;
  font-size: 18px;
  color: #1F1F1F;
  padding: 0;
  margin: 0;
}

.author-title{
  display: flex;
  justify-content: center;
  background-color: #DCFFEF;
  color: #333333;
  padding-right: 20px;
  gap: 10px;
  border-radius: 100px;
  align-items: center;
}

.author-title span{
  font-size: 14px;
}

/*shortcode author mini*/

.author_mini .author-name {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}

.author_mini .author_photo {
  width: 80px;
  height: 80px;
}

.author_mini .author-container {
  gap: 8px;
}

.author_mini .author-container .author-name p {
  font-size: 20px;
}

.author_mini .casinos-date, .author_mini .casinos-date span {
  font-size: 14px;
  color: #4D4D4D;
}


@media screen and (max-width: 900px) {
  .author-name {
    flex-direction: column;
    align-items: flex-start; 
    gap: 12px;
  }
  .author{
    align-items: flex-start;
  }
}

@media screen and (max-width: 700px) {
  .author {
    flex-direction: column;
    align-items: center;
    gap: 24px; 
  }
  .author-name {
    align-items: center;
  }

  .author_mini .author-name {
    align-items: center;
  }

  .author_mini .author-container {
    text-align: center;
  }

}


@media screen and (max-width: 500px) {
  .author-container .author-name p {
    font-size: 20px;
  }
  .author-container p {
    font-size: 16px;
  } 
  
}

@media screen and (max-width: 402px) {
  .author-title{
    padding-right: 5px;
    gap: 2px;
  }
  .author{
    gap: 12px;
    padding: 10px;
  }
  .author-title span{
    font-size: 12px;
  }
}

.toc-wrapper {
  margin: 32px auto;
  overflow: hidden;
  border-width: 1px 0px 1px 0px;
  border-style: solid;
  border-color: #333333;
  width: 100%;
  max-width: 1300px;
}
.toc-toggle {
  width: 100%;
  text-align: left;
  padding: 17px 0;
  color: #1F1F1F;
  font-weight: 700;
  font-size: 24px;
  line-height: 100%;
  cursor: pointer;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 16px;
}
.toc-content {
  padding: 0 10px 10px 10px;
}
.toc-list {
  list-style: none;
  padding: 0;
  width: 100%;
  max-width: 1200px;
}
.toc-list li {
  margin: 16px 0;
  border-bottom: 1px solid #333333;
  padding: 16px 0 ;
}
.toc-list a {
  font-family: Tahoma;
  font-weight: 400;
  font-size: 18px;
  line-height: 100%;
  letter-spacing: 0%;
  color: #1F1F1F;  

}
.arrow {
  transition: transform 0.3s ease;
}
.toc-toggle.open .arrow {
  transform: rotate(180deg);
}

.buttonsWrapper {
  display: flex;
  flex-direction: row;
  gap: 20px;
}

.gift-button {
  position: relative;
  display: inline-block;
}

.gift-button img {
  display: block;
  width: 46px; 
  height: auto;
}

.gift-button .btn-bonus {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: transparent;
  border: none;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.gift-button:hover img {
  transform: scale(1.1); 
}

#casino-popup {
  position: fixed;
  bottom: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.85);
  color: #fff;
  padding: 21px;
  box-shadow: 0 -2px 10px rgba(0,0,0,0.3);
  display: flex;
  justify-content: center;
  z-index: 9999;
  transition: transform 0.5s ease;
  transform: translateY(100%);
}

#casino-popup.show {
  transform: translateY(0);
}

.popup-content {
  display: flex;
  max-width: 1200px;
  width: 100%;
  align-items: center;
  justify-content: space-between;
}

.popup-content .popup-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.popup-content .popup-left .logo {
  width: 160px;
  height: 66px;
}

.popup-info {
  display: flex;
  flex-direction: column;
}

.popup-info .casino-name {
  font-weight: 700;
  font-size: 16px;
}

.popup-info .casino-rating {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 14px;
}

.popup-info .casino-rating span {
  color: #fff;
}

.popup-info .casino-rating .star {
  width: 20px;
  height: 20px;
}

.popup-content .popup-middle {
  text-align: center;
  font-size: 15px;
}

.popup-content .popup-middle .bonus-text {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
}

.popup-content .popup-middle .bonus-amount {
  color: #32BA7C;
  font-size: 20px;
  font-weight: 700;
}

.popup-close {
  position: absolute;
  top: 10px;
  right: 12px;
  background-color: #646464;
  color: #fff;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
  z-index: 1000;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.popup-close:hover {
  background-color: #777;
}
@media screen and (max-width: 700px) {
  .popup-content {
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
  }

  .popup-content .popup-left {
    flex: 1 1 100%;
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
  }

  .popup-content .popup-middle {
    flex: 1 1 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 10px;
    text-align: center;
  }

  .popup-content .popup-right {
    width: 100%;
    order: 3;
    display: flex;
    justify-content: center;
  }

 .popup-right button {
    width: 100vw; 
    max-width: 100%;
    font-size: 16px;
    padding: 14px;
    box-sizing: border-box;
  }

  .popup-close {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 32px;
    height: 32px;
    font-size: 20px;
    border-radius: 50%;
  }

  .popup-content .popup-middle .bonus-text {
    font-size: 16px; 
    margin-bottom: 4px;
  }

  .popup-content .popup-middle .bonus-amount{
    font-size: 14px; 
  }
}

@media screen and (max-width: 500px) {
  .popup-right button {
    width: 100%;
    font-size: 15px;
    padding: 16px;
  }

  .popup-content .popup-middle .bonus-text {
    font-size: 16px;
  }

  .popup-content .popup-middle .bonus-amount{
    font-size: 14px;
  }
}
