/* Animations */
/* GSAP */
.fade-in,
.fade-in-delay,
.fade-up,
.fade-up-delay,
.fade-in-right,
.fade-in-right-delay,
.fade-in-left,
.fade-in-left-delay,
.fade-down,
.fade-down-delay,
.scale-in {
  opacity: 0;
  will-change: opacity;
  -webkit-transition: 0.3s cubic-bezier(0.31, 1.11, 0.99, 1.01);
  transition: 0.3s cubic-bezier(0.31, 1.11, 0.99, 1.01);
}

.fade-up,
.fade-up-delay {
  will-change: transform;
  -webkit-transform: translateY(20px);
  transform: translateY(20px);
  /* animation distance */
  -webkit-transition: 0.3s cubic-bezier(0.31, 1.11, 0.99, 1.01);
  transition: 0.3s cubic-bezier(0.31, 1.11, 0.99, 1.01);
}

.scale-in {
  will-change: transform;
  -webkit-transform: scale(0.6) translateY(40px);
  transform: scale(0.6) translateY(40px);
}

.fade-down,
.fade-down-delay {
  will-change: transform;
  -webkit-transform: translateY(-20px);
  transform: translateY(-20px);
  /* animation distance */
  -webkit-transition: 0.3s cubic-bezier(0.31, 1.11, 0.99, 1.01);
  transition: 0.3s cubic-bezier(0.31, 1.11, 0.99, 1.01);
}

.fade-in-right,
.fade-in-right-delay {
  will-change: transform;
  -webkit-transform: translateX(-20px);
  transform: translateX(-20px);
  /* animation distance */
  -webkit-transition: 0.3s cubic-bezier(0.31, 1.11, 0.99, 1.01);
  transition: 0.3s cubic-bezier(0.31, 1.11, 0.99, 1.01);
}

.fade-in-left,
.fade-in-left-delay {
  will-change: transform;
  -webkit-transform: translateX(20px);
  transform: translateX(20px);
  /* animation distance */
  -webkit-transition: 0.3s cubic-bezier(0.31, 1.11, 0.99, 1.01);
  transition: 0.3s cubic-bezier(0.31, 1.11, 0.99, 1.01);
}

/* Breakpoints */
/* Mixins */
/* x-kom styles */
html,
body {
  font-family: "Nunito", sans-serif;
}

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

html {
  overflow-x: hidden;
  font-size: 10px;
}

body {
  overflow-x: hidden !important;
  color: #f9f9f9;
  background: #000000;
  font-family: "Rajdhani", sans-serif;
  padding-right: 0 !important;
}

strong {
  font-weight: 600;
}

iframe {
  border-radius: 16px;
}

img {
  -o-object-fit: cover;
  object-fit: cover;
}

.col-12 {
  padding: 0 15px;
}

.container {
  max-width: 1156px;
}

.section {
  margin: 64px 0;
}

@media (min-width: 768px) {
  .section {
    margin: 120px 0;
  }
}

.section .headline {
  max-width: 880px;
  margin-left: auto;
  margin-right: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  color: inherit;
}

.tippy-content {
  font-size: 1.4rem;
  font-weight: 400px;
  line-height: 2rem;
  padding: 12px 16px;
  font-family: "Lato", sans-serif;
  color: #1a1a1a;
}

.cta {
  border-radius: 200px;
  font-weight: 400;
  border: none;
  height: 40px;
  padding: 0 24px;
  font-size: 1.4rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  background: #0082fa;
  color: #fff !important;
  line-height: 1.4rem;
  z-index: 1;
}

@media (min-width: 576px) {
  .cta {
    font-size: 1.6rem;
    line-height: 1.6rem;
    height: 42px;
    padding: 0 32px;
  }
}

.cta:hover {
  background: #0067c7;
  color: #fff;
}

.cta:active {
  background: #004d94;
  color: #fff;
}

.cta.wider {
  width: 100%;
  max-width: 180px;
}

.cta.fullwidth {
  max-width: unset;
  width: 100%;
}

.cta--secondary {
  background: #e6f3ff;
  border: none;
  color: #158eff;
}

.cta--secondary:hover {
  background: #c7e4ff;
  color: #0067c7;
}

.cta--secondary:active {
  background: #a8d5ff;
  color: #004d94;
}

.cta--white {
  background: #fff;
  color: #000;
}

.cta--white:hover {
  background: #e6e6e6;
  color: #000;
}

.cta--white:active {
  background: #d9d9d9;
  color: #000;
}

.cta--white--outline {
  background: none;
  color: #fff;
  border-radius: 200px;
  border: 1px solid #fff;
}

.cta--gray {
  background: #575757;
  color: #fff;
}

.cta--gray:hover {
  background: #3d3d3d;
  color: #fff;
}

.cta--gray:active {
  background: #000;
  color: #fff;
}

.cta--gray--secondary {
  background: #f0f0f0;
  border: none;
  color: #666666;
}

.cta--gray--secondary:hover {
  background: #e0e0e0;
  color: #333333;
}

.cta--gray--secondary:active {
  background: #cccccc;
  color: #1a1a1a;
}

