*,
::before,
::after {
  box-sizing: border-box;
}
ul[class],
ol[class] {
  padding: 0;
}
body,
h1,
h2,
h3,
h4,
p,
li,
figure,
figcaption,
blockquote,
dl,
dd {
  margin: 0;
}
body {
  min-height: 100vh;
  color: #0a6469;
  scroll-behavior: smooth;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}
ul[class],
ol[class] {
  list-style: none;
}
a:not([class]) {
  -webkit-text-decoration-skip: ink;
  text-decoration-skip-ink: auto;
}
a[class] {
  text-decoration: none;
}
img {
  max-width: 100%;
  display: block;
}
article > * + * {
  margin-top: 1em;
}
input,
button,
textarea,
select {
  font: inherit;
  outline: none;
}
@media (prefers-reduced-motion: reduce) {
  * {
    -webkit-animation-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    -webkit-animation-iteration-count: 1 !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
img {
  height: auto;
  width: auto;
}
body {
  font-family: "Open-Sans", "Arial", sans-serif;
}
h1 {
  position: relative;
  font-size: 30px;
  padding-left: 60px;
}
h2 {
  display: flex;
  position: relative;
  padding: 15px 0 15px 60px;
}
h1::before,
h2::before {
  content: "";
  background: url(../img/title-symbol.png);
  background-repeat: no-repeat;
  position: absolute;
  left: 0;
  height: 50px;
  width: 50px;
}
h1,
h2,
h3 {
  color: #335354;
}
p {
  color: #0a6469;
  padding: 15px 0;
}
ul:not([class]) {
  list-style: "- ";
  padding-left: 20px;
}
ul:not([class]) li,
ol:not([class]) li {
  padding: 0 0 10px 0;
  color: #0a6469;
}
.o-container {
  padding: 15px;
  max-width: 1440px;
  margin: 0 auto;
}
.o-hidden {
  display: none;
}
.o-color--red {
  color: #ff4949;
}
.o-color--blue {
  color: #0ea7b5;
}
.o-text--blue {
  display: inline-block;
  color: #0a6469;
  font-weight: 600;
  text-align: center;
  width: 100%;
}
.o-blue-btn {
  background: #1c808a;
  border: 1px solid #1c808a;
  border-radius: 25px;
  color: #fff;
  display: block;
  padding: 10px;
  font-weight: 600;
  width: 180px;
  text-align: center;
  margin: 10px auto;
  transition: all 0.3s ease-in-out;
}
.o-blue-btn:hover {
  color: #000;
  background: none;
}
@media (min-width: 768px) {
  h1 {
    font-size: 38px;
  }
  h2 {
    font-size: 32px;
  }
}
.c-header {
  background: #054146;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-evenly;
  top: 0;
  left: 0;
  right: 0;
  position: fixed;
  margin: 0 auto;
  width: 100%;
  z-index: 99;
}
.c-header__top-box {
  display: flex;
  padding: 15px 0;
}
.c-header__log,
.c-header__reg {
  border-radius: 25px;
  color: #fff;
  font-weight: 600;
  font-size: 18px;
  padding: 10px;
  text-align: center;
  text-transform: uppercase;
  min-width: 110px;
  transition: all 0.3s ease-in-out;
  white-space: nowrap;
}
.c-header__log:hover,
.c-header__reg:hover {
  background: none;
}
.c-header__reg {
  background: #248642;
  border: 1px solid #248642;
  margin-right: 15px;
}
.c-header__log {
  background: #1c808a;
  border: 1px solid #1c808a;
}
.c-header__bottom-box {
  align-items: center;
  display: flex;
  justify-content: space-between;
  width: 100%;
}
.c-header__logo-link {
  display: inline-flex;
  transition: all 0.3s ease-in-out;
  height: 50px;
}
.c-header__logo-link:hover {
  opacity: 0.5;
}
.c-burger {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 27px;
  width: 30px;
}
.c-burger div {
  background: #fff;
  border-radius: 5px;
  height: 4px;
  width: 100%;
}
.c-header__nav {
  background: #3b8387;
  position: absolute;
  padding: 15px;
  top: 150px;
  left: 0;
  height: 100vh;
  width: 100%;
  z-index: 1;
}
.c-header__nav a {
  display: block;
  border-bottom: 2px solid #3b8387;
  color: #fff;
  font-weight: 600;
  padding: 10px;
  text-decoration: none;
  text-transform: uppercase;
  transition: all 0.3s ease-in-out;
}
.c-header__nav a:hover {
  background: #0ea7b5;
}
@media (min-width: 768px) {
  .c-burger {
    display: none;
  }
  .c-header__bottom-box {
    padding: 0 0 0 30px;
    order: -1;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }
  .c-header {
    position: relative;
    left: initial;
    right: initial;
    padding: 15px 0 0;
    justify-content: space-between;
  }
  .c-header__top-box {
    margin: 0 30px 0 0;
  }
  .c-header__nav {
    display: block;
    position: initial;
    left: initial;
    height: initial;
    padding: 20px 0;
  }
  .c-header__nav a {
    border-bottom: 2px solid #3b8387;
    padding: 10px 10px 0;
  }
  .c-header__nav a:hover {
    background: none;
    border-bottom: 2px solid #fff;
  }
  .c-header__nav li {
    margin: 0 10px;
  }
  .c-burger__menu {
    display: flex;
    padding: 0;
    margin: 0;
  }
  .c-header__log,
  .c-header__reg {
    padding: 10px 15px;
  }
}
.c-main {
  padding-top: 158px;
}
.c-bonus {
  color: #fff;
  display: flex;
  font-weight: 600;
  font-size: 26px;
  background: #054146;
  padding: 15px 50px;
}
.c-bonus-container {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
  width: 100%;
}
.c-bonus-container div {
  align-items: center;
  display: flex;
  flex-direction: column;
  max-width: 420px;
}
.c-bonus-container div p {
  color: #fff;
  text-align: center;
}
.c-slots {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
}
.c-slot {
  border-radius: 15px;
  cursor: pointer;
  display: flex;
  position: relative;
  margin: 10px;
  max-width: 300px;
  transition: all 0.3s ease-in-out;
}
.c-slot img {
  border-radius: 15px;
}
.c-slot:hover {
  box-shadow: 0 0 25px 0 #39eeff;
}
.c-slot:hover .c-slot-overlay {
  opacity: 1;
}
.c-slot-overlay {
  align-items: center;
  display: flex;
  border-radius: 15px;
  flex-direction: column;
  justify-content: space-evenly;
  background: rgba(0, 0, 0, 0.459);
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  transition: all 0.3s ease-in-out;
  opacity: 0;
}
.c-slot__play-btn {
  border-radius: 15px;
  background: #198239;
  color: #fff;
  padding: 10px;
  text-align: center;
  width: 150px;
}
.c-slot__play-btn:hover {
  background: #f04c44;
}
.c-slot__demo-btn {
  border-radius: 15px;
  background: #2da6b1;
  color: #fff;
  padding: 10px;
  text-align: center;
  width: 150px;
}
.c-slot__demo-btn:hover {
  background: #f04c44;
}
.c-slot__demo-btn,
.c-slot__play-btn {
  transition: all 0.3s ease-in-out;
  font-size: 18px;
}
.c-bonus__btn {
  display: block;
  background: #1c808a;
  border: 1px solid #1c808a;
  border-radius: 25px;
  color: #fff;
  padding: 10px;
  margin: 10px 0;
  font-size: 25px;
  font-weight: 600;
  width: 180px;
  text-align: center;
  transition: all 0.3s ease-in-out;
  white-space: nowrap;
}
.c-bonus__btn:hover {
  background: #054146;
  color: #fff;
}
.c-rating__list li {
  align-items: center;
  background: #c0cfd1;
  border-radius: 15px;
  justify-content: space-between;
  display: flex;
  flex-wrap: wrap;
  padding: 0 10px;
}
.c-rating__list li:nth-child(2n) {
  background: transparent;
}
.c-rating__list li p {
  color: #335354;
}
.c-rating__list li div {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
}
.c-rating {
  background: url(../img/rating-active.svg);
  margin-right: 10px;
  height: 26px;
}
.c-rating__number {
  font-weight: 600;
  margin: 5px 0;
}
.c-faq {
  padding: 35px 0;
}
.c-faq details {
  background: #c0cfd1;
  border-radius: 15px;
  padding: 10px;
}
.c-faq details summary {
  cursor: pointer;
  font-size: 18px;
  font-weight: 600;
}
.c-faq details p {
  color: #335354;
}
.c-faq details:nth-child(2n) {
  background: transparent;
}
.c-reviews {
  display: flex;
  flex-direction: column;
}
.c-review {
  background: #c0cfd1;
  border-radius: 15px;
  display: flex;
  flex-wrap: wrap;
  padding: 15px;
  margin: 15px 0;
}
.c-review p {
  color: #000;
}
.c-review__top-box {
  display: flex;
  font-size: 18px;
  font-weight: 600;
  justify-content: space-between;
  width: 100%;
}
.c-footer {
  background: #054146;
}
.c-footer p {
  color: #fff;
}
@media (min-width: 768px) {
  .c-main {
    padding-top: initial;
  }
}
.c-copyright {
  text-align: center;
  font-size: 14px;
}
.c-footer__logo {
  margin: 15px 0;
}
table {
  border-collapse: collapse;
}
table td,
th {
  padding: 10px;
}
.o-overflow {
  overflow: hidden;
}
.c-main__nav {
  background: #054146;
  border-radius: 15px;
  box-shadow: 7px 4px 6px #000;
  float: left;
  margin: 0 40px 20px 0;
  max-width: 300px;
  width: 100%;
}
.c-main__nav h2::before {
  display: none;
}
.c-main__nav h2 {
  border: none;
  color: #fff;
  padding: 0;
  margin: 10px 0 15px 0;
  justify-content: center;
  text-align: center;
  width: 100%;
}
.c-main__nav a {
  color: #fff;
  display: inline-block;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  text-align: center;
  transition: all 0.3s ease-in-out;
  width: 100%;
}
.c-main__nav a:hover {
  color: #ff4949;
}
.c-main__nav li {
  margin: 5px 0;
  padding: 0 10px;
  list-style-type: none;
}
.o-float__right-img {
  float: right;
  margin: 0 0 30px 30px;
  max-width: 400px;
}
.c-banner{
  background-image: url("../img/banner/banner-bg-s.jpg");
  background-image: -webkit-image-set(url("../img/banner/banner-bg-s.webp") 1x, url("../img/banner/banner-bg-s.webp") 2x);
  background-image: image-set(url("../img/banner/banner-bg-s.jpg") 1x, url("../img/banner/banner-bg-s.jpg") 2x);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  max-width: 1440px;
  height: 330px;
 	margin: 0 auto; 
}
.c-banner__overlay{
  align-items: center;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  background: rgba(4,45,48,0.7);
  padding: 25px 20px;
  text-align: center;
  height: 100%;
  max-width: 217px;
}
.c-banner__text{
  border: 2px solid #fff;
  margin: 0 0 10px 0;
}
.c-banner__text p{
  color: #fff;
}
.c-banner__bonus-btn{
  background: #248642;
  border-radius: 20px;
  color: #fff;
  padding: 5px 10px;
  transition: all .3s ease-out;
}
.c-banner__bonus-btn:hover{
  background: #f04c44;
}
.o-two-columns{
  columns: 2;
}
@media(min-width:500px){
  .c-banner{
    background-image: url("../img/banner/banner-bg-m.jpg");
    background-image: -webkit-image-set(url("../img/banner/banner-bg-m.webp") 1x, url("../img/banner/banner-bg-m.webp") 2x);
    background-image: image-set(url("../img/banner/banner-bg-m.jpg") 1x, url("../img/banner/banner-bg-m.jpg") 2x);
  }
}
@media(min-width:768px){
  .c-banner{
    background-image: url("../img/banner/banner-bg-l.jpg");
  background-image: -webkit-image-set(url("../img/banner/banner-bg-l.webp") 1x, url("../img/banner/banner-bg-l.webp") 2x);
  background-image: image-set(url("../img/banner/banner-bg-l.jpg") 1x, url("../img/banner/banner-bg-l.jpg") 2x);
  }
}