<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* Fonts */
:root {
  --font-default: Open Sans, system-ui, -apple-system, Segoe UI, Roboto,
    Helvetica Neue, Arial, Noto Sans, Liberation Sans, sans-serif,
    Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji;
  --font-primary: Inter, sans-serif;
  --font-secondary: Poppins, sans-serif;
  --icon-family: 'Font Awesome 6 Free';
}

/* Colors */
:root {
  --color-default: #0a0d13;
  --color-primary: #dd0a00;
  --color-secondary: #0e1d34;
}

/* Smooth scroll behavior */
:root {
  scroll-behavior: smooth;
}

* {
  transition: all 0.5s linear;
}

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  padding: 0;
  margin: 0;
  color: #020202;
  font-family: Alexandria, Alexandria, 'Inter', sans-serif !important;
  font-style: normal;
  font-weight: normal;
  font-display: swap;
}

a {
  /*color: var(--color-primary);*/
  color: #e00a00;
  text-decoration: none;
}

a:hover {
  color: #191918;
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  /*font-family: var(--font-primary);*/
  font-family: 'Inter', sans-serif !important;
  font-weight: 900;
}

/*--------------------------------------------------------------
# Background Color
--------------------------------------------------------------*/
.bg-white {
  background-color: #ffffff;
}

/*--------------------------------------------------------------
# Call to Action
--------------------------------------------------------------*/
.pointDown {
  position: fixed;
  z-index: 2000;
  top: 90%;
  left: 50%;
  width: 110px;
  height: 110px;
  line-height: 100px;
  margin: -50px 0 0 -50px;
  border-radius: 100%;
  color: rgba(255, 255, 255, 0.7);
  background-color: rgba(0, 0, 0, 0.3);
  text-align: center;
}

.hero .slide01 {
  width: 100%;
  height: 100vh;
}

.hero .slide01 img {
  width: 100%;
}

#bg1 {
  position: absolute;
  z-index: 10;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('../images/bg.png') repeat-y 0 0;
}

#bg2 {
  position: fixed;
  z-index: 10;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: url('../images/bg-2.png') repeat-y 0 0;
}

.navbar a,
.navbar a:focus {
  font-weight: 400 !important;
}

.preloader {
  position: fixed;
  z-index: 999999;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  height: 100vh;
  background: #000;
}

.preloader .img-container {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  background: #000;
}

#ld3 {
  position: relative;
  -webkit-animation: outercontainer 4s linear infinite;
  animation: outercontainer 4s linear infinite;
}

#ld3 div {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

#ld3 div:nth-child(1) {
  top: 20px;
  background: #b800df;
  -webkit-animation: ld3_div1 2s linear infinite;
  animation: ld3_div1 2s linear infinite;
}

#ld3 div:nth-child(2) {
  top: -20px;
  background: #ff0000;
  -webkit-animation: ld3_div2 2s linear infinite;
  animation: ld3_div2 2s linear infinite;
}

#ld3 div:nth-child(3) {
  left: 20px;
  background: #ff9900;
  -webkit-animation: ld3_div4 2s linear infinite;
  animation: ld3_div4 2s linear infinite;
}

#ld3 div:nth-child(4) {
  left: -20px;
  background: #00c3ff;
  -webkit-animation: ld3_div3 2s linear infinite;
  animation: ld3_div3 2s linear infinite;
}

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

@keyframes outercontainer {
  100% {
    transform: rotate(360deg);
  }
}

@-webkit-keyframes ld3_div1 {
  0% {
    top: 20px;
  }

  25% {
    top: 0;
  }

  50% {
    top: 20px;
  }

  75% {
    top: 0;
  }

  100% {
    top: 20px;
  }
}

@keyframes ld3_div1 {
  0% {
    top: 20px;
  }

  25% {
    top: 0;
  }

  50% {
    top: 20px;
  }

  75% {
    top: 0;
  }

  100% {
    top: 20px;
  }
}

@-webkit-keyframes ld3_div2 {
  0% {
    top: -20px;
  }

  25% {
    top: 0;
  }

  50% {
    top: -20px;
  }

  75% {
    top: 0;
  }

  100% {
    top: -20px;
  }
}

@keyframes ld3_div2 {
  0% {
    top: -20px;
  }

  25% {
    top: 0;
  }

  50% {
    top: -20px;
  }

  75% {
    top: 0;
  }

  100% {
    top: -20px;
  }
}

@-webkit-keyframes ld3_div3 {
  0% {
    left: -20px;
  }

  25% {
    left: 0;
  }

  50% {
    left: -20px;
  }

  75% {
    left: 0;
  }

  100% {
    left: -20px;
  }
}

@keyframes ld3_div3 {
  0% {
    left: -20px;
  }

  25% {
    left: 0;
  }

  50% {
    left: -20px;
  }

  75% {
    left: 0;
  }

  100% {
    left: -20px;
  }
}

@-webkit-keyframes ld3_div4 {
  0% {
    left: 20px;
  }

  25% {
    left: 0;
  }

  50% {
    left: 20px;
  }

  75% {
    left: 0;
  }

  100% {
    left: 20px;
  }
}

@keyframes ld3_div4 {
  0% {
    left: 20px;
  }

  25% {
    left: 0;
  }

  50% {
    left: 20px;
  }

  75% {
    left: 0;
  }

  100% {
    left: 20px;
  }
}

.section-title {
  padding: 0px 0 40px 0;
  text-align: center;
}

.section-title h2 {
  font-size: 2.5rem;
}

.section-title h1 {
  font-size: 3rem;
}

.text-black {
  color: #191918;
}

.text-white {
  color: #191918;
}

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

section {
  padding: 50px 0;
}

#progress {
  position: fixed;
  z-index: 9999;
  top: 0;
  height: 4px;
  background: #444;
}

.position-fixed {
  width: 100%;
}



/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
.header {
  z-index: 990;
  height: 75px;
  /*padding:20px 0;*/
  background: transparent;
  transition: all 0.5s;
}

.header.sticked {
  padding: 5px 0;
  background: rgba(0, 0, 0, 0.9);
  box-shadow: 0px 2px 20px rgba(14, 29, 52, 0.1);
}

.header .logo img {
  max-height: 35px;
  margin-right: 6px;
}

.header .logo h1 {
  margin: 0;
  color: #fff;
  font-family: var(--font-primary);
  font-size: 30px;
  font-weight: 700;
}