.cta--violet {
  background: #6e44b6;
  color: #fff;
}

.cta--violet:hover {
  background: #583691;
  color: #fff !important;
}

.cta--violet:active {
  background: #2b1a47;
  color: #fff;
}

.cta--violet.cta--outline {
  background: none;
  border: 1px solid #b980ff;
  color: #b980ff !important;
}

.cta--violet.cta--outline:hover {
  background: #27143d;
  border-color: #8c61c2;
  color: #b980ff !important;
}

.cta--violet.cta--outline:active {
  opacity: 0.6;
}

.cta--violet--secondary {
  background: white;
  border: none;
  color: #9d4dff;
}

.cta--violet--secondary:hover {
  background: white;
  border: none;
  color: #811aff;
}

.cta--violet--secondary:active {
  background: #f1e6ff;
  border: none;
  color: #5000b3;
}

.cta--violet--outline {
  border: 1px solid #b980ff;
  background: none;
  color: #b980ff;
}

.cta--pink {
  background: #fa0064;
  color: #fff;
}

.cta--pink:hover {
  background: #c70050;
  color: #fff;
}

.cta--pink:active {
  background: #94003b;
  color: #fff;
}

.cta--pink--secondary {
  background: #ffe1ed;
  border: none;
  color: #c70050;
}

.cta--pink--secondary:hover {
  background: #ffd1e4;
  border: none;
  color: #c70050;
}

.cta--pink--secondary:active {
  background: #ffbdd7;
  border: none;
  color: #94003b;
}

.cta--big {
  height: 48px;
  padding: 0 38px;
  font-size: 1.6rem;
}

.cta--medium {
  height: 40px;
  font-size: 1.4rem;
  padding: 0 32px;
}

.cta--small {
  height: 36px;
  padding: 0 20px;
  font-size: 16px;
}

.cta--circle {
  padding: 0;
  height: 44px;
  width: 44px;
}

/* Buttons */
.g-btn {
  background-color: unset;
  border: 1px solid #b980ff;
  border-radius: 8px;
  width: 115px;
  color: #b980ff;
  font-family: "Rajdhani", sans-serif;
  font-size: 14px;
  line-height: 20px;
  white-space: nowrap;
  text-align: center;
  padding: 10px 20px;
  text-decoration: none;
  -webkit-transition: 0.15s;
  transition: 0.15s;
  font-weight: 400;
  cursor: pointer;
}

.g-btn:hover {
  background: rgba(185, 128, 255, 0.08);
}

.g-btn:active {
  opacity: 0.6;
}

.g-btn.disabled {
  color: #949494;
  border-color: #949494;
}

.g-btn.disabled:hover {
  color: #5d5d5d;
  border-color: #5d5d5d;
  background-color: unset;
}

.g-btn.disabled:active {
  color: #c7c7c7;
  border-color: #c7c7c7;
  background-color: unset;
  opacity: 1;
}

.g-btn.tab {
  border-radius: 8px;
  padding: 12px 19px;
  font-size: 1.6rem;
  font-weight: 500;
  text-transform: uppercase;
  width: 150px;
}

@media (min-width: 768px) {
  .g-btn.tab {
    width: 164px;
  }
}

.pill {
  max-width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  color: #4d4d4d;
  border: 1px solid #cccccc;
  border-radius: 512px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 6px 12px;
  font-size: 1.4rem;
  line-height: 16px;
  vertical-align: baseline;
  -ms-flex-item-align: start;
  align-self: flex-start;
  margin-bottom: 10px;
  font-weight: 400;
}

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type="number"] {
  -moz-appearance: textfield;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 500;
}

h1 {
  font-weight: 600;
  margin-bottom: 0;
  line-height: 1.2;
  font-size: 2.6rem;
}

@media (min-width: 576px) {
  h1 {
    font-size: 4rem;
  }
}

@media (min-width: 992px) {
  h1 {
    font-size: 4.6rem;
  }
}

h2 {
  margin-bottom: 16px;
  font-weight: 600;
  font-size: 2.2rem;
}

@media (min-width: 576px) {
  h2 {
    font-size: 2.6rem;
  }
}

@media (min-width: 992px) {
  h2 {
    font-size: 3.2rem;
  }
}

h3 {
  color: #949494;
  font-weight: 500;
  font-size: 1.6rem;
  line-height: 1.4;
}

@media (min-width: 576px) {
  h3 {
    font-size: 1.7rem;
  }
}

@media (min-width: 992px) {
  h3 {
    font-size: 1.8rem;
  }
}

h4 {
  font-size: 1.9rem;
  margin-bottom: 4px;
  font-weight: 600;
}

@media (min-width: 992px) {
  h4 {
    font-size: 2rem;
  }
}

h5 {
  font-size: 1rem;
}

@media (min-width: 992px) {
  h5 {
    font-size: 1.1rem;
  }
}

@media (min-width: 992px) {
  h6 {
    font-size: 1rem;
  }
}

p {
  font-weight: 500;
  color: #949494;
  margin-bottom: 0;
  font-size: 1.6rem;
  line-height: 1.3;
}

@media (min-width: 576px) {
  p {
    font-size: 1.7rem;
  }
}

