.container {
  width: 90%;
  max-width: 1170px;
  margin: auto;
}

.anim {
  opacity: 0;
  transition: all 0.4s, opacity 1.5s 0.3s;
}

.anim.animated {
  opacity: 1;
}

.anim.delay2 {
  transition-delay: 0.5s;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  list-style: none;
  border-radius: 0;
  text-decoration: none;
  font-family: "TT Norms", sans-serif;
  -webkit-font-feature-settings: 'pnum' on, 'lnum' on, 'liga' off, 'kern' off;
          font-feature-settings: 'pnum' on, 'lnum' on, 'liga' off, 'kern' off;
}

audio {
  display: none;
}

body {
  overflow-x: hidden;
  max-width: 100%;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  background: #180C4A;
  position: relative;
}

body::-webkit-scrollbar {
  width: 10px;
}

body::-webkit-scrollbar-track {
  background: white;
  background: rgba(255, 255, 255, 0.2);
}

body::-webkit-scrollbar-thumb {
  background: #AD6BF7;
  border-radius: 99px;
}

body::-webkit-scrollbar-thumb:hover {
  background: #914CDF;
}

body.fix {
  overflow: hidden;
  padding-right: 10px;
}

body:before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background-image: url(../img/bg.svg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

body header {
  position: relative;
  z-index: 2;
}

body main {
  position: relative;
  z-index: 2;
}

body footer {
  margin-top: auto;
  margin-bottom: 0;
  position: relative;
  z-index: 2;
}

select,
input,
button {
  -webkit-appearance: none;
  -moz-appearance: none;
  border: none;
}

button {
  cursor: pointer;
}

*:focus {
  outline: transparent;
}

input[type=submit] {
  -moz-appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type=number] {
  -moz-appearance: textfield;
}

@font-face {
  font-family: 'TT Norms';
  src: url("../fonts/TTNorms-Regular.woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'TT Norms';
  src: url("../fonts/TTNorms-Medium.woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'TT Norms';
  src: url("../fonts/TTNorms-Bold.woff");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

.header {
  background: rgba(23, 13, 60, 0.5);
  padding: 10px 0;
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: center;
}

.header__logo img {
  display: block;
  width: auto;
  height: 50px;
}

.header__logo-anim {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 14px 0;
}

.header__logo-anim .rotatePart {
  -webkit-animation-name: rotateLogo;
          animation-name: rotateLogo;
  -webkit-animation-duration: 4s;
          animation-duration: 4s;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
          animation-timing-function: linear;
}

@-webkit-keyframes rotateLogo {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@keyframes rotateLogo {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

.footer {
  padding: 70px 0 100px;
}

.footer__main {
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.2);
  -webkit-backdrop-filter: blur(7.5px);
          backdrop-filter: blur(7.5px);
  display: flex;
  gap: 30px;
  padding: 30px 50px;
}

.footer__main .age {
  width: 120px;
  min-width: 120px;
  color: #FFF;
  font-size: 67px;
  font-weight: 500;
  line-height: 150%;
  text-align: center;
}

.footer__main .text {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__main .text h2 {
  color: #FFF;
  font-size: 20px;
  font-weight: 500;
  line-height: 150%;
}

.footer__main .text p {
  color: #FFF;
  font-size: 14px;
  font-weight: 500;
  line-height: 150%;
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  padding: 20px 50px 0;
}

.footer__bottom p {
  color: #FFF;
  font-size: 14px;
  font-weight: 500;
  line-height: 150%;
  opacity: 0.5;
}

.footer__bottom .link {
  color: #FFF;
  text-align: center;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 150%;
  -webkit-text-decoration-line: underline;
          text-decoration-line: underline;
  transition: 0.4s;
}

.footer__bottom .link:hover {
  color: #AE6CF8;
}

.footer__bottom .link-h {
  color: #FFF;
  font-size: 14px;
  font-weight: 500;
  line-height: 150%;
  -webkit-text-decoration-line: underline;
          text-decoration-line: underline;
  opacity: 0.5;
  transition: 0.4s;
}

.footer__bottom .link-h:hover {
  opacity: 1;
  color: #AE6CF8;
}

form,
.form {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

form .form-btn,
.form .form-btn {
  width: 100%;
  background: transparent;
  cursor: pointer;
  color: #FFF;
  font-size: 20px;
  font-weight: 500;
  line-height: 150%;
  text-align: center;
  display: block;
  padding: 15px;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  z-index: 2;
}

form .form-btn:before,
.form .form-btn:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 150%;
  height: 100%;
  background: linear-gradient(90deg, #4E2083 0%, #8E57CC 99.77%, #B57FF2 149.09%);
  transition: 0.4s;
  z-index: -1;
}

form .form-btn:hover:before,
.form .form-btn:hover:before {
  -webkit-transform: translateX(-32%);
          transform: translateX(-32%);
}

form .link,
.form .link {
  color: #8F58CD;
  font-size: 20px;
  font-weight: 500;
  line-height: 150%;
  -webkit-text-decoration-line: underline;
          text-decoration-line: underline;
  background: transparent;
  cursor: pointer;
}

form .buttons,
.form .buttons {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

form .alert,
.form .alert {
  display: block;
  color: #D84848;
  font-size: 16px;
  font-weight: 500;
  line-height: 150%;
  padding: 10px;
  border-radius: 10px;
  background: #FFF4F4;
}

form .input-box,
.form .input-box {
  border-radius: 10px;
  border: 1px solid #C8C0D6;
  background: #FFF;
  padding: 5px;
  display: flex;
  position: relative;
}

form .input-box:before,
.form .input-box:before {
  content: "+38";
  border-radius: 5px;
  padding: 10px;
  background: #F1EEF7;
  color: #3D2E4E;
  font-size: 16px;
  font-weight: 500;
  line-height: 150%;
}

form .input-box input,
.form .input-box input {
  display: block;
  color: #3D2E4E;
  font-size: 16px;
  font-weight: 500;
  line-height: 150%;
  padding: 10px;
  width: 100%;
}

form .input-box .error-text,
.form .input-box .error-text {
  display: none;
  color: #FF2727;
  font-size: 10px;
  font-weight: 500;
  line-height: 150%;
  position: absolute;
  left: 0;
  top: calc(100% + 3px);
}

form .input-box.invalid,
.form .input-box.invalid {
  border-color: #FF2727;
}

form .input-box.invalid .error-text,
.form .input-box.invalid .error-text {
  display: block;
}

form .check-box.center,
.form .check-box.center {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  max-width: 100%;
  margin: 0 auto;
}

form .check-box input,
.form .check-box input {
  display: none;
}

form .check-box input:checked + label .ico,
.form .check-box input:checked + label .ico {
  border-color: transparent;
}

form .check-box input:checked + label .ico svg,
.form .check-box input:checked + label .ico svg {
  opacity: 1;
}

form .check-box input:checked + label + .error-text,
.form .check-box input:checked + label + .error-text {
  display: none;
}

form .check-box label,
.form .check-box label {
  color: #4E405F;
  font-size: 12px;
  font-weight: 400;
  line-height: 150%;
  padding-left: 30px;
  display: block;
  position: relative;
}

form .check-box label a,
.form .check-box label a {
  color: #4E405F;
  text-decoration: underline;
  transition: 0.4s;
}

form .check-box label a:hover,
.form .check-box label a:hover {
  color: #8E57CC;
}

form .check-box label .ico,
.form .check-box label .ico {
  border-radius: 5px;
  border: 1px solid #8045C3;
  width: 20px;
  height: 20px;
  position: absolute;
  left: 0;
  top: -1px;
  transition: 0.4s;
  cursor: pointer;
}

form .check-box label .ico svg,
.form .check-box label .ico svg {
  position: absolute;
  width: 20px;
  height: 20px;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  transition: 0.4s;
  opacity: 0;
}

form .check-box .error-text,
.form .check-box .error-text {
  display: none;
  padding-left: 30px;
  padding-top: 2px;
  color: #FF2727;
  font-size: 10px;
  font-weight: 500;
  line-height: 150%;
}

form .check-box.invalid label .ico,
.form .check-box.invalid label .ico {
  border-color: #FF2727;
}

form .check-box.invalid .error-text,
.form .check-box.invalid .error-text {
  display: block;
}

.chatBox {
  position: fixed;
  z-index: 20;
  right: 20px;
  bottom: 50px;
  width: 70px;
  height: 70px;
}

.chatBox.hide {
  display: none;
}

.chatBox.show {
  display: block !important;
}

.chatBox.open .chatBtn {
  width: 70px !important;
}

.chatBox .chatBtn {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 70px;
  height: 70px;
  background: white;
  border-radius: 99px;
  overflow: hidden;
  cursor: pointer;
  transition: 0.4s;
}

.chatBox .chatBtn.openText {
  width: 300px;
}

.chatBox .chatBtn p {
  font-size: 16px;
  font-weight: 700;
  line-height: 150%;
  background: var(--main-gradient, radial-gradient(559.61% 141.42% at 100% 0%, #8F58CD 17.04%, #4E1F82 100%));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  position: absolute;
  left: 44px;
  top: 50%;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
  white-space: nowrap;
}

.chatBox .chatBtn .icon {
  width: 70px;
  height: 70px;
  background: white;
  border-radius: 99px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15px;
  position: relative;
  margin-left: auto;
  z-index: 2;
  -webkit-animation-name: chatIcon;
          animation-name: chatIcon;
  -webkit-animation-timing-function: ease-in-out;
          animation-timing-function: ease-in-out;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  -webkit-animation-duration: 2s;
          animation-duration: 2s;
}

@-webkit-keyframes chatIcon {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }

  25% {
    -webkit-transform: rotate(5deg);
            transform: rotate(5deg);
  }

  50% {
    -webkit-transform: rotate(-5deg);
            transform: rotate(-5deg);
  }

  75% {
    -webkit-transform: rotate(2deg);
            transform: rotate(2deg);
  }

  100% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
}

@keyframes chatIcon {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }

  25% {
    -webkit-transform: rotate(5deg);
            transform: rotate(5deg);
  }

  50% {
    -webkit-transform: rotate(-5deg);
            transform: rotate(-5deg);
  }

  75% {
    -webkit-transform: rotate(2deg);
            transform: rotate(2deg);
  }

  100% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
}

.chatBox .chatBtn .icon svg {
  display: block;
  width: 100%;
  height: 100%;
}

.chatBox .chatWindow {
  display: none;
  width: calc(100vw - 40px);
  max-width: 300px;
  background: white;
  border-radius: 20px;
  position: absolute;
  right: 0;
  bottom: calc(100% + 28px);
}

.chatBox .chatWindow__top {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #C8C0D6;
  padding: 15px;
}

.chatBox .chatWindow__top .contact {
  display: flex;
  align-items: center;
  gap: 10px;
}

.chatBox .chatWindow__top .ico {
  width: 40px;
  height: 40px;
  background: #180C4A;
  border-radius: 99px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.chatBox .chatWindow__top .ico svg {
  display: block;
  width: 20px;
  height: 20px;
}

.chatBox .chatWindow__top .ico:before {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 14px;
  height: 14px;
  border-radius: 99px;
  background: white;
}

.chatBox .chatWindow__top .ico:after {
  content: "";
  position: absolute;
  right: 3px;
  bottom: 3px;
  width: 8px;
  height: 8px;
  border-radius: 99px;
  background: linear-gradient(#38C7AD, #16AD49);
  -webkit-animation-name: online;
          animation-name: online;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  -webkit-animation-duration: 3s;
          animation-duration: 3s;
}

@-webkit-keyframes online {
  0% {
    opacity: 1;
  }

  25% {
    opacity: 0;
  }

  50% {
    opacity: 1;
  }

  75% {
    opacity: 1;
  }

  100% {
    opacity: 1;
  }
}

@keyframes online {
  0% {
    opacity: 1;
  }

  25% {
    opacity: 0;
  }

  50% {
    opacity: 1;
  }

  75% {
    opacity: 1;
  }

  100% {
    opacity: 1;
  }
}

.chatBox .chatWindow__top .text p {
  color: #4E405F;
  font-size: 14px;
  font-weight: 700;
  line-height: 150%;
}

.chatBox .chatWindow__top .text span {
  color: #C1B6CE;
  font-size: 12px;
  font-weight: 500;
  line-height: 150%;
}

.chatBox .chatWindow__top .close-btn {
  cursor: pointer;
}

.chatBox .chatWindow__top .close-btn svg {
  display: block;
  width: 24px;
  height: 24px;
}

.chatBox .chatWindow__top .close-btn svg g,
.chatBox .chatWindow__top .close-btn svg path {
  fill: #4E405F;
  transition: 0.4s;
}

.chatBox .chatWindow__top .close-btn:hover svg g {
  opacity: 1;
}

.chatBox .chatWindow__top .close-btn:hover svg path {
  fill: #AD6BF7;
}

.chatBox .chatWindow__dialog {
  height: 220px;
  overflow: auto;
  padding: 15px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.chatBox .chatWindow__dialog .date {
  color: #C1B6CE;
  text-align: center;
  font-size: 10px;
  font-weight: 500;
  line-height: 150%;
}

.chatBox .chatWindow__dialog .chatbotSMS-container {
  display: flex;
  align-items: flex-end;
  gap: 5px;
  padding: 0 30px 0 0;
}

.chatBox .chatWindow__dialog .chatbotSMS-container .user {
  width: 20px;
  min-width: 20px;
  height: 20px;
  border-radius: 99px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #F7F3FD;
  border: 1px solid rgba(104, 54, 160, 0.4);
}

.chatBox .chatWindow__dialog .chatbotSMS-container .user svg {
  display: block;
  width: 60%;
  height: 60%;
}

.chatBox .chatWindow__dialog .chatbotSMS-container .user.bot {
  border: none;
  background: #180C4A;
  position: relative;
}

.chatBox .chatWindow__dialog .chatbotSMS-container .user.bot svg {
  display: block;
  width: 10px;
  height: 10px;
}

.chatBox .chatWindow__dialog .chatbotSMS-container.answer {
  padding: 0 0 0 30px;
  display: none;
}

.chatBox .chatWindow__dialog .chatbotSMS-container.answer .chatbotSMS {
  border-radius: 20px 20px 0 20px;
}

.chatBox .chatWindow__dialog .chatbotSMS-container.answer .smstime {
  right: unset;
  left: 10px;
}

.chatBox .chatWindow__dialog .chatbotSMS {
  border-radius: 20px 20px 20px 0px;
  background: #F7F3FD;
  padding: 15px;
  position: relative;
  width: 100%;
}

.chatBox .chatWindow__dialog .chatbotSMS .dots {
  display: flex;
  align-items: center;
  gap: 5px;
  height: 21px;
}

.chatBox .chatWindow__dialog .chatbotSMS .dots span {
  display: block;
  width: 7px;
  height: 7px;
  border-radius: 7px;
  background: #B5A9CB;
  -webkit-animation-name: chatdots;
          animation-name: chatdots;
  -webkit-animation-duration: 1.5s;
          animation-duration: 1.5s;
  -webkit-animation-timing-function: linear;
          animation-timing-function: linear;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
}

.chatBox .chatWindow__dialog .chatbotSMS .dots span:nth-child(2) {
  -webkit-animation-delay: 0.2s;
          animation-delay: 0.2s;
}

.chatBox .chatWindow__dialog .chatbotSMS .dots span:nth-child(3) {
  -webkit-animation-delay: 0.4s;
          animation-delay: 0.4s;
}

@-webkit-keyframes chatdots {
  0% {
    opacity: 100%;
  }

  25% {
    opacity: 30%;
  }

  50% {
    opacity: 100%;
  }

  75% {
    opacity: 100%;
  }

  100% {
    opacity: 100%;
  }
}

@keyframes chatdots {
  0% {
    opacity: 100%;
  }

  25% {
    opacity: 30%;
  }

  50% {
    opacity: 100%;
  }

  75% {
    opacity: 100%;
  }

  100% {
    opacity: 100%;
  }
}

.chatBox .chatWindow__dialog .chatbotSMS .text {
  display: none;
  color: #4E405F;
  font-size: 14px;
  font-weight: 500;
  line-height: 150%;
}

.chatBox .chatWindow__dialog .chatbotSMS .text.show {
  display: block;
}

.chatBox .chatWindow__dialog .chatbotSMS .smstime {
  position: absolute;
  right: 10px;
  bottom: 5px;
  color: #4E405F;
  text-align: right;
  font-size: 8px;
  font-weight: 500;
  line-height: 1.2;
  opacity: .3;
}

.chatBox .chatWindow__input {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 15px;
  border-top: 1px solid #C8C0D6;
}

.chatBox .chatWindow__input textarea {
  width: 100%;
  color: #4E405F;
  font-size: 16px;
  font-weight: 500;
  line-height: 130%;
  border: none;
  padding: 10px 0;
  height: 42px;
  resize: none;
}

.chatBox .chatWindow__input textarea::-webkit-scrollbar {
  width: 3px;
}

.chatBox .chatWindow__input textarea::-webkit-scrollbar-track {
  background: white;
  background: rgba(255, 255, 255, 0.2);
}

.chatBox .chatWindow__input textarea::-webkit-scrollbar-thumb {
  background: #AD6BF7;
  border-radius: 99px;
}

.chatBox .chatWindow__input textarea::-webkit-scrollbar-thumb:hover {
  background: #914CDF;
}

.chatBox .chatWindow__input .button {
  width: 34px;
  min-width: 34px;
  transition: 0.4s;
  cursor: pointer;
}

.chatBox .chatWindow__input .button:hover {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

.chatBox .chatWindow__input .button svg {
  display: block;
  width: 100%;
  height: auto;
}

.chatBox .chatWindow__form {
  display: none;
  position: absolute;
  z-index: 2;
  left: 0;
  top: 73px;
  background: white;
  height: calc(100% - 73px);
  width: 100%;
  border-radius: 0 0 20px 20px;
  padding: 25px 15px;
}

.chatBox .chatWindow__form > p {
  color: #4E405F;
  font-size: 16px;
  font-weight: 700;
  line-height: 150%;
  margin-bottom: 10px;
}

.chatBox .chatWindow__form > span {
  color: #4E405F;
  font-size: 14px;
  font-weight: 500;
  line-height: 150%;
}

.chatBox .chatWindow__form form {
  margin-top: 30px;
}

.chatBox .chatWindow__form form .form-btn {
  padding: 10px;
}

.chatBox .chatWindow__thx {
  display: none;
  position: absolute;
  z-index: 3;
  left: 0;
  top: 73px;
  background: white;
  height: calc(100% - 73px);
  width: 100%;
  border-radius: 0 0 20px 20px;
  padding: 25px 15px;
}

.chatBox .chatWindow__thx > svg {
  margin-bottom: 20px;
}

.chatBox .chatWindow__thx > p {
  color: #4E405F;
  font-size: 16px;
  font-weight: 700;
  line-height: 150%;
  margin-bottom: 10px;
}

.chatBox .chatWindow__thx > span {
  color: #4E405F;
  font-size: 14px;
  font-weight: 500;
  line-height: 150%;
}

.chatBox .chatWindow__thx .close-btn {
  width: 100%;
  background: transparent;
  cursor: pointer;
  color: #FFF;
  font-size: 20px;
  font-weight: 500;
  line-height: 150%;
  text-align: center;
  display: block;
  padding: 10px;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  margin-top: 30px;
}

.chatBox .chatWindow__thx .close-btn:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 150%;
  height: 100%;
  background: linear-gradient(90deg, #4E2083 0%, #8E57CC 99.77%, #B57FF2 149.09%);
  transition: 0.4s;
  z-index: -1;
}

.chatBox .chatWindow__thx .close-btn:hover:before {
  -webkit-transform: translateX(-32%);
          transform: translateX(-32%);
}

.heroBlock {
  padding: 30px 0;
}

.heroBlock__img {
  position: absolute;
  right: 0;
  top: 0;
  width: 559px;
  height: 100%;
  background-image: url(../img/hero_bg.png);
  border-radius: 20px;
  background-position: right top;
  background-size: cover;
  background-repeat: no-repeat;
}

.heroBlock .container {
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.09) 45.31%, rgba(173, 107, 248, 0.3) 84.38%);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  padding: 40px 0 30px 50px;
  display: flex;
  flex-direction: column;
  gap: 30px;
  position: relative;
}

.heroBlock__ttl {
  color: #FFF;
  font-size: 35px;
  font-weight: 700;
  line-height: 150%;
  max-width: 480px;
  position: relative;
  z-index: 2;
}

.heroBlock__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 330px;
  padding: 15px;
  border-radius: 10px;
  position: relative;
  overflow: hidden;
  color: #FFF;
  font-size: 20px;
  font-weight: 500;
  line-height: 150%;
  z-index: 2;
}

.heroBlock__btn:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 150%;
  height: 100%;
  background: linear-gradient(89deg, #AD6BF7 0%, #914CDF 99.48%, #7A32CB 148.2%);
  transition: 0.4s;
  z-index: -1;
}

.heroBlock__btn:hover:before {
  -webkit-transform: translateX(-32%);
          transform: translateX(-32%);
}

.heroBlock__marquee {
  display: flex;
  gap: 15px;
  width: calc(100% + 50px);
  margin-left: -50px;
  margin-top: 10px;
  overflow: hidden;
  position: relative;
  z-index: 2;
  order: 3;
}

.heroBlock__marquee .group {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  -webkit-animation: scroll 20s linear infinite;
          animation: scroll 20s linear infinite;
}

@-webkit-keyframes scroll {
  from {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }

  to {
    -webkit-transform: translateX(calc(-100% - 15px));
            transform: translateX(calc(-100% - 15px));
  }
}

@keyframes scroll {
  from {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }

  to {
    -webkit-transform: translateX(calc(-100% - 15px));
            transform: translateX(calc(-100% - 15px));
  }
}

.heroBlock__marquee p {
  color: #FFF;
  font-size: 16px;
  font-weight: 500;
  line-height: 150%;
  padding: 10px 20px;
  border-radius: 10px;
  background: rgba(24, 12, 74, 0.3);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
}

.heroBlock__images {
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 20px;
}

.showCase {
  padding: 30px 0;
}

.showCase .container {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.showCase .casinoBox {
  width: calc(33.333% - 20px);
  display: flex;
  flex-direction: column;
  transition: 0.4s;
}

.showCase .casinoBox.hide {
  opacity: 0;
}

.showCase .casinoBox__images {
  position: relative;
  height: 200px;
  border-radius: 30px 30px 0px 0px;
  overflow: hidden;
  z-index: 2;
}

.showCase .casinoBox__images img {
  display: block;
  position: absolute;
  -o-object-fit: cover;
     object-fit: cover;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 110%;
  height: 110%;
}

.showCase .casinoBox__images img:nth-child(1) {
  z-index: 3;
  -webkit-animation-name: offerAnim_2;
          animation-name: offerAnim_2;
  -webkit-animation-duration: 5s;
          animation-duration: 5s;
  -webkit-animation-timing-function: ease-in-out;
          animation-timing-function: ease-in-out;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
}

.showCase .casinoBox__images img:nth-child(3) {
  z-index: 2;
  -webkit-animation-name: offerAnim_1;
          animation-name: offerAnim_1;
  -webkit-animation-duration: 5s;
          animation-duration: 5s;
  -webkit-animation-timing-function: ease-in-out;
          animation-timing-function: ease-in-out;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
}

.showCase .casinoBox__images img:nth-child(5) {
  z-index: 1;
  -webkit-animation-name: offerAnim_bg;
          animation-name: offerAnim_bg;
  -webkit-animation-duration: 5s;
          animation-duration: 5s;
  -webkit-animation-timing-function: ease-in-out;
          animation-timing-function: ease-in-out;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
}

@-webkit-keyframes offerAnim_bg {
  0% {
    -webkit-transform: translate(-50%, -50%) rotate(-1deg);
            transform: translate(-50%, -50%) rotate(-1deg);
  }

  50% {
    -webkit-transform: translate(-50%, -50%) rotate(1deg) scale(1.03);
            transform: translate(-50%, -50%) rotate(1deg) scale(1.03);
  }

  100% {
    -webkit-transform: translate(-50%, -50%) rotate(-1deg);
            transform: translate(-50%, -50%) rotate(-1deg);
  }
}

@keyframes offerAnim_bg {
  0% {
    -webkit-transform: translate(-50%, -50%) rotate(-1deg);
            transform: translate(-50%, -50%) rotate(-1deg);
  }

  50% {
    -webkit-transform: translate(-50%, -50%) rotate(1deg) scale(1.03);
            transform: translate(-50%, -50%) rotate(1deg) scale(1.03);
  }

  100% {
    -webkit-transform: translate(-50%, -50%) rotate(-1deg);
            transform: translate(-50%, -50%) rotate(-1deg);
  }
}

@-webkit-keyframes offerAnim_1 {
  0% {
    -webkit-transform: translate(-50%, -50%) rotate(1deg);
            transform: translate(-50%, -50%) rotate(1deg);
  }

  50% {
    -webkit-transform: translate(-50%, -50%) rotate(-1deg);
            transform: translate(-50%, -50%) rotate(-1deg);
  }

  100% {
    -webkit-transform: translate(-50%, -50%) rotate(1deg);
            transform: translate(-50%, -50%) rotate(1deg);
  }
}

@keyframes offerAnim_1 {
  0% {
    -webkit-transform: translate(-50%, -50%) rotate(1deg);
            transform: translate(-50%, -50%) rotate(1deg);
  }

  50% {
    -webkit-transform: translate(-50%, -50%) rotate(-1deg);
            transform: translate(-50%, -50%) rotate(-1deg);
  }

  100% {
    -webkit-transform: translate(-50%, -50%) rotate(1deg);
            transform: translate(-50%, -50%) rotate(1deg);
  }
}

@-webkit-keyframes offerAnim_2 {
  0% {
    -webkit-transform: translate(-50%, -50%) rotate(-0.5deg);
            transform: translate(-50%, -50%) rotate(-0.5deg);
  }

  50% {
    -webkit-transform: translate(-50%, -50%) rotate(1deg) scale(0.95);
            transform: translate(-50%, -50%) rotate(1deg) scale(0.95);
  }

  100% {
    -webkit-transform: translate(-50%, -50%) rotate(-0.5deg);
            transform: translate(-50%, -50%) rotate(-0.5deg);
  }
}

@keyframes offerAnim_2 {
  0% {
    -webkit-transform: translate(-50%, -50%) rotate(-0.5deg);
            transform: translate(-50%, -50%) rotate(-0.5deg);
  }

  50% {
    -webkit-transform: translate(-50%, -50%) rotate(1deg) scale(0.95);
            transform: translate(-50%, -50%) rotate(1deg) scale(0.95);
  }

  100% {
    -webkit-transform: translate(-50%, -50%) rotate(-0.5deg);
            transform: translate(-50%, -50%) rotate(-0.5deg);
  }
}

.showCase .casinoBox__text {
  display: flex;
  height: calc(100% - 180px);
  padding: 15px 20px 20px;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  border-radius: 20px;
  background: #FFF;
  margin-top: -20px;
  position: relative;
  z-index: 10;
}

.showCase .casinoBox__logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 10px;
}

.showCase .casinoBox__logo img {
  display: block;
  width: auto;
  height: 40px;
}

.showCase .casinoBox__logo svg {
  display: block;
  width: 16px;
  height: auto;
}

.showCase .casinoBox__buttons {
  position: relative;
  width: 100%;
  display: flex;
  padding: 10px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 10px;
}

.showCase .casinoBox__buttons-blue {
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.8) 0%, rgba(255, 255, 255, 0.8) 100%), linear-gradient(180deg, #38ADC7 0%, #244CB3 100%);
}

.showCase .casinoBox__buttons-blue p,
.showCase .casinoBox__buttons-blue span {
  color: #1C2C53;
}

.showCase .casinoBox__buttons-blue .btn {
  background: #3152A4;
}

.showCase .casinoBox__buttons-green {
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.8) 0%, rgba(255, 255, 255, 0.8) 100%), linear-gradient(180deg, #38C7AD 0%, #16AD49 100%);
}

.showCase .casinoBox__buttons-green p,
.showCase .casinoBox__buttons-green span {
  color: #104925;
}

.showCase .casinoBox__buttons-green .btn {
  background: #3FB466;
}

.showCase .casinoBox__buttons-orange {
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.7) 0%, rgba(255, 255, 255, 0.7) 100%), linear-gradient(180deg, #F1BF11 0%, #E7411D 100%);
}

.showCase .casinoBox__buttons-orange p,
.showCase .casinoBox__buttons-orange span {
  color: #853823;
}

.showCase .casinoBox__buttons-orange .btn {
  background: #F0603D;
}

.showCase .casinoBox__buttons p {
  text-align: center;
  font-size: 24px;
  font-weight: 700;
  line-height: 150%;
}

.showCase .casinoBox__buttons span {
  text-align: center;
  font-size: 14px;
  font-weight: 500;
  line-height: 150%;
}

.showCase .casinoBox__buttons .cta {
  display: flex;
  gap: 5px;
  width: 100%;
}

.showCase .casinoBox__buttons .cta .promocode {
  color: #000;
  font-size: 20px;
  line-height: 1.2;
  font-weight: 700;
  padding: 13px 5px;
  background: white;
  border-radius: 10px;
  width: calc(50% - 5px);
  position: relative;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
}

.showCase .casinoBox__buttons .cta .promocode.tremor {
  -webkit-animation: 0.2s tremor ease-out 2;
          animation: 0.2s tremor ease-out 2;
}

@-webkit-keyframes tremor {
  0% {
    -webkit-transform: rotate(-2deg);
            transform: rotate(-2deg);
  }

  25% {
    -webkit-transform: rotate(2deg);
            transform: rotate(2deg);
  }

  75% {
    -webkit-transform: rotate(-2deg);
            transform: rotate(-2deg);
  }

  100% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
}

@keyframes tremor {
  0% {
    -webkit-transform: rotate(-2deg);
            transform: rotate(-2deg);
  }

  25% {
    -webkit-transform: rotate(2deg);
            transform: rotate(2deg);
  }

  75% {
    -webkit-transform: rotate(-2deg);
            transform: rotate(-2deg);
  }

  100% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
}

.showCase .casinoBox__buttons .cta .promocode:before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 102%;
  height: 100%;
  border-radius: 10px;
  background-image: url(../img/scratch.svg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  transition: 0.4s;
  pointer-events: none;
}

.showCase .casinoBox__buttons .cta .promocode.open {
  -webkit-user-select: initial;
     -moz-user-select: initial;
      -ms-user-select: initial;
          user-select: initial;
}

.showCase .casinoBox__buttons .cta .promocode.open:before {
  opacity: 0;
}

.showCase .casinoBox__buttons .cta .btn {
  width: 50%;
  border-radius: 10px;
  display: flex;
  padding: 10px 5px;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #FFF;
  font-size: 14px;
  font-weight: 700;
}

.showCase .casinoBox__info {
  width: 100%;
  border-radius: 10px;
  background: #F7F3FD;
  padding: 10px 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 15px;
}

.showCase .casinoBox__info li {
  color: #4E405F;
  font-size: 12px;
  font-weight: 500;
  line-height: 150%;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  max-width: 100%;
}

.showCase .casinoBox__mainBtn {
  margin-top: auto;
  width: 100%;
  color: #FFF;
  font-size: 20px;
  font-weight: 500;
  line-height: 150%;
  text-align: center;
  display: block;
  padding: 15px;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
}

.showCase .casinoBox__mainBtn:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 150%;
  height: 100%;
  background: linear-gradient(90deg, #4E2083 0%, #8E57CC 66.87%, #a573de 100%);
  transition: 0.4s;
  z-index: -1;
}

.showCase .casinoBox__mainBtn:hover:before {
  -webkit-transform: translateX(-32%);
          transform: translateX(-32%);
}

.showCase .casinoBox__linkBtn {
  font-size: 16px;
  font-weight: 500;
  line-height: 100%;
  margin: 4px 0;
  color: #6F3BA7;
  border-bottom: 1px solid #6F3BA7;
  transition: 0.4s;
}

.showCase .casinoBox__linkBtn:hover {
  border-color: transparent;
}

.showCase .casinoBox__license {
  color: #BCB6C5;
  text-align: center;
  font-size: 12px;
  line-height: 1.2;
  font-weight: 400;
}

.showCase .casinoBox .promoWindow {
  opacity: 0;
  pointer-events: none;
  background: white;
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  z-index: 3;
}

.showCase .casinoBox .promoWindow.show {
  opacity: 1;
  pointer-events: auto;
}

.showCase .casinoBox .promoWindow .colorBox {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 10px;
  border-radius: 10px;
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.8) 0%, rgba(255, 255, 255, 0.8) 100%), linear-gradient(180deg, #38ADC7 0%, #244CB3 100%);
}

.showCase .casinoBox .promoWindow .colorBox p {
  color: #1C2C53;
}

.showCase .casinoBox .promoWindow .colorBox button {
  background: #3152A4;
}

.showCase .casinoBox .promoWindow .colorBox__ttl {
  text-align: center;
  font-size: 24px;
  font-weight: 700;
  line-height: 150%;
}

.showCase .casinoBox .promoWindow .colorBox__info {
  text-align: center;
  font-size: 14px;
  font-weight: 500;
  line-height: 150%;
}

.showCase .casinoBox .promoWindow .colorBox__buttons {
  display: flex;
  gap: 5px;
}

.showCase .casinoBox .promoWindow .colorBox__buttons > * {
  width: 50%;
}

.showCase .casinoBox .promoWindow .colorBox__buttons .code {
  background: white;
  font-size: 20px;
  line-height: 1.2;
  font-weight: 700;
  padding: 13px 3px;
  border-radius: 10px;
  text-align: center;
}

.showCase .casinoBox .promoWindow .colorBox__buttons .copy {
  position: relative;
}

.showCase .casinoBox .promoWindow .colorBox__buttons .copy .tocopy {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  width: 100%;
  height: 100%;
  border-radius: 10px;
  padding: 10px 5px;
  color: #FFF;
  font-size: 14px;
  font-weight: 700;
}

.showCase .casinoBox .promoWindow .colorBox__buttons .copy .tocopy input {
  opacity: 0;
  position: absolute;
  left: -99999px;
}

.showCase .casinoBox .promoWindow .colorBox__buttons .copy .copied {
  display: none;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 3;
  border-radius: 10px;
  background: #FFF;
  align-items: center;
  justify-content: center;
  gap: 5px;
  color: #C8C0D6;
  font-size: 14px;
  font-weight: 700;
}

.showCase .casinoBox .promoWindow .colorBox__buttons .copy .copied.show {
  display: flex;
}

.showCase .casinoBox .promoWindow .colorBox.green {
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.8) 0%, rgba(255, 255, 255, 0.8) 100%), linear-gradient(180deg, #38C7AD 0%, #16AD49 100%);
}

.showCase .casinoBox .promoWindow .colorBox.green p {
  color: #104925;
}

.showCase .casinoBox .promoWindow .colorBox.green button {
  background: #3FB466;
}

.showCase .casinoBox .promoWindow .colorBox.orange {
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.7) 0%, rgba(255, 255, 255, 0.7) 100%), linear-gradient(180deg, #F1BF11 0%, #E7411D 100%);
}

.showCase .casinoBox .promoWindow .colorBox.orange p {
  color: #853823;
}

.showCase .casinoBox .promoWindow .colorBox.orange button {
  background: #F0603D;
}

.showCase .casinoBox.showPromocode .promoWindow {
  opacity: 1;
  pointer-events: auto;
}

.popup {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(20, 11, 56, 0.7);
  -webkit-backdrop-filter: blur(15px);
          backdrop-filter: blur(15px);
  z-index: 1000;
  display: none;
}

.popup .popup-container {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: calc(100% - 30px);
}

.popup .popupCasino {
  max-width: 770px;
}

.popup .popupCasino__content {
  opacity: 0;
  pointer-events: none;
  display: flex;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  margin: 0 auto;
}

.popup .popupCasino__content.open {
  opacity: 1;
  pointer-events: auto;
}

.popup .popupCasino__content.open .popupCasino__text {
  margin-left: -30px;
  transition: 0.4s;
}

.popup .popupCasino__images {
  width: calc(46% + 15px);
  width: 370px;
  border-radius: 30px 0 0 30px;
  overflow: hidden;
  position: relative;
}

.popup .popupCasino__images img {
  display: block;
  position: absolute;
  -o-object-fit: cover;
     object-fit: cover;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 105%;
  height: 105%;
}

.popup .popupCasino__images img:nth-child(1) {
  z-index: 3;
  -webkit-animation-name: offerAnim_2;
          animation-name: offerAnim_2;
  -webkit-animation-duration: 5s;
          animation-duration: 5s;
  -webkit-animation-timing-function: ease-in-out;
          animation-timing-function: ease-in-out;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
}

.popup .popupCasino__images img:nth-child(2) {
  z-index: 2;
  -webkit-animation-name: offerAnim_1;
          animation-name: offerAnim_1;
  -webkit-animation-duration: 5s;
          animation-duration: 5s;
  -webkit-animation-timing-function: ease-in-out;
          animation-timing-function: ease-in-out;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
}

.popup .popupCasino__images img:nth-child(3) {
  z-index: 1;
  -webkit-animation-name: offerAnim_bg;
          animation-name: offerAnim_bg;
  -webkit-animation-duration: 5s;
          animation-duration: 5s;
  -webkit-animation-timing-function: ease-in-out;
          animation-timing-function: ease-in-out;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
}

.popup .popupCasino__text {
  width: calc(54% + 15px);
  width: 430px;
  margin-left: -370px;
  background: white;
  position: relative;
  z-index: 5;
  border-radius: 20px;
  padding: 30px 40px;
}

.popup .popupCasino__logo {
  display: flex;
  gap: 10px;
  padding: 10px 0;
}

.popup .popupCasino__logo img {
  display: block;
  width: auto;
  height: 40px;
}

.popup .popupCasino__logo svg {
  display: block;
  width: 16px;
  height: auto;
}

.popup .popupCasino__ttl {
  color: #4E405F;
  font-size: 24px;
  font-weight: 700;
  line-height: 150%;
  margin-top: 10px;
}

.popup .popupCasino__descr {
  color: #4E405F;
  font-size: 16px;
  font-weight: 500;
  line-height: 150%;
  margin-top: 15px;
}

.popup .popupCasino__form {
  margin-top: 15px;
}

.popup .popupCasino .link {
  display: block;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  margin: 15px 0 0 0;
  color: #8F58CD;
  font-size: 14px;
  font-weight: 500;
  line-height: 150%;
  -webkit-text-decoration-line: underline;
          text-decoration-line: underline;
  background: transparent;
  cursor: pointer;
}

.popup .popupCasino .casinoBox__linkBtn {
  margin: -15px auto -10px;
  color: #8F58CD;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 1;
  background: transparent;
  border-bottom: 1px solid #8F58CD;
  display: block;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  transition: 0.4s;
}

.popup .popupCasino .casinoBox__linkBtn:hover {
  border-color: transparent;
}

.popup .popupCasino .exit-btn {
  position: absolute;
  right: 0;
  top: -20px;
  -webkit-transform: translate(0, -100%);
          transform: translate(0, -100%);
  width: 30px;
  height: 30px;
  cursor: pointer;
}

.popup .popupCasino .exit-btn svg {
  display: block;
  width: 100%;
  height: 100%;
}

.popup .popupCasino .exit-btn svg * {
  transition: 0.4s;
}

.popup .popupCasino .exit-btn:hover svg g {
  opacity: 1;
}

.popup .popupCasino .promoWindow {
  opacity: 0;
  pointer-events: none;
  background: white;
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: calc(100% - 90px);
  z-index: 3;
  border-radius: 20px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  -webkit-transform: scale(0.9);
          transform: scale(0.9);
  transition: 0.2s;
}

.popup .popupCasino .promoWindow.show {
  opacity: 1;
  pointer-events: auto;
  -webkit-transform: scale(1);
          transform: scale(1);
}

.popup .popupCasino .promoWindow .colorBox {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 15px;
  border-radius: 10px;
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.8) 0%, rgba(255, 255, 255, 0.8) 100%), linear-gradient(180deg, #38ADC7 0%, #244CB3 100%);
}

.popup .popupCasino .promoWindow .colorBox p {
  color: #1C2C53;
}

.popup .popupCasino .promoWindow .colorBox button {
  background: #3152A4;
}

.popup .popupCasino .promoWindow .colorBox__ttl {
  text-align: center;
  font-size: 24px;
  font-weight: 700;
  line-height: 150%;
}

.popup .popupCasino .promoWindow .colorBox__info {
  text-align: center;
  font-size: 14px;
  font-weight: 500;
  line-height: 150%;
}

.popup .popupCasino .promoWindow .colorBox__buttons {
  display: flex;
  gap: 5px;
}

.popup .popupCasino .promoWindow .colorBox__buttons > * {
  width: 50%;
}

.popup .popupCasino .promoWindow .colorBox__buttons .code {
  background: white;
  font-size: 20px;
  line-height: 1.2;
  font-weight: 700;
  padding: 13px 3px;
  border-radius: 10px;
  text-align: center;
}

.popup .popupCasino .promoWindow .colorBox__buttons .copy {
  position: relative;
}

.popup .popupCasino .promoWindow .colorBox__buttons .copy .tocopy {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  width: 100%;
  height: 100%;
  border-radius: 10px;
  padding: 10px 5px;
  color: #FFF;
  font-size: 14px;
  font-weight: 700;
}

.popup .popupCasino .promoWindow .colorBox__buttons .copy .tocopy input {
  opacity: 0;
  position: absolute;
  left: -99999px;
}

.popup .popupCasino .promoWindow .colorBox__buttons .copy .copied {
  display: none;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 3;
  border-radius: 10px;
  background: #FFF;
  align-items: center;
  justify-content: center;
  gap: 5px;
  color: #C8C0D6;
  font-size: 14px;
  font-weight: 700;
}

.popup .popupCasino .promoWindow .colorBox__buttons .copy .copied.show {
  display: flex;
}

.popup .popupCasino .promoWindow .colorBox.green {
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.8) 0%, rgba(255, 255, 255, 0.8) 100%), linear-gradient(180deg, #38C7AD 0%, #16AD49 100%);
}

.popup .popupCasino .promoWindow .colorBox.green p {
  color: #104925;
}

.popup .popupCasino .promoWindow .colorBox.green button {
  background: #3FB466;
}

.popup .popupCasino .promoWindow .colorBox.orange {
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.7) 0%, rgba(255, 255, 255, 0.7) 100%), linear-gradient(180deg, #F1BF11 0%, #E7411D 100%);
}