.header .btn-sign-up,
.header .btn-sign-up:focus {
  padding: 8px 20px;
  margin-left: 30px;
  border-radius: 50px;
  color: #fff;
  background: var(--color-primary);
  transition: 0.3s;
  font-size: 14px;
}

.header .btn-sign-up:hover,
.header .btn-sign-up:focus:hover {
  color: #fff;
  background: rgba(206, 18, 18, 0.8);
}

.search-form-container {
  position: relative;
  margin-left: 30px;
}

.js-search-open {
  color: #e45149;
  font-size: 22px;
  font-weight: 500;
}

.search-form-wrap {
  position: absolute;
  z-index: 9;
  top: 27px;
  right: 0;
  visibility: hidden;
  opacity: 0;
  transition: 0.3s all ease;
}

.search-form-wrap .search-form {
  position: relative;
}

.search-form-wrap .search-form .form-control {
  width: 300px;
  padding-right: 40px;
  padding-left: 40px;
  border: none;
  border: 1px solid #ccc;
  box-shadow: 0 15px 20px -10px rgba(var(--color-black-rgb), 0.1);
}

.search-form-wrap .search-form .form-control:active,
.search-form-wrap .search-form .form-control:focus {
  outline: none;
  box-shadow: none;
}

.search-form-wrap .search-form .icon {
  position: absolute;
  top: 7px;
  left: 0;
  left: 10px;
  opacity: 0.5;
}

.saas-logo {
  width: 122;
  height: 49px;
}

.search-form-wrap .search-form .btn {
  position: absolute;
  top: 2px;
  right: 4px;
  line-height: 1;
  padding: 0;
  margin: 0;
  font-size: 30px;
}

.search-form-wrap .search-form .btn:active,
.search-form-wrap .search-form .btn:focus {
  outline: none;
  box-shadow: none;
}

.search-form-wrap.active {
  visibility: visible;
  opacity: 1;
}

.search-form .input-group {
  overflow: hidden;
  border: 1px solid #a9a9a9;
  background-color: #f6f8f4;
}

.search-form .input-group .btn {
  color: #e45149;
}

.search-form .input-group &gt; .form-control {
  line-height: 1.5;
  color: #000000 !important;
  background-color: #f6f8f4;
  font-size: 1rem;
  font-weight: 400;
}

.search-form .form-control::-webkit-input-placeholder {
  opacity: 0.8;
  color: #000;
}

.search-form .form-control::-moz-placeholder {
  opacity: 0.8;
  color: #000;
}

.search-form .form-control:-ms-input-placeholder {
  opacity: 0.8;
  color: #000;
}

.search-form .form-control::-ms-input-placeholder {
  opacity: 0.8;
  color: #000;
}

.search-form .form-control::placeholder {
  opacity: 0.8;
  color: #000;
}

.search-form-container button img {
  width: 20px;
}

/*--------------------------------------------------------------
# Desktop Navigation
--------------------------------------------------------------*/
@media (min-width: 1280px) {
  .navbar {
    padding: 0;
  }

  .navbar ul {
    display: flex;
    align-items: center;
    padding: 0;
    margin: 0;
    list-style: none;
  }

  .navbar li {
    position: relative;
  }

  .navbar a,
  .navbar a:focus {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0px 0 5px 40px;
    color: #fff;
    transition: 0.3s;
    white-space: nowrap;
    font-style: normal;
    font-weight: 600;
  }

  .sticked a {
    color: #fff;
  }

  .navbar li a:after {
    position: absolute;
    left: 18px;
    height: 18px;
    border-right: 1px solid #fff;
    content: '';
  }

  .navbar li:first-child a:after {
    display: none;
  }

  .navbar a i,
  .navbar a:focus i {
    line-height: 0;
    margin-top: 5px;
    margin-left: 5px;
    font-size: 12px;
  }

  .navbar a:hover,
  .navbar .active,
  .navbar .active:focus,
  .navbar li:hover &gt; a {
    color: #fc0041;
  }

  .navbar .btn-signin,
  .navbar .btn-signin:focus {
    padding: 10px 20px;
    margin-left: 30px;
    border-radius: 30px;
    color: #fff;
    background: #dc0a00;
  }

  .navbar .btn-signin:hover,
  .navbar .btn-signin:focus:hover {
    color: #fff;
    background: #000;
  }

  .navbar button.btn-signin {
    border: 0px;
    font-size: 15px;
    font-weight: 600;
  }

  .navbar .dropdown ul {
    position: absolute;
    z-index: 99;
    top: calc(100% + 30px);
    left: 14px;
    display: block;
    visibility: hidden;
    padding: 10px 0;
    margin: 0;
    border-radius: 4px;
    opacity: 0;
    background: #fff;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
    transition: 0.3s;
  }

  .navbar .dropdown ul li {
    min-width: 200px;
  }

  .navbar .dropdown ul a {
    padding: 10px 20px;
    color: var(--color-secondary);
    text-transform: none;
    font-size: 15px;
    font-weight: 400;
  }

  .navbar .dropdown ul a i {
    font-size: 12px;
  }

  .navbar .dropdown ul a:hover,
  .navbar .dropdown ul .active:hover,
  .navbar .dropdown ul li:hover &gt; a {
    color: #c72c1d;
  }

  .navbar .dropdown ul li a:after {
    border: 0px solid #000;
  }

  .navbar .dropdown:hover &gt; ul {
    top: 100%;
    visibility: visible;
    opacity: 1;
  }

  .navbar .dropdown .dropdown ul {
    top: 0;
    left: calc(100% - 30px);
    visibility: hidden;
  }

  .navbar .dropdown .dropdown:hover &gt; ul {
    top: 0;
    left: 100%;
    visibility: visible;
    opacity: 1;
  }
}

@media (min-width: 1280px) and (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }

  .navbar .dropdown .dropdown:hover &gt; ul {
    left: -100%;
  }
}

@media (min-width: 1280px) {
  .mobile-nav-show,
  .mobile-nav-hide {
    display: none;
  }
}