@media (min-width: 992px) {
  p {
    font-size: 1.8rem;
  }
}

/* Utilities */
.nobr {
  display: inline-block;
}

.hide {
  opacity: 0;
  visibility: hidden;
}

.show {
  display: block !important;
}

.hide-mobile {
  display: none;
}

@media (min-width: 576px) {
  .hide-desktop {
    display: none;
  }
  .hide-mobile {
    display: inherit;
  }
}

.box-shadow {
  -webkit-box-shadow: 0 0 2px 1px rgba(0, 0, 0, 0.08), 0 4px 8px 0 rgba(0, 0, 0, 0.08);
  box-shadow: 0 0 2px 1px rgba(0, 0, 0, 0.08), 0 4px 8px 0 rgba(0, 0, 0, 0.08);
}

.highlight {
  color: #6e44b6;
}

.border-bottom {
  border-radius: 20px 20px 0 0 !important;
  border-color: #b980ff !important;
}

.anchor {
  position: absolute;
  margin-top: -120px;
}

/* Layout */
.header {
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 100;
  padding-top: 0;
  margin-top: 0;
  overflow: hidden;
}

.header__logos-wrapper {
  height: auto;
  width: 100%;
  padding: 20px 25px 20px 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

@media (min-width: 576px) {
  .header__logos-wrapper {
    padding: 30px 30px 30px 10px;
  }
}

.header #brand {
  height: 60px;
  -webkit-transition: 0.3s cubic-bezier(0.31, 1.11, 0.99, 1.01);
  transition: 0.3s cubic-bezier(0.31, 1.11, 0.99, 1.01);
}

@media (min-width: 576px) {
  .header #brand {
    height: 84px;
  }
}

.header #brand:hover {
  opacity: 0.9;
}

.header #vendor {
  height: 16px;
  -webkit-transition: 0.3s cubic-bezier(0.31, 1.11, 0.99, 1.01);
  transition: 0.3s cubic-bezier(0.31, 1.11, 0.99, 1.01);
}

@media (min-width: 576px) {
  .header #vendor {
    height: 24px;
  }
}

.header #vendor:hover {
  opacity: 0.9;
}

.header-menu {
  position: fixed;
  top: -120px;
  z-index: 100;
  width: 100%;
  padding: 12px 0;
  -webkit-transition: 0.6s;
  transition: 0.6s;
  height: 80px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border-bottom: 1px solid #333333;
  font-family: "Lato", sans-serif;
  background: #1a1a1a;
}

.header-menu .hamburger {
  cursor: pointer;
}

@media (min-width: 992px) {
  .header-menu .hamburger {
    display: none;
  }
}

.header-menu__nav {
  height: 72px;
  padding-left: 21px;
  padding-right: 21px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-transition: 0.6s;
  transition: 0.6s;
}

.header-menu__nav-desktop-menu {
  display: none;
}

@media (min-width: 992px) {
  .header-menu__nav-desktop-menu {
    display: initial;
  }
}

.header-menu__nav-desktop-menu ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin: 0;
}

.header-menu__nav-desktop-menu ul .nav__link:hover > li {
  color: #fff;
}

.header-menu__nav-desktop-menu ul a li {
  color: #949494;
  white-space: nowrap;
  -webkit-transition: 0.3s cubic-bezier(0.31, 1.11, 0.99, 1.01);
  transition: 0.3s cubic-bezier(0.31, 1.11, 0.99, 1.01);
  font-size: 1.4rem;
}

.header-menu__nav-desktop-menu .cta {
  margin-left: 48px;
  white-space: nowrap;
}

.header-menu #brand-white {
  width: 100%;
  height: 36px;
  -webkit-transition: 0.3s cubic-bezier(0.31, 1.11, 0.99, 1.01);
  transition: 0.3s cubic-bezier(0.31, 1.11, 0.99, 1.01);
}

.header-menu #brand-white path {
  fill: #fff;
  -webkit-transition: 0.3s cubic-bezier(0.31, 1.11, 0.99, 1.01);
  transition: 0.3s cubic-bezier(0.31, 1.11, 0.99, 1.01);
}

@media (min-width: 768px) {
  .header-menu #brand-white {
    height: 40px;
  }
}

.header-menu #vendor {
  height: 16px;
}

@media (min-width: 576px) {
  .header-menu #vendor {
    height: 24px;
  }
}

.header-menu .navbar-wrapper {
  width: 100vw;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  -webkit-transition: 0.3s cubic-bezier(0.31, 1.11, 0.99, 1.01);
  transition: 0.3s cubic-bezier(0.31, 1.11, 0.99, 1.01);
}

.header-menu .navbar-overlay-bg {
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0.6;
}

.header-menu .navbar {
  background: #fff;
  border-radius: 16px;
  width: 130px;
  position: fixed;
  right: 16px;
  top: 120px;
  -webkit-transition: 0.3s cubic-bezier(0.31, 1.11, 0.99, 1.01);
  transition: 0.3s cubic-bezier(0.31, 1.11, 0.99, 1.01);
}

.header-menu .navbar ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  list-style-type: none;
  padding: 0;
  margin: 0 auto;
  text-align: center;
}

