@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: #ffe6a7;
  background: rgba(254, 208, 0, 0.6);
}
::selection {
  color: #ffe6a7;
  background: rgba(254, 208, 0, 0.6);
}

html, body {
  overflow-x: hidden;
}

body {
  font-family: "DM Sans", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 15px;
  background-color: #050508;
  color: #b4b6b8;
  line-height: 1.5;
  overflow-x: hidden;
  position: relative;
}
body::after {
  content: "";
  position: absolute;
  top: -35%;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 1500px;
  height: 1500px;
  border-radius: 750px;
  background: radial-gradient(70.71% 70.71% at 50% 50%, rgba(255, 237, 144, 0.2) 0%, rgba(255, 242, 144, 0) 70%, rgba(255, 246, 144, 0) 100%);
  z-index: -1;
}
@media only screen and (max-width: 767px) {
  body::after {
    width: 1000px;
    height: 1000px;
    top: -10%;
  }
}

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

section {
  overflow: hidden;
}

a {
  text-decoration: none;
}
a:hover {
  color: #FED000;
}
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: #ffe6a7;
}

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: #FED000;
  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(254, 208, 0, 0.5);
          box-shadow: 0 0 0 0.25rem rgba(254, 208, 0, 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;
  }
}
/*--------------------------------------------------------------
  ## 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: #b4b6b8;
  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: #FED000;
  border-color: #FED000;
}
.btn-outline:hover svg path {
  fill: #FED000;
}

.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: #b4b6b8;
  font-style: normal;
  font-weight: 400;
  border-radius: 50px;
  border: 2.676px solid #FED000;
  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: #FED000;
  color: #b4b6b8;
}

.btn-hero {
  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: #b4b6b8;
  font-style: normal;
  font-weight: 500;
  border-radius: 50px;
  border: 2.676px solid #6484BE;
  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-hero {
    padding: 11px 25px;
    font-size: 15px;
  }
}
.btn-hero:hover {
  background-color: #6484BE;
  color: #b4b6b8;
}

/* Absolute Center Spinner ajax */
.loading-ajax.hidden {
  display: none;
}

.loading-ajax {
  position: fixed;
  z-index: 999;
  height: 2em;
  width: 2em;
  overflow: visible;
  margin: auto;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}

/* Transparent Overlay */
.loading-ajax:before {
  content: "";
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
}

/* :not(:required) hides these rules from IE9 and below */
.loading-ajax:not(:required) {
  /* hide "loading-ajax..." text */
  font: 0/0 a;
  color: transparent;
  text-shadow: none;
  background-color: transparent;
  border: 0;
}

.loading-ajax:not(:required):after {
  content: "";
  display: block;
  font-size: 10px;
  width: 1em;
  height: 1em;
  margin-top: -0.5em;
  -webkit-animation: spinner 1500ms infinite linear;
          animation: spinner 1500ms infinite linear;
  border-radius: 0.5em;
  -webkit-box-shadow: rgba(254, 208, 0, 0.75) 1.5em 0 0 0, rgba(254, 208, 0, 0.75) 1.1em 1.1em 0 0, rgba(254, 208, 0, 0.75) 0 1.5em 0 0, rgba(254, 208, 0, 0.75) -1.1em 1.1em 0 0, rgba(254, 208, 0, 0.75) -1.5em 0 0 0, rgba(254, 208, 0, 0.75) -1.1em -1.1em 0 0, rgba(254, 208, 0, 0.75) 0 -1.5em 0 0, rgba(254, 208, 0, 0.75) 1.1em -1.1em 0 0;
          box-shadow: rgba(254, 208, 0, 0.75) 1.5em 0 0 0, rgba(254, 208, 0, 0.75) 1.1em 1.1em 0 0, rgba(254, 208, 0, 0.75) 0 1.5em 0 0, rgba(254, 208, 0, 0.75) -1.1em 1.1em 0 0, rgba(254, 208, 0, 0.75) -1.5em 0 0 0, rgba(254, 208, 0, 0.75) -1.1em -1.1em 0 0, rgba(254, 208, 0, 0.75) 0 -1.5em 0 0, rgba(254, 208, 0, 0.75) 1.1em -1.1em 0 0;
}