/*--------------------------------------------------------------
# Mobile Navigation
--------------------------------------------------------------*/
@media (max-width: 1279px) {
  .navbar {
    position: fixed;
    z-index: 9997;
    top: 0;
    right: -100%;
    bottom: 0;
    width: 100%;
    max-width: 400px;
    transition: 0.3s;
  }

  .navbar ul {
    position: absolute;
    z-index: 9998;
    overflow-y: auto;
    padding: 50px 0 10px 0;
    margin: 0;
    background: rgba(255, 255, 255, 0.7);
    transition: 0.3s;
    inset: 0;
  }

  .navbar a,
  .navbar a:focus {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 20px;
    border-bottom: 1px solid #cecece;
    color: rgba(0, 0, 0, 1);
    transition: 0.3s;
    white-space: nowrap;
    font-size: 20px;
  }

  .navbar a i,
  .navbar a:focus i {
    line-height: 0;
    margin-left: 5px;
    font-size: 12px;
  }

  .navbar a:hover,
  .navbar .active,
  .navbar .active:focus,
  .navbar li:hover &gt; a {
    color: #dc0a00;
  }

  .navbar .btn-signin,
  .navbar .btn-signin:focus {
    padding: 8px 20px;
    margin: 15px;
    border: 0px;
    border-radius: 20px;
    color: #fff;
    background: var(--color-primary);
  }

  .navbar .btn-signin:hover,
  .navbar .btn-signin:focus:hover {
    color: #fff;
    background: rgba(13, 66, 255, 0.8);
  }

  .navbar .dropdown ul,
  .navbar .dropdown .dropdown ul {
    position: static;
    display: none;
    padding: 0px 0;
    margin: 0px 0px;
    border: 0px solid #19335c;
    background-color: #5fa660;
    list-style: none;
    transition: all 0.5s ease-in-out;
  }

  .navbar .dropdown ul a {
    font-size: 16px !important;
  }

  .navbar .dropdown &gt; .dropdown-active,
  .navbar .dropdown .dropdown &gt; .dropdown-active {
    display: block;
  }

  .mobile-nav-show {
    z-index: 9999;
    line-height: 0;
    margin: 0 10px 0 20px;
    color: #fff;
    cursor: pointer;
    transition: 0.5s;
    font-size: 28px;
  }

  .mobile-nav-hide {
    position: fixed;
    z-index: 9999;
    top: 20px;
    right: 20px;
    line-height: 0;
    color: #df0900;
    cursor: pointer;
    transition: 0.5s;
    font-size: 32px;
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .navbar {
    right: 0;
  }

  .mobile-nav-active .navbar:before {
    position: fixed;
    z-index: 9996;
    background: rgba(255, 255, 255, 0.9);
    content: '';
    inset: 0;
  }
}

.circle-vector-left {
  position: absolute;
  z-index: 1;
  bottom: -25%;
  left: 0;
}

.circle-vector-left2 {
  position: absolute;
  z-index: 1;
  bottom: -15%;
  left: 0;
}

.circle-vector-right {
  position: absolute;
  z-index: 1;
  right: 0;
  bottom: -25%;
}

#scrollbar {
  position: fixed;
  z-index: 300;
  z-index: 99;
  right: 2px;
  width: 6px;
  height: 50px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 3px;
  background: #444;
  background: rgba(0, 0, 0, 0.6);
}

/* ===================================
    hero
====================================== */
.hero {
  position: relative;
  z-index: 9;
}

.hero .caption-title {
  position: absolute;
  top: 20%;
  right: 0;
  left: 0;
  text-align: center;
}

.hero .caption-title h1 {
  color: #fff;
  font-family: 'Inter', sans-serif !important;
  font-size: 3.5rem;
  font-weight: 900;
}

.vc01,
.vc02,
.vc03,
.vc04 {
  position: absolute;
  width: 140px;
}

.vc01 {
  top: 5%;
  left: 0px;
}

.vc02 {
  top: 5%;
  right: 0px;
}

.vc03 {
  bottom: 10%;
  left: 0px;
}

.vc04 {
  right: 0px;
  bottom: 10%;
}

.slide01 {
  position: fixed;
}

.mob {
  position: absolute;
  right: 0;
  bottom: 0px;
  left: 0;
  margin: 0 auto;
  text-align: center;
}

.hero .caption2 {
  position: absolute;
  top: 15%;
  right: 0;
  left: 0;
  margin: 0 auto;
  text-align: center;
}

.hero .caption2 .mob_2 {
  position: relative;
}

.hero .caption2 .mob_2 .gl {
  position: absolute;
  top: 10%;
  left: -12px;
}

.container-fluid {
  width: calc(90% - 10%);
  margin: 0 auto;
}

.hero .slide01 .img-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  width: 100%;
  height: 100%;
  background: url('../images/link/Links/2A076E45.png') center center;
  background-size: cover;
}

.hero .slide01 .img-desktop {
  opacity: 0.84;
}

.hero .slide01 {
  background: #000000;
}


.saas {
  display: flex !important;
  align-items: center;
  background-color: #7F33B5;
  position: relative;
  display: flex !important;
  align-items: center;
  font-family: 'Inter', sans-serif;
}

/*.hero .slide01{background:url("../images/home/slider/hero-2.jpg") center center fixed; -webkit-background-size: cover; -moz-background-size: cover; -o-background-size: cover; background-size: cover; width:100%;  left: 0; top: 0; width: 100%; height: 100%;}*/

/* ===================================
    hits
====================================== */
.hits {
  display: flex !important;
  align-items: center;
  background: #4900df;
}

.hits .block {
  color: #fff;
  text-align: center;
}

.hits .owl-item {
  transition: 0.3s all;
  transform: scale(1);
}

.hits .owl-item.active:not(.center) {
  transform: translateX(20%) scale(0.9);
}

.hits .owl-item.active.center {
  z-index: 1;
}

.hits .owl-item.active.center + .active {
  transform: translateX(-20%) scale(0.9);
}

.ct {
  padding: 50px 0;
}

.hits .box {
  margin: 0 auto;
}

.hits ul {
  display: flex;
  align-items: center;
  justify-content: space-around;
  padding: 0% 15%;
  margin: 2% 0;
  list-style: none;
}

.hits ul {
  padding: 10px 20px;
  margin-top: 100px;
  border: #231a7b 1px solid;
  border-radius: 10px;
  outline: 5px #090457 solid;
  outline-offset: -4px;
  color: #fff;
  background: #0b084d;
  background: -webkit-gradient(
    left top,
    left bottom,
    color-stop(0%, rgba(9, 4, 87, 1)),
    color-stop(100%, rgba(10, 4, 50, 1))
  );
  background: linear-gradient(
    to bottom,
    rgba(9, 4, 87, 1) 0%,
    rgba(10, 4, 50, 1) 100%
  );
  box-shadow: 0px 0px 0px 5px #3329aa inset;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#090457', endColorstr='#0a0432', GradientType=0);
}