.header-menu .navbar li {
  font-size: 1.6rem;
  font-weight: 500;
}

.header-menu .nav__link {
  color: #000;
  margin-left: 48px;
}

.header-menu .nav__link li {
  pointer-events: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.header-menu .nav__link #nohover {
  background: inherit;
  margin-left: 0;
  padding: 0;
}

.header-menu .nav__link:hover > li {
  background-color: #f7f7f7;
}

@media (min-width: 992px) {
  .header-menu .nav__link:hover > li {
    background-color: unset;
  }
}

.header-menu .nav-link.active {
  background: none;
  color: unset;
}

.header-menu .nav-link.active .navbar-active {
  visibility: visible;
  opacity: 1;
}

.header-menu .offcanvas-header {
  padding: 24px 24px 12px 24px;
}

.header-menu .offcanvas-end {
  width: 300px;
}

.header-menu .offcanvas-body {
  padding: 0;
}

.header-menu .offcanvas-body .cta {
  margin-left: 20px;
  width: 251px;
}

.header-menu #offcanvasRightLabel {
  font-weight: 600;
  margin: 0;
}

.header-menu ul {
  list-style-type: none;
  padding: 0;
}

.header-menu ul li {
  font-size: 1.6rem;
  padding: 12px 0;
  padding-left: 20px;
}

@media (min-width: 992px) {
  .header-menu ul li {
    padding-left: 0;
  }
}

.top {
  position: relative;
  overflow: hidden;
  margin-left: auto;
  margin-right: auto;
  margin-top: 0;
  padding-top: 0;
}

.top__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  height: 100vh;
  min-height: 440px;
  margin: 0 auto;
  padding-top: 50px;
}

@media (min-width: 1200px) {
  .top__wrapper {
    padding-top: 60px;
  }
}

.top__wrapper--2 {
  background-image: -webkit-gradient(
      linear,
      left top,
      left bottom,
      from(0),
      color-stop(0%, transparent),
      color-stop(90%, rgba(0, 0, 0, 0.8))
    ),
    url("../../../../dev/assets/img/main/bg-2.jpg");
  background-image: linear-gradient(0, transparent 0%, rgba(0, 0, 0, 0.8) 90%), url("../../../../dev/assets/img/main/bg-2.jpg");
}

.top__wrapper--3 {
  background-image: -webkit-gradient(
    linear,
    left top,
    left bottom,
    from(0),
    color-stop(0%, transparent),
    color-stop(0%, rgba(0, 0, 0, 0.5))
  );
  background-image: linear-gradient(0, transparent 0%, rgba(0, 0, 0, 0.5) 0%);
}