/* Animation */
@-webkit-keyframes spinner {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes spinner {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
/*--------------------------------------------------------------
# success-modal
--------------------------------------------------------------*/
.modal-index {
  z-index: 9999;
}

.modal-confirm {
  color: #636363;
  width: 325px;
  font-size: 14px;
  margin-left: auto;
  margin-right: auto;
}
.modal-confirm .btn-success {
  background-color: #31d71c !important;
}

.modal-confirm .modal-content {
  padding: 20px;
  border-radius: 5px;
  border: none;
  background-color: #151515;
}

.modal-confirm .modal-header {
  border-bottom: none;
  position: relative;
}

.modal-confirm h4 {
  text-align: center;
  font-size: 26px;
  margin: 30px 0 -15px;
  color: #fff;
}

.modal-confirm p {
  color: #fff;
  opacity: 0.4;
}

.modal-confirm .form-control,
.modal-confirm .btn {
  min-height: 40px;
  border-radius: 3px;
}

.modal-confirm .close {
  position: absolute;
  top: -5px;
  right: -5px;
}

.modal-confirm .modal-footer {
  border: none;
  text-align: center;
  border-radius: 5px;
  font-size: 13px;
}

.modal-confirm .icon-box {
  color: #fff;
  position: absolute;
  margin: 0 auto;
  left: 0;
  right: 0;
  top: -70px;
  width: 95px;
  height: 95px;
  border-radius: 50%;
  z-index: 9;
  /* background: #82ce34; */
  padding: 15px;
  text-align: center;
  -webkit-box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.1);
          box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.1);
  background-color: #31d71c !important;
}

.modal-confirm .icon-box i {
  font-size: 38px;
  position: relative;
  top: 13px;
}

.modal-confirm.modal-dialog {
  margin-top: 80px;
}

.modal-confirm .btn {
  color: #fff;
  border-radius: 4px;
  /* background: #82ce34; */
  text-decoration: none;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  line-height: normal;
  border: none;
}

.modal-confirm .btn:hover,
.modal-confirm .btn:focus {
  /* background: #6fb32b; */
  outline: none;
}

.trigger-btn {
  display: inline-block;
  margin: 100px auto;
}