.hits ul li:first-child {
  width: 95%;
  padding: 3% 0;
  margin: 0 auto;
  margin-right: 0.5rem;
  font-size: 2rem;
}

.hits ul li {
  margin: 0 auto;
}

.hits ul li img {
  width: 75%;
  padding: 1%;
  margin: 0 auto;
}

.hits ul li:last-child {
  text-align: right;
}

.alway-game {
  z-index: 2;
  padding-bottom: 0px;
  background: #9502bf;
}

.linked {
  padding: 9px 30px 10px;
  border: 0px;
  border-radius: 20px;
  color: #fff;
  background: #ff9900;
  font-family: 'Inter', sans-serif !important;
  font-weight: 800;
}

.title {
  width: 85% !important;
}

.map {
  background: #000ecb;
}

.map .item {
  position: relative;
  height: 100vh;
}

.map .item img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.map .item .cover {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  width: 100%;
  height: 100%;
  text-align: center;
}

.map .item .cover .header-content {
  position: relative;
  overflow: hidden;
  padding: 56px;
  text-align: center;
}

.map .item .cover .header-content .line {
  position: absolute;
  top: 0;
  left: 0;
  display: inline-block;
  width: 100%;
  height: 100%;
  border: 9px solid #fff;
  content: '';
  -webkit-clip-path: polygon(0 0, 60% 0, 36% 100%, 0 100%);
  clip-path: polygon(0 0, 60% 0, 36% 100%, 0 100%);
}

.map .item .cover .header-content h3 {
  color: #fff;
  font-size: calc(0.9rem + 2.2vw);
  font-weight: 600 !important;
}

.map .item .cover .header-content h2 {
  margin: 5px 0 20px;
  color: #fff;
  word-spacing: 3px;
  font-size: calc(0.9rem + 2.2vw);
  font-weight: 600;
  font-weight: 900;
}

.map .item .cover .header-content h2 img {
  display: inline-block;
  width: auto !important;
}

.map .item .cover .header-content h5 {
  line-height: 36px;
  color: #fff;
  font-size: 24px;
  font-weight: 300;
}