.top__wrapper--4 {
  background-image: linear-gradient(120deg, #a1c4fd 0%, #c2e9fb 100%);
  padding-top: 80px;
  height: 580px;
}

.top__wrapper--4 .top__copy {
  text-align: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

@media (min-width: 992px) {
  .top__wrapper--4 .top__copy {
    text-align: start;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}

.top__wrapper #arrows-down-link {
  height: 60px;
  width: 60px;
  position: absolute;
  bottom: 80px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.top__wrapper #arrows-down-link img {
  position: absolute;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  pointer-events: none;
  -webkit-animation: 2.2s move forwards infinite;
  animation: 2.2s move forwards infinite;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  -webkit-animation-delay: 4s;
  animation-delay: 4s;
  opacity: 0;
}

@-webkit-keyframes move {
  0% {
    bottom: 60px;
    opacity: 0;
  }
  40% {
    bottom: 30px;
    opacity: 1;
  }
  100% {
    opacity: 0;
    bottom: 0;
  }
}

@keyframes move {
  0% {
    bottom: 60px;
    opacity: 0;
  }
  40% {
    bottom: 30px;
    opacity: 1;
  }
  100% {
    opacity: 0;
    bottom: 0;
  }
}

.top__copy {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  cursor: default;
}

.top__copy h1 {
  margin-bottom: 16px;
}

@media (min-width: 576px) {
  .top__copy h1 {
    margin-bottom: 24px;
  }
}

.top__copy h2 {
  margin-bottom: 0;
}

.top__copy h3 {
  font-weight: 300;
  margin-bottom: 10px;
}

.top__copy--center {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
}

.top__copy--left {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  text-align: left;
  color: #fff;
}

.top__image {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.top__image img {
  height: 100%;
  max-height: 240px;
  -o-object-fit: contain;
  object-fit: contain;
  position: relative;
}

@media (min-width: 576px) {
  .top__image img {
    max-height: 300px;
    top: 0;
  }
}

@media (min-width: 992px) {
  .top__image img {
    max-height: 320px;
    top: 0;
    left: 10%;
  }
}

@media (min-width: 1200px) {
  .top__image img {
    max-height: 380px;
  }
}

.top .plyr__video-embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  pointer-events: none;
  overflow: hidden;
}

.top .plyr__video-embed iframe {
  width: 100vw;
  height: 56.25vw;
  /* Given a 16:9 aspect ratio, 9/16*100 = 56.25 */
  min-height: 100vh;
  min-width: 177.77vh;
  /* Given a 16:9 aspect ratio, 16/9*100 = 177.77 */
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.steps {
  margin: 0 auto;
}

.steps__item {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 100%;
  min-height: 200px;
  max-width: 240px;
  text-align: center;
  padding: 30px 20px 12px 20px;
  margin: 0 auto;
  border-radius: 16px;
  -webkit-box-shadow: rgba(0, 0, 0, 0.02) 0px 20px 25px -5px, rgba(0, 0, 0, 0.01) 0px 10px 10px -5px;
  box-shadow: rgba(0, 0, 0, 0.02) 0px 20px 25px -5px, rgba(0, 0, 0, 0.01) 0px 10px 10px -5px;
  -webkit-transition: 0.3s cubic-bezier(0.31, 1.11, 0.99, 1.01);
  transition: 0.3s cubic-bezier(0.31, 1.11, 0.99, 1.01);
  font-size: 1.1rem;
  background: #fff;
}

.steps__item:hover {
  -webkit-box-shadow: rgba(0, 0, 0, 0.05) 0px 20px 25px -5px, rgba(0, 0, 0, 0.02) 0px 10px 10px -5px;
  box-shadow: rgba(0, 0, 0, 0.05) 0px 20px 25px -5px, rgba(0, 0, 0, 0.02) 0px 10px 10px -5px;
  -webkit-transform: translateY(-4px);
  transform: translateY(-4px);
}

.steps__item img {
  /*    width: 140px;
      height: 140px; */
  margin-bottom: 16px;
  height: 100%;
  width: 100%;
  max-height: 60px;
  -o-object-fit: contain;
  object-fit: contain;
}

.steps__item-coupon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  cursor: pointer;
  border: 1px dashed #6e44b6;
  border-radius: 200px;
  height: 40px;
  padding: 0 26px;
  -webkit-transition: 0.3s cubic-bezier(0.31, 1.11, 0.99, 1.01);
  transition: 0.3s cubic-bezier(0.31, 1.11, 0.99, 1.01);
  margin-bottom: 14px;
  white-space: nowrap;
}

.features__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-top: 46px;
  position: relative;
}

@media (min-width: 768px) {
  .features__wrapper {
    margin-left: -16px;
    margin-right: -16px;
  }
}

.features__wrapper-bg {
  position: absolute;
  min-width: 100vw;
  -o-object-fit: contain;
  object-fit: contain;
  z-index: -1;
  top: 52%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.features__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  padding: 0;
  background-color: #1a1a1a;
  -webkit-box-shadow: none;
  box-shadow: none;
}

@media (min-width: 768px) {
  .features__row {
    -webkit-box-shadow: 0 0 4px 2px rgba(0, 0, 0, 0.12), 0 8px 12px 0 rgba(0, 0, 0, 0.12);
    box-shadow: 0 0 4px 2px rgba(0, 0, 0, 0.12), 0 8px 12px 0 rgba(0, 0, 0, 0.12);
  }
}

.features__row:first-child {
  border-radius: 8px 8px 0 0;
  border: 1px solid #333;
  border-bottom: none;
  padding-top: 32px;
}

.features__row:nth-child(2) {
  border-radius: 0;
  border: 1px solid #333;
  border-top: none;
  border-bottom: none;
}

.features__row:nth-child(3) {
  border-radius: 0 0 8px 8px;
  border: 1px solid #333;
  border-top: none;
}

@media (min-width: 768px) {
  .features__row {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    background-color: unset;
    -webkit-box-shadow: none;
    box-shadow: none;
    border: none !important;
  }
}

.features__card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  padding: 0 24px;
  margin-bottom: 32px;
  padding-left: 48px;
}

@media (min-width: 768px) {
  .features__card {
    margin-bottom: 0;
    margin: 16px;
    background-color: #1a1a1a;
    border: 1px solid #333;
    border-radius: 8px;
    -webkit-box-shadow: 0 0 4px 2px rgba(0, 0, 0, 0.12), 0 8px 12px 0 rgba(0, 0, 0, 0.12);
    box-shadow: 0 0 4px 2px rgba(0, 0, 0, 0.12), 0 8px 12px 0 rgba(0, 0, 0, 0.12);
    padding: 24px 32px;
    margin-bottom: 24px;
  }
}

@media (min-width: 992px) {
  .features__card {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
  }
}

.features__card.w-25,
.features__card.w-50 {
  width: 100% !important;
}

@media (min-width: 768px) {
  .features__card.w-25 {
    width: 25% !important;
  }
}

@media (min-width: 768px) {
  .features__card.w-50 {
    width: 50% !important;
  }
}

.features__card .features__icon {
  min-width: 48px;
  min-height: 48px;
  max-width: 48px;
  max-height: 48px;
  position: relative;
  margin-bottom: 24px;
  display: none;
}

@media (min-width: 768px) {
  .features__card .features__icon {
    display: block;
  }
}

@media (min-width: 992px) {
  .features__card .features__icon {
    margin-right: 24px;
    margin-bottom: unset;
  }
}