/*--------------------------------------------------------------
# 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;
}
@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: 55px;
  -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: 45px;
  }
}
@media only screen and (max-width: 482px) {
  .navbar .navbar-brand img {
    height: 42px;
  }
}
.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;
  margin-left: 34px;
}
@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: #FED000;
}
@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);
  -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;
}
.sticky .navbar .navbar-brand img {
  height: 45px;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
@media only screen and (max-width: 767px) {
  .sticky .navbar .navbar-brand img {
    height: 45px;
  }
}
@media only screen and (max-width: 482px) {
  .sticky .navbar .navbar-brand img {
    height: 42px;
  }
}

.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: 40.5px;
  border: 3px solid #FED000;
  text-align: center;
  background-color: transparent;
  padding: 8px 38px !important;
  text-transform: uppercase;
  font-size: 13px !important;
  font-weight: 800 !important;
  -webkit-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}
.nav-social .nav-item .apply-btn:hover {
  background-color: #FED000;
  color: #6484BE !important;
}
.nav-social .nav-item .apply-btn img {
  height: 14px;
  margin-left: 10px;
}

/*--------------------------------------------------------------
  ## hero-area
--------------------------------------------------------------*/
.hero-area {
  position: relative;
  padding-top: 120px;
  text-align: center;
  width: 100%;
}
.hero-area .hero-text {
  position: relative;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  background: -webkit-gradient(linear, left top, right top, from(rgba(39, 125, 255, 0.36)), color-stop(51.49%, rgba(97, 152, 255, 0.36)), to(rgba(31, 120, 255, 0.36)));
  background: linear-gradient(90deg, rgba(39, 125, 255, 0.36) 0%, rgba(97, 152, 255, 0.36) 51.49%, rgba(31, 120, 255, 0.36) 100%);
  padding: 30px 30px;
  border-radius: 20px;
  -webkit-box-shadow: 0px 0px 12px rgba(0, 0, 0, 0.35);
          box-shadow: 0px 0px 12px rgba(0, 0, 0, 0.35);
}
.hero-area .hero-text p {
  color: #b4b6b8;
}
.hero-area .hero-text h1 {
  color: #ffe6a7;
  font-family: "Outfit", sans-serif;
  font-size: 25px;
  line-height: 1.2;
  font-style: normal;
  font-weight: 500;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.hero-area .hero-text h1 span {
  background: linear-gradient(87.65deg, #FED000 -8.44%, #6484BE 97.32%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-area .hero-text .hero-img {
  max-width: 250px;
  margin-bottom: 15px;
}
.hero-area .hero-text h5 {
  font-size: 20px;
  color: #FED000;
  margin-top: 8px;
}

/*--------------------------------------------------------------
  ## hero-area
--------------------------------------------------------------*/
.page-hero {
  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: 40vh;
}
.page-hero::after {
  content: "";
  position: absolute;
  top: -75%;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 1500px;
  height: 1500px;
  border-radius: 750px;
  background: radial-gradient(70.71% 70.71% at 50% 50%, rgba(255, 237, 144, 0.2) 0%, rgba(255, 242, 144, 0) 70%, rgba(255, 246, 144, 0) 100%);
  z-index: -1;
}
@media only screen and (max-width: 767px) {
  .page-hero::after {
    width: 1000px;
    height: 1000px;
    top: -60%;
  }
}
.page-hero .hero-text {
  position: relative;
}
.page-hero .hero-text h1 {
  padding-top: 60px;
  color: #ffe6a7;
  font-family: "Outfit", sans-serif;
  font-size: 60px;
  line-height: 1.1;
  font-style: normal;
  font-weight: 500;
  letter-spacing: 2px;
}
@media only screen and (max-width: 1399px) {
  .page-hero .hero-text h1 {
    font-size: 50px;
  }
}
@media only screen and (max-width: 767px) {
  .page-hero .hero-text h1 {
    font-size: 40px;
  }
}
@media only screen and (max-width: 482px) {
  .page-hero .hero-text h1 {
    font-size: 35px;
  }
}
.page-hero .hero-text h1 span {
  background: linear-gradient(87.65deg, #FED000 -8.44%, #6484BE 97.32%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.page-hero p {
  font-size: 18px;
  margin-top: 12px;
  font-weight: 500;
}

/*--------------------------------------------------------------
  ## stand
--------------------------------------------------------------*/
.stand {
  padding-top: 40px;
  padding-bottom: 70px;
}
@media only screen and (max-width: 767px) {
  .stand {
    padding-top: 30px;
    padding-bottom: 50px;
  }
}

.stand-txt {
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.stand-txt h2 {
  font-family: "DM Sans", sans-serif;
  font-weight: 500;
  color: #ffe6a7;
  font-size: 77px;
  line-height: 1.1;
  margin-bottom: 20px;
  text-transform: uppercase;
  background: linear-gradient(78deg, #FED000 0%, #6484BE 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media only screen and (max-width: 1299px) {
  .stand-txt h2 {
    font-size: 60px;
  }
}
@media only screen and (max-width: 767px) {
  .stand-txt h2 {
    font-size: 50px;
  }
}
@media only screen and (max-width: 482px) {
  .stand-txt h2 {
    font-size: 40px;
  }
}
.stand-txt h2 span {
  font-weight: 700;
  background: linear-gradient(78deg, #FED000 0%, #6484BE 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.stand-txt h3 {
  font-size: 26px;
  color: #b4b6b8;
  line-height: 1.3;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 50px;
}
@media only screen and (max-width: 767px) {
  .stand-txt h3 {
    font-size: 21px;
    margin-bottom: 40px;
  }
}

.one-row img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 5px;
  -webkit-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}
.one-row img:hover {
  -webkit-transform: translateY(-4px);
          transform: translateY(-4px);
}

.two-row {
  padding-top: 30px;
}
.two-row img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 5px;
  -webkit-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}
.two-row img:hover {
  -webkit-transform: translateY(-4px);
          transform: translateY(-4px);
}

/*--------------------------------------------------------------
  ## case
--------------------------------------------------------------*/
.case {
  padding: 60px 0px;
}
@media only screen and (max-width: 767px) {
  .case {
    padding: 40px 0px;
  }
}
.case .sec-t {
  text-align: center;
  max-width: 900px;
  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: 70px;
  color: #ffe6a7;
  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: 22px;
  font-style: normal;
  font-weight: 500;
  padding: 0px 10px;
  margin-bottom: 22px;
  line-height: 1.5;
}
@media only screen and (max-width: 767px) {
  .case .sec-t p {
    font-size: 16px;
    font-weight: 600;
  }
}
.case h6 {
  font-size: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 50px;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  .case h6 {
    padding-top: 40px;
    font-size: 22px;
  }
}

.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: 40px 40px;
  text-align: center;
  height: 100%;
  text-align: center;
  border-radius: 20px;
  -webkit-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}
@media only screen and (max-width: 1199px) {
  .case-single {
    padding: 30px 30px 30px 30px;
  }
}
@media only screen and (max-width: 767px) {
  .case-single {
    padding: 23px 23px 23px 23px;
  }
}
.case-single .case-img {
  height: 165px;
  -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: #ffe6a7;
  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: 400;
  }
}
.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);
  }
}
/*--------------------------------------------------------------
  ## services-p
--------------------------------------------------------------*/
.services-p {
  padding: 60px 0px;
}
@media only screen and (max-width: 767px) {
  .services-p {
    padding: 40px 0px;
  }
}

