@import url("https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700;1,9..40,300;1,9..40,400;1,9..40,500;1,9..40,600;1,9..40,700&family=Outfit:wght@400;500;600;700;800&display=swap");
/*--------------------------------------------------------------
# base
--------------------------------------------------------------*/
::-moz-selection {
  color: #F7F7F7;
  background: rgba(10, 177, 193, 0.6);
}
::selection {
  color: #F7F7F7;
  background: rgba(10, 177, 193, 0.6);
}

html {
  scroll-padding-top: 20px;
}

body {
  font-family: "DM Sans", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 15px;
  background-color: #050508;
  color: #c5c7ca;
  line-height: 1.6;
  overflow-x: hidden;
}

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

section {
  overflow: hidden;
}

a {
  text-decoration: none;
}
a:hover {
  color: #0ab1c1;
}
a:focus, a:hover {
  text-decoration: none;
}

i,
span,
a {
  display: inline-block;
}

audio,
img,
svg,
video {
  vertical-align: middle;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Outfit", sans-serif;
  font-weight: normal;
  margin: 0;
  color: #F7F7F7;
}

p {
  margin: 0;
}

h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
  color: inherit;
  font-weight: normal;
}

.scroll-top {
  width: 35px;
  height: 35px;
  background-color: #0ab1c1;
  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;
  font-size: 18px;
  color: #fff;
  border-radius: 7px;
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 9;
  cursor: pointer;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  display: none;
}
.scroll-top img {
  height: 18px;
  -webkit-transform: scaleY(-1);
          transform: scaleY(-1);
  fill: #ffffff;
}
.scroll-top:focus, .scroll-top:hover {
  color: #fff;
  -webkit-transform: translateY(-4px);
          transform: translateY(-4px);
  -webkit-box-shadow: 0 0 0 0.25rem rgba(10, 177, 193, 0.5);
          box-shadow: 0 0 0 0.25rem rgba(10, 177, 193, 0.5);
}

/*--------------------------------------------------------------
  ##  Page Loader
  --------------------------------------------------------------*/
.page-loader {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 99999999;
  background-color: #050508;
}