.features__card .features__icon img {
  height: 100%;
  width: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.features__card .features__copy {
  max-width: 400px;
  position: relative;
}

.features__card .features__copy::before {
  position: absolute;
  top: 6px;
  left: -24px;
  content: "";
  height: 8px;
  width: 8px;
  background: #773dbd;
}

@media (min-width: 768px) {
  .features__card .features__copy::before {
    position: unset;
  }
}

.bgate {
  height: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 100%;
  text-align: center;
  position: relative;
  max-height: 200px;
  overflow: hidden;
  margin-top: 144px;
  background: -webkit-gradient(
    linear,
    left top,
    left bottom,
    from(0),
    color-stop(0%, rgba(0, 0, 0, 0.5)),
    color-stop(10%, transparent),
    color-stop(90%, transparent),
    to(rgba(0, 0, 0, 0.5))
  );
  background: linear-gradient(0, rgba(0, 0, 0, 0.5) 0%, transparent 10%, transparent 90%, rgba(0, 0, 0, 0.5) 100%);
}

@media (min-width: 768px) {
  .bgate {
    margin-top: 200px;
    max-height: 400px;
  }
}

.bgate #bgate__video {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 200px;
  -o-object-fit: cover;
  object-fit: cover;
  z-index: -1;
  -webkit-transform: scale(1.4);
  transform: scale(1.4);
  opacity: 0;
}

@media (min-width: 768px) {
  .bgate #bgate__video {
    height: 400px;
  }
}

.bgate__flash {
  position: fixed;
  height: 100vh;
  width: 100vw;
  background: radial-gradient(circle, rgba(110, 68, 182, 0) 0%, rgba(110, 68, 182, 0.2) 100%);
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  opacity: 0;
  visibility: hidden;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  pointer-events: none;
}

.bgate__light {
  position: absolute;
  width: 500px;
  height: 20px;
  background: radial-gradient(circle, #6e44b6 3%, rgba(110, 68, 182, 0.3) 105%);
  background-repeat: no-repeat;
  border: none;
  opacity: 0.3;
}

.bgate__copy {
  position: relative;
  z-index: 3;
  opacity: 0;
}

.bgate__edge-bottom,
.bgate__edge-top {
  position: absolute;
  z-index: 2;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}

.bgate__edge-top {
  top: 0;
}

.bgate__edge-bottom {
  bottom: 0;
}

.products__bg {
  position: absolute;
  z-index: -1;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.products .slider__container {
  max-width: unset;
}

.products .slider__item {
  max-width: 480px;
}

@media (min-width: 768px) {
  .products .slider__item {
    max-width: unset;
  }
}

.products .slider__item:hover {
  border: 1px solid #333;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.products .slider__item img {
  max-width: 330px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 0;
}

.products__card:hover {
  cursor: -webkit-grab;
  cursor: grab;
}

@media (min-width: 768px) {
  .products__card:hover {
    cursor: default;
  }
}

.products__card h2 {
  text-align: center;
}

.products__card-features {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.products__card-features-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-bottom: 12px;
}

@media (min-width: 576px) {
  .products__card-features-item {
    margin-bottom: 16px;
  }
}

.products__card-features-item h4:first-child {
  text-align: start;
}

.products__card-features-item h4:last-child {
  text-align: end;
}

.products__card-features-item:nth-child(5) {
  border-bottom: 1px solid #333333;
  padding-bottom: 20px;
  margin-bottom: 20px;
}

.products__card-features-item h4 {
  font-weight: 500 !important;
  color: #949494 !important;
  font-size: 1.6rem;
  margin-bottom: 0;
}

.products__card-features-item h4:nth-child(2) {
  color: #fff !important;
}

.products__card-features-item .info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  cursor: pointer;
}

.products__card-features-item .info:nth-child(2) h4 {
  color: #fff !important;
}

.products__card-features-item .info img {
  margin-bottom: 0;
  margin-left: 4px;
}

.products__card .cta {
  width: 180px;
  height: 48px;
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
}

/* Producers section */
.brands {
  background: #000;
}

.brands h2 {
  margin-bottom: 24px;
}

.brands__logos {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  max-width: 800px;
  margin: 0 auto;
}

.brands__logos-item {
  height: 40px;
  width: 80px;
}

@media (min-width: 576px) {
  .brands__logos-item {
    height: 56px;
    width: 112px;
    margin: 0 8px;
  }
}

/* Compare games section */
.compare h2 {
  margin-bottom: 32px;
}

.compare__tabs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-bottom: 24px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 16px;
}

@media (min-width: 768px) {
  .compare__tabs {
    margin-bottom: 40px;
  }
}

.compare__tabs button {
  margin-left: 0 !important;
}

@media (min-width: 768px) {
  .compare__tabs button {
    margin-bottom: 0 !important;
  }
  .compare__tabs button:last-child {
    margin-right: 0 !important;
  }
}

.compare__wrapper {
  background: #1a1a1a;
  border: 1px solid #333;
  padding: 48px 16px;
  border-radius: 8px;
}

@media (min-width: 576px) {
  .compare__wrapper {
    padding: 48px 36px;
  }
}

@media (min-width: 768px) {
  .compare__wrapper {
    padding: 48px 48px;
  }
}