/*.map .owl-item.active h2 { -webkit-animation-duration: 1s; animation-duration: 1s; -webkit-animation-fill-mode: both; animation-fill-mode: both; animation-name: fadeInDown; animation-delay: 0.3s;}*/
.map .owl-item.active h3 {
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-delay: 0.3s;
  animation-delay: 0.3s;
  font-family: 'Inter', sans-serif;
  font-weight: 400 !important;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

.map .owl-item.active h5 {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-delay: 0.3s;
  animation-delay: 0.3s;
  font-family: 'Inter', sans-serif;
  font-weight: 400 !important;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

.vibe {
  display: flex !important;
  overflow: hidden;
  align-items: center;
  height: 100vh;
  background: #179d2d;
}

.vibe ul,
.game-begin ul {
  list-style: none;
}

.vibe ul li,
.game-begin ul li {
  width: 100%;
  padding: 10px 0;
}

.vibe ul li img,
.game-begin ul li img {
  width: 100%;
}

.footer {
  position: relative;
  background-color: #ffffff;
}

.block {
  max-width: 480px;
  color: #fff;
}

.block p {
  padding: 15px 0 20px 0;
  font-size: 1.2rem;
  font-weight: 600 !important;
}

.block h2 {
  margin: 5px 0 20px;
  color: #fff;
  font-size: calc(0.9rem + 2.2vw);
  font-weight: 600;
  font-weight: 900;
}

.block span {
  width: auto !important;
}

.spotlight {
  display: flex !important;
  overflow: hidden;
  align-items: center;
  height: 100vh;
  background: #e87300;
}

.spotlight .img-spotlight {
  padding-left: 0px;
}

.spotlight .container-fluid {
  width: 100%;
}

.spotlight ul {
  list-style: none;
}

.spotlight ul li {
  padding: 10px 0;
}

.spotlight .cta-blue {
  background: #0090ff;
}

.bg-enter {
  width: 100%;
  background: #0492fd url('../images/home/bg-enter.webp') center center;
  background-size: cover;
}

.enter {
  display: flex !important;
  overflow: hidden;
  align-items: flex-end;
  height: 100vh;
  padding-bottom: 0;
}

.enter .block {
  max-width: 100% !important;
  color: #fff;
  text-align: center;
}

.enter-nav {
  line-height: 50px;
  padding: 0;
  border: 1px solid #fff;
  list-style: none;
  vertical-align: top;
  font-size: 16px;
  text-decoration: none;
}

.enter-nav li {
  position: relative;
}

.enter-nav li {
  z-index: 1;
  display: inline-block;
  padding-right: 10px;
  padding-left: 10px;
}

.enter-nav li:before {
  position: absolute;
  top: 16px;
  right: 0;
  display: block;
  width: 1px;
  height: 20px;
  background-color: rgb(255 255 255 / 100%);
  content: '';
}

.enter-nav li:last-child:before {
  content: unset;
}

.available-product {
  display: flex !important;
  align-items: center;
  justify-content: center;
  width: 100%;
  background: #7300e8 url('../images/home/available-product/bg.png') center
    center;
  background-size: cover;
}

.available-product .block {
  max-width: 660px;
}

.available-product ul {
  display: flex;
  align-items: center;
  justify-content: space-around;
  padding: 5% 10%;
  list-style: none;
}

.available-product ul li img {
  width: 100%;
}

.available-product ul li {
  padding: 10px 20px;
}

.available-product ul li:not(:last-child) {
  border-right: 1px solid #fff;
}

/* ===================================.
    FOOTER
====================================== */
.footer {
  position: relative;
  display: flex !important;
  align-items: center;
  background-color: #000000;
  font-family: 'Inter', sans-serif;
}

.footer h6 {
  font-family: 'Inter', sans-serif;
}

.footer a {
  color: #a2a2a2;
  font-size: 16px;
}

.footer .footer-link li {
  margin: 6px 0;
}

.footer .social li {
  margin-right: 0rem;
}

.footer .social a {
  width: 30px;
  height: 30px;
  line-height: 1.2;
  padding: 20%;
  border: none;
  border-radius: 50%;
  color: #fff;
  background-color: rgb(231, 51, 82);
}



.main_frame_outer {
  width: 320px;
  height: auto;
}

.main_frame_outer {
  position: relative;
  z-index: 3;
  overflow: hidden;
  width: 100%;
  height: 100%;
}

.inner_screens img {
  position: absolute;
  z-index: 1;
  right: 6px;
  bottom: 3px;
  width: calc(100% - 19px);
  height: calc(100% - 6px);
  /* -webkit-transform: translateY(115%);  transform: translateY(115%);*/
  transform-origin: bottom;
}

.inner_screens .icons img {
  position: absolute;
  z-index: 9;
  width: auto;
  height: auto;
}

.inner_screens .icons .img1 {
  top: -3%;
  right: -20%;
}

.inner_screens .icons .img2 {
  top: 68%;
  right: -45%;
}

.inner_screens .icons .img3 {
  z-index: 50;
  right: -50%;
  bottom: -5%;
}

.inner_screens .icons .img4 {
  bottom: 8px;
  left: -25%;
}

.inner_screens .icons .img5 {
  right: -27%;
  bottom: 20%;
}

.inner_screens .icons .img6 {
  bottom: 25%;
  left: -10%;
}

.inner_screens .icons .img7 {
  bottom: 52%;
  left: 14%;
}

.inner_screens .icons .img8 {
  bottom: 40%;
  left: -65%;
}

.inner_screens .icons .img9 {
  bottom: 55%;
  left: -30%;
}

.inner_screens .icons .img10 {
  bottom: 9%;
  left: -100%;
}

.inner_screens .icons .img11 {
  bottom: 52%;
  left: -30%;
}

.inner_screens .icons .img12 {
  bottom: 60%;
  left: -60%;
}

.inner_screens .icons .img13 {
  bottom: 75%;
  left: -60%;
}

.inner_screens .icons .img14 {
  top: 10%;
  right: -12%;
}

.inner_screens .icons .img15 {
  top: 16%;
  right: -35%;
}

.inner_screens .icons .img16 {
  top: 30%;
  right: -42%;
}

.inner_screens .icons .img17 {
  top: 20%;
  right: -80%;
}

.inner_screens .icons .img18 {
  top: 10%;
  right: -60%;
}

.inner_screens .icons .img19 {
  top: 33%;
  right: -100%;
}

.inner_screens .icons .img20 {
  right: -59px;
  bottom: 22%;
}

.inner_screens .icons .img21 {
  bottom: 48%;
  left: -82px;
}

#video {
  position: fixed;
  width: 100%;
  height: 100%;
}

.face {
  transform: translate3d(0, 0, 0);
  -webkit-animation: shake 2s infinite;
  animation: shake 2s infinite;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  perspective: 1000px;
}

.face2 {
  transform: translate3d(0, 0, 0);
  -webkit-animation: shake1 4s infinite;
  animation: shake1 4s infinite;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  perspective: 1000px;
}

@-webkit-keyframes shake {
  10%,
  90% {
    transform: translate3d(0, -1px, 0);
  }

  20%,
  80% {
    transform: translate3d(1px, 0px, 0);
  }

  30%,
  50%,
  70% {
    transform: translate3d(0, 1px, 0);
  }

  40%,
  60% {
    transform: translate3d(1px, 0px, 0);
  }
}

@keyframes shake {
  10%,
  90% {
    transform: translate3d(0, -1px, 0);
  }

  20%,
  80% {
    transform: translate3d(1px, 0px, 0);
  }

  30%,
  50%,
  70% {
    transform: translate3d(0, 1px, 0);
  }

  40%,
  60% {
    transform: translate3d(1px, 0px, 0);
  }
}

@-webkit-keyframes shake1 {
  10%,
  90% {
    transform: translate3d(-1px, 0, -1px);
  }

  20%,
  80% {
    transform: translate3d(0, 0, 0px);
  }

  30%,
  50%,
  70% {
    transform: translate3d(0, 1px, 0);
  }

  40%,
  60% {
    transform: translate3d(0, 0, 0);
  }
}

@keyframes shake1 {
  10%,
  90% {
    transform: translate3d(-1px, 0, -1px);
  }

  20%,
  80% {
    transform: translate3d(0, 0, 0px);
  }

  30%,
  50%,
  70% {
    transform: translate3d(0, 1px, 0);
  }

  40%,
  60% {
    transform: translate3d(0, 0, 0);
  }
}

/*
.img6{width:130px !important}
.img7{top:30%; left:0}
.img5{top:40%; right:0}
.img8, .img9{top:30%; left:0}
.img8{width:120px !important}
.img10{left:0%; bottom:0%}
*/
.main_frame_outer &gt; img {
  z-index: 2;
  width: 100%;
  height: 100%;
}

.inner_screens #img_01 {
  opacity: 1 !important;
  transform: translateY(0px) scale(0.8) !important;
}

#layer {
  position: absolute;
  z-index: 9;
  right: 0;
  bottom: 10%;
  left: 0;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.inner_screens img {
  height: 100%;
}

.home_banner_mobimg_blk {
  position: absolute;
  right: 0px;
  bottom: 13%;
  left: 0;
  /* overflow: hidden;*/
  display: flex;
  align-items: center;
  justify-content: center;
  width: 340px;
  height: 688px;
  margin: 0 auto;
  border-radius: 55px;
  text-align: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
}

.sm-hero {
  position: absolute;
  right: 0px;
  left: 0px;
  margin: 0 auto;
  text-align: center;
}

.mob-img {
  position: absolute;
  z-index: 99;
}

/*
.nos{position:absolute; left:10%; bottom:25%}
.tra{position:absolute; right:19%; bottom:25%}
*/
.show-mob {
  position: absolute;
  right: 0;
  bottom: 5%;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 70%;
  margin: 0 auto;
  text-align: center;
}

.show-mob .col:first-child {
  margin-left: 13%;
  text-align: right;
}

.show-mob .col:last-child {
  margin-right: 15%;
  text-align: left;
}

.isActive.deActive {
  display: block;
}

.deActive {
  display: none;
}

.isActiveMob.deActiveMob {
  transform: translate(0, 0) rotate(0deg);
  transform-origin: 50% 100%;
}

