@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap');
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: "Lato", sans-serif;
}

body {
  background: #1A2C38;
}

.main-container {
  display: flex;
  height: 100%;
  @media (max-width: 1660px) {
    overflow-x: hidden;
  }

}

.nav-container {
  width: 320px;
  background: transparent;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 8px;
  height: 100vh;
  overflow-y: scroll;
}

.nav-container .menu {
  flex-wrap: wrap;
}
.content {
  padding: 0 20px;
  width: 100%;
max-width: 1440px;
  h1,h2,h3,h4,h5 {
    color: #fff
  }
  p, li, td, span, b {
    color: #B1BAD3
  }
  a {
    color: #1475E1
  }
}
.content-wrapper {
  padding: 0 20px;
}


.header__container, .header {
  display: flex;
  justify-content: space-between;
  padding: 20px 20px;
  align-items: center;
  width: 100%;
  background: #1A2C38;
}
.header-row {
  .header-row__mob-menu {
     background: #1A2C3889 !important;
  }
}
.header-row__menu-dropdown {
  .header-row__menu--additional {
    background: #1A2C38 !important;
  }
}


a {
  text-decoration: none;
}
.footer {
background: #071D2A;
}

.footer__container {
  display: flex;
  padding: 10px 20px;
  justify-content: space-between;

}
@media (max-width: 1024px) {
  .nav-container {
    display: none;
  }
}.banner-slider {
  .swiper-slide {
    padding: 1rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start; 
    background-size: cover !important;
    background-position: center !important;
  }
  .title {
    display: inline-block;
    width: auto;
    p {
      margin-bottom: 0;
    }
  }
  .cta, .bonus-code {
    line-height: 1.5;
    p {
      margin: 3px 0;
    }
  }
  a {
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    min-width: 200px;
  }
}
.breadcrumbs {
  padding: 15px 0;
  display: flex;
  gap: 1rem;
  align-items: center;
}.banner-slider {
  // gap: 1rem;
  // grid-template-columns: repeat(3, 1fr);

  .swiper-slide {
    padding: 1rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start; 
    background-size: cover !important;
    background-position: center !important;
  }

  .title {
    display: inline-block;
    width: auto;
  }

  .cta, .bonus-code {
    p {
      margin: 3px 0;
    }
  }

  a {
    text-decoration: none;
  }
}
.faq__container {
  display: flex;
  flex-direction: column;
}


.faq__item_active {
  .faq__answer {
    display: block;
  }
}

.faq__question, .faq__answer {
  margin: 0 !important;
  p {
    margin: 0 !important;
  }
}

.faq__answer {
  display: none;

}
.footer-row {
  display: flex;
  gap: 2rem;
  justify-content: space-between;
  padding: 2rem 0;
  @media (max-width: 1200px) {
    flex-direction: column;

  }
  .column {
    display: flex;
    flex-direction: column;
    gap: 2rem;
  }
  .images-list {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
  }
  .menu {
    display: flex;
    gap: 1rem;
  }
  .column-text {
    flex-basis: 400px;
    @media (max-width: 1200px) {
      flex-basis: unset;
    }

  }
  p {
    font-size: 12px;
  }
}.game-frame {
  min-height: 400px;
  background: #000;
  margin: 1rem 0;
  position: relative;

  iframe {
    display: block;
    width: 100%;
    height: 400px;
    border: none;
    object-fit: cover;
  }
}

.header__container {
  padding: 10px;
}

