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

:root {
  --main-color: #fff;
  --secondary-color: #071f46;
  --main-background: #0a519e;
  /*  #033C78; */
  /* #242428 */
  --secondary-background: #033c78;
  --main-button-background: #054588;
  --border-color: #428cdc;
  /*	--utils-color: #ffba00 */
  --accent-color: #f9ba15;
  --link-hover-color: #fa4d00;
  --utils-color: #fff;
  --arrow-background: right center url(/uploads/img/arrow-down.svg) no-repeat;
  --accented-button-color: linear-gradient(180deg, #e8692c 0%, #e75b28 100%);
  --accented-button-shadow: 0 10px 30px rgb(250 65 0 / 40%);

  --border-radius-main: 40px;
}

html,
body {
  height: 100%;
  font-family: Verdana, sans-serif;
  background: var(--secondary-color);
}

main {
  display: flex;
  flex-direction: column;
  background: var(--main-background);
  font-family: Verdana, sans-serif;
  padding-top: 148px;
}

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

main h1,
main h2,
main h3,
main h4,
main h5,
main h6 {
  color: var(--main-color);
}

main a {
  color: #e8672c;
  font-family: Verdana, sans-serif;
}

.content a:hover, main .footer a:hover{
  text-decoration: underline;
  text-decoration-color: #fff;
}
main .header a:hover{
  text-decoration: none;
}

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 {
  /* max-width: 1128px; */
  margin: 0 auto;
  width: 96%;
}

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

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

/* 
main .wrapper {
    width: 100%;
    max-width: 1128px;
    margin: 0 auto;
} */

body {
  overflow-x: hidden;
  position: relative;
}

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: 15px 0;
  color: var(--main-color);
}

h1 {
  font-size: 22px;
  font-weight: 600;
  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,
a,
b,
i,
label,
input,
button,
td,
tr,
figcaption {
  color: var(--main-color);
}

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;
}
time {
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 5px 0;
  width: 100%;
}

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

.content {
  position: relative;
  flex-grow: 1;
}

.content .content-block {
  margin-bottom: 20px;
  border-radius: 20px;
  background: rgba(0, 0, 0, 0);
}

.content .general-ol {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 20px;
  counter-reset: counter-ol;
  padding-left: 20px;
}

.content .general-ol li {
  position: relative;
  padding-left: 0;
  margin-bottom: 10px;
  width: 48%;
  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: var(--main-color);
  border-radius: 50%;
  top: -2px;
  left: -26px;
}

.content .general-ul {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.content .general-ul li {
  position: relative;
  padding-bottom: 10px;
  padding-left: 15px;
  width: 48%;
}

.content .general-ul li::before {
  content: no-open-quote;
  position: absolute;
  width: 5px;
  height: 5px;
  left: 0;
  top: 10px;
  background-color: var(--main-color);
  border-radius: 50%;
}

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

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

.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: var(--main-color);
  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;
  overflow: hidden;
  text-align: center;
  font-size: 14px;
  line-height: 18px;
  margin: 0 auto;
  margin-bottom: 20px;
}

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

.general-table .general-tr .general-td {
  padding: 10px;
  text-align: center;
  color: var(--main-color);
  border: 1px solid #112574;
}

.general-table thead tr th {
  padding: 10px;
  border: 1px solid var(--main-color);
}
.faq-container .faq-item {
  border: 2px solid #003266;
  margin: 0 auto;
  position: relative;
  min-height: 54px;
  margin-bottom: 20px;
  background-color: #003266;
  z-index: 5;
  border-radius: 26px;
  transition: all 0.4s ease;
}

/* .faq-container .faq-item:last-child {
border-bottom: none;
} */

.faq-container .faq-item:hover .icon::before,
.faq-container .faq-item:hover .icon::after {
  background: #fff;
}

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

.faq-container .faq-question {
  color: var(--accent-color);
  position: relative;
  padding-bottom: 0;
  font-weight: 700;
  font-size: 18px;
  top: 10px;
  width: 96%;
  line-height: 22px;
  padding-right: 25px;
  text-align: left;
}

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

.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: var(--accent-color);
  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%;
  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: #fff;
}

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

.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;
}

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

.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: #df0000;
  cursor: pointer;
  border-radius: 7px;
  transition: all 0.25s ease-out;
}

.table_of_contents .lbl-toggle:hover {
  background: linear-gradient(135deg, #df0000 0%, #a10000 100%);
}

.table_of_contents .toggle:checked + .lbl-toggle {
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}

.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;
  border: 1px solid #222;
  padding: 20px;
  margin-top: 12px;
  border-radius: 8px;
}

.table_of_contents .table_link {
  position: relative;
  padding-left: 15px;
  font-size: 16px;
  line-height: 1.8;
  color: #222;
}

.table_of_contents .table_link::before {
  content: no-open-quote;
  position: absolute;
  width: 8px;
  height: 8px;
  top: 32%;
  left: 0;
  background: #222;
  border-radius: 50%;
  transition: all 0.25s ease-out;
}

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

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

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

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

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

.content404Page.wrapper .content404 button {
  display: inline-block;
  background: #fb4d00;
  box-shadow: 0 0 12px 0 rgba(255, 0, 0, 0.26);
  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: var(--main-color);
  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;
  text-align: center;
  margin: 10px 0;
  background-repeat: no-repeat;
  background-size: cover;
}

