@import url(https://fonts.googleapis.com/css?family=Poppins:regular,700&display=swap);
* {
  padding: 0;
  margin: 0;
  border: 0;
}

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

:focus, :active {
  outline: none;
}

a:focus, a:active {
  outline: none;
}

nav, footer, header, aside {
  display: block;
}

html, body {
  height: 100%;
  width: 100%;
  line-height: 1;
  font-size: 1rem;
  -ms-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

input, button, textarea {
  font-family: inherit;
}

input::-ms-clear {
  display: none;
}

button {
  cursor: pointer;
}

button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

a, a:visited {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

ul li {
  list-style: none;
}

img {
  vertical-align: top;
}

h1, h2, h3, h4, h5, h6 {
  font-size: inherit;
  font-weight: inherit;
}

body {
  background-color: #030303;
  color: #fff;
  font-family: Poppins;
}

.container {
  max-width: 1170px;
  margin: 0 auto;
  padding: 0 15px;
}

.button {
  padding: 0 10px;
  line-height: 28px;
  height: 28px;
  font-size: 10px;
  border-radius: 7px;
  font-family: Poppins;
}

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

.text {
  line-height: 1.7;
}

.header__container {
  display: flex;
  justify-content: space-between;
  height: 58px;
  align-items: center;
}
.header hr {
  height: 1px;
  background-color: rgba(255, 255, 255, 0.18);
  border: none;
}

.authorize {
  display: flex;
  gap: 5px;
}
.authorize__registration {
  background: #cf0e48;
  color: #fff;
  font-weight: 700;
}
.authorize__login {
  background: #0ff;
  color: #030303;
  font-weight: 700;
}

.menu {
  font-family: Poppins;
  font-weight: 400;
  height: 55px;
  background: #030303;
  border-top: 1px solid #101317;
  border-bottom: 1px solid #101317;
  color: #fff;
  font-size: 14px;
  line-height: 14px;
}
@media (max-width: 600px) {
  .menu {
    height: auto;
    padding: 10px 0;
  }
}
.menu a {
  color: #fff;
  display: flex;
  align-items: center;
}
.menu img {
  width: 24px;
  height: 24px;
  margin-top: 0;
  margin-right: 4px;
}
.menu__list {
  display: flex;
  justify-content: center;
  gap: 38px;
  flex-wrap: wrap;
}
.menu__link {
  flex: 0 0 100%;
}
.menu__icon.casino {
  animation: casinoAnimation 1s steps(40) infinite;
  background-image: url(../images/minu-icon/casino.png);
  scale: 0.7;
  width: 30px;
  height: 30px;
  transform-origin: top center;
  overflow: hidden;
  background-repeat: no-repeat;
  background-size: 100% auto;
  flex-shrink: 0;
  margin-right: 2px;
}
.menu__icon.livecasino {
  animation: livecasinoAnimation 0.8s steps(50) infinite;
  background-image: url(../images/minu-icon/livecasino.png);
  scale: 0.7;
  transform-origin: top center;
  width: 30px;
  height: 30px;
  overflow: hidden;
  background-repeat: no-repeat;
  background-size: 100% auto;
  flex-shrink: 0;
  margin-right: 2px;
}
.menu__icon.promos {
  animation: promosAnimation 0.8s steps(19) infinite;
  background-image: url(../images/minu-icon/promos.png);
  transform: scaleX(-1);
  scale: 1;
  position: relative;
  left: -0.2rem;
  top: -0.1rem;
  transform-origin: top center;
  width: 30px;
  height: 30px;
  overflow: hidden;
  background-repeat: no-repeat;
  background-size: 100% auto;
  flex-shrink: 0;
  margin-right: 2px;
}

@keyframes casinoAnimation {
  from {
    background-position-y: 0;
  }
  to {
    background-position-y: -1200px;
  }
}
@keyframes livecasinoAnimation {
  from {
    background-position-y: 0;
  }
  to {
    background-position-y: -1500px;
  }
}
@keyframes promosAnimation {
  from {
    background-position-y: 0;
  }
  to {
    background-position-y: -570px;
  }
}
.content {
  margin: 25px 0;
  line-height: 1.2;
}
.content__text {
  padding: 30px 0;
}

.banner {
  display: block;
  color: #fff;
  margin: 30px 0;
  padding: 30px;
  background-color: rgba(33, 21, 68, 0.2);
  border-radius: 5px;
}
.banner__title {
  font-size: 25px;
  line-height: 2;
  text-align: center;
}
.banner__button {
  display: block;
  background: #cf0e48;
  color: #fff;
  font-size: 20px;
  line-height: 40px;
  height: 40px;
  width: 220px;
  margin: 30px auto;
}
.banner__text {
  padding: 30px 0;
}

.footer {
  margin-top: 40px;
  padding: 40px 0 0 0;
}
.footer__container {
  display: flex;
  gap: 40px;
  justify-content: space-around;
}
.footer__payment li {
  padding: 16px 0;
}
.footer__copyright {
  font-size: 12px;
  margin-top: 16px;
  border-top: 1px solid #101317;
  padding: 30px 0;
  text-align: center;
}
.footer__copyright a {
  color: #0ff;
}

.footer-menu {
  font-size: 14px;
}
.footer-menu li {
  padding: 16px 0;
}
.footer-menu a {
  color: #fff;
}