.deActiveMob {
  transform: translate(30%, 80%) rotate(60deg);
  transform-origin: 50% 100%;
}

.enter .block .isActive.deActive h2,
.alway-game .block .isActive.deActive h2,
.discover-across-world .block .isActive.deActive {
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
  -webkit-animation-duration: 0.5s;
  animation-duration: 0.5s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  /*animation-delay: 0.5s;*/
}

/*
.hits.skrollable-after .block h2, .vibe.skrollable-after .block h2, .spotlight.skrollable-after .block h2{
  -webkit-animation-duration: 0.8s;
  animation-duration:  0.5s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  animation-name: fadeInDown;
  animation-delay: 0.8s;
}
.hits.skrollable-after .block p, .vibe.skrollable-after .block p, .spotlight.skrollable-after .block p{
   -webkit-animation-duration: 0.8s;
  animation-duration: 0.5s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  animation-name: fadeInUp;
  animation-delay: 0.8s;
}
*/

.enter .block .isActive.deActive p,
.alway-game .block .isActive.deActive p {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
  -webkit-animation-duration: 0.5s;
  animation-duration: 0.5s;
  -webkit-animation-delay: 0.5s;
  animation-delay: 0.5s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

.enter .block .isActive.deActive ul,
.alway-game .block .isActive.deActive .linked {
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
  -webkit-animation-duration: 0.5s;
  animation-duration: 0.5s;
  -webkit-animation-delay: 1s;
  animation-delay: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

.gallery-carousel .owl-stage-outer::before {
  position: absolute;
  z-index: 1;
  top: 0px;
  left: 0px;
  width: 10px;
  height: 100%;
  background: #4900df;
  content: '';
}

@-webkit-keyframes moveInleft {
  0% {
    opacity: 0;
    transform: translateX(-100px);
  }

  80% {
    transform: translateX(10px);
  }

  100% {
    opacity: 1;
    transform: translate(0);
  }
}

@keyframes moveInleft {
  0% {
    opacity: 0;
    transform: translateX(-100px);
  }

  80% {
    transform: translateX(10px);
  }

  100% {
    opacity: 1;
    transform: translate(0);
  }
}

@-webkit-keyframes moveInRight {
  0% {
    opacity: 0;
    transform: translateX(100px);
  }

  80% {
    transform: translateX(-10px);
  }

  100% {
    opacity: 1;
    transform: translate(0);
  }
}

@keyframes moveInRight {
  0% {
    opacity: 0;
    transform: translateX(100px);
  }

  80% {
    transform: translateX(-10px);
  }

  100% {
    opacity: 1;
    transform: translate(0);
  }
}

@keyframes maskLeft {
  0% {
    width: 0%;
    opacity: 0;
  }

  100% {
    width: 100%;
    opacity: 1;
  }
}

@-webkit-keyframes maskLeft {
  0% {
    width: 0%;
    opacity: 0;
  }

  100% {
    width: 100%;
    opacity: 1;
  }
}

.mouse_scroll {
  display: block;
  width: 24px;
  height: 100px;
  margin: 0 auto;
  margin-top: 10px;
}

.m_scroll_arrows {
  display: block;
  width: 5px;
  width: 16px;
  height: 5px;
  height: 16px;
  margin: 0 0 3px 4px;

  border-right: 2px solid white;
  border-bottom: 2px solid white;
  /* IE 9 */
  /* Chrome, Safari, Opera */
  transform: rotate(45deg);
}

.unu {
  margin-top: 1px;
}

.unu,
.doi,
.trei {
  -webkit-animation: mouse-scroll 1s infinite;
  animation: mouse-scroll 1s infinite;
}

.unu {
  -webkit-animation-delay: 0.1s;
  animation-delay: alternate;
  -webkit-animation-direction: alternate;

  animation-direction: alternate;
}

.doi {
  margin-top: -6px;
  -webkit-animation-delay: 0.2s;

  animation-delay: 0.2s;
  -webkit-animation-direction: alternate;
  animation-direction: alternate;
}

.trei {
  margin-top: -6px;
  -webkit-animation-delay: 0.3s;

  animation-delay: 0.3s;
  -webkit-animation-direction: alternate;
  animation-direction: alternate;
}

.mouse {
  top: 170px;
  width: 24px;
  height: 42px;
  border: 2px solid white;
  border-radius: 14px;
  transform: none;
}

.wheel {
  position: relative;
  display: block;
  width: 2px;
  width: 4px;
  height: 5px;

  height: 4px;
  margin: 5px auto;
  border: 2px solid #fff;
  border-radius: 8px;
  background: white;
}

.wheel {
  -webkit-animation: mouse-wheel 0.6s linear infinite;
  animation: mouse-wheel 0.6s linear infinite;
}

@-webkit-keyframes mouse-wheel {
  0% {
    opacity: 1;
    transform: translateY(0);
  }

  100% {
    opacity: 0;
    transform: translateY(6px);
  }
}

@keyframes mouse-wheel {
  0% {
    top: 1px;
  }

  25% {
    top: 2px;
  }

  50% {
    top: 3px;
  }

  75% {
    top: 2px;
  }

  100% {
    top: 1px;
  }
}

@-webkit-keyframes mouse-scroll {
  0% {
    opacity: 0;
  }

  50% {
    opacity: 0.5;
  }

  100% {
    opacity: 1;
  }
}

@keyframes mouse-scroll {
  0% {
    opacity: 0;
  }

  50% {
    opacity: 0.5;
  }

  100% {
    opacity: 1;
  }
}

#mobile-indicator {
  display: none;
}

@media (max-width: 767px) {
  #mobile-indicator {
    display: block;
  }

  .wuji-logo {
    width: 179px;
    height: 34px;
  }

  .bg_video img {
    -o-object-fit: contain;
    object-fit: contain;
  }
}

.bg_video video {
  position: absolute;
  z-index: 0;
  top: 50%;
  left: 50%;
  width: 100%;
  min-width: 100%;
  height: auto;
  min-height: 100%;
  opacity: 1;
  transform: translate(-50%, -50%);
}

.bg_video img {
  position: absolute;
  z-index: 0;
  top: 50%;
  left: 50%;
  width: 100%;
  min-width: 100%;
  height: auto;
  min-height: 100%;
  opacity: 1;
  transform: translate(-50%, -50%);
}