.button-block button {
  padding: 18px 60px;
  font-size: 20px;
  font-weight: 700;
  line-height: 22px;
  text-transform: uppercase;
  color: #fff;
  border-radius: 12px;
  background: linear-gradient(135deg, #fb4d00 0%, #fb7c34 100%);
  transition: all 0.1s ease-in-out;
}

.buttons .regButton:hover,
.buttons .regButton:active {
  background: linear-gradient(135deg, #ff7a4d 0%, #ff9567 100%);
}

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

.quote p {
  padding: 40px 40px 20px 40px;
  width: 100%;
  font-size: 14px;
  line-height: 18px;
  color: #fff;
}

.quote::after {
  position: absolute;
  content: "";
  width: 60px;
  height: 60px;
  background-image: url(/quote-icon.svg);
  background-repeat: no-repeat;
  background-size: cover;
  left: 45%;
  top: -30px;
}

.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;
}

.wrapper {
  height: 100%;
  margin: auto;
  max-width: 1720px;
  width: calc(100vw - 40px);
}

/* Header */

.header__dropdown .active span {
  color: var(--link-hover-color);
}

.accented_button {
  text-transform: uppercase;
  background: var(--accented-button-color);
}

.accented_button:hover,
.btn-content:hover,
.btn-banner-app:hover {
  background-image: linear-gradient(0deg, #fa8100 0, #fa8100);
}

.header {
  position: fixed;
  width: 100%;
  height: 148px;
  top: 0;
  left: 0;
  background-image: linear-gradient(
    0deg,
    rgb(0 50 102 / 0%) 0,
    #003266 100%,
    var(--main-background) 100%
  );
  background-color: var(--main-background);
  z-index: 6;
}

.header button,
.header a {
  cursor: pointer;
  font-weight: 700;
  font-size: 16px;
  text-transform: uppercase;
  color: var(--main-color);
}

.header__container {
  padding: 16px 0;
  height: 100%;
  display: grid;
  grid-template: 48px 1fr / 275px max-content 1fr min-content;
  grid-template-areas:
    "buttons buttons gift auth burger"
    "logo nav nav nav nav";
  column-gap: 15px;
}

.header__nav-btn {
  display: none;
}

.header__buttons {
  align-self: flex-start;
  grid-area: buttons;
  display: flex;
  align-items: center;
}

.header__buttons button,
.header__buttons a {
  color: #fff;
  border: 2px solid var(--main-button-background);
  text-transform: uppercase;
  transition: all 0.2s ease;
  border-radius: var(--border-radius-main);
  height: 48px;
  min-width: 48px;
  width: fit-content;
}

.header__download {
  margin-right: 16px;
  padding-left: 10px;
  padding-right: 70px;
  background: right 10px center url(/uploads/img/ios.svg) no-repeat,
    right 40px center url(/uploads/img/android_blue.svg) no-repeat;
  /* var(--main-button-background); */
  box-shadow: 0px 4px 4px 0px #00000040;
}

.header__download_shortened {
  display: none;
}

.header__download:hover {
  border: 2px solid #fff;
}

.header__lang {
  padding: 5px 25px 5px 30px;
  background: var(--arrow-background);
  /* left 5px center url(/uploads/img/lang_header__burger.svg) no-repeat; */
}

.header__security {
  margin-right: 16px;
  padding-left: 40px;
  padding-right: 10px;
  background: 10px center url(/uploads/img/guard.svg) no-repeat,
    var(--main-button-background);
  box-shadow: 0px 4px 4px 0px #00000040;
}

.header__security_shortened {
  background: center center url(/uploads/img/guard.svg) no-repeat,
    var(--main-button-background);
  padding: 0;
  display: none;
}

.header__security:hover {
  border: 2px solid #fff;
}

.header__settings {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 10px;
  border-radius: var(--border-radius-main);
  background-color: var(--main-button-background);
  box-shadow: 0px 4px 4px 0px #00000040;
}

.header__settings button {
  border: none;
}

.header__config {
  border-radius: var(--border-radius-main) 0 0 var(--border-radius-main);

  padding: 0 25px 0 30px;
  width: fit-content;
  height: 24px;
  transition: fill 0.15s ease-in;
  background: left center url(/uploads/img/settings.svg) no-repeat,
    var(--arrow-background);
}

.header__config_shortened {
  display: none;
}

.header__settings .header__time {
  box-shadow: 0px 0px 4px 0px #00000040;
  border-radius: 0;
  padding: 3px 25px 5px 15px;
  background: var(--arrow-background);
}

.header__gift {
  color: #fff;
  width: fit-content;
  display: flex;
  align-items: center;
  padding: 15px 20px 15px 60px;
  background: left 15px center url(/uploads/img/gift.svg) no-repeat,
    linear-gradient(0deg, var(--border-color) 0, #0992af);
  box-shadow: 0px 4px 10px 0px #408ce0;
  border-radius: var(--border-radius-main);
}

.header__gift:hover {
  transform: scale(1.15);
  transition: all 0.3s ease;
}

.header__gift_shortened {
  display: none;
}

.header__auth {
  align-self: flex-start;
  justify-self: flex-end;
  grid-area: auth;
  display: flex;
}

.header__auth button {
  box-shadow: 0px 4px 4px 0px #00000040;
  padding: 15px 32px;
  border-radius: var(--border-radius-main);
}

.header__reg-btn.accented_button {
  margin-right: 10px;
}

.header__login-btn {
  background: linear-gradient(180deg, #6398e4 0%, #568bd6 100%);
}

.header__login-btn:hover {
  background-image: linear-gradient(0deg, #1667c1 0, #509aea 97%, #509aea);
}

.header__dropdown {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 47px;
  justify-content: center;
  height: 100%;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.header__dropdown input,
.header__dropdown nav {
  display: none;
}

.header__burger {
  cursor: pointer;
}

.header__dropdown:hover input ~ .header__burger {
  cursor: pointer;
  opacity: 0.8;
}

.header__dropdown nav {
  z-index: 2;
  width: 40vw;
  position: absolute;
  right: -10px;
  top: -10px;
  margin: 0;
  border-radius: 10px;
  background-color: #003266;
}

.header__dropdown nav ul {
  padding: 40px 0 15px;
}

.header__dropdown li {
  text-align: center;
}

.header__dropdown a {
  display: block;

  /* width: 100%;
	height: 100%; */
}

.header__dropdown span {
  text-transform: uppercase;
  color: var(--main-color);
  font-family: Verdana;
  font-size: 20px;
  font-weight: 700;
  text-align: center;
  line-height: 2;
}

.header__dropdown ul li:hover span {
  color: var(--link-hover-color);
}

.header__burger {
  z-index: 6;
  position: relative;
  width: 35px;
  height: 25px;
}

.header__burger span {
  position: absolute;
  display: block;
  width: 31px;
  height: 4px;
  background-color: #428cdc;
  transition: all 0.3s ease;
  border-radius: 20px;
}

.header__burger span:nth-child(1) {
  top: 0;
}

.header__burger span:nth-child(2) {
  top: 40%;
}

.header__burger span:nth-child(3) {
  bottom: 40%;
}

.header__burger span:nth-child(4) {
  bottom: 0px;
}

.header__dropdown :checked ~ .header__burger span:nth-child(1) {
  transform: scaleX(0);
}

.header__dropdown :checked ~ .header__burger span:nth-child(2) {
  transform: rotate(45deg);
}

.header__dropdown :checked ~ .header__burger span:nth-child(3) {
  transform: rotate(-45deg);
}

.header__dropdown :checked ~ .header__burger span:nth-child(4) {
  transform: scaleX(0);
}

.header__dropdown :checked ~ nav {
  position: fixed;
  display: inline-block;
}

.header__logo {
  z-index: 1;
  margin-bottom: 5px;
  align-self: flex-end;
  grid-area: logo;
  position: relative;
  width: 230px;
  height: 38px;
}

.header__logo_dropdown {
  display: none;
}

.header__logo img {
  height: 100%;
  width: 100%;
}

.header__logo button {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.header__nav {
  align-self: flex-end;
  justify-self: flex-end;
  grid-area: nav;
  background-color: #033c78;
  border-radius: 20px;
  height: 48px;
  max-width: 1430px;
  width: 100%;
}

.header__nav ul {
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 100%;
  height: 100%;
}

.header__nav-item {
  height: 100%;
  cursor: pointer;
  text-align: center;
  transition: color 0.3s ease;
}

.header__nav-item:first-of-type {
  padding-left: 0;
}

.header__nav-item {
  display: flex;
  align-items: center;
}

.header__nav-item a {
  padding-top: 14px;
  color: #fff;
  height: 100%;
}

.header__nav-item:hover a {
  color: #ffb801;
}

.header__nav-item_type_buy a {
  background: left center url(/uploads/img/cart.svg) no-repeat;
  padding-left: 34px;
}

.header__nav-item_type_accented a {
  color: var(--accent-color);
}

.header__nav-item_type_accented:hover a {
  transform: scale(1.2);
  transition: 0.3s ease;
}

.header__nav-item_type_aviator {
  padding: 0;
  background: center center url(/uploads/img/aviator.svg) no-repeat;
  background-size: cover;
  width: 80px;
  height: 100%;
  transition: fill 0.3s ease;
}

.header__nav-item_type_aviator:hover {
  opacity: 0.8;
}

.header__nav-item_type_buy {
  padding: 0 10px;
  border-radius: 100px;
  border: 2px solid #ffb801;
}

/* Banner */

.banner__panel.wrapper {
  padding: 0;
}

.banner__panel {
  margin-bottom: 40px;
  width: 100%;
  height: fit-content;
  margin-top: 30px;
}

.banner__panel ul {
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
}

.banner__list-item {
  position: relative;
  width: 100%;
  height: 88px;
  background: linear-gradient(
    180deg,
    var(--main-background) 12.5%,
    #242428 12.5%,
    #242428 87.5%,
    var(--main-background) 87.5%
  );
}

.banner__list-item div {
  height: calc(100% + 2px);
  position: absolute;
  top: -1px;
  left: 0;
  right: 1px;
  bottom: -1px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 13px;
  background: var(--main-background);
  position: absolute;
}

.banner__list-item:last-of-type div {
  right: -1px;
}

.banner__list-item:first-of-type div {
  left: -1px;
}

.banner__list-item span {
  text-transform: uppercase;
  font-size: 20px;
  line-height: 24.31px;
  text-align: center;
}

.banner__list-item button {
  background-color: var(--main-background);
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 0;
}

.banner__list-item_accented button {
  background-color: transparent;
}

.banner__list-item_accented span {
  color: #ff691c;
}

.banner__list-item:hover button {
  opacity: 0.4;
}

.banner__list-item_accented:hover div img {
  transition: 0.3s ease-out 0.1s;

  transform: scale(1.2);
}

.banner__list-item_accented:hover div span {
  transition: 0.3s ease-out 0.1s;
  color: #ff511c;
}

.download-app {
  margin: 30px 0 20px;
  height: 100px;
  background: linear-gradient(180deg, #071f46 0%, #062f71 100%);
  display: flex;
  justify-content: center;
}

.download-app__image {
  height: 142px;
  width: 142px;
  align-self: flex-end;
}

.download-app__button.accented_button {
  font-size: 20px;
  font-weight: 700;
  line-height: 24.31px;
  align-self: center;
  height: fit-content;
  padding: 15px 44px 15px 44px;
  border-radius: 50px;
  background: var(--accented-button-color);
}

.download-app__button.accented_button:hover {
  background: linear-gradient(0deg, #fa8100 0, #fa8100);
}

/* Footer */
.email-link {
  text-transform: lowercase;
  text-decoration: underline;
}

.email-link:hover {
  opacity: 0.8;
}

.social-header__burgers {
  display: flex;
  gap: 10px;
}

.social-header__burgers img {
  width: 24px;
  height: 24px;
}

.footer {
  padding: 30px 0 130px 0;  
  text-align: center;
  color: var(--main-color);
  background-color: var(--secondary-color);
}

.footer .scrollTop {
  background: #fb4d00;
  width: 30px;
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  bottom: 140px;
  right: 20px;
  opacity: 0;
  cursor: pointer;
  border-radius: 50%;
  z-index: 5;
}

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

.footer__container {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, auto);
  gap: 50px;
  margin: auto;
  padding-bottom: 15px;
  border-bottom: 1px solid var(--border-color);
}

.footer__container h3 {
  text-align: left;
}

.footer__column_logo img {
  padding-left: 30px;
  width: 262px;
  height: 44px;
  cursor: pointer;
}

.footer__column {
  text-align: left;
}
.footer__column h3 {
  margin: 0;
}

.footer__column_contacts button:hover {
  opacity: 0.8;
}

.footer__column_contacts a {
  color: #fff;
}
.footer__column_title {
  display: block;
  font-weight: bold;
  font-size: 18px;
  line-height: 20px;
  padding: 15px 0;
}

.footer__column p {
  margin: 0;
  cursor: default;
  width: max-content;
  margin-bottom: 10px;
  font-size: 20px;
  font-weight: 700;
  line-height: 24.31px;
  text-align: left;
}

.footer__column p:nth-of-type(2) {
  margin-top: 20px;
}

.footer__column ul {
  display: flex;
  flex-flow: column wrap;
  /* height: 160px; */
  height: 200px
}

.footer__column button {
  font-size: 18px;
  font-weight: 400;
}

.footer__column li {
  font-size: 18px;
  font-weight: 400;
  margin-bottom: 10px;
  width: fit-content;
}

.footer__column a {
  min-width: max-content;
}

.footer__column a:hover,
.footer__column button:hover {
  text-decoration: underline;
}

.social-icons img {
  width: 24px;
  height: 24px;
}

.footer__bottom {
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  text-align: left;
}
.footer__bottom .footer__bottom-info {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  flex-direction: column;
  width: 65%;
}
.footer__bottom .footer__bottom-info .info-title {
  font-size: 16px;
  line-height: 22px;
  color: #fff;
  font-weight: 700;
  text-align: left;
  padding-bottom: 10px;
}

.footer__bottom .footer__bottom-info .info {
  font-size: 16px;
  font-weight: 400;
  line-height: 20px;
  text-align: left;
  padding-bottom: 10px;
}

.footer__column .social-icons a:hover,
.footer__payment-icons li:hover img {
  opacity: 0.8;
}

.footer__column_contacts button {
  color: #fff;
}
@media screen and (max-width: 1250px) { 
  .footer__bottom  { 
    flex-direction: column;
    text-align: center;
  }
  .footer__bottom .footer__bottom-info {
    width: 98%;
    padding-top: 10px;

  }
  .footer__bottom .footer__bottom-info .info-title , 
  .footer__bottom .footer__bottom-info .info   {
    text-align: center;
  }
}

@media screen and (max-width: 1450px) {
  .header__logo {
    width: 220px;
  }

  .header__nav-list ul {
    padding-left: 10px;
  }

  .header__nav-item:last-of-type {
    display: none;
  }

  .header__security {
    display: none;
  }

  .header__security_shortened {
    padding: 0;
    display: block;
    width: 48px;
  }

  .header__download {
    display: none;
  }

  .header__buttons .header__download.header__download_shortened {
    display: block;
    padding: 0;
    width: 80px;
    background: right 12px center url(/uploads/img/ios.svg) no-repeat,
      left 12px center url(/uploads/img/android_blue.svg) no-repeat,
      var(--main-button-background);
  }

  .header__config {
    display: none;
  }

  .header__config_shortened {
    display: block;
    padding-right: 20px;
  }

  .footer__container {
    width: 100%;
    gap: 60px;
    grid-template-areas:
      "logo  about"
      "contacts  about";
  }

  .footer__column_about {
    grid-area: about;
  }

  .footer__column_logo img {
    padding-left: 0;
  }

  .footer__column_contacts {
    grid-area: contacts;
  }

  .footer__column_logo {
    grid-area: logo;
  }
}

@media screen and (max-width: 1250px) {
  main .wrapper {
    padding: 0 10px;
  }

  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;
  }

  .content {
    padding-top: 20px;
  }

  .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;
  }

  /* main .general-table-wrapper {
		  overflow: scroll;
		}
	  
		.breadcrumbs.wrapper {
		  margin-top: 15px;
		}
	  
		.wrapper {
		  width: calc(100vw - 20px);
		}
	  
		main {
		  padding-top: 132px;
		}
	   */
  .header {
    height: 132px;
  }

  .header__container {
    padding-bottom: 0;
    display: grid;
    gap: 10px;
    grid-template-areas:
      "buttons buttons gift burger"
      "logo auth auth auth";
  }

  .header__gift {
    justify-self: flex-end;
  }

  .header__dropdown {
    align-self: flex-start;
    justify-self: flex-end;
  }

  .header__logo_dropdown {
    display: block;
    left: 20px;
    top: 20px;
  }

  .header__dropdown nav {
    width: calc(100vw + 10px);
    top: 0;
    right: 0;
    border-radius: 0 0 40px 40px;
  }

  .header__dropdown span {
    color: var(--main-color);
  }

  .header__nav {
    display: none;
  }

  .footer__container {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: repeat(2, auto);
    grid-template-areas:
      "logo about"
      "contacts about";
  }
}

@media screen and (max-width: 1024px) {
  .header__dropdown span {
    line-height: 2;
  }

  .banner__main img {
    position: absolute;
    right: -55px;
    z-index: 1;
  }

  .banner__list-item span {
    font-size: 10px;
    line-height: 12.15px;
  }

  .footer__container {
    padding-left: 30px;
    grid-template-columns: min-content 1fr;
    gap: 50px;
  }
}

@media screen and (max-width: 768px) {
  .wrapper {
    width: calc(100vw - 10px);
  }

  main {
    padding-top: 110px;
  }

  .header {
    min-height: 110px;
    height: auto;
    padding-bottom: 5px;
  }

  .header__container {
    grid-template-columns: min-content 1fr repeat(2, min-content);
    gap: 8px;
    padding: 8px 0 0;
  }

  .header__security {
    margin-right: 4px;
  }

  .header__download {
    margin-right: 4px;
  }

  .header__buttons {
    width: fit-content;
  }

  .header__gift {
    display: none;
  }

  .header__settings {
    border: 2px solid var(--main-button-background);
    border-radius: var(--border-radius-main);
    padding: 0;
  }

  .header__settings:hover {
    border-color: var(--utils-color);
  }

  .header__config_shortened {
    padding: 0;
    width: 48px;
    background: center center url(/uploads/img/settings.svg) no-repeat;
  }

  .header__time {
    display: none;
  }

  .header__lang {
    display: none;
  }

  .header__dropdown nav {
    right: -10px;
  }

  .header__dropdown nav ul {
    padding-top: 20px;
  }

  .header__dropdown span {
    font-size: 14px;
  }

  .header__burger {
    align-self: center;
    width: 40px;
  }

  .header__logo_dropdown {
    top: 15px;
  }

  .header__dropdown :checked ~ .header__burger {
    margin-bottom: 13px;
  }

  .header__dropdown :checked ~ .header__burger span:nth-child(2) {
    transform: scale(0.8) rotate(45deg);
  }

  .header__dropdown :checked ~ .header__burger span:nth-child(3) {
    transform: scale(0.8) rotate(-45deg);
  }

  .header__gift_shortened {
    display: block;
    width: 48px;
    justify-self: flex-end;
    border-radius: var(--border-radius-main);
    padding: 0;
    background: center center url(/uploads/img/gift.svg) no-repeat,
      linear-gradient(0deg, var(--border-color) 0, #0992af);
  }

  .header__logo {
    align-self: center;
    margin-bottom: 0;
    width: 150px;
  }

  .header__reg-btn.accented_button {
    margin-right: 4px;
  }

  .header__auth button {
    padding: 15px 16px;
    font-size: 12px;
    line-height: 14.58px;
  }

  .banner__list-item {
    background: var(--border-color);
    height: 52px;
  }

  .banner__list-item div {
    gap: 4px;
    padding: 0 2px;
  }

  .banner__list-item img {
    width: 28px;
    height: 28px;
  }

  .download-app {
    height: 60px;
  }

  .download-app__image {
    width: 102px;
    height: 102px;
    z-index: 2;
    object-fit: cover;
  }

  .download-app__button.accented_button {
    z-index: 3;
    margin-left: -15px;
    padding: 11px 10px 11px 34px;
    font-size: 12px;
    line-height: 14.58px;
    background: 10px 40% url(/uploads/img/android_small.svg) no-repeat,
      var(--accented-button-color);
  }

  .download-app__button.accented_button:hover {
    background: 10px 40% url(/uploads/img/android_small.svg) no-repeat,
      linear-gradient(0deg, #fa8100 0, #fa8100);
  }

  .footer__container {
    padding-left: 10px;
    padding-bottom: 5px;
    grid-template-columns: 1fr;
    grid-template-rows: repeat(3, auto);
    grid-template-areas:
      "logo"
      "contacts"
      "about";
  }

  .footer__column ul {
    flex-direction: column;
  }

  /* .footer__column li,
	.footer__column button {
	  margin-bottom: 5px;
	} */

  .footer__column_contacts {
    height: auto;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
  }

  .footer__column p {
    margin-bottom: 0;
  }
  .footer__column p:nth-of-type(2) {
    margin-top: 0;
  }

  .footer__column h3:nth-of-type(2) {
    margin-top: 0;
  }

  .footer__column_sports ul {
    height: 148px;
    display: flex;
    flex-flow: column wrap;
    width: fit-content;
    column-gap: 20px;
  }

  .footer__column_sports li {
    width: fit-content;
  }

  .footer__column_about ul {
    height: auto;
  }
}

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

@media screen and (max-width: 450px) {
  .header__logo {
    width: 114px;
  }

  .footer__column_contacts {
    height: auto;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
  }

  .footer__column_sports ul {
    height: 135px;
  }

  .footer__column_logo img {
    width: 204px;
    height: 34px;
  }

  .footer__column h3 {
    margin-bottom: 5px;
    line-height: 21.88px;
    font-size: 18px;
  }

  .footer__column li,
  .footer__column button {
    font-size: 18px;
  }

  .footer__bottom span {
    font-size: 14px;
    line-height: 18px;
  }
}

@media screen and (max-width: 400px) {
  .banner__panel.wrapper,
  .banner__panel ul {
    width: 100%;
    margin: 0;
  }

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

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

  .banner__list-item_accented {
    word-break: break-all;
  }
}

@media screen and (max-width: 380px) {
  .download-app__button.accented_button {
    padding: 11px 18px 11px 34px;
    margin-left: -34px;
  }
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

body {
  overflow-x: hidden;
  background: var(--secondary-color);
}

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

  .buttons .regButton {
    margin-right: 10px;
  }

  .buttons .regButton,
  .buttons .logButton {
    font-size: 13px;
    padding: 5px 10px;
    text-wrap: nowrap;
  }
}

.contentSidebar {
  width: 350px;
  height: 540px;
  position: -webkit-sticky;
  position: sticky;
  right: 0;
  top: 100px;
  padding: 20px;
  background: #1b243a;
  border-radius: 15px;
}

.contentSidebar .appName {
  font-size: 20px;
  font-weight: bold;
  text-align: center;
  color: #fff;
}

.contentSidebar .appImg {
  display: flex;
  justify-content: center;
}

.contentSidebar .appItem {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-radius: 15px;
  padding: 10px;
  margin: 10px 0;
  position: relative;
}

.contentSidebar .appItem button {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.contentSidebar .appItem .appInfo {
  width: calc(100% - 40px);
}

.contentSidebar .appItem .appInfoTitle {
  font-size: 15px;
  line-height: 20px;
  color: #fff;
  display: block;
}

.contentSidebar .appItem .appInfoSubtitle {
  font-size: 13px;
  color: #fff;
  line-height: 20px;
  display: block;
}

.contentSidebar .appItem:nth-child(1n) {
  background: #8d53e9;
}

.contentSidebar .appItem:nth-child(1n):hover {
  background: #712cde;
}

.contentSidebar .appItem:nth-child(2n) {
  background: #00b7ff;
}

.contentSidebar .appItem:nth-child(2n):hover {
  background: #2ca0ce;
}

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

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

.mobileMenu {
  position: fixed;
  top: 0;
  right: 0%;
  display: block;
  z-index: 5;
  background: #2163ce;
  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: 64px;
}

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

.mobileMenu .mobileMenuLinks a {
  color: #fff;
  font-size: 20px;
  text-align: center;
  font-weight: 700;
  line-height: 22px;
  text-transform: uppercase;
}

.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;
  }

  .burger img {
    min-height: 25px;
    min-width: 25px;
  }
}

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

.breadcrumbs a {
  color: #000;
  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 {
    padding-top: 35px;
  }
}

.banner {
  margin-top: 55px;
  background: url(/uploads//uploads/img/banner-bg2.webp);
  background-size: cover;
  padding: 47px 20px 62px 20px;
  position: relative;
}

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

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

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

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

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

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

  #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;
    margin-bottom: 18px;
    margin-top: 32px;
  }

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

  #mobileMenu .nav-submenu-list a {
    margin-bottom: 28px;
  }
}

@keyframes fadeInRight {
  0% {
    opacity: 0;
    transform: translate3d(100%, 0, 0);
  }

  to {
    opacity: 1;
    transform: translateZ(0);
  }
}

.carousel-wrapper {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  background: var(--main-background);
  height: 390px;
  position: relative;
}

.carousel {
  width: 1128px;
  height: 100%;
  max-width: 100%;
}

#carousel-with-preview {
  max-height: 390px;
}

.amp-carousel-button {
  background: rgba(0, 0, 0, 0);
  visibility: hidden;
  display: none;
}

.carousel-item {
  background: var(--section);
  border-radius: 10px;
  padding: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 390px;
  position: relative;
}

.carousel-item .carousel-text {
  width: 390px;
  flex: 0 0 auto;
}

.carousel-item p {
  font-size: 14px;
  color: #fff;
  line-height: 1;
  padding-bottom: 0;
}

.carousel-item .text__one {
  font-size: 12px;
  text-transform: uppercase;
  font-weight: 600;
  color: #f0b518;
  margin: 0;
}

.carousel-item .text__two {
  font-size: 26px;
  font-weight: 800;
  letter-spacing: 0.7px;
  margin: 8px 0;
  line-height: 1.2;
  text-transform: uppercase;
}

.carousel-item .text__two span {
  color: #f66e34;
  font-size: inherit;
}

.carousel-item .text__two i {
  font-style: normal;
  color: inherit;
  font-size: 40px;
}

.carousel-item .text__three {
  font-size: 20px;
  font-weight: 500;
  margin: 0;
  line-height: 1.2;
}

.carousel-item button {
  padding: 18px 20px;
  border-radius: 50px;
  border: 1px solid #b54e37;
  background: linear-gradient(160deg, #fa5e00 14.47%, #fb4200 87.53%);
  box-shadow: 0px 0px 16px 0px rgba(251, 66, 0, 0.8);
  color: #fff;
  text-transform: uppercase;
  width: 100%;
  max-width: 320px;
  font-size: 24px;
  font-weight: 700;
  margin-top: 15px;
  white-space: nowrap;
}

.carousel-item button.abs {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  padding: 0;
  background: none;
  border: none;
  box-shadow: none;
  max-width: 100%;
  margin-top: 0;
  z-index: 99;
}

.carousel-item .carousel-flex {
  display: flex;
  justify-content: space-between;
  width: 100%;
  align-items: center;
  max-width: 100%;
  margin: 0 auto;
}

.carousel_desktop {
  position: relative;
  width: 1128px;
  aspect-ratio: 3/2;
  overflow: hidden;
  background: var(--section);
  border-radius: 10px;
}

.carousel_desktop .carousel-item {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transform: translateX(100%);
}

.carousel_desktop .carousel-item.shown {
  transform: translateX(0);
  animation: 0.3s fadeInRight linear;
}

.carousel_desktop .buttons {
  position: absolute;
  top: calc((100% - 34px) / 2);
  left: 0;
  width: 100%;
  z-index: 2;
  justify-content: space-between;
  display: flex;
}

.carousel_desktop .buttons button {
  width: 34px;
  height: 34px;
  border-radius: 2px;
}

.carousel_desktop .buttons .prev {
  background: rgba(0, 0, 0, 0)
    url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" width="18" height="18" fill="%23fff"><path d="M15 8.25H5.87l4.19-4.19L9 3 3 9l6 6 1.06-1.06-4.19-4.19H15v-1.5z"/></svg>')
    no-repeat;
  background-position: 50% 50%;
  background-size: 18px 18px;
  margin-left: 16px;
}

.carousel_desktop .buttons .next {
  background: rgba(0, 0, 0, 0)
    url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" width="18" height="18" fill="%23fff"><path d="M9 3 7.94 4.06l4.19 4.19H3v1.5h9.13l-4.19 4.19L9 15l6-6z"/></svg>')
    no-repeat;
  background-position: 50% 50%;
  background-size: 18px 18px;
  margin-right: 16px;
}

.dots {
  display: flex;
  justify-content: center;
  width: 100%;
  position: absolute;
  bottom: 16px;
}

.dots .dot {
  background: none;
  border: 2px solid #428cdc;
  border-radius: 50%;
  height: 10px;
  margin: 3px 4px;
  opacity: 1;
  outline: none;
  width: 10px;
}

.dots .dot:hover {
  cursor: pointer;
}

.dots .dot.active {
  background: #fff;
  border: none;
}

@media screen and (max-width: 1250px) {
  main {
    padding-top: 132px;
  }

  .carousel-wrapper {
    display: block;
  }
}

@media screen and (max-width: 760px) {
  #carousel-with-preview {
    max-height: 250px;
  }

  .carousel-wrapper {
    height: 250px;
  }

  .carousel-wrapper .carousel_desktop {
    width: 100%;
  }

  .carousel-wrapper .carousel_desktop .buttons {
    display: none;
  }

  .carousel-wrapper .carousel-item {
    height: 250px;
  }

  .carousel-wrapper .carousel-item .carousel-image img {
    max-height: 250px;
    display: block;
    margin: 0 auto;
  }

  .carousel-wrapper .carousel-item .carousel-text {
    position: relative;
    z-index: 2;
    width: 60%;
  }

  .carousel-wrapper .carousel-item .text__one {
    width: 100%;
  }

  .carousel-wrapper .carousel-item .text__two {
    font-size: 22px;
    margin: 8px 0;
  }

  .carousel-wrapper .carousel-item .text__three {
    font-size: 13px;
    width: 100%;
    letter-spacing: 1px;
  }

  .carousel-wrapper .carousel-item button {
    max-width: 100%;
    font-size: 12px;
    padding: 8px 24px;
    font-weight: 500;
  }

  .carousel-wrapper .carousel-item .carousel-image {
    width: 40%;
    flex: 0 0 auto;
  }
}

@media screen and (max-width: 480px) {
  .carousel-wrapper .carousel-item .carousel-text {
    width: 65%;
    padding-left: 5%;
  }

  .carousel-wrapper .carousel-item .carousel-image {
    position: absolute;
    width: 50%;
    right: 0;
  }

  .carousel-wrapper .carousel-item .text__two {
    font-size: 19px;
  }
}

.iconsWrapper {
  background: var(--main-background);
  display: flex;
  justify-content: center;
}

.iconsWrapper .icons {
  justify-content: space-evenly;
  gap: 16px;
  display: flex;
  width: 1128px;
  max-width: 100%;
  margin: 0 auto;
  padding-bottom: 24px;
  padding: 16px;
}

.iconsWrapper .icons .split {
  height: 100%;
  width: 2px;
  background-color: #043e7d;
}

.iconsWrapper .icons .icon {
  width: 20%;
  position: relative;
}

.iconsWrapper .icons .icon img {
  display: block;
  height: 39px;
  margin: 0 auto 12px;
}

.iconsWrapper .icons .icon span {
  display: block;
  text-align: center;
  color: #fff;
  white-space: nowrap;
  font-size: 9px;
  font-weight: bold;
}

.iconsWrapper .icons .icon button {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

.iconsWrapper .icons .icon.last {
  padding-right: 0;
  border-right: none;
}

@media screen and (max-width: 760px) {
  .iconsWrapper .icons {
    display: flex;
    gap: 0px;
    padding: 8px;
  }

  .iconsWrapper .icons .icon {
    width: auto;
  }

  .iconsWrapper .icons .icon img {
    height: 24px;
  }

  .iconsWrapper .icons .icon span {
    font-size: 8px;
  }
}

.odds-title {
  align-items: center;
  background-color: #0a4c99;
  display: flex;
  justify-content: space-between;
  padding: 10px;
  color: #fff;
  text-transform: uppercase;
  position: relative;
}

.odds-title span {
  color: #fff;
  padding-left: 32px;
  position: relative;
  width: 100%;
  font-size: 14px;
  font-weight: 700;
  /* max-width: 1128px; */
  margin: 0 auto;
}

.odds-title span:before {
  background: url(/uploads//uploads/img/icons/icon6.svg);
  width: 20px;
  height: 20px;
  position: absolute;
  left: 0;
  display: block;
  content: no-open-quote;
}

.odds-title span:after {
  background: url(/uploads//uploads/img/icons/icon7.svg) no-repeat;
  width: 20px;
  height: 20px;
  position: absolute;
  right: 0px;
  display: block;
  content: no-open-quote;
  top: 2px;
}

.odds {
  width: 100%;
  background: #e8ecf1;
  padding: 12px 16px 24px 8px;
}

.down-icon {
  background-image: url("https://cdn-dhlba.nitrocdn.com/flFvXclSBFncSRtJyTVxtycTSVODklUB/assets/images/optimized/rev-ad21344/wp-content/themes/mostbetsitesi/images/down.svg");
  width: 15px;
  height: 15px;
}

.down-icon.nitro-lazy {
  background-image: none;
}

.table-time {
  display: flex;
  flex-direction: column;
  color: #546370;
  padding: 0 20px;
  font-weight: 700;
}

.table-time span {
  font-size: 11px;
  color: #9ea7b2;
}

.table-comands {
  display: flex;
  flex-direction: column;
  color: #000;
  font-weight: 500;
  border-radius: 5px;
  padding: 0 2px;
  transition: 0.3s;
}

.table-comands span {
  font-size: 14px;
  text-align: left;
  color: #000;
}

.table-comands:hover {
  color: #1183d3;
  background-color: #f3f6f8;
  box-shadow: 0 0 3px 1px #8fbde7;
  transform: translateX(5px);
}

.top-block {
  position: absolute;
  left: -7px;
  top: 50%;
  transform: translateY(-50%) rotate(-90deg);
  background-color: #fa4d00;
  color: #fff;
  padding: 1px 5px;
  font-weight: 500;
  text-align: center;
  font-size: 10px;
}

@media screen and (max-width: 768px) {
  main {
    padding-top: 110px;
  }

  .odds {
    display: flex;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 10px;
    padding-top: 10px;
    gap: 10px;
  }
}

.content_apk {
  background: #123156;
  display: flex;
  justify-content: center;
  padding: 24px 0;
}

.content_apk button {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, #fa5116 0%, #fa4614 100%);
  font-size: 22px;
  line-height: 27px;
  font-weight: 700;
  text-transform: uppercase;
  color: #fff;
  padding: 17px 0;
  box-shadow: 0px 0px 22px 0px #fa4614;
  border-radius: 100px;
  width: 97%;
  max-width: 516px;
}

.content_apk button:hover {
  background: linear-gradient(135deg, #ff7a4d 0%, #ff9567 100%);
}

.content_apk button img {
  margin-right: 12px;
  height: 34px;
  width: 34px;
}

@media screen and (max-width: 760px) {
  .content_apk button {
    font-size: 20px;
    padding: 10px 0;
  }
}

.panel {
  /* max-width: 1128px; */
  width: 96%;
  margin: 0 auto;
  margin-top: 25px;
  margin-bottom: 25px;
}

.panel_inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

.panel_item {
  border-radius: 10px;
  padding: 24px;
  position: relative;
  height: 158px;
  overflow: hidden;
}

.panel_item:nth-child(1) {
  background: #123156 url(/log-back.webp) no-repeat;
  background-position: center center;
  background-size: cover;
}

.panel_item:nth-child(2) {
  background: #123156 url(/casino-back.webp) no-repeat;
  background-size: contain;
  background-position: right;
}
.panel_item:nth-child(3) {
  background: #123156 url(/panel-aviator-back.svg) no-repeat;
  background-size: contain;
  background-position: right;
}

.panel_item:nth-child(4) {
  background: #ff5e0e;
}

.panel_item span {
  font-family: Verdana, sans-serif;
  font-size: 24px;
  color: #fff;
  font-weight: 600;
  line-height: 30px;
  position: relative;
  z-index: 2;
}

.panel_item .panel_img {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 1;
}

.panel_item:nth-child(1) .panel_img {
  width: 145px;
  height: 130px;
  background: url(/panel-logo.webp) no-repeat;
  background-size: cover;
}

.panel_item:nth-child(4) .panel_img {
  width: 227px;
  height: 140px;
  background: url(/panel-apk2.svg) no-repeat;
  background-size: cover;
}

.panel_item button {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 3;
}

.panel_item button:hover {
  background: rgba(0, 0, 0, 0.2);
  border-radius: 10px;
}

@media screen and (max-width: 1250px) {
  .panel {
    margin-top: 14px;
    margin-bottom: 14px;
  }

  .panel_inner {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .panel_item {
    height: 120px;
  }

  .panel_item span {
    font-size: 18px;
    line-height: 26px;
  }

  .panel_item:nth-child(1) {
    background-position: 100% 100%;
  }

  .panel_item:nth-child(2),
  .panel_item:nth-child(3) {
    background-position: 100% 100%;
  }

  .panel_item:nth-child(1) .panel_img {
    width: 101px;
    height: 90px;
  }

  .panel_item:nth-child(4) .panel_img {
    width: 178px;
    height: 110px;
    right: -5px;
  }
}

@media screen and (max-width: 400px) {
  .panel_inner {
    grid-template-columns: repeat(1, 1fr);
    gap: 12px;
  }

  .panel_item {
    height: 80px;
    padding: 24px 40px;
  }

  .panel_item:nth-child(1) .panel_img {
    width: 78px;
    height: 70px;
  }

  .panel_item:nth-child(4) .panel_img {
    width: 129px;
    height: 80px;
    right: 0;
  }
}

.slots {
  /* max-width: 1128px; */
  width: 96%;
  margin: 0 auto;
  margin-top: 25px;
  margin-bottom: 25px;
}

.slots_inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.slots_item {
  border-radius: 10px;
  height: 217px;
  position: relative;
}

.slots_item:nth-child(1) {
  background: url(/sweet_bonanza.webp) no-repeat;
  background-position: center center;
  background-size: cover;
}

.slots_item:nth-child(2) {
  background: url(/gates_of_olympus.webp) no-repeat;
  background-position: center center;
  background-size: cover;
}

.slots_item:nth-child(3) {
  background: url(/sugar_rush.webp) no-repeat;
  background-position: center center;
  background-size: cover;
}

.slots_item:nth-child(4) {
  background: url(/burning_wins.webp) no-repeat;
  background-position: center center;
  background-size: cover;
}

.slots_item:nth-child(5) {
  background: url(/egypt_fire.webp) no-repeat;
  background-position: center center;
  background-size: cover;
}

.slots_item:nth-child(6) {
  background: url(/royal_joker.webp) no-repeat;
  background-position: center center;
  background-size: cover;
}

.slots_item button {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #00000080;
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: 0.4s;
}

.slots_item button span {
  background: #ff5e0e;
  padding: 14px 55px;
  color: #ffffff;
  font-size: 20px;
  line-height: 24px;
  font-weight: 600;
  border-radius: 100px;
}

.slots_item:hover button {
  opacity: 1;
}

@media screen and (max-width: 1250px) {
  .slots_item button {
    opacity: 1;
  }

  .slots {
    margin-top: 14px;
    margin-bottom: 14px;
  }
}

@media screen and (max-width: 1050px) {
  .slots_inner {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .slots_item {
    height: 158px;
  }
}

@media screen and (max-width: 600px) {
  .slots_item button span {
    font-size: 16px;
    line-height: 20px;
    padding: 7px 30px;
  }
}

@media screen and (max-width: 500px) {
  .slots_inner {
    gap: 14px;
  }

  .slots_item {
    height: 100px;
  }
}


/* Banner-new */

.banner-new {
  width: 96%;
  margin: 10px auto 0 auto;
}

.banner-new .banner-inner {
  overflow: hidden;
  position: relative;
  min-height: 300px;
  height: 100%;
  width: 96%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 0 40px 0 100px;
  gap: 20px;
  background-color: #033C78;
  background-image: url(/uploads/img/webp/banner_bg_desk.webp);
  background-size: cover;
  border-radius: 20px;
  margin: 0 auto;
}

.banner-new .banner-inner .banner-info {
  position: relative;
  justify-content: space-between;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  z-index: 3;
  gap: 15px
}

.banner-new .banner-inner .banner-text {
  display: flex;
  justify-content: flex-start;
  flex-direction: column;
  width: 100%;
  max-width: 53%
}

.banner-new .banner-inner .banner-text p {
  margin: 0;
  font-family: Verdana;
  font-size: 24px;
  font-weight: 400;
  line-height: 29px;
}

.banner-new .banner-inner .banner-text .text-header {
  font-family: Verdana;
  font-size: 28px;
  font-weight: 700;
  line-height: 34px;
  color: #fff;
  padding-bottom: 10px
}

.banner-new .banner-inner .banner-img {
  background: url(/uploads/img/webp/banner-img-desk.webp) no-repeat;
  background-size: contain;
  width: 570px;
  height: 300px;
  position: absolute;
  right: 10%;
  z-index: 2;
  top: -2%
}

.banner-new button {
  white-space: nowrap;
  display: flex;
  justify-content: center;
  align-items: center;
  background: linear-gradient(180deg, #FF691C 0%, #FF5300 97.76%);
  border-radius: 40px;
  color: #fff;
  font-family: Verdana;
  font-size: 16px;
  font-weight: 700;
  line-height: 20px;
  padding: 15px 32px;
  margin: 0;
  width: 100%;
  max-width: 169px;
  height: 100%;
  max-height: 48px;
}

.banner-new button:hover {
  opacity: 0.8 ;
}

@media screen and (max-width: 1466px) {
  .banner-new .banner-inner .banner-img {
      right: -5%;
  }
}

@media screen and (max-width: 1250px) {
  .banner-new{
      margin-bottom:20px
  }

  .banner-new .banner-inner {
      padding: 0
  }

  .banner-new .banner-inner .banner-info {
      gap: 0;
      padding: 0 0 0 24px ;
  }
}

@media screen and (max-width: 930px) {
  .banner-new {
      height:240px
  }
  .banner-new .banner-inner { 
    min-height: 240px;
  }
  .banner-new .banner-inner .banner-info { 
    padding: 33px 0 34px 24px;
  }

  .banner-new .banner-inner .banner-text .text-header {
      font-size: 20px;
      line-height: 24px;
  }
  .banner-new .banner-inner .banner-text { 
    max-width: 60%;
  }

  .banner-new .banner-inner .banner-text p {
      font-size: 16px;
      font-weight: 400;
      line-height: 20px;
      padding-bottom: 20px
  }

  .banner-new .banner-inner .banner-info button {
      width: 156px;
      font-size: 15px;
      line-height: 18px;
      height: 48px;
  }

  .banner-new .banner-inner .banner-img {
      width: 456px;
      height: 240px
  }
}

@media screen and (max-width: 700px) {
  .banner-new .banner-inner { 
    flex-direction: column;
    height: 50px;
    gap: 0;
  }
  /* .banner-new .banner-inner { 
    flex-direction: column;
    height: 340px;
    gap: 0;
  } */
  /* .banner-new .banner-inner .banner-img {
    position: unset;
    background: url(/uploads/img/webp/banner-img-mob.webp) no-repeat;
    background-size: cover;
    width: 340px;
    height: 173px;
  } */
  .banner-new .banner-inner .banner-img {
    display: none;
  }
  .banner-new .banner-inner .banner-info { 
    padding: 20px 0 0 0 ;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-height: 173px;
  }
  .banner-new .banner-inner .banner-text { 
    max-width: 100%;
    text-align: center;
    justify-content: center;
    align-items: center;
  }
  .banner-new .banner-inner .banner-text p { 
    padding-bottom: 10px;
  }
  /* .banner__panel.wrapper {
    padding: 100px 0 0 0;
  } */

  .banner__panel.wrapper {
    padding: 0;
  }
}


.telegram {position: fixed; bottom:30px; left: 0px; width: 100%; z-index: 6;}
 .telegram_inner {display: flex; justify-content: center; width: 100%; }
 .telegram_inner_button {width: 201px; background: url(/tg.svg)no-repeat; background-size: cover;
  background-position: center center; z-index: 10; box-shadow: 0px 0px 10px 2px rgba(21, 148, 212, 1); border-radius: 50px; animation: ripple 1.5s linear infinite;
 transition: all 0.7s ease; height: 90px; position: relative;}
.telegram_inner button {position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: transparent; border: none; box-shadow: none; cursor: pointer;}
@keyframes ripple {
   0% {
     box-shadow: 0 0 0 0 rgba(21, 148, 212, 0.3),
       0 0 0 1px rgba(21, 148, 212, 0.3),
       0 0 0 3px rgba(21, 148, 212, 0.3),
       0 0 0 5px rgba(21, 148, 212, 0.3);
   }
   100% {
     box-shadow: 0 0 0 0 rgba(21, 148, 212, 0.3),
       0 0 0 4px rgba(21, 148, 212, 0.3),
       0 0 0 10px rgba(21, 148, 212, 0.3),
       0 0 0 20px rgba(21, 148, 212, 0.3);
   }
 }
 @media screen and (max-width: 1250px) {
   .telegram_inner_button{width: 129px; height: 52px;}
 }