.popup .popupCasino .promoWindow .colorBox.orange p {
  color: #853823;
}

.popup .popupCasino .promoWindow .colorBox.orange button {
  background: #F0603D;
}

.popup .white {
  position: fixed;
  z-index: 10;
  background: white;
  border-radius: 30px 20px 20px 30px;
}

.popup .popupForm {
  max-width: 430px;
  border-radius: 20px;
  background: #FFF;
}

.popup .popupForm .scroll {
  max-height: calc(100vh - 120px);
  overflow: auto;
  padding: 30px 40px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.popup .popupForm.w570 {
  max-width: 570px;
}

.popup .popupForm.w570 .scroll {
  padding: 30px 60px;
}

.popup .popupForm .text {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.popup .popupForm .text h2 {
  color: #4E405F;
  font-size: 24px;
  font-weight: 700;
  line-height: 150%;
}

.popup .popupForm .text > p {
  color: #4E405F;
  font-size: 16px;
  font-weight: 500;
  line-height: 150%;
}

.popup .popupForm .x-btn {
  position: absolute;
  right: 0;
  top: -20px;
  -webkit-transform: translate(0, -100%);
          transform: translate(0, -100%);
  width: 30px;
  height: 30px;
  cursor: pointer;
}

.popup .popupForm .x-btn svg {
  display: block;
  width: 100%;
  height: 100%;
}

.popup .popupForm .x-btn svg * {
  transition: 0.4s;
}

.popup .popupForm .x-btn:hover svg g {
  opacity: 1;
}

.popup .thx {
  opacity: 0;
  pointer-events: none;
  position: absolute;
  z-index: 10;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%) scale(0.8);
          transform: translate(-50%, -50%) scale(0.8);
  width: calc(100% - 30px);
  max-height: 90vh;
  overflow: auto;
  background: white;
  border-radius: 20px;
}

.popup .thx.w570 {
  max-width: 570px;
}

.popup .thx.w570 .form {
  padding: 45px 60px;
}

.popup .thx .form {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 30px;
  padding: 40px;
}

.popup .thx .text {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.popup .thx .text p {
  color: #4E405F;
  font-size: 20px;
  font-weight: 700;
  line-height: 150%;
}

.popup .thx .text span {
  color: #4E405F;
  font-size: 14px;
  font-weight: 500;
  line-height: 150%;
}

.popup .thx .x-btn {
  position: absolute;
  top: 20px;
  right: 15px;
  width: 24px;
  height: 24px;
  cursor: pointer;
}

.popup .thx .x-btn svg * {
  transition: 0.4s;
}

.popup .thx .x-btn:hover svg * {
  fill: #7A32CB;
}

.popup.thxStep .popup-container {
  transition: 0.5s;
  -webkit-transform: translate(-50%, -50%) scale(0.8);
          transform: translate(-50%, -50%) scale(0.8);
  opacity: 0;
}

.popup.thxStep .thx {
  transition: 0.5s;
  -webkit-transform: translate(-50%, -50%) scale(1);
          transform: translate(-50%, -50%) scale(1);
  opacity: 1;
  pointer-events: auto;
}

.popup[data-popup="years21"] .popupForm.w570 .scroll {
  gap: 30px;
}

.popup[data-popup="years21"] .btns {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  gap: 20px;
}

.popup[data-popup="years21"] .link-btn {
  color: #8F58CD;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 1;
  background: transparent;
  border-bottom: 1px solid #8F58CD;
  display: block;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  transition: 0.4s;
}

.popup[data-popup="years21"] .link-btn:hover {
  border-color: transparent;
}

.popup[data-popup="years21"] .bottomRow {
  padding-top: 15px;
  border-top: 1px solid #C8C0D6;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.popup[data-popup="years21"] .bottomRow .check-box {
  width: 140px;
}

.popup[data-popup="years21"] .bottomRow > p {
  width: calc(100% - 150px);
  color: #000;
  font-size: 12px;
  font-weight: 500;
  line-height: 150%;
}

.regThx {
  display: none;
  background: #3FB466;
  padding: 15px;
  position: fixed;
  z-index: 900;
  left: 0;
  top: 0;
  width: 100%;
}

.regThx .flx {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 10px;
  color: #FFF;
  font-size: 20px;
  font-weight: 500;
  line-height: 150%;
}

@media screen and (max-width: 1200px) {
  .footer .container {
    max-width: 830px;
  }

  .footer__main {
    padding: 20px 15px;
  }

  .footer__main .age {
    font-size: 50px;
    width: 90px;
    min-width: 90px;
  }

  .heroBlock__img {
    height: 80%;
    width: 100%;
    background-size: contain;
  }

  .heroBlock .container {
    max-width: 830px;
  }

  .showCase .container {
    justify-content: center;
  }

  .showCase .casinoBox {
    width: calc(50% - 15px);
    max-width: 400px;
  }
}

@media screen and (max-width: 1024px) {
  .footer__bottom {
    padding: 20px 0 0;
  }

  .heroBlock .container {
    padding: 20px 0 20px 20px;
  }

  .heroBlock__marquee {
    width: calc(100% + 20px);
    margin-left: -20px;
  }

  .heroBlock__marquee p {
    font-size: 14px;
  }

  .showCase .casinoBox__linkBtn {
    margin-bottom: -1px;
  }

  .showCase .casinoBox .promoWindow .colorBox__ttl {
    font-size: 18px;
  }

  .showCase .casinoBox .promoWindow .colorBox__info {
    font-size: 12px;
  }

  .showCase .casinoBox .promoWindow .colorBox__buttons .code {
    padding: 8px 3px;
    border-radius: 5px;
  }

  .showCase .casinoBox .promoWindow .colorBox__buttons .copy .tocopy {
    padding: 8px 3px;
    border-radius: 5px;
  }

  .showCase .casinoBox .promoWindow .colorBox__buttons .copy .copied {
    padding: 8px 3px;
    border-radius: 5px;
  }

  .popup .popupCasino {
    max-width: 330px;
  }

  .popup .popupCasino__content {
    flex-direction: column;
    width: 100%;
  }

  .popup .popupCasino__content.open .popupCasino__text {
    margin-top: -20px;
    margin-left: 0;
  }

  .popup .popupCasino__images {
    width: 100%;
    height: 140px;
    border-radius: 20px 20px 0 0;
  }

  .popup .popupCasino__text {
    width: 100%;
    margin-left: 0;
    margin-top: -100px;
    padding: 15px 15px 20px;
  }

  .popup .popupCasino__logo {
    padding: 5px 0;
    justify-content: center;
  }

  .popup .popupCasino__logo img {
    height: 30px;
  }

  .popup .popupCasino__ttl {
    margin-top: 15px;
    font-size: 16px;
  }

  .popup .popupCasino__descr {
    font-size: 14px;
    margin-top: 10px;
  }

  .popup .popupCasino__form .input-box:before {
    padding: 7px;
  }

  .popup .popupCasino__form .input-box input {
    padding: 7px;
  }

  .popup .popupCasino__form .form-btn {
    font-size: 20px;
    padding: 10px;
  }

  .popup .popupCasino .exit-btn {
    top: -10px;
  }

  .popup .popupCasino .promoWindow {
    padding: 15px;
    height: calc(100% - 55px);
    justify-content: space-evenly;
  }

  .popup .popupCasino .promoWindow .colorBox {
    padding: 10px;
  }

  .popup .popupCasino .promoWindow .colorBox__ttl {
    font-size: 18px;
  }

  .popup .popupCasino .promoWindow .colorBox__info {
    font-size: 12px;
  }

  .popup .popupCasino .promoWindow .colorBox__buttons .code {
    padding: 8px 3px;
    border-radius: 5px;
  }

  .popup .popupCasino .promoWindow .colorBox__buttons .copy .tocopy {
    padding: 8px 3px;
    border-radius: 5px;
  }

  .popup .popupCasino .promoWindow .colorBox__buttons .copy .copied {
    border-radius: 5px;
  }
}

@media screen and (max-width: 768px) {
  .footer {
    padding: 85px 0 50px;
  }

  .footer .container {
    max-width: 400px;
  }

  .footer__main {
    flex-direction: column;
    gap: 15px;
  }

  .footer__main .age {
    font-size: 40px;
    width: unset;
    min-width: unset;
    text-align: left;
  }

  .footer__main .text h2 {
    font-size: 16px;
  }

  .footer__main .text p {
    font-size: 12px;
  }

  .footer__bottom {
    flex-direction: column;
    gap: 20px;
    align-items: center;
    text-align: center;
  }

  form,
  .form {
    gap: 20px;
  }

  form .link,
  .form .link {
    font-size: 14px;
  }

  form .alert,
  .form .alert {
    font-size: 14px;
  }

  form .check-box label,
  .form .check-box label {
    font-size: 10px;
    padding-left: 24px;
  }

  form .check-box label .ico,
  .form .check-box label .ico {
    width: 16px;
    height: 16px;
  }

  form .check-box label .ico svg,
  .form .check-box label .ico svg {
    width: 16px;
    height: 16px;
  }

  .heroBlock {
    padding: 15px 0;
  }

  .heroBlock .container {
    padding: 15px 0 15px 15px;
    border-radius: 10px;
    max-width: 400px;
    gap: 15px;
  }

  .heroBlock__ttl {
    font-size: 16px;
    max-width: 200px;
  }

  .heroBlock__btn {
    width: calc(100% - 15px);
    max-width: unset;
    font-size: 16px;
    padding: 8px;
  }

  .heroBlock__marquee {
    width: calc(100% + 15px);
    margin-left: -15px;
    order: unset;
    margin-top: 0;
  }

  .heroBlock__marquee p {
    font-size: 10px;
  }

  .showCase {
    padding: 15px 0;
  }

  .showCase .casinoBox {
    width: 100%;
  }

  .showCase .casinoBox__images {
    height: 38.9vw;
    max-height: 170px;
    border-radius: 20px 20px 0 0;
  }

  .showCase .casinoBox__text {
    padding: 15px 10px 20px;
    gap: 10px;
    height: -webkit-max-content;
    height: -moz-max-content;
    height: max-content;
  }

  .showCase .casinoBox__logo {
    padding: 5px;
  }

  .showCase .casinoBox__logo img {
    height: 30px;
  }

  .showCase .casinoBox__buttons {
    gap: 5px;
  }

  .showCase .casinoBox__buttons p {
    font-size: 18px;
  }

  .showCase .casinoBox__buttons span {
    font-size: 12px;
  }

  .showCase .casinoBox__buttons .cta {
    margin-top: 5px;
  }

  .showCase .casinoBox__buttons .cta .promocode {
    font-size: 18px;
    padding: 10px 5px;
    border-radius: 5px;
  }

  .showCase .casinoBox__buttons .cta .promocode:before {
    border-radius: 5px;
  }

  .showCase .casinoBox__buttons .cta .btn {
    font-size: 12px;
    border-radius: 5px;
  }

  .showCase .casinoBox__info li {
    font-size: 10px;
  }

  .showCase .casinoBox__mainBtn {
    padding: 10px;
  }

  .popup .popupCasino .link {
    margin: 15px auto 0;
  }

  .popup .popupCasino .casinoBox__linkBtn {
    margin: -5px auto 0;
  }

  .popup .popupForm {
    max-width: 330px;
  }

  .popup .popupForm .scroll {
    gap: 10px;
    padding: 20px 15px;
  }

  .popup .popupForm.w570 {
    max-width: 330px;
  }

  .popup .popupForm.w570 .scroll {
    gap: 10px;
    padding: 20px 15px;
  }

  .popup .popupForm form {
    margin-top: 10px;
  }

  .popup .popupForm .text h2 {
    font-size: 20px;
  }

  .popup .popupForm .text > p {
    font-size: 14px;
  }

  .popup .thx.w570 {
    max-width: 330px;
  }

  .popup .thx.w570 .form {
    padding: 45px 15px;
  }

  .popup .thx .form {
    gap: 20px;
    padding: 45px 15px;
  }

  .popup[data-popup="years21"] .popupForm.w570 .scroll {
    gap: 20px;
  }

  .popup[data-popup="years21"] .bottomRow {
    flex-direction: column;
    gap: 5px;
  }

  .popup[data-popup="years21"] .bottomRow .check-box {
    width: 100%;
  }

  .popup[data-popup="years21"] .bottomRow .check-box label {
    font-size: 12px;
  }

  .popup[data-popup="years21"] .bottomRow > p {
    width: 100%;
  }

  .regThx .flx {
    font-size: 14px;
  }

  .regThx .flx svg {
    width: 20px;
    height: auto;
    min-width: 20px;
  }
}