.compare__wrapper p {
  text-align: center;
  font-size: 1.6rem;
  margin-top: 48px;
}

.compare__specs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.compare__specs-item {
  margin-right: 16px;
  min-width: 102px;
}

@media (min-width: 576px) {
  .compare__specs-item {
    margin-right: 26px;
    min-width: 173px;
  }
}

.compare__specs span {
  font-size: 2.2rem;
  color: #6f43b7;
  font-weight: 600;
}

@media (min-width: 576px) {
  .compare__specs span {
    font-size: 3.7rem;
  }
}

@media (min-width: 576px) {
  .compare__inner-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
}

.compare__choose-game h4 {
  margin-bottom: 8px !important;
}

@media screen and (min-width: 678px) {
  .compare__choose-game {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
}

.compare__wrapper h4 {
  margin-bottom: 0px;
  white-space: nowrap;
  font-weight: 500 !important;
  color: #949494 !important;
  font-size: 1.6rem;
}

@media screen and (min-width: 678px) {
  .compare__wrapper h4 {
    margin-bottom: 0 !important;
    margin-right: 12px;
  }
}

.compare__dropdown {
  border: 1px solid #b980ff;
  border-radius: 20px;
  width: 100%;
  height: 40px;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 0 20px;
  -webkit-transition: background-color 0.3s, border-color 0.3s;
  transition: background-color 0.3s, border-color 0.3s;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

@media (min-width: 576px) {
  .compare__dropdown {
    width: 180px;
  }
}

.compare__dropdown:hover {
  background: #27143d;
  cursor: pointer;
  border-color: #8c61c2;
}

.compare__dropdown:active {
  background-color: rgba(39, 20, 61, 0);
}

.compare__dropdown svg {
  width: 14px;
}

.compare__dropdown-item {
  font-size: 16px;
  line-height: 20px;
  font-family: "Rajdhani";
  font-weight: 500;
}

.compare__dropdown.open {
  display: none;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  height: 160px;
  width: calc(100% - 36px);
  border-radius: 0 0 20px 20px;
  border-top: none;
  padding: 0;
  overflow-y: scroll;
  overflow-x: hidden;
  position: absolute;
  z-index: 10;
  background: #1a1a1a;
}

@media (min-width: 576px) {
  .compare__dropdown.open {
    width: 180px;
  }
}

.compare__dropdown.open:hover {
  background: #1a1a1a;
  font-weight: 500;
}

.compare__dropdown.open .compare__dropdown-item {
  color: #949494;
  padding: 10px 20px;
  width: 100%;
}

.compare__dropdown.open .compare__dropdown-item:hover {
  background-color: #333;
  color: #fff;
}

.compare__dropdown.open::-webkit-scrollbar {
  width: 8px;
}

.compare__dropdown.open::-webkit-scrollbar-track {
  background: #2f2f2f;
  border: 1px solid #4d4d4d;
  border-radius: 0 0 20px 20px;
  margin-bottom: 12px;
}

.compare__dropdown.open::-webkit-scrollbar-thumb {
  background: #1a1a1a;
  border: 1px solid #4d4d4d;
  border-radius: 20px;
}

.compare__tabs-wrapper {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  border-bottom: 1px solid #333;
  position: relative;
  margin-top: 24px;
  margin-bottom: 20px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}

@media (min-width: 576px) {
  .compare__tabs-wrapper {
    margin-top: 0;
    margin-bottom: 0;
    left: unset;
    -webkit-transform: unset;
    transform: unset;
  }
}

.compare__tab {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 90px;
  height: 48px;
  color: #949494;
  font-family: "Rajdhani", sans-serif;
  font-weight: 500;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  border-radius: 2px 2px 0 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  position: relative;
  bottom: -1px;
  font-size: 1.6rem;
}

.compare__tab#high {
  color: #fff;
}

.compare__tab:hover {
  background: #333;
  cursor: pointer;
  color: #fff;
}

.compare__tab:active {
  background: #4d4d4d;
}

.compare__tab-active {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  z-index: 1;
  bottom: -1px;
  left: 10px;
  -webkit-transition: left 0.3s cubic-bezier(0.21, 0.95, 0.52, 0.96);
  transition: left 0.3s cubic-bezier(0.21, 0.95, 0.52, 0.96);
}

.compare__tab-active-triangle-left {
  width: 0;
  height: 0;
  border-bottom: 5px solid #773dbd;
  border-left: 5px solid transparent;
}

.compare__tab-active-rectangle-middle {
  height: 5px;
  width: 60px;
  background: #773dbd;
}

.compare__tab-active-triangle-right {
  width: 0;
  height: 0;
  border-bottom: 5px solid #773dbd;
  border-right: 5px solid transparent;
}

.compare__chart-wrapper {
  min-height: 500px;
}

.compare #compare__chart-game-name {
  text-align: center;
  margin-bottom: 10px !important;
  margin-top: 20px;
  font-size: 18px;
  font-weight: 500 !important;
  color: #949494 !important;
}

@media (min-width: 576px) {
  .compare #compare__chart-game-name {
    margin-top: 28px;
  }
}