.header-row {
  padding: 1rem;
  width: 100%;
  display: flex;
  gap: 1rem;
  justify-content: space-between;

  @media (max-width: 1024px) {
    flex-wrap: nowrap;
  }

  .header-row__menu-wrap {
    display: flex;
    flex-basis: 650px;
    flex-grow: 1;
    gap: 1rem;
  }

  .header-row__menu-dropdown {
    position: relative;
    @media (max-width: 1024px) {
      display: none;
    }
    &:hover {
      .header-row__menu--additional {
        opacity: 1;
        visibility: visible;
      }
    }

    .header-row__menu-dropdown-trigger {
      display: flex;
      align-items: center;
      gap: 1rem;
    }

    .header-row__menu--additional {
      transition: .3s opacity;
      visibility: hidden;
      width: 240px;
      opacity: 0;
      z-index: 150;
      position: absolute;
      top: 100%;
      left: 0;
      background-color: rgba(11, 11, 11, 0.9);
      display: flex;
      backdrop-filter: blur(20px);
      flex-direction: column;

      a {
        padding: 8px 12px;
      }
    }
  }

  .header-row__mob-menu {
    position: fixed;
    left: -100%;
    top: 0;
    height: 100vh;
    padding: 2.5rem 1rem 1rem 1rem;
    z-index: 150;
    transition: .3s left;
    display: flex;
    width: 240px;
    gap: 1rem;
    background-color: rgba(0, 0, 0, 0.83);
    backdrop-filter: blur(20px);
    flex-direction: column;

    .header-row__buttons {
      flex-direction: column;
    }

    .close {
      position: absolute;
      top: 10px;
      right: 10px;
      color: #fff;
    }
  }

  .header-row__mob-menu.active {
    left: 0;
  }

  .header-row__mob {
    display: none;
    align-items: center;
    justify-content: center;
    @media (max-width: 1024px) {
      display: flex;
    }
  }

  .header-row__logo {
    display: flex;
    flex-basis: 80%;
    align-items: center;
    gap: 1rem;
    flex-grow: 1;

    a {
      display: flex;
      align-items: center;

      img {
        @media (max-width: 460px) {
          height: 34px;
        }
      }
    }
  }

  .header-row__menu {
    display: flex;
    gap: 1rem;

    @media (max-width: 1024px) {
      display: none;
    }

    .header-row__menu-item {
      position: relative;
      padding: 0 1rem;
    }
  }

  .header-row__buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    flex-basis: 440px;
    flex-grow: 1;
    justify-content: flex-end;
    @media (max-width: 1024px) {
      flex-wrap: nowrap;
    }

    .btn {
      position: relative;
      padding: 1rem;
      color: #fff;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      white-space: nowrap;

      @media (max-width: 650px) {
        padding: .5rem;
        font-size: 12px;
      }

    }
  }
}.image {
  display: flex;
  align-items: center;
  img {
    object-fit: cover;
    width: 100%;
  }
}
.alignright {
  float: right;
  margin: 1rem 0 1rem 2rem;
  &:after {
    content: '';
    clear: both;
  }
}
.alignleft {
  float: left;
  margin: 1rem 2rem 1rem 0;
  &:after {
    content: '';
    clear: both;
  }
}
.aligncenter {
  margin: 1rem auto;
  display: flex;
  justify-content: center;
}.live-casino {
  overflow: hidden;

  img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}.menu {
  display: flex;
  
}
.payment {
  overflow: hidden;
  width: auto;

  img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}.promotions__grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: auto;
  gap: 10px;

  a {
    text-decoration: none;
  }

  .promotion {
    min-height: 153px;
    display: flex;
    gap: 1rem;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
     .title {
    }

    .cta {
      font-weight: 900;
    }

    .actions {
      gap: 1rem;
      display: flex;
      align-items: center;
    }
  }

  .promotion:nth-child(1) {
    min-height: 342px;
    grid-column: 1 / -1;

    .cta {
      font-size: 42px;
    }

    .title {
      font-size: 22px;
    }
  }

  .promotion:nth-child(2) {
    grid-column: span 3;
  }

  .promotion:nth-child(3) {
    grid-column: span 3;
  }

  .promotion:nth-child(n + 4) {
    grid-column: span 2;
  }
}
.promotions__grid {
  @media (max-width: 768px) {
    display: flex;
    flex-direction: column;

    .promotion {
      min-height: auto !important;
    }
  }
}.promotions-list {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;

  .promotion {
    position: relative;
  }

  .caption {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
}


@media (max-width: 820px) {
  .promotion {
    flex-basis: 100% !important;
  }
}
.providers{
  .provider {
    width: auto;
  }
}

.full-banner-container {
  .full-banner {
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: flex-start; 
    justify-content: center;
    background-size: cover !important;
    background-position: center !important;
  }
  .title {
    display: inline-block;
    width: auto;
    p {
      margin-bottom: 0;
    }
  }
  .cta, .bonus-code {
    p {
      margin: 3px 0;
    }
  }
  a {
    text-decoration: none;
  }
}
.content {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;

  h1, h2, h3, h4, h5 {
    margin-bottom: 1rem;
    line-height: 1.5;
  }
  ul, ol {
    padding: 0 0 0 2rem;
    margin-bottom: 1rem;
    transform: translateX(1.5rem) ;
    @media (max-width: 768px) {
      transform: unset;
    }
  }
  li {
    line-height: 1.5;
  }
  p {
    margin-bottom: 1rem;
    line-height: 1.5;
  }
  p {

    img {
      border-radius: 10px;
      display: block;
      margin: 1rem auto;
    }
  }
  table {
    border: 1px solid;
    border-collapse: collapse;
    margin-bottom: 1rem;
    th,
    td {
      border: 1px solid;
      border-collapse: collapse;
      min-width: 120px;
      padding: 10px;
    }
  }

}
.slots-pack {
  a {
    text-decoration: none;
  }
  .slot {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;

    img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
  }

  .slot__img-container {
    position: relative;
    width: 100%;
    height: 100%;
    transition: all 0.3s;
    flex-grow: 1;
    overflow: hidden;
    cursor: pointer;
  }

  .slot__overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background: rgb(34 34 34 / 0.4117647059);
    opacity: 0;
    transition: all 0.3s ease;
  }

  .slot__img {
    position: relative;
    width: 100%;
    height: 100%;
    max-width: 100%;
    max-height: 100%;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    transition: transform 0.25s ease-in-out;
  }

  .slot__title {
    position: relative;
    display: flex;
    flex-shrink: 0;
    justify-content: space-between;
    align-items: center;
    max-width: 100%;
    padding: 8px 0 0;
    border-radius: 0 0 14px 14px;
  }

}

.slot:hover .slot__overlay {
  opacity: 1;
}
.slots-pack__grid {
  .swiper-wrapper {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1rem;
    @media (max-width: 1280px) {
      grid-template-columns: repeat(5, 1fr);
    }
    @media (max-width: 1200px) {
      grid-template-columns: repeat(4, 1fr);
    }
    @media (max-width: 1024px) {
      grid-template-columns: repeat(3, 1fr);
    }
    @media (max-width: 768px) {
      grid-template-columns: repeat(2, 1fr);
    }
  }
}.winners {
  .winner {
    display: flex;
    width: auto;
  }

  .info {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
}