/*----------Developer page---------*/
.developer section {
  overflow: hidden;
}

/* .inside-banner{background:url("../images/developer/header.jpg") center center !important; -webkit-background-size: cover; -moz-background-size: cover; -o-background-size: cover; background-size: cover; width:100%;  height:100%} */
.inside-banner .block img {
  display: inline-block;
  width: auto !important;
}

.inside-banner .block {
  max-width: 100% !important;
  margin: 0 auto;
}

.inside-banner .block {
  text-align: center;
}

.inside-banner .block h3 {
  margin-top: 25px;
  font-size: calc(0.9rem + 1.4vw);
}

.hero .slide01 .img-left {
  width: auto;
  padding-left: 10%;
  margin: 0 auto;
  margin-top: -45% !important;
  -webkit-animation: animate1 5s linear infinite;
  animation: animate1 5s linear infinite;
}

.inside-banner .h100 {
  height: 100vh;
}

.build-game {
  display: flex !important;
  align-items: center;
  background: #00a6c8;
}

.build-games-top {
  position: absolute;
  top: -5%;
  right: -1%;
}

.build-games-bottom {
  position: absolute;
  bottom: 5%;
  left: 5%;
}

.build-game .phone {
  position: relative;
  z-index: 1;
}

.winning-streak {
  display: flex !important;
  align-items: center;
  background: #ee9407;
}

.winning-streak .linked {
  margin: 0 auto;
  background: #7f33b5;
}

.discover-across-world {
  display: flex !important;
  align-items: flex-end;
  padding: 0px !important;
  background: #7f33b5;
}

.discover-across-world .discover-icons {
  top: -15%;
  left: -30%;
}

.ml20 {
  margin-top: 25px;
  margin-left: 20px;
}

.discover-across-world .ml20 h2 {
  line-height: 40px;
}

.industry {
  display: flex !important;
  align-items: center;
  background: #00a6c8;
}

.owl-industry {
  margin-top: 5%;
}

.industry .owl-item &gt; div {
  overflow: hidden;
  margin: 6% 8%;
  border: 2px solid #fff;
  border-radius: 10px;
  color: #fff;
  cursor: pointer;
  transition: all 0.4s ease;
  transform: scale(0.9);
}

.industry .owl-item.center &gt; div {
  margin: 0;
  cursor: auto;
  transform: scale(1.05);
}

.industry .owl-item:not(.center) &gt; div:hover {
  opacity: 0.75;
}

.owl-industry .up-detail {
  padding: 20px;
}

.owl-industry .detail {
  padding: 20px;
  color: #000;
  background: #08ddf9;
}

.owl-industry h3 {
  padding: 15px 0;
  margin-bottom: 0;
}

.industry .owl-item &gt; div img {
  width: 150px;
}

.industry .owl-item &gt; div a {
  color: #000;
}

.industry .owl-stage {
  display: flex;
  align-items: center;
}

.reach-out {
  display: flex !important;
  align-items: center;
  background: #7f33b5;
}

.input-text,
.button,
.input-text:focus,
.button:focus {
  width: 100%;
  max-width: 280px;
  padding: 10px 20px;
  margin-bottom: 10%;
  border: 2px solid #ba78ff;
  border-radius: 20px;
  outline: none;
  color: #ffffff;
  background: transparent;
}

.button {
  border-color: #00a6c8 !important;
  background: #00a6c8;
  text-align: center;
}

.form {
  margin-top: 5%;
}

.game-begin {
  display: flex !important;
  align-items: center;
  background: #ee9407;
}

.allfeature {
  display: flex !important;
  align-items: center;
  background: #7f33b5;
}

/* .owl-allfeature{display: flex; border-radius:30px; background:#46047f; border:10px solid #46047f; margin-top:10%;} */
.owl-allfeature {
  display: flex;
  border-radius: 30px;
}

.allfeature-bg {
  padding-left: 0px;
  margin-top: 10%;
  border: 10px solid #46047f;
  border-radius: 30px;
  background: #46047f;
}

.allfeature .owl-stage-outer {
  overflow: inherit !important;
}

.feature {
  position: relative;
}

.allfeature .owl-item:first-child .feature {
  overflow: hidden;
  border-top-left-radius: 25px;
  border-bottom-left-radius: 25px;
}

.allfeature .owl-item:last-child .feature .dec {
  border-bottom-right-radius: 25px;
}

.allfeature .owl-item:first-child .feature .dec {
  border-bottom-left-radius: 25px;
}

.allfeature .owl-item:last-child .feature {
  overflow: hidden;
  border-top-right-radius: 25px;
  border-bottom-right-radius: 25px;
}

.owl-discover img {
  width: auto !important;
}

.owl-allfeature .owl-item {
  position: relative;
}

.owl-allfeature .owl-item:not(:last-child)::after {
  position: absolute;
  top: 0;
  right: 0;
  width: 1px;
  height: 100%;
  background: #fff;
  content: '';
}

.feature .img-block {
  position: relative;
}

.feature .img-block img {
  width: 100%;
}

.feature .img-block::after {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* FF3.6-15 */
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0) 34%,
    rgba(0, 0, 0, 0) 35%,
    rgba(0, 0, 0, 0.9) 98%,
    rgba(0, 0, 0, 1) 100%
  );
  content: '';
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#000000', GradientType=0);
  /* IE6-9 */
}

.feature .caption {
  position: absolute;
  z-index: 1;
  bottom: 0;
  padding: 7%;
  color: #f9b815;
}

.feature .caption h3 {
  display: inline-block;
  padding-right: 20%;
  padding-bottom: 5px;
  border-bottom: 2px solid #fff;
  color: #fff;
}

.feature .overlay {
  /* IE6-9 */
  position: absolute;
  bottom: 0;
  display: none;
  width: 100%;
  height: 100%;
  /* FF3.6-15 */
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(
    to bottom,
    rgba(70, 4, 127, 0) 34%,
    rgba(70, 4, 127, 0) 35%,
    rgba(70, 4, 127, 0.95) 55%,
    rgba(70, 4, 127, 1) 100%
  );
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#000000', GradientType=0);
}

.feature:hover.feature {
  overflow: inherit !important;
}

.feature:hover.feature .overlay {
  display: block;
}

.feature:hover.feature .dec {
  position: relative;
  z-index: 9;
  margin-top: 130px;
  color: #fff !important;
  background: transparent !important;
}