.loader {
  position: relative;
  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%;
  max-width: 6rem;
  margin-top: 3rem;
  margin-bottom: 3rem;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.loader:before,
.loader:after {
  content: "";
  position: absolute;
  border-radius: 50%;
  -webkit-animation: pulsOut 1.8s ease-in-out infinite;
          animation: pulsOut 1.8s ease-in-out infinite;
  -webkit-filter: drop-shadow(0 0 1rem rgba(255, 255, 255, 0.75));
          filter: drop-shadow(0 0 1rem rgba(255, 255, 255, 0.75));
}

.loader:before {
  width: 100%;
  padding-bottom: 100%;
  -webkit-box-shadow: inset 0 0 0 1rem #fff;
          box-shadow: inset 0 0 0 1rem #fff;
  -webkit-animation-name: pulsIn;
          animation-name: pulsIn;
}

.loader:after {
  width: calc(100% - 2rem);
  padding-bottom: calc(100% - 2rem);
  -webkit-box-shadow: 0 0 0 0 #fff;
          box-shadow: 0 0 0 0 #fff;
}

@-webkit-keyframes pulsIn {
  0% {
    -webkit-box-shadow: inset 0 0 0 1rem #fff;
            box-shadow: inset 0 0 0 1rem #fff;
    opacity: 1;
  }
  50%, 100% {
    -webkit-box-shadow: inset 0 0 0 0 #fff;
            box-shadow: inset 0 0 0 0 #fff;
    opacity: 0;
  }
}

@keyframes pulsIn {
  0% {
    -webkit-box-shadow: inset 0 0 0 1rem #fff;
            box-shadow: inset 0 0 0 1rem #fff;
    opacity: 1;
  }
  50%, 100% {
    -webkit-box-shadow: inset 0 0 0 0 #fff;
            box-shadow: inset 0 0 0 0 #fff;
    opacity: 0;
  }
}
@-webkit-keyframes pulsOut {
  0%, 50% {
    -webkit-box-shadow: 0 0 0 0 #fff;
            box-shadow: 0 0 0 0 #fff;
    opacity: 0;
  }
  100% {
    -webkit-box-shadow: 0 0 0 1rem #fff;
            box-shadow: 0 0 0 1rem #fff;
    opacity: 1;
  }
}
@keyframes pulsOut {
  0%, 50% {
    -webkit-box-shadow: 0 0 0 0 #fff;
            box-shadow: 0 0 0 0 #fff;
    opacity: 0;
  }
  100% {
    -webkit-box-shadow: 0 0 0 1rem #fff;
            box-shadow: 0 0 0 1rem #fff;
    opacity: 1;
  }
}
/*--------------------------------------------------------------
	## d-modal
--------------------------------------------------------------*/
.d-modal .modal-content {
  background-color: #272727;
}
.d-modal .modal-header {
  border-color: #3e3e3e;
}
.d-modal .modal-body img {
  width: 100%;
  max-width: 400px;
}
@media only screen and (max-width: 767px) {
  .d-modal .modal-body img {
    max-width: 220px;
  }
}
.d-modal .modal-body ul {
  margin-top: 12px;
}
.d-modal .btn-close {
  background-color: red;
  opacity: 1;
}

/*--------------------------------------------------------------
  ## btn-outline
--------------------------------------------------------------*/
.btn-outline {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  text-decoration: none;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  color: #c5c7ca;
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  background: #000000;
  padding: 10px 27px;
  width: 100%;
  max-width: 233px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  -webkit-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}
.btn-outline span {
  margin: auto;
}
.btn-outline svg {
  margin-left: auto;
  -webkit-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}
.btn-outline:hover {
  color: #0ab1c1;
  border-color: #0ab1c1;
}
.btn-outline:hover svg path {
  fill: #0ab1c1;
}

.btn-outline-light {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  text-decoration: none;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  color: #ffffff;
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  background: transparent;
  padding: 10px 24px;
  width: 100%;
  max-width: 223px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  -webkit-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}
.btn-outline-light svg {
  margin-left: 7px;
  -webkit-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}
.btn-outline-light:hover {
  color: #0ab1c1;
  border-color: #ffffff;
  background-color: #ffffff;
}
.btn-outline-light:hover svg path {
  fill: #0ab1c1;
}

.btn-round {
  display: inline-block;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-decoration: none;
  font-family: "DM Sans", sans-serif;
  font-size: 16px;
  color: #c5c7ca;
  font-style: normal;
  font-weight: 400;
  border-radius: 50px;
  border: 2.676px solid #0ab1c1;
  padding: 13px 26px;
  width: 100%;
  max-width: 260px;
  -webkit-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}
@media only screen and (max-width: 767px) {
  .btn-round {
    padding: 11px 25px;
    font-size: 15px;
  }
}
.btn-round:hover {
  background-color: #0ab1c1;
  color: #fff;
}

.btn-round-light {
  display: inline-block;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-decoration: none;
  font-family: "DM Sans", sans-serif;
  font-size: 16px;
  background-color: #fff;
  color: #000;
  border: 1px solid rgba(255, 255, 255, 0.4);
  font-style: normal;
  font-weight: 400;
  border-radius: 50px;
  padding: 12px 46px;
  -webkit-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}
@media only screen and (max-width: 767px) {
  .btn-round-light {
    padding: 11px 25px;
    font-size: 15px;
  }
}
.btn-round-light svg {
  rotate: 90deg;
  -webkit-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}
.btn-round-light svg path {
  fill: #000;
  -webkit-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}
.btn-round-light:hover {
  border-color: #0ab1c1;
  background-color: #0ab1c1;
  color: #fff;
}
.btn-round-light:hover svg path {
  fill: #fff;
}

/*--------------------------------------------------------------
# navbar
--------------------------------------------------------------*/
.navbar-area {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 99;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  border-bottom: 1px solid rgba(255, 255, 255, 0);
}
@media (min-width: 992px) {
  .navbar-area .nav-center {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }
}

.navbar {
  padding: 0;
  position: relative;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  padding: 30px 0;
}
@media only screen and (max-width: 1199px) {
  .navbar {
    padding: 16px 0px;
  }
}
@media only screen and (max-width: 991px) {
  .navbar {
    padding: 14px 0;
  }
}
@media (max-width: 767px) {
  .navbar {
    padding: 12px 0;
  }
}
@media (max-width: 482px) {
  .navbar {
    padding: 12px 0;
  }
}
.navbar .navbar-brand {
  padding: 0;
  text-decoration: none;
}
.navbar .navbar-brand img {
  height: 32px;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
@media only screen and (max-width: 767px) {
  .navbar .navbar-brand img {
    height: 25px;
  }
}
@media only screen and (max-width: 482px) {
  .navbar .navbar-brand img {
    height: 25px;
  }
}
.navbar .navbar-nav {
  /** Large devices (desktops, 992px and up) **/
}
@media (min-width: 992px) {
  .navbar .navbar-nav {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.navbar .navbar-nav .nav-item {
  position: relative;
}
.navbar .navbar-nav .nav-item:not(:first-child) {
  margin-left: 25px;
}
@media only screen and (max-width: 1299px) {
  .navbar .navbar-nav .nav-item:not(:first-child) {
    margin-left: 20px;
  }
}
@media only screen and (max-width: 991px) {
  .navbar .navbar-nav .nav-item:not(:first-child) {
    margin-left: 16px;
  }
}
@media only screen and (max-width: 1199px) {
  .navbar .navbar-nav .nav-item {
    margin-left: 20px;
  }
}
@media only screen and (max-width: 991px) {
  .navbar .navbar-nav .nav-item {
    margin-left: 16px;
  }
}
.navbar .navbar-nav .nav-item a {
  font-family: "Outfit", sans-serif;
  text-decoration: none;
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #f7f7f7;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  padding: 10px 0;
  position: relative;
  font-weight: 600;
}
.navbar .navbar-nav .nav-item a:hover, .navbar .navbar-nav .nav-item a.active {
  color: #0ab1c1;
}
@media only screen and (max-width: 991px) {
  .navbar .navbar-nav .nav-item a {
    display: inline-block;
    margin: 4px 0px;
    padding: 6px 0;
  }
}
@media only screen and (max-width: 767px) {
  .navbar .navbar-nav .nav-item a {
    display: inline-block;
    padding: 6px 0;
  }
}
@media only screen and (max-width: 991px) {
  .navbar .navbar-collapse {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    z-index: 9;
    padding: 15px 12px 20px 12px;
    background-color: #0b0f1b;
    border-radius: 8px;
  }
}
@media only screen and (max-width: 767px) {
  .navbar .navbar-collapse {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    z-index: 9;
  }
}
.navbar .navbar-toggler {
  padding: 0;
}
.navbar .navbar-toggler:focus {
  outline: none;
  -webkit-box-shadow: none;
  box-shadow: none;
}
.navbar .navbar-toggler .toggler-icon {
  width: 30px;
  height: 2px;
  background-color: #ffffff;
  display: block;
  margin: 5px 0;
  position: relative;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}
.navbar .navbar-toggler.active .toggler-icon:nth-of-type(1) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  top: 7px;
}
.navbar .navbar-toggler.active .toggler-icon:nth-of-type(2) {
  opacity: 0;
}
.navbar .navbar-toggler.active .toggler-icon:nth-of-type(3) {
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);
  top: -7px;
}

.sticky {
  position: fixed;
  z-index: 99;
  background-color: rgba(0, 0, 0, 0.8);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  -webkit-backdrop-filter: blur(4px);
          backdrop-filter: blur(4px);
  -webkit-box-shadow: 0 2px 2px -2px rgba(0, 0, 0, 0.3);
          box-shadow: 0 2px 2px -2px rgba(0, 0, 0, 0.3);
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}
.sticky .navbar {
  padding: 10px 0;
}
@media only screen and (max-width: 1199px) {
  .sticky .navbar {
    padding: 10px 0px;
  }
}
@media only screen and (max-width: 991px) {
  .sticky .navbar {
    padding: 12px 0;
  }
}
@media (max-width: 767px) {
  .sticky .navbar {
    padding: 12px 0;
  }
}
@media (max-width: 482px) {
  .sticky .navbar {
    padding: 12px 0;
  }
}
.sticky .navbar .navbar-brand {
  padding: 0;
  text-decoration: none;
}

.nav-social .nav-item .apply-btn {
  font-family: "Outfit", sans-serif;
  text-decoration: none;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 50px;
  border: 3px solid #0ab1c1;
  text-align: center;
  background-color: transparent;
  padding: 8px 24px !important;
  text-transform: uppercase;
  font-size: 13px !important;
  font-weight: 700 !important;
  -webkit-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}
.nav-social .nav-item .apply-btn:hover {
  background-color: #0ab1c1;
  color: #fff !important;
}
.nav-social .nav-item .apply-btn img {
  height: 14px;
  margin-left: 10px;
}

/*--------------------------------------------------------------
  ## hero-area
--------------------------------------------------------------*/
.hero-area {
  position: relative;
  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;
  text-align: center;
  width: 100%;
  min-height: 100vh;
}
.hero-area::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left bottom, left top, from(rgba(8, 9, 10, 0.64)), to(rgba(8, 9, 10, 0.7)));
  background: linear-gradient(0deg, rgba(8, 9, 10, 0.64) 0%, rgba(8, 9, 10, 0.7) 100%);
}
.hero-area .video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  -o-object-fit: cover;
     object-fit: cover;
  min-width: 100%;
  min-height: 100%;
}
.hero-area .hero-text {
  position: relative;
}
.hero-area .hero-text h1 {
  color: #e8eaed;
  font-family: "Outfit", sans-serif;
  font-size: 100px;
  line-height: 1.2;
  font-style: normal;
  font-weight: 400;
  letter-spacing: 3px;
}
@media only screen and (max-width: 1399px) {
  .hero-area .hero-text h1 {
    font-size: 90px;
  }
}
@media only screen and (max-width: 1199px) {
  .hero-area .hero-text h1 {
    font-size: 80px;
  }
}
@media only screen and (max-width: 991px) {
  .hero-area .hero-text h1 {
    font-size: 60px;
  }
}
@media only screen and (max-width: 767px) {
  .hero-area .hero-text h1 {
    font-size: 40px;
  }
}
@media only screen and (max-width: 482px) {
  .hero-area .hero-text h1 {
    font-size: 28px;
  }
}
.hero-area .hero-text h1 span {
  background: linear-gradient(87.65deg, #0ab1c1 -8.44%, #badaf7 97.32%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
  text-align: center;
}
@media only screen and (max-width: 1399px) {
  .hero-area .hero-text h1 span {
    width: auto;
  }
}
/*--------------------------------------------------------------
  ## stand
--------------------------------------------------------------*/
.stand {
  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;
  min-height: 100vh;
  padding: 80px 0px;
}
@media only screen and (max-width: 767px) {
  .stand {
    padding: 50px 0px;
    min-height: 50vh;
  }
}

.stand-txt {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.stand-txt h2 {
  font-family: "DM Sans", sans-serif;
  font-weight: 400;
  color: #F7F7F7;
  font-size: 47px;
  line-height: 1.3;
}
@media only screen and (max-width: 1299px) {
  .stand-txt h2 {
    font-size: 40px;
  }
}
@media only screen and (max-width: 767px) {
  .stand-txt h2 {
    font-size: 30px;
  }
}
@media only screen and (max-width: 482px) {
  .stand-txt h2 {
    font-size: 25px;
  }
}
.stand-txt h2 span {
  font-weight: 700;
  background: linear-gradient(78deg, #0ab1c1 0%, #a8bdea 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/*--------------------------------------------------------------
  ## case
--------------------------------------------------------------*/
.case {
  padding: 80px 0px;
}
@media only screen and (max-width: 767px) {
  .case {
    padding: 50px 0px;
  }
}
.case .sec-t {
  text-align: center;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 70px;
}
@media only screen and (max-width: 1199px) {
  .case .sec-t {
    margin-bottom: 60px;
  }
}
@media only screen and (max-width: 991px) {
  .case .sec-t {
    margin-bottom: 50px;
  }
}
@media only screen and (max-width: 767px) {
  .case .sec-t {
    margin-bottom: 40px;
  }
}
.case .sec-t h2 {
  font-family: "Outfit", sans-serif;
  font-weight: 600;
  font-size: 65px;
  color: #F7F7F7;
  letter-spacing: 1.2px;
  margin-bottom: 16px;
}
@media only screen and (max-width: 1199px) {
  .case .sec-t h2 {
    font-size: 60px;
  }
}
@media only screen and (max-width: 991px) {
  .case .sec-t h2 {
    font-size: 45px;
  }
}
@media only screen and (max-width: 767px) {
  .case .sec-t h2 {
    font-size: 40px;
    margin-bottom: 10px;
  }
}
@media only screen and (max-width: 767px) {
  .case .sec-t h2 {
    font-size: 33px;
  }
}
.case .sec-t p {
  color: #909dac;
  font-size: 19px;
  font-style: normal;
  font-weight: 700;
  padding: 0px 10px;
  margin-bottom: 22px;
}
@media only screen and (max-width: 767px) {
  .case .sec-t p {
    font-size: 16px;
    font-weight: 600;
  }
}

.case-single {
  background: #121212;
  -webkit-box-shadow: 0px 0px 56.891px 0px rgba(0, 0, 0, 0.25);
          box-shadow: 0px 0px 56.891px 0px rgba(0, 0, 0, 0.25);
  padding: 60px 30px 30px 30px;
  text-align: center;
  height: 100%;
  -webkit-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}
@media only screen and (max-width: 1199px) {
  .case-single {
    padding: 50px 30px 30px 30px;
  }
}
@media only screen and (max-width: 767px) {
  .case-single {
    padding: 35px 23px 23px 23px;
  }
}
.case-single .case-img {
  height: 155px;
  -o-object-fit: contain;
     object-fit: contain;
  margin-bottom: 50px;
  -webkit-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}
@media only screen and (max-width: 1199px) {
  .case-single .case-img {
    height: 140px;
  }
}
@media only screen and (max-width: 991px) {
  .case-single .case-img {
    margin-bottom: 35px;
  }
}
@media only screen and (max-width: 767px) {
  .case-single .case-img {
    height: 130px;
  }
}
.case-single h3 {
  font-family: "Outfit", sans-serif;
  font-size: 26px;
  font-style: normal;
  font-weight: 600;
  color: #F7F7F7;
  margin-bottom: 24px;
}
@media only screen and (max-width: 991px) {
  .case-single h3 {
    font-size: 22px;
    margin-bottom: 18px;
  }
}
.case-single p {
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
}
@media only screen and (max-width: 767px) {
  .case-single p {
    font-size: 15px;
    font-weight: 500;
  }
}
.case-single:hover .case-img {
  -webkit-animation: shake 0.5s ease-in-out infinite;
          animation: shake 0.5s ease-in-out infinite;
}

/* Define the keyframe animation */
@-webkit-keyframes shake {
  0%, 100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  25%, 75% {
    -webkit-transform: translateX(-5px);
            transform: translateX(-5px);
  }
  50% {
    -webkit-transform: translateX(5px);
            transform: translateX(5px);
  }
}
@keyframes shake {
  0%, 100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  25%, 75% {
    -webkit-transform: translateX(-5px);
            transform: translateX(-5px);
  }
  50% {
    -webkit-transform: translateX(5px);
            transform: translateX(5px);
  }
}
/*--------------------------------------------------------------
  ## meet
--------------------------------------------------------------*/
.meet {
  padding: 80px 0px;
}
@media only screen and (max-width: 767px) {
  .meet {
    padding: 50px 0px;
  }
}
.meet .sec-t {
  text-align: center;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 70px;
}
@media only screen and (max-width: 1199px) {
  .meet .sec-t {
    margin-bottom: 60px;
  }
}
@media only screen and (max-width: 991px) {
  .meet .sec-t {
    margin-bottom: 50px;
  }
}
@media only screen and (max-width: 767px) {
  .meet .sec-t {
    margin-bottom: 40px;
  }
}
.meet .sec-t h2 {
  font-family: "Outfit", sans-serif;
  font-weight: 600;
  font-size: 70px;
  color: #F7F7F7;
  letter-spacing: 1.2px;
  margin-bottom: 16px;
}
@media only screen and (max-width: 1199px) {
  .meet .sec-t h2 {
    font-size: 60px;
  }
}
@media only screen and (max-width: 991px) {
  .meet .sec-t h2 {
    font-size: 45px;
  }
}
@media only screen and (max-width: 767px) {
  .meet .sec-t h2 {
    font-size: 40px;
    margin-bottom: 10px;
  }
}
@media only screen and (max-width: 767px) {
  .meet .sec-t h2 {
    font-size: 33px;
  }
}
.meet .sec-t p {
  color: #909dac;
  font-size: 19px;
  font-style: normal;
  font-weight: 700;
  padding: 0px 10px;
  margin-bottom: 22px;
}
@media only screen and (max-width: 767px) {
  .meet .sec-t p {
    font-size: 16px;
    font-weight: 600;
  }
}
.meet .video-wrapper {
  position: relative;
}
.meet .video-wrapper .play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  display: inline-block;
  width: 100px;
  height: 100px;
  z-index: 1;
}
.meet .video-wrapper .play-button img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  position: relative;
  z-index: 2;
}

.wave {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100px;
  height: 100px;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 50%;
  -webkit-transform: translate(-50%, -50%) scale(1);
          transform: translate(-50%, -50%) scale(1);
  opacity: 0;
  -webkit-animation: wave-animation 2s infinite;
          animation: wave-animation 2s infinite;
  z-index: 0;
}

.wave1 {
  -webkit-animation-delay: 0s;
          animation-delay: 0s;
}

.wave2 {
  -webkit-animation-delay: 0.5s;
          animation-delay: 0.5s;
}

.wave3 {
  -webkit-animation-delay: 1s;
          animation-delay: 1s;
}

@-webkit-keyframes wave-animation {
  0% {
    -webkit-transform: translate(-50%, -50%) scale(1);
            transform: translate(-50%, -50%) scale(1);
    opacity: 0.6;
  }
  100% {
    -webkit-transform: translate(-50%, -50%) scale(2.5);
            transform: translate(-50%, -50%) scale(2.5);
    opacity: 0;
  }
}

@keyframes wave-animation {
  0% {
    -webkit-transform: translate(-50%, -50%) scale(1);
            transform: translate(-50%, -50%) scale(1);
    opacity: 0.6;
  }
  100% {
    -webkit-transform: translate(-50%, -50%) scale(2.5);
            transform: translate(-50%, -50%) scale(2.5);
    opacity: 0;
  }
}
.about-txts h3 {
  font-size: 34px;
  background: linear-gradient(78deg, #0ab1c1 0%, #a8bdea 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 20px;
}
@media only screen and (max-width: 767px) {
  .about-txts h3 {
    font-size: 30px;
    margin-bottom: 16px;
  }
}
.about-txts p {
  font-size: 16px;
}
.about-txts p:not(:last-child) {
  margin-bottom: 20px;
}
@media only screen and (max-width: 767px) {
  .about-txts p {
    font-size: 16px;
  }
}

/*--------------------------------------------------------------
  ## table
--------------------------------------------------------------*/
/* Custom styling for the table */
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 50px;
}
.comparison-table > :not(caption) > * > * {
  border-color: rgba(255, 255, 255, 0.1490196078);
}
@media only screen and (max-width: 767px) {
  .comparison-table {
    margin-bottom: 40px;
  }
}

.comparison-table th,
.comparison-table td {
  height: 115px;
}
@media only screen and (max-width: 767px) {
  .comparison-table th,
  .comparison-table td {
    height: 90px;
  }
}
.comparison-table th.bg,
.comparison-table td.bg {
  background: rgba(255, 255, 255, 0.05);
}

.comparison-table td {
  font-size: 17px;
  color: #c5c7ca;
  vertical-align: middle;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  .comparison-table td {
    font-size: 16px;
  }
}
@media only screen and (max-width: 482px) {
  .comparison-table td {
    font-size: 14px;
  }
}
.comparison-table td.bg {
  background: rgba(255, 255, 255, 0.05);
  color: #ffe39b;
  font-size: 22px;
  font-weight: 500;
}
@media only screen and (max-width: 767px) {
  .comparison-table td.bg {
    font-size: 21px;
  }
}
@media only screen and (max-width: 482px) {
  .comparison-table td.bg {
    font-size: 17px;
  }
}

.comparison-table th {
  text-align: center;
  vertical-align: middle;
  max-width: 120px;
}
@media only screen and (max-width: 767px) {
  .comparison-table th {
    max-width: 90px;
  }
}
@media only screen and (max-width: 482px) {
  .comparison-table th {
    max-width: 80px;
  }
}
.comparison-table th span {
  background: -webkit-gradient(linear, left top, right top, from(#6489ff), to(#56c2ff));
  background: linear-gradient(90deg, #6489ff 0%, #56c2ff 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 18px;
  font-weight: 700;
  color: #F7F7F7;
}
@media only screen and (max-width: 767px) {
  .comparison-table th span {
    font-size: 17px;
  }
}
@media only screen and (max-width: 482px) {
  .comparison-table th span {
    font-size: 15px;
  }
}
.comparison-table th h5 {
  font-size: 18px;
  font-weight: 700;
  color: #F7F7F7;
  margin-bottom: 10px;
}
@media only screen and (max-width: 767px) {
  .comparison-table th h5 {
    margin-bottom: 4px;
    font-size: 17px;
  }
}
@media only screen and (max-width: 482px) {
  .comparison-table th h5 {
    font-size: 15px;
  }
}
.comparison-table th small {
  color: #888d93;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
}
@media only screen and (max-width: 767px) {
  .comparison-table th small {
    font-size: 15px;
  }
}
@media only screen and (max-width: 482px) {
  .comparison-table th small {
    font-size: 14px;
  }
}
.comparison-table th p {
  color: #888d93;
  padding: 0px 70px;
  text-align: center;
  font-family: Inter;
  font-size: 12.56px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
@media only screen and (max-width: 1199px) {
  .comparison-table th p {
    padding: 0px 40px;
  }
}
@media only screen and (max-width: 991px) {
  .comparison-table th p {
    padding: 0px 20px;
  }
}
@media only screen and (max-width: 767px) {
  .comparison-table th p {
    padding: 0px 1px;
    font-size: 9px;
  }
}

/*--------------------------------------------------------------
  ## tokeno
--------------------------------------------------------------*/
.tokeno {
  padding: 80px 0px;
}
@media only screen and (max-width: 767px) {
  .tokeno {
    padding: 50px 0px;
  }
}
.tokeno .sec-t {
  margin-bottom: 40px;
}
@media only screen and (max-width: 767px) {
  .tokeno .sec-t {
    margin-bottom: 16px;
  }
}
.tokeno .sec-t h2 {
  color: #f7f7f7;
  text-align: center;
  font-family: "Outfit", sans-serif;
  font-size: 47px;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 6px;
  text-transform: uppercase;
}
@media only screen and (max-width: 1199px) {
  .tokeno .sec-t h2 {
    font-size: 37px;
  }
}
@media only screen and (max-width: 767px) {
  .tokeno .sec-t h2 {
    font-size: 30px;
    letter-spacing: 4px;
  }
}

.token-box {
  position: relative;
}
.token-box .token-graph {
  width: 100%;
  height: auto;
}
.token-box .token-text {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  text-align: center;
}
.token-box .token-text h4 {
  color: #3db9ff;
  text-shadow: 0px 4.918px 16.392px rgba(61, 255, 220, 0.3);
  font-family: "Outfit", sans-serif;
  font-size: 80px;
  font-style: normal;
  font-weight: 600;
  line-height: 1;
  margin-bottom: 3px;
}
@media only screen and (max-width: 1199px) {
  .token-box .token-text h4 {
    font-size: 65px;
  }
}
.token-box .token-text p {
  font-family: "Outfit", sans-serif;
  font-size: 37px;
  font-style: normal;
  font-weight: 500;
  line-height: 1.2;
}
@media only screen and (max-width: 1199px) {
  .token-box .token-text p {
    font-size: 28px;
  }
}

.token-list .token-point {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.token-list .token-point:not(:last-child) {
  margin-bottom: 22px;
}
.token-list .token-point::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 100%;
  height: 1px;
  background-color: #ffffff;
  z-index: -1;
}
.token-list .token-point::before {
  content: "";
  width: 10.705px;
  height: 10.705px;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  border-radius: 2.676px;
  background: #257dff;
  -webkit-box-shadow: 0px 2.676px 13.382px 0px rgba(0, 225, 255, 0.5);
          box-shadow: 0px 2.676px 13.382px 0px rgba(0, 225, 255, 0.5);
}
.token-list .token-point.pink::before {
  border-radius: 2.676px;
  background: #ff2bd5;
  -webkit-box-shadow: 0px 2.676px 13.382px 0px rgba(0, 225, 255, 0.5);
          box-shadow: 0px 2.676px 13.382px 0px rgba(0, 225, 255, 0.5);
}
.token-list .token-point.green::before {
  border-radius: 2.676px;
  background: #3adba3;
  -webkit-box-shadow: 0px 2.676px 13.382px 0px rgba(0, 225, 255, 0.5);
          box-shadow: 0px 2.676px 13.382px 0px rgba(0, 225, 255, 0.5);
}
.token-list .token-point.sea::before {
  border-radius: 2.676px;
  background: #06ddf7;
  -webkit-box-shadow: 0px 2.676px 13.382px 0px rgba(0, 225, 255, 0.5);
          box-shadow: 0px 2.676px 13.382px 0px rgba(0, 225, 255, 0.5);
}
.token-list .token-point.yellow::before {
  border-radius: 2.676px;
  background: #c9ff06;
  -webkit-box-shadow: 0px 2.676px 13.382px 0px rgba(0, 225, 255, 0.5);
          box-shadow: 0px 2.676px 13.382px 0px rgba(0, 225, 255, 0.5);
}
.token-list .token-point.orange::before {
  border-radius: 2.676px;
  background: #ff6800;
  -webkit-box-shadow: 0px 2.676px 13.382px 0px rgba(0, 225, 255, 0.5);
          box-shadow: 0px 2.676px 13.382px 0px rgba(0, 225, 255, 0.5);
}
.token-list .token-point h6 {
  font-family: "DM Sans", sans-serif;
  font-size: 25px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 2px;
  background-color: #050508;
  padding: 0px 16px;
}
@media only screen and (max-width: 1199px) {
  .token-list .token-point h6 {
    font-size: 22px;
    letter-spacing: 1.5px;
  }
}
@media only screen and (max-width: 767px) {
  .token-list .token-point h6 {
    font-size: 20px;
  }
}
.token-list .token-point p {
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 2px;
  background-color: #050508;
  padding: 0px 16px;
}
@media only screen and (max-width: 1199px) {
  .token-list .token-point p {
    font-size: 18px;
    letter-spacing: 1.5px;
  }
}
@media only screen and (max-width: 767px) {
  .token-list .token-point p {
    font-size: 16px;
  }
}

/*--------------------------------------------------------------
  ## feature
--------------------------------------------------------------*/
.feature {
  padding: 80px 0px;
}
@media only screen and (max-width: 767px) {
  .feature {
    padding: 50px 0px;
  }
}
.feature .sec-t {
  margin-bottom: 140px;
}
@media only screen and (max-width: 1199px) {
  .feature .sec-t {
    margin-bottom: 100px;
  }
}
@media only screen and (max-width: 991px) {
  .feature .sec-t {
    margin-bottom: 70px;
  }
}
.feature .sec-t h2 {
  color: #f7f7f7;
  text-align: center;
  font-family: "Outfit", sans-serif;
  font-size: 47px;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 5px;
  text-transform: uppercase;
}
@media only screen and (max-width: 1199px) {
  .feature .sec-t h2 {
    font-size: 37px;
  }
}
@media only screen and (max-width: 767px) {
  .feature .sec-t h2 {
    font-size: 30px;
    letter-spacing: 3px;
  }
}
.feature .sec-t h2 span {
  color: #ffe49f;
}

.f-single {
  position: relative;
  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;
  max-width: 280px;
  margin-left: auto;
  margin-right: auto;
  height: 66px;
  border-radius: 40.5px;
  border: 3px solid #648fff;
  background: rgba(6, 6, 6, 0.84);
  margin-bottom: 80px;
}
@media only screen and (max-width: 991px) {
  .f-single {
    margin-bottom: 40px;
  }
}
.f-single p {
  text-align: center;
  font-family: "Outfit", sans-serif;
  font-size: 23px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  text-transform: uppercase;
}
.f-single .r-p {
  position: absolute;
  left: 30px;
  z-index: -1;
}
.f-single i {
  display: inline-block;
  width: 32px;
  height: 125px;
  -webkit-transform: skewY(8deg);
          transform: skewY(8deg);
  border-radius: 40.5px;
  border: 3px solid #648fff;
  margin-left: 18px;
}
@media only screen and (max-width: 991px) {
  .f-single i {
    width: 30px;
    height: 115px;
  }
}
.f-single .arrow-s {
  position: absolute;
  left: 16px;
  z-index: -1;
  width: 130px;
  height: 175px;
}
@media only screen and (max-width: 991px) {
  .f-single .arrow-s {
    width: 100px;
    height: 150px;
    left: 50px;
  }
}
.f-single .lok {
  position: absolute;
  left: 70px;
  z-index: -1;
  width: 122px;
}
@media only screen and (max-width: 991px) {
  .f-single .lok {
    width: 100px;
    left: 90px;
  }
}

@media only screen and (max-width: 991px) {
  .f-con {
    margin-bottom: 30px;
  }
}
.f-con .parra {
  color: #909dac;
  text-align: center;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  max-width: 280px;
  margin-left: auto;
  margin-right: auto;
}

/*--------------------------------------------------------------
  ## anytime
--------------------------------------------------------------*/
.anytime {
  padding: 80px 0px;
}
@media only screen and (max-width: 767px) {
  .anytime {
    padding: 50px 0px;
  }
}
.anytime .sec-t {
  text-align: center;
  margin-bottom: 60px;
}
@media only screen and (max-width: 1199px) {
  .anytime .sec-t {
    margin-bottom: 50px;
  }
}
@media only screen and (max-width: 991px) {
  .anytime .sec-t {
    margin-bottom: 40px;
  }
}
@media only screen and (max-width: 767px) {
  .anytime .sec-t {
    margin-bottom: 30px;
  }
}
.anytime .sec-t h2 {
  font-family: "Outfit", sans-serif;
  font-weight: 500;
  font-size: 60px;
  color: #F7F7F7;
  margin-bottom: 16px;
}
@media only screen and (max-width: 1199px) {
  .anytime .sec-t h2 {
    font-size: 55px;
  }
}
@media only screen and (max-width: 991px) {
  .anytime .sec-t h2 {
    font-size: 40px;
  }
}
@media only screen and (max-width: 767px) {
  .anytime .sec-t h2 {
    font-size: 36px;
    margin-bottom: 10px;
  }
}
@media only screen and (max-width: 482px) {
  .anytime .sec-t h2 {
    font-size: 30px;
  }
}
.anytime .sec-t h2 span {
  color: #ffd25f;
}
.anytime .sec-t p {
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  color: #909dac;
  font-size: 17px;
  font-style: normal;
  font-weight: 400;
  padding: 0px 10px;
  margin-bottom: 22px;
}
@media only screen and (max-width: 767px) {
  .anytime .sec-t p {
    font-size: 16px;
    font-weight: 600;
  }
}
.anytime .mobile-screen {
  display: block;
  width: 100%;
  max-width: 230px;
  margin-left: auto;
  margin-right: auto;
}
@media only screen and (max-width: 991px) {
  .anytime .mobile-screen {
    max-width: 180px;
  }
}
@media only screen and (max-width: 767px) {
  .anytime .mobile-screen {
    max-width: 150px;
  }
}
@media only screen and (max-width: 991px) {
  .anytime .anytime-txt {
    text-align: center;
  }
}
.anytime .anytime-txt h3 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 16px;
}
@media only screen and (max-width: 767px) {
  .anytime .anytime-txt h3 {
    font-size: 19px;
    margin-bottom: 12px;
  }
}

/*--------------------------------------------------------------
  ## video-cta
--------------------------------------------------------------*/
.video-cta {
  padding: 80px 0px;
}
@media only screen and (max-width: 767px) {
  .video-cta {
    padding: 50px 0px;
  }
}
.video-cta .sec-t {
  text-align: center;
  margin-bottom: 60px;
}
@media only screen and (max-width: 1199px) {
  .video-cta .sec-t {
    margin-bottom: 50px;
  }
}
@media only screen and (max-width: 991px) {
  .video-cta .sec-t {
    margin-bottom: 40px;
  }
}
@media only screen and (max-width: 767px) {
  .video-cta .sec-t {
    margin-bottom: 30px;
  }
}
.video-cta .sec-t h2 {
  font-family: "Outfit", sans-serif;
  font-weight: 500;
  font-size: 60px;
  color: #ffe6a7;
  margin-bottom: 16px;
}
@media only screen and (max-width: 1199px) {
  .video-cta .sec-t h2 {
    font-size: 55px;
  }
}
@media only screen and (max-width: 991px) {
  .video-cta .sec-t h2 {
    font-size: 40px;
  }
}
@media only screen and (max-width: 767px) {
  .video-cta .sec-t h2 {
    font-size: 36px;
    margin-bottom: 10px;
  }
}
@media only screen and (max-width: 482px) {
  .video-cta .sec-t h2 {
    font-size: 30px;
  }
}
.video-cta .sec-t h2 span {
  color: #ffd25f;
}
.video-cta .sec-t p {
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  color: #909dac;
  font-size: 17px;
  font-style: normal;
  font-weight: 400;
  padding: 0px 10px;
  margin-bottom: 22px;
}
@media only screen and (max-width: 767px) {
  .video-cta .sec-t p {
    font-size: 16px;
    font-weight: 600;
  }
}

.video-banner {
  max-width: 1050px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  border-radius: 26px;
  overflow: hidden;
  border: 1px solid #222;
}
.video-banner .play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.video-banner .play-btn img {
  width: 84px;
  height: 84px;
}
@media only screen and (max-width: 767px) {
  .video-banner .play-btn img {
    width: 70px;
    height: 70px;
  }
}

/*--------------------------------------------------------------
  ## potent
--------------------------------------------------------------*/
.potent {
  position: relative;
  padding: 80px 0px;
}
@media only screen and (max-width: 767px) {
  .potent {
    padding: 50px 0px;
  }
}
.potent::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 1500px;
  height: 1500px;
  border-radius: 100%;
  z-index: -1;
  background: radial-gradient(70.71% 70.71% at 50% 50%, rgba(144, 172, 255, 0.2) 0%, rgba(144, 172, 255, 0) 70%, rgba(144, 172, 255, 0) 100%);
}
@media only screen and (max-width: 1199px) {
  .potent::after {
    width: 1000px;
    height: 1000px;
  }
}
.potent .sec-t {
  text-align: center;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 70px;
}
@media only screen and (max-width: 1199px) {
  .potent .sec-t {
    margin-bottom: 60px;
  }
}
@media only screen and (max-width: 991px) {
  .potent .sec-t {
    margin-bottom: 50px;
  }
}
@media only screen and (max-width: 767px) {
  .potent .sec-t {
    margin-bottom: 40px;
  }
}
.potent .sec-t h2 {
  font-family: "Outfit", sans-serif;
  color: #fff;
  font-size: 64px;
  font-style: normal;
  font-weight: 500;
  letter-spacing: 1.2px;
  margin-bottom: 16px;
}
@media only screen and (max-width: 1199px) {
  .potent .sec-t h2 {
    font-size: 57px;
  }
}
@media only screen and (max-width: 991px) {
  .potent .sec-t h2 {
    font-size: 43px;
  }
}
@media only screen and (max-width: 767px) {
  .potent .sec-t h2 {
    font-size: 38px;
    margin-bottom: 10px;
  }
}
@media only screen and (max-width: 767px) {
  .potent .sec-t h2 {
    font-size: 30px;
  }
}
.potent .sec-t p {
  color: #909dac;
  font-size: 19px;
  font-style: normal;
  font-weight: 700;
  padding: 0px 10px;
  margin-bottom: 22px;
}
@media only screen and (max-width: 767px) {
  .potent .sec-t p {
    font-size: 16px;
    font-weight: 600;
  }
}

.po-single {
  width: 100%;
  max-width: 370px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 90px;
}
@media only screen and (max-width: 991px) {
  .po-single {
    margin-bottom: 60px;
  }
}
@media only screen and (max-width: 767px) {
  .po-single {
    margin-bottom: 40px;
  }
}
.po-single .img-con {
  position: relative;
}
.po-single .img-con .w-img {
  width: 100%;
  height: auto;
  border-radius: 28px;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.po-single .img-con .w-img:hover {
  border: 3px solid #648fff;
  -webkit-transform: scale(1.04);
          transform: scale(1.04);
}
.po-single .img-con .play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 73px;
  height: 73px;
}
.po-single span {
  display: inline-block;
  color: #9aa0a6;
  font-family: Arial;
  font-size: 17.438px;
  font-style: normal;
  font-weight: 400;
  padding-top: 15px;
}
@media only screen and (max-width: 991px) {
  .po-single span {
    font-size: 15px;
    padding-top: 12px;
  }
}
.po-single h4 {
  font-size: 26px;
}
@media only screen and (max-width: 991px) {
  .po-single h4 {
    font-size: 23px;
  }
}

/*--------------------------------------------------------------
  ## cta-1
--------------------------------------------------------------*/
.cta-1 {
  padding: 80px 0px;
  background: -webkit-gradient(linear, left top, right top, from(#0ab1c1), color-stop(50%, #7083d4), color-stop(80%, #6772d6));
  background: linear-gradient(90deg, #0ab1c1 0%, #7083d4 50%, #6772d6 80%);
  background-image: url("../img/cta-bg.png");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
@media only screen and (max-width: 767px) {
  .cta-1 {
    padding: 50px 0px;
  }
}

.cta-circle {
  width: 100%;
}
.cta-circle .cta-txt {
  text-align: center;
}
.cta-circle .cta-txt h2 {
  font-size: 70px;
  font-style: normal;
  font-weight: 500;
  margin-bottom: 12px;
}
@media only screen and (max-width: 1199px) {
  .cta-circle .cta-txt h2 {
    font-size: 60px;
  }
}
@media only screen and (max-width: 991px) {
  .cta-circle .cta-txt h2 {
    font-size: 45px;
  }
}
@media only screen and (max-width: 767px) {
  .cta-circle .cta-txt h2 {
    font-size: 33px;
  }
}
@media only screen and (max-width: 482px) {
  .cta-circle .cta-txt h2 {
    font-size: 28px;
    margin-bottom: 10px;
  }
}
.cta-circle .cta-txt p {
  font-size: 19px;
  margin-bottom: 34px;
  color: #fff;
}
@media only screen and (max-width: 991px) {
  .cta-circle .cta-txt p {
    font-size: 16px;
    margin-bottom: 30px;
  }
}
@media only screen and (max-width: 482px) {
  .cta-circle .cta-txt p {
    margin-bottom: 20px;
    font-size: 15px;
  }
}
.cta-circle .st-single {
  text-align: center;
  background-color: #121212;
  padding: 40px 20px;
  border-radius: 20px;
}
@media only screen and (max-width: 767px) {
  .cta-circle .st-single {
    padding: 30px 16px;
  }
}
.cta-circle .st-single .icon-img {
  height: 60px;
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 16px;
}
@media only screen and (max-width: 767px) {
  .cta-circle .st-single .icon-img {
    height: 50px;
    margin-bottom: 10px;
  }
}
.cta-circle .st-single .d-inline-flex {
  font-size: 35px;
  color: #F7F7F7;
  font-weight: 700;
  margin-bottom: 10px;
}
@media only screen and (max-width: 991px) {
  .cta-circle .st-single .d-inline-flex {
    font-size: 30px;
    margin-bottom: 5px;
  }
}
.cta-circle .st-single h4 {
  font-size: 35px;
  font-weight: 700;
}
@media only screen and (max-width: 991px) {
  .cta-circle .st-single h4 {
    font-size: 30px;
  }
}
.cta-circle .st-single h5 {
  font-size: 22px;
  color: #0ab1c1;
}
@media only screen and (max-width: 991px) {
  .cta-circle .st-single h5 {
    font-size: 18px;
  }
}

/*--------------------------------------------------------------
  ## cta-2
--------------------------------------------------------------*/
.cta-2 {
  position: relative;
  margin: 80px 0px;
  padding: 160px 0px;
}
@media only screen and (max-width: 767px) {
  .cta-2 {
    margin: 50px 0px;
  }
}
.cta-2::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left bottom, left top, from(rgba(8, 9, 10, 0.64)), to(rgba(8, 9, 10, 0.7)));
  background: linear-gradient(0deg, rgba(8, 9, 10, 0.64) 0%, rgba(8, 9, 10, 0.7) 100%);
}
.cta-2 .video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  -o-object-fit: cover;
     object-fit: cover;
  min-width: 100%;
  min-height: 100%;
  -o-object-position: center 25%;
     object-position: center 25%;
}
@media only screen and (max-width: 991px) {
  .cta-2 {
    padding: 120px 0px;
  }
}
@media only screen and (max-width: 767px) {
  .cta-2 {
    padding: 100px 0px;
  }
}
@media only screen and (max-width: 482px) {
  .cta-2 {
    padding: 75px 0px;
  }
}
.cta-2 .cta-txt {
  text-align: center;
}
.cta-2 .cta-txt h2 {
  font-size: 70px;
  font-style: normal;
  font-weight: 500;
  margin-bottom: 20px;
}
@media only screen and (max-width: 991px) {
  .cta-2 .cta-txt h2 {
    font-size: 57px;
    margin-bottom: 16px;
  }
}
@media only screen and (max-width: 767px) {
  .cta-2 .cta-txt h2 {
    font-size: 40px;
    margin-bottom: 12px;
  }
}
@media only screen and (max-width: 482px) {
  .cta-2 .cta-txt h2 {
    font-size: 37px;
    margin-bottom: 10px;
  }
}
.cta-2 .cta-txt p {
  font-size: 20px;
  color: #cecdcd;
  font-weight: 500;
  margin-bottom: 30px;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}
@media only screen and (max-width: 991px) {
  .cta-2 .cta-txt p {
    margin-bottom: 24px;
    font-size: 18px;
  }
}
@media only screen and (max-width: 767px) {
  .cta-2 .cta-txt p {
    margin-bottom: 20px;
    font-size: 17px;
  }
}
@media only screen and (max-width: 482px) {
  .cta-2 .cta-txt p {
    font-size: 16px;
    margin-bottom: 16px;
  }
}

/*--------------------------------------------------------------
  ## clients
--------------------------------------------------------------*/
.clients {
  padding: 80px 0px;
}
@media only screen and (max-width: 767px) {
  .clients {
    padding: 50px 0px;
  }
}
.clients .sec-t {
  text-align: center;
}
.clients .sec-t h2 {
  font-family: "Outfit", sans-serif;
  font-size: 27px;
  font-style: normal;
  font-weight: 500;
  color: #F7F7F7;
  letter-spacing: 8px;
  text-transform: uppercase;
  margin-bottom: 70px;
}
@media only screen and (max-width: 1199px) {
  .clients .sec-t h2 {
    margin-bottom: 55px;
  }
}
@media only screen and (max-width: 767px) {
  .clients .sec-t h2 {
    font-size: 24px;
    letter-spacing: 4px;
    margin-bottom: 40px;
  }
}
.clients .cleint-slider {
  background-color: #121212;
  padding: 30px;
}
@media only screen and (max-width: 767px) {
  .clients .cleint-slider {
    padding: 20px;
  }
}
.clients .client-single {
  text-align: center;
  -webkit-transition: all 0.4s ease-in;
  transition: all 0.4s ease-in;
  max-width: 100%;
  overflow: hidden;
}
.clients .client-single .client-img {
  height: 150px;
}
@media only screen and (max-width: 767px) {
  .clients .client-single .client-img {
    height: 125px;
  }
}
.clients .client-single:hover {
  -webkit-transform: scale(1.04);
          transform: scale(1.04);
}

/*--------------------------------------------------------------
  ## social-section
--------------------------------------------------------------*/
.social-section {
  padding: 80px 0px;
  padding-bottom: 140px;
}
@media only screen and (max-width: 1199px) {
  .social-section {
    padding-bottom: 100px;
  }
}
@media only screen and (max-width: 767px) {
  .social-section {
    padding: 50px 0px;
  }
}
.social-section .sec-t {
  text-align: center;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}
.social-section .sec-t h2 {
  font-family: "Outfit", sans-serif;
  font-size: 27px;
  font-style: normal;
  font-weight: 500;
  color: #F7F7F7;
  letter-spacing: 13px;
  text-transform: uppercase;
}
@media only screen and (max-width: 767px) {
  .social-section .sec-t h2 {
    font-size: 24px;
    letter-spacing: 4px;
  }
}
.social-section .sec-t p {
  color: #d6d4c6;
  margin-top: 10px;
}

.social-conx {
  text-align: center;
  padding-top: 40px;
  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-left: -30px;
  margin-right: -30px;
}
@media only screen and (max-width: 767px) {
  .social-conx {
    padding-top: 30px;
    margin-left: -10px;
    margin-right: -10px;
  }
}
.social-conx a {
  margin-left: 30px;
  margin-right: 30px;
  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-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}
@media only screen and (max-width: 767px) {
  .social-conx a {
    margin-left: 10px;
    margin-right: 10px;
  }
}
.social-conx a img {
  width: 50px;
  margin-bottom: 20px;
  -webkit-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}
@media only screen and (max-width: 767px) {
  .social-conx a img {
    width: 35px;
    margin-bottom: 12px;
  }
}
.social-conx a p {
  color: #bfbfbf;
}
@media only screen and (max-width: 767px) {
  .social-conx a p {
    font-size: 13px;
  }
}
.social-conx a:hover img {
  -webkit-transform: translateY(-4px);
          transform: translateY(-4px);
}
.social-conx a:hover p {
  color: #3db9ff;
}

/*--------------------------------------------------------------
  ## new-cards
--------------------------------------------------------------*/
.new-cards {
  padding: 80px 0px;
}
@media only screen and (max-width: 767px) {
  .new-cards {
    padding: 50px 0px;
  }
}
.new-cards .sec-t {
  text-align: center;
  max-width: 550px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 70px;
}
@media only screen and (max-width: 1199px) {
  .new-cards .sec-t {
    margin-bottom: 60px;
  }
}
@media only screen and (max-width: 991px) {
  .new-cards .sec-t {
    margin-bottom: 50px;
  }
}
@media only screen and (max-width: 767px) {
  .new-cards .sec-t {
    margin-bottom: 40px;
  }
}
.new-cards .sec-t h2 {
  font-family: "Outfit", sans-serif;
  font-weight: 600;
  font-size: 70px;
  color: #F7F7F7;
  letter-spacing: 1.2px;
  margin-bottom: 16px;
}
@media only screen and (max-width: 1199px) {
  .new-cards .sec-t h2 {
    font-size: 60px;
  }
}
@media only screen and (max-width: 991px) {
  .new-cards .sec-t h2 {
    font-size: 45px;
  }
}
@media only screen and (max-width: 767px) {
  .new-cards .sec-t h2 {
    font-size: 40px;
    margin-bottom: 10px;
  }
}
@media only screen and (max-width: 767px) {
  .new-cards .sec-t h2 {
    font-size: 33px;
  }
}
.new-cards .card-se {
  background: #121212;
  -webkit-box-shadow: 0px 0px 56.891px 0px rgba(0, 0, 0, 0.25);
          box-shadow: 0px 0px 56.891px 0px rgba(0, 0, 0, 0.25);
  padding: 30px 30px;
  border-radius: 16px;
  height: 100%;
  border-bottom: 1px solid #0ab1c1;
  border-top: 1px solid #0ab1c1;
}
.new-cards .card-se img {
  height: 80px;
  -o-object-fit: contain;
     object-fit: contain;
  margin-bottom: 15px;
}
.new-cards .card-se h3 {
  font-size: 17px;
  letter-spacing: 1px;
  margin-bottom: 16px;
}

/*--------------------------------------------------------------
  ## devices
--------------------------------------------------------------*/
.devices {
  padding: 80px 0px;
}
@media only screen and (max-width: 767px) {
  .devices {
    padding: 50px 0px;
  }
}
.devices .sec-t {
  text-align: center;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 60px;
}
@media only screen and (max-width: 1199px) {
  .devices .sec-t {
    margin-bottom: 60px;
  }
}
@media only screen and (max-width: 991px) {
  .devices .sec-t {
    margin-bottom: 50px;
  }
}
@media only screen and (max-width: 767px) {
  .devices .sec-t {
    margin-bottom: 40px;
  }
}
.devices .sec-t h2 {
  font-family: "Outfit", sans-serif;
  font-weight: 600;
  font-size: 65px;
  color: #F7F7F7;
  letter-spacing: 1.2px;
  margin-bottom: 16px;
}
@media only screen and (max-width: 1199px) {
  .devices .sec-t h2 {
    font-size: 60px;
  }
}
@media only screen and (max-width: 991px) {
  .devices .sec-t h2 {
    font-size: 45px;
  }
}
@media only screen and (max-width: 767px) {
  .devices .sec-t h2 {
    font-size: 40px;
    margin-bottom: 10px;
  }
}
@media only screen and (max-width: 767px) {
  .devices .sec-t h2 {
    font-size: 33px;
  }
}
.devices .sec-t p {
  color: #c5c7ca;
  font-size: 16px;
  font-style: normal;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}
@media only screen and (max-width: 767px) {
  .devices .sec-t p {
    font-size: 16px;
    font-weight: 600;
  }
}
.devices .d-card {
  background-color: #121212;
  border-radius: 18px;
  padding: 20px 20px;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.devices .d-card .cards-img {
  width: 100%;
  max-width: 150px;
  min-width: 150px;
  margin-right: 20px;
}
.devices .d-card .cards-img img {
  border-radius: 16px;
}
.devices .d-card .cards-txt {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.devices .d-card .cards-txt h5,
.devices .d-card .cards-txt h6 {
  font-size: 17px;
  margin-bottom: 20px;
}
.devices .d-card .cards-txt a {
  -ms-flex-item-align: start;
      align-self: flex-start;
  text-decoration: none;
  padding: 3px 12px;
  font-size: 14px;
  background-color: transparent;
  border: 1px solid #0ab1c1;
  border-radius: 50px;
  color: #0ab1c1;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.devices .d-card .cards-txt a:hover {
  background-color: #0ab1c1;
  color: #fff;
}

/*--------------------------------------------------------------
  ## regist-sec
--------------------------------------------------------------*/
.regist-sec {
  padding-top: 60px;
}
@media only screen and (max-width: 767px) {
  .regist-sec {
    padding-top: 40px;
  }
}
.regist-sec .sec-t {
  text-align: center;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}
.regist-sec .sec-t h2 {
  font-family: "Outfit", sans-serif;
  font-size: 27px;
  font-style: normal;
  font-weight: 500;
  color: #F7F7F7;
  letter-spacing: 3px;
  line-height: 1.3;
  margin-bottom: 50px;
}
@media only screen and (max-width: 1199px) {
  .regist-sec .sec-t h2 {
    margin-bottom: 40px;
  }
}
@media only screen and (max-width: 767px) {
  .regist-sec .sec-t h2 {
    font-size: 24px;
    letter-spacing: 2px;
    margin-bottom: 30px;
  }
}

/*--------------------------------------------------------------
  ## badges
--------------------------------------------------------------*/
.badges .sec-t {
  text-align: center;
  margin-bottom: 50px;
}
@media only screen and (max-width: 767px) {
  .badges .sec-t {
    margin-bottom: 30px;
  }
}
.badges .sec-t h2 {
  font-family: "Outfit", sans-serif;
  font-size: 25px;
  font-style: normal;
  font-weight: 500;
  color: #F7F7F7;
  letter-spacing: 3px;
  line-height: 1.3;
  margin-bottom: 12px;
}
@media only screen and (max-width: 767px) {
  .badges .sec-t h2 {
    font-size: 24px;
    letter-spacing: 2px;
    margin-bottom: 10px;
  }
}
.badges .sec-t p {
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}
.badges .sec-t h5 {
  font-family: "Outfit", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  color: #F7F7F7;
  line-height: 1.3;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 20px;
  margin-bottom: 12px;
}
.badges .d-card {
  background-color: #121212;
  border-radius: 18px;
  padding: 20px 20px;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.badges .d-card .cards-img {
  width: 100%;
  max-width: 250px;
  min-width: 250px;
  margin-right: 30px;
}
@media only screen and (max-width: 1199px) {
  .badges .d-card .cards-img {
    max-width: 150px;
    min-width: 150px;
    margin-right: 30px;
  }
}
.badges .d-card .cards-img img {
  border-radius: 16px;
}
.badges .d-card .cards-txt {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.badges .d-card .cards-txt h5,
.badges .d-card .cards-txt h6 {
  font-size: 17px;
  margin-bottom: 20px;
}
.badges .d-card .cards-txt a {
  -ms-flex-item-align: start;
      align-self: flex-start;
  text-decoration: none;
  padding: 3px 12px;
  font-size: 14px;
  background-color: transparent;
  border: 1px solid #0ab1c1;
  border-radius: 50px;
  color: #0ab1c1;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.badges .d-card .cards-txt a:hover {
  background-color: #0ab1c1;
  color: #fff;
}

/*--------------------------------------------------------------
# main-footer
--------------------------------------------------------------*/
.main-footer {
  padding: 50px 0px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}
@media only screen and (max-width: 767px) {
  .main-footer {
    padding: 30px 0px;
  }
}
@media only screen and (max-width: 482px) {
  .main-footer {
    padding-left: 15px;
    padding-right: 15px;
  }
}
.main-footer .footer-logo-w {
  max-width: 270px;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
.main-footer .footer-logo-w .footer-logo {
  height: 56px;
  margin-bottom: 35px;
}
@media only screen and (max-width: 767px) {
  .main-footer .footer-logo-w .footer-logo {
    height: 46px;
  }
}
.main-footer .footer-logo-w p {
  font-size: 14px;
}

.footer-social {
  text-align: center;
}
.footer-social a {
  text-decoration: none;
  display: inline-block;
  -webkit-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}
.footer-social a:not(:last-child) {
  margin-right: 18px;
}
@media only screen and (max-width: 1199px) {
  .footer-social a:not(:last-child) {
    margin-right: 12px;
  }
}
@media only screen and (max-width: 991px) {
  .footer-social a:not(:last-child) {
    margin-right: 12px;
  }
}
.footer-social a:hover {
  -webkit-transform: translateY(-4px);
          transform: translateY(-4px);
}
.footer-social a img {
  height: 35px;
}
@media only screen and (max-width: 767px) {
  .footer-social a img {
    height: 32px;
  }
}

.legal-text {
  text-align: center;
}
.legal-text p {
  margin-top: 20px;
  font-size: 14px;
  line-height: 1.4;
  color: #c5c7ca;
  font-weight: 400;
}
@media only screen and (max-width: 991px) {
  .legal-text p {
    margin-top: 15px;
  }
}
/*# sourceMappingURL=main.css.map */