.slider {
  position: relative;
}

@media (min-width: 768px) {
  .slider__container {
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
  }
}

.slider h2 {
  margin-bottom: 32px;
}

.slider .cta {
  margin-top: 16px;
  margin-left: auto;
  margin-right: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media (min-width: 768px) {
  .slider .cta {
    display: none;
  }
}

.slider__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  background: #1a1a1a;
  border-radius: 8px;
  border: 1px solid #333;
  padding: 38px !important;
  margin: 0 15px;
  max-width: 364px;
  margin-left: auto;
  margin-right: auto;
}

.slider__item img {
  max-width: 330px;
  margin-bottom: 24px;
  -o-object-fit: contain;
  object-fit: contain;
}

.slider__item h4 {
  text-align: center;
  color: #fff;
}

.slider__item:hover {
  border-color: #773dbd;
  -webkit-box-shadow: rgba(119, 61, 189, 0.25) 0 4px 60px 0, rgba(119, 61, 189, 0.2) 0px 0px 6px 1px;
  box-shadow: rgba(119, 61, 189, 0.25) 0 4px 60px 0, rgba(119, 61, 189, 0.2) 0px 0px 6px 1px;
}

.slider .slider--2__bg {
  position: absolute;
  z-index: -1;
  height: 120%;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  left: -60vw;
}

@media (min-width: 768px) {
  .slider .slider--2__bg {
    height: 100%;
    left: unset;
  }
}

@media (min-width: 992px) {
  .slider .slider--2__bg {
    height: 160%;
  }
}

.banner {
  position: relative;
}

.banner__bg {
  position: absolute;
  transform: rotate(180deg);
  z-index: -2;
  left: -46vw;
  bottom: 0;
  height: 124%;
}

@media (min-width: 768px) {
  .banner__bg {
    left: -6vw;
    height: 160%;
  }
}

@media (min-width: 992px) {
  .banner__bg {
    height: unset;
  }
}

.banner h2 {
  margin-bottom: 32px;
}

@media (min-width: 576px) {
  .banner h2 {
    margin-bottom: 16px;
  }
}

.banner__outer {
  border-radius: 8px;
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 576px) {
  .banner__outer {
    background: #1a1a1a;
    padding: 48px 32px 48px 48px;
  }
}

.banner__copy {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  height: 100%;
  text-align: center;
}

@media (min-width: 576px) {
  .banner__copy {
    text-align: start;
  }
}

.banner__packshot {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  height: 100%;
  background: #1a1a1a;
  padding: 32px 24px 64px 24px;
  border-radius: 8px;
}

@media (min-width: 576px) {
  .banner__packshot {
    background: none;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    padding: 0;
  }
}

.banner__packshot img {
  margin-bottom: 8px;
  max-width: 100%;
}

.banner__packshot .cta {
  margin-top: 24px;
}

.footer {
  text-align: center;
  margin: 120px 0;
}

.footer img {
  width: 104px;
}

@media (min-width: 576px) {
  .footer img {
    width: 160px;
  }
}

/* Slider */
.slider__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.slider {
  margin-bottom: 0;
  margin: 0 auto;
}

.tns-ovh {
  overflow: visible;
}

.slider__nav {
  display: none;
}

@media (min-width: 768px) {
  .slider__nav {
    display: block;
  }
}

.slider__nav button {
  height: 50px;
  width: 50px;
  border-radius: 200px;
  border: none;
  background: #0082fa;
  margin: 0 20px;
}

@media screen and (min-width: 576px) {
  .slider__nav button {
    margin: 0 -10px;
  }
}

/* @media screen and (min-width: 1500px) {
  .slider__nav button {
    margin: 0 -80px;
  }
} */
.slider__nav-next:hover,
.slider__nav-prev:hover {
  background: #0067c7;
}

.slider__nav-next:active,
.slider__nav-prev:active {
  background: #004d94;
}

.slider__nav-next,
.slider__nav-prev {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-100%);
  transform: translateY(-100%);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.slider__nav-next {
  right: 0;
  top: 30%;
}

@media screen and (min-width: 576px) {
  .slider__nav-next {
    top: 50%;
  }
}

.slider__nav-prev {
  left: 0;
  top: 30%;
}

@media screen and (min-width: 576px) {
  .slider__nav-prev {
    top: 50%;
  }
}

.slider__nav button[disabled] {
  background: rgba(0, 0, 0, 0.15);
  opacity: 0.4;
}

.slider__nav button[disabled] svg {
  fill: rgba(0, 0, 0, 0.4);
}

.tns-outer {
  padding: 0;
  overflow: hidden;
}

.tns-item {
  opacity: 1;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  cursor: -webkit-grab;
  cursor: grab;
}

.tns-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
  margin: 26px 0 0 0;
}

.tns-nav [aria-controls] {
  width: 8px;
  height: 8px;
  padding: 0;
  margin: 0 4px;
  border-radius: 200px;
  background: #cccccc;
  border: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.tns-nav .tns-nav-active {
  background: #773dbd;
  width: 8px;
  height: 8px;
}

/* Custom styles */
/* end Custom styles */
/*# sourceMappingURL=main.css.map */