.feature:hover.feature .caption {
  bottom: -130px;
  padding-bottom: 0px;
  margin-bottom: -15px;
}

.feature:hover.feature .caption h3 {
  border-bottom: 2px solid #f9b815;
  color: #f9b815;
  font-size: 2.4rem;
}

.feature:hover.feature .caption h5 {
  color: #fff;
  font-size: 1.5rem;
}

.feature:hover.feature .img-block img {
  margin-top: -129px;
  border: 1px solid #fff;
  border-radius: 20px;
}

.feature .dec {
  height: 110px;
  padding: 5% 7%;
  color: #000;
  background: #fff;
}

.developer .linked {
  display: block;
  width: 220px;
  margin-bottom: 15px;
  color: #fff;
  background: #7f33b5;
}

.reach-out .form .col-12 {
  text-align: center;
}

.developer .circle-vector-left {
  bottom: 0px;
}

.developer .circle-vector-left img {
  width: 50%;
}

.build-game .overlay_a {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #00a6c8;
}

.winning-streak .overlay_a {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #ee9407;
}

.discover-across-world .discover-iocns {
  position: absolute;
  top: -5%;
  left: -24%;
}

.discover-across-world .deActive {
  height: 150px;
}

.icon {
  width: 60px;
}

.form ::-webkit-input-placeholder {
  opacity: 1;
  /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: #fff;
  /* Firefox */
}

.form ::-moz-placeholder {
  opacity: 1;
  /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: #fff;
  /* Firefox */
}

.form :-ms-input-placeholder {
  opacity: 1;
  /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: #fff;
  /* Firefox */
}

.form ::-ms-input-placeholder {
  opacity: 1;
  /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: #fff;
  /* Firefox */
}

.form ::placeholder {
  opacity: 1;
  /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: #fff;
  /* Firefox */
}

.form :-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  color: #fff;
}

.form ::-ms-input-placeholder {
  /* Microsoft Edge */
  color: #fff;
}

@-webkit-keyframes animate1 {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }

  10% {
    opacity: 1;
    transform: translateY(-20px);
  }

  20% {
    transform: translateY(-20px);
  }

  40% {
    transform: translateY(-20px);
  }

  60% {
    transform: translateY(-20px);
  }

  80% {
    transform: translateY(-20px);
  }

  100% {
    opacity: 0;
    transform: translateY(-20px);
  }
}

@keyframes animate1 {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }

  10% {
    opacity: 1;
    transform: translateY(-20px);
  }

  20% {
    transform: translateY(-20px);
  }

  40% {
    transform: translateY(-20px);
  }

  60% {
    transform: translateY(-20px);
  }

  80% {
    transform: translateY(-20px);
  }

  100% {
    opacity: 0;
    transform: translateY(-20px);
  }
}

.inside-banner .block {
  width: 540px !important;
  margin-right: 10%;
}

.press-releases-header h1,
.toolkit-header h1 {
  font-size: calc(0.9rem + 2.2vw);
}

.inside-banner .block {
  width: 540px !important;
}

.reach-out-active {
  position: fixed;
  top: 0;
}

section.press-releases {
  height: auto !important;
  background: #ffffff;
}

.press-releases img {
  width: 100%;
  margin-top: 10px;
}

section.press-releases .link {
  display: flex;
  align-items: center;
  color: #7f33b5;
}

section.press-releases .link span {
  font-size: 25px;
}

.press-releases-header {
  position: relative;
  display: flex !important;
  align-items: center;
  justify-content: center;
  width: 100%;
  background: url('../images/press-releases/header.jpg') center center;
  background-size: cover;
}

.press-releases-body .header,
.toolkit-body .header {
  background: rgba(0, 0, 0, 0.9);
}

.press-releases .linked {
  display: block;
  width: 200px;
  margin-bottom: 15px;
  color: #fff;
  background: #7f33b5;
  text-align: center;
}

.press-releases-header::after {
  position: absolute;
  content: url('../images/press-releases/header-right-vector.png');
}

.press-releases-header .right-img {
  position: relative;
  z-index: 9;
}

.press-releases-header .block,
.toolkit-header .block {
  margin: 0 auto;
}

section.press-releases h2 {
  font-size: calc(0.75rem + 1.8vw);
}

.toolkit-header {
  position: relative;
  display: flex !important;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 70vh;
  background: url('../images/toolkit/header.jpg') center center;
  background-size: cover;
}

.tookit-section {
  background: #00a6c8;
}

.toolkit-body section {
  height: auto !important;
}

.toolkit-body section .block {
  width: 100%;
  /* max-width: 660px; */
}

.toolkit-body section .linked {
  display: inline-block;
  padding-right: 30px;
  padding-left: 30px;
  margin-bottom: 15px;
  color: #fff;
  background: #7f33b5;
  text-align: center;
}

.yellow {
  background-color: #ee9407 !important;
}

.tookit-section .card {
  position: relative;
  z-index: 9;
}

.bg-img-none {
  background: none !important;
}

.height-auto {
  height: auto !important;
}

.linked {
  position: relative;
  overflow: hidden;
}

.linked:after {
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.4);
  content: '';
  transition: none;
}

.linked:hover:after {
  width: 120%;
  background-color: rgba(255, 255, 255, 0);
  transition: all 0.4s ease-in-out;
}

.form input[type='text'] {
  padding: 10px;
  margin-bottom: 2.5rem;
  color: #a6a8ab;
  background-color: #f1f1f2;
}

.form input[type='text']::-webkit-input-placeholder {
  color: #a6a8ab;
}

.form input[type='text']::-moz-placeholder {
  color: #a6a8ab;
}

.form input[type='text']:-ms-input-placeholder {
  color: #a6a8ab;
}

.form input[type='text']::-ms-input-placeholder {
  color: #a6a8ab;
}

.form input[type='text']::placeholder {
  color: #a6a8ab;
}

.bd-gray-100 {
  background-color: #ebeff3;
}

.tookit-section .card-body {
  /* max-width: 80%; */
}

.toolkit-body .fixed-top {
  position: -webkit-sticky;
  position: sticky;
}

.bg-body-secondary {
  color: #7f33b5;
  background-color: #f3f3f3;
  font-size: 3rem;
}

.bg-body-secondary:hover {
  color: #f3f3f3;
  background-color: #7f33b5;
}
</pre></body></html>