.mase-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 60px;
  border-radius: 30px;
  border: 2px dashed #6484BE;
}
@media only screen and (max-width: 991px) {
  .mase-single {
    padding: 50px 50px;
  }
}
@media only screen and (max-width: 767px) {
  .mase-single {
    padding: 40px 40px;
  }
}
.mase-single h3 {
  font-size: 36px;
  font-weight: 500;
  margin-bottom: 30px;
}
@media only screen and (max-width: 1199px) {
  .mase-single h3 {
    font-size: 30px;
    margin-bottom: 24px;
  }
}
@media only screen and (max-width: 767px) {
  .mase-single h3 {
    font-size: 25px;
    margin-bottom: 17px;
  }
}
.mase-single p {
  font-size: 20px;
  line-height: 1.6;
}
@media only screen and (max-width: 991px) {
  .mase-single p {
    font-size: 18px;
  }
}

/*--------------------------------------------------------------
  ## meet
--------------------------------------------------------------*/
.meet {
  padding: 80px 0px;
}
@media only screen and (max-width: 767px) {
  .meet {
    padding: 50px 0px;
  }
}
.meet .sec-t {
  text-align: center;
  margin-bottom: 80px;
}
@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;
  }
}
.meet .sec-t h2 {
  font-family: "Outfit", sans-serif;
  font-size: 60px;
  font-style: normal;
  font-weight: 500;
  color: #ffe6a7;
}
@media only screen and (max-width: 1199px) {
  .meet .sec-t h2 {
    font-size: 45px;
  }
}
@media only screen and (max-width: 767px) {
  .meet .sec-t h2 {
    font-size: 30px;
  }
}
@media only screen and (max-width: 482px) {
  .meet .sec-t h2 {
    font-size: 28px;
  }
}
.meet .sec-t span {
  font-weight: 700;
  background: linear-gradient(78deg, #4b97f3 0%, #a8bdea 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

@-webkit-keyframes draw {
  to {
    stroke-dashoffset: 0;
  }
}

@keyframes draw {
  to {
    stroke-dashoffset: 0;
  }
}
.row-wrapper {
  position: relative;
  max-width: 1100px;
  min-height: 500px;
  margin-left: auto;
  margin-right: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.row-wrapper .bt {
  line-height: 1.2;
}
@media only screen and (max-width: 991px) {
  .row-wrapper .bt {
    text-align: end;
    line-height: 1;
  }
}
.row-wrapper .bt .bt-f {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media only screen and (max-width: 991px) {
  .row-wrapper .bt .bt-f {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: end;
  }
}
.row-wrapper .bt svg {
  width: 36px;
  height: 36px;
}
@media only screen and (max-width: 991px) {
  .row-wrapper .bt svg {
    width: 30px;
    height: 30px;
  }
}
@media only screen and (max-width: 767px) {
  .row-wrapper .bt svg {
    width: 26px;
    height: 26px;
  }
}
.row-wrapper .bt span {
  font-size: 35px;
  font-style: italic;
  font-weight: 700;
  color: #ffe6a7;
  display: inline-block;
  padding-left: 6px;
}
@media only screen and (max-width: 991px) {
  .row-wrapper .bt span {
    font-size: 30px;
  }
}
@media only screen and (max-width: 767px) {
  .row-wrapper .bt span {
    font-size: 25px;
  }
}
.row-wrapper .bt h5 {
  font-size: 83px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  letter-spacing: 2px;
  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;
  padding-left: 20px;
}
@media only screen and (max-width: 991px) {
  .row-wrapper .bt h5 {
    font-size: 70px;
    padding-left: 10px;
  }
}
@media only screen and (max-width: 767px) {
  .row-wrapper .bt h5 {
    font-size: 56px;
  }
}
.row-wrapper .graph-line {
  position: absolute;
  top: 50%;
  left: 44%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 100%;
  max-width: 710px;
  stroke-dasharray: 1000;
  stroke-dashoffset: 1000;
  -webkit-animation: draw 3s ease forwards;
          animation: draw 3s ease forwards;
  -webkit-animation-play-state: paused;
          animation-play-state: paused;
}
@media only screen and (max-width: 1199px) {
  .row-wrapper .graph-line {
    max-width: 600px;
    left: 46%;
  }
}
@media only screen and (max-width: 991px) {
  .row-wrapper .graph-line {
    max-width: 460px;
    left: 50%;
    top: 41%;
  }
}
@media only screen and (max-width: 767px) {
  .row-wrapper .graph-line {
    max-width: 330px;
    top: 37%;
  }
}
@media only screen and (max-width: 482px) {
  .row-wrapper .graph-line {
    max-width: 270px;
    top: 33%;
    left: 45%;
  }
}

.mid-row {
  margin-top: auto;
}
.mid-row .bt-d h5 {
  font-family: "Outfit", sans-serif;
  font-size: 72.555px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  letter-spacing: 2px;
}
@media only screen and (max-width: 991px) {
  .mid-row .bt-d h5 {
    font-size: 60px;
  }
}
@media only screen and (max-width: 767px) {
  .mid-row .bt-d h5 {
    font-size: 55px;
    line-height: 1.1;
  }
}
@media only screen and (max-width: 991px) {
  .mid-row .bt-d svg {
    height: 23px;
  }
}
@media only screen and (max-width: 767px) {
  .mid-row .bt-d svg {
    height: 19px;
  }
}
.mid-row p {
  padding-top: 20px;
  font-size: 11.063px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: -0.12px;
}
.mid-row .normtxt {
  color: #e8eaed;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.5;
  padding: 0;
  margin: 0;
}
@media only screen and (max-width: 767px) {
  .mid-row .normtxt {
    font-size: 17px;
  }
}

/*--------------------------------------------------------------
  ## cbtc
--------------------------------------------------------------*/
.cbtc {
  padding: 80px 0px;
}
@media only screen and (max-width: 767px) {
  .cbtc {
    padding: 50px 0px;
  }
}
.cbtc .sec-t {
  max-width: 700px;
  margin-bottom: 60px;
}
@media only screen and (max-width: 767px) {
  .cbtc .sec-t {
    margin-bottom: 40px;
  }
}
.cbtc .sec-t p {
  font-size: 22px;
  font-weight: 400;
}
@media only screen and (max-width: 991px) {
  .cbtc .sec-t p {
    font-size: 20px;
  }
}
.cbtc .sec-t span {
  font-weight: 700;
  color: #4fabff;
}

/*--------------------------------------------------------------
  ## 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: #b4b6b8;
  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: #ffe6a7;
}
@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: #ffe6a7;
  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;
}

/*--------------------------------------------------------------
  ## pcak
--------------------------------------------------------------*/
.pcak {
  padding: 60px 0px;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  .pcak {
    padding: 40px 0px;
  }
}
.pcak .text-consa {
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}
.pcak .normal {
  font-size: 23px;
  color: #ffe6a7;
  margin-bottom: 30px;
  line-height: 1.4;
}
@media only screen and (max-width: 767px) {
  .pcak .normal {
    font-size: 20px;
    margin-bottom: 20px;
  }
}
.pcak h3 {
  font-size: 28px;
  margin-bottom: 10px;
}
@media only screen and (max-width: 991px) {
  .pcak h3 {
    font-size: 22px;
  }
}
.pcak p {
  font-size: 17px;
  margin-bottom: 16px;
}
@media only screen and (max-width: 767px) {
  .pcak p {
    font-size: 16px;
  }
}

.con-single {
  background-color: #DCDCDC;
  padding: 30px 30px;
  border-radius: 16px;
  -webkit-box-shadow: 0px 0px 12px rgba(0, 0, 0, 0.35);
          box-shadow: 0px 0px 12px rgba(0, 0, 0, 0.35);
  border: 1px solid #6484BE;
  height: 100%;
}
.con-single h5 {
  font-size: 20px;
  margin-bottom: 16px;
  color: #6484BE;
}
@media only screen and (max-width: 767px) {
  .con-single h5 {
    font-size: 18px;
  }
}
.con-single p {
  font-size: 18px;
  font-weight: 500;
  color: #585757;
}
@media only screen and (max-width: 767px) {
  .con-single p {
    font-size: 16px;
  }
}

.cta-1 {
  padding: 60px 0px;
  padding-bottom: 30px;
  padding-top: 0px;
}
@media only screen and (max-width: 767px) {
  .cta-1 {
    padding: 40px 0px;
    padding-top: 0;
    padding-bottom: 25px;
  }
}
.cta-1 .txtx {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}
.cta-1 .cta-1-con {
  background: -webkit-gradient(linear, left top, right top, from(rgba(39, 125, 255, 0.36)), color-stop(51.49%, rgba(97, 152, 255, 0.36)), to(rgba(31, 120, 255, 0.36)));
  background: linear-gradient(90deg, rgba(39, 125, 255, 0.36) 0%, rgba(97, 152, 255, 0.36) 51.49%, rgba(31, 120, 255, 0.36) 100%);
  padding: 70px 50px;
  text-align: center;
  border-radius: 22px;
}
@media only screen and (max-width: 767px) {
  .cta-1 .cta-1-con {
    padding: 50px 30px;
  }
}
.cta-1 h4 {
  font-size: 40px;
  margin-bottom: 30px;
}
@media only screen and (max-width: 767px) {
  .cta-1 h4 {
    font-size: 25px;
    margin-bottom: 20px;
  }
}
.cta-1 p {
  font-size: 22px;
}
@media only screen and (max-width: 767px) {
  .cta-1 p {
    font-size: 18px;
  }
}

.paypal-con {
  padding-bottom: 40px;
}
.paypal-con .inner-p {
  max-width: 300px;
  margin-left: auto;
  margin-right: auto;
}
.paypal-con .paypal-btn {
  display: block;
  width: 100%;
  max-width: 300px;
  margin-left: auto;
  margin-right: auto;
}
.paypal-con .paypal-btn img {
  width: 100%;
  height: auto;
}

.form-sec {
  padding-bottom: 60px;
}
@media only screen and (max-width: 767px) {
  .form-sec {
    padding-bottom: 40px;
  }
}

.subs-form {
  padding-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  background-color: #121212;
  border-radius: 22px;
  padding: 40px 40px;
}
@media only screen and (max-width: 767px) {
  .subs-form {
    padding: 30px 30px;
  }
}
.subs-form .form-grp {
  margin-bottom: 25px;
}
.subs-form .form-control {
  background-color: transparent;
  border-radius: 50px;
  height: 50px;
  padding-left: 26px;
  color: #fff;
  font-weight: 500;
  border-color: #383838;
  border-width: 2px;
}

.theme-btn {
  text-transform: none;
  background: #6484BE;
  color: #fff;
  border: 0;
  padding: 12px 50px;
  border-radius: 50px;
  -webkit-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}
.theme-btn:focus {
  background-color: #304872;
}
.theme-btn:hover {
  background-color: #304872;
}

/*--------------------------------------------------------------
  ## contact-sec
--------------------------------------------------------------*/
.contact-sec {
  padding: 60px 0px;
  padding-bottom: 20px;
}
@media only screen and (max-width: 991px) {
  .contact-sec {
    padding: 60px 0px;
    padding-bottom: 20px;
  }
}
@media only screen and (max-width: 767px) {
  .contact-sec {
    padding: 40px 0px;
    padding-bottom: 20px;
  }
}
.contact-sec .pit {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  margin-bottom: 30px;
}
.contact-sec .pit p {
  font-family: "Outfit", sans-serif;
  line-height: 1.5;
  font-size: 26px;
  font-weight: 500;
  color: #ffe6a7;
}
.contact-sec .mit {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  margin-bottom: 30px;
}
.contact-sec .mit h3 {
  font-size: 25px;
  color: #6484BE;
  font-weight: 600;
  margin-bottom: 12px;
}
@media only screen and (max-width: 767px) {
  .contact-sec .mit h3 {
    font-size: 21px;
  }
}
.contact-sec .mit p {
  font-size: 17px;
}
@media only screen and (max-width: 767px) {
  .contact-sec .mit p {
    font-size: 16px;
  }
}
.contact-sec .mit p a {
  color: #FED000;
  font-weight: 700;
}

/*--------------------------------------------------------------
  ## main-footer
--------------------------------------------------------------*/
.main-footer {
  padding: 30px 0px;
  text-align: center;
  border-top: 1px solid #333;
}
.main-footer .footer-inner {
  max-width: 550px;
  margin-left: auto;
  margin-right: auto;
}
.main-footer .footer-inner h5 {
  font-size: 22px;
  margin-bottom: 6px;
}
.main-footer .footer-inner p {
  font-size: 15px;
  color: #b4b6b8;
}

.footer-social {
  padding-top: 12px;
  padding-bottom: 6px;
}
.footer-social a {
  display: inline-block;
  text-decoration: none;
  background-color: #fff;
  padding: 2px;
  border-radius: 10px;
}
.footer-social a:not(:last-child) {
  margin-right: 12px;
}
.footer-social a img {
  height: 36px;
}

.mail {
  padding-bottom: 20px;
}
.mail a {
  text-decoration: none;
  color: #FED000;
  font-weight: 500;
  font-size: 15px;
}
/*# sourceMappingURL=main.css.map */