/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/

body {
  font-family: "Quicksand","Open Sans", sans-serif;
  color: #444444;
}

a {
  color: #47b2e4;
  text-decoration: none;
}

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

h1, h2, h3, h4, h5, h6 {
  font-family: "Nunito", sans-serif;
}

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

::-webkit-scrollbar-track {
  background: rgba(255,255,255,0.3);
}

::-webkit-scrollbar-thumb {
  background: rgb(0, 65, 255, 0.8);
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: #1B1B1B;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #1B1B1B;
  border-top-color: #fff;
  border-bottom-color: #fff;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  -webkit-animation: animate-preloader 1s linear infinite;
  animation: animate-preloader 1s linear infinite;
}

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

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: #1B1B1B;
  width: 40px;
  height: 40px;
  border-radius: 50px;
  transition: all 0.4s;
}

.back-to-top i {
  font-size: 24px;
  color: #fff;
  line-height: 0;
}

.back-to-top:hover {
  background: #343434;
  color: #fff;
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  transition: all 0.5s;
  z-index: 997;
  padding: 15px 0;
}

#header.header-scrolled, #header.header-inner-pages {
  background: #1B1B1B;
}

#header .logo {
  font-size: 30px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
}

#header .logo a {
  color: #fff;
}

#header .logo img {
  max-height: 60px;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
  padding: 0;
}

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

.navbar li {
  position: relative;
}

.navbar a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0 10px 30px;
  font-size: 15px;
  font-weight: 500;
  color: #ABAFC7;
  white-space: nowrap;
  transition: 0.3s;
}

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

.navbar .active {
  font-size: 18px;
  color: #FFF;
}

.navbar a:hover, .navbar li:hover > a {
  color: #FFF;
}

.navbar .getstarted {
  padding: 8px 20px;
  margin-left: 30px;
  border-radius: 50px;
  color: #fff;
  font-size: 14px;
  /* border: 2px solid #47b2e4; */
  background: #0041FF;
  font-weight: 600;
}

.navbar .getstarted:hover {
  color: #fff;
  box-shadow: -10px 30px 50px rgba(96, 1, 211, 0.301961);
}

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
  color: #fff;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

.mobile-nav-toggle.bi-x {
  color: #fff;
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }
  .navbar ul {
    display: none;
  }
}

.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(27, 27, 27, 0.9);
  transition: 0.3s;
  z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}

.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  border-radius: 10px;
  background-color: #fff;
  overflow-y: auto;
  transition: 0.3s;
}

.navbar-mobile a {
  padding: 10px 20px;
  font-size: 15px;
  color: #1B1B1B;
}

.navbar-mobile a:hover, .navbar-mobile .active, .navbar-mobile li:hover > a {
  color: #1B1B1B;
}

.navbar-mobile .getstarted {
  margin: 15px;
  color: #FFF;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  height: 80vh;
  background: radial-gradient(53.52% 56.21% at 5.26% 0%, #4F4F4F 0%, #000000 100%);
  font-family: "Nunito","Open Sans", sans-serif;
}

#hero .container {
  padding-top: 108px;
}

#hero h1 {
  margin: 0 0 10px 0;
  font-size: 36px;
  font-weight: 700;
  line-height: 56px;
  color: #fff;
  margin-bottom: 20px;
}

#hero h1 .blue {
  color: #0041FF;
  font-size: 48px;
}

#hero p {
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 50px;
  font-size: 14px;
}

#hero .btn-get-started, .btn-apply, .btn-docs {
  font-family: "Nunito", sans-serif;
  font-weight: 300;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 28px 11px 28px;
  border-radius: 50px;
  transition: 0.5s;
  margin: 10px 0 0 0;
  color: #fff;
  background: #0041FF;
  box-shadow: -15px 20px 50px rgba(0, 0, 0, 0.301961);
}

#hero .btn-get-started:hover, .btn-apply:hover, .btn-docs:hover {
  box-shadow: -15px 20px 50px rgba(0, 65, 255, 0.301961);
}

#hero .btn-side {
  font-family: "Nunito", sans-serif;
  font-weight: 300;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 28px 11px 28px;
  border-radius: 50px;
  transition: 0.5s;
  margin: 10px 0 0 20px;
  color: #fff;
  background: #1B1B1B;
  box-shadow: -15px 20px 50px rgba(0, 0, 0, 0.301961);
}

#hero .btn-side:hover {
  box-shadow: -15px 20px 50px rgba(0, 0, 0, 0.301961);
}

#hero #onepager:hover {
  cursor: pointer;
}

#hero .gif {
  max-width: 120%;
  margin: auto;
}

@media (max-width: 991px) {
  #hero {
    height: unset;
    text-align: center;
  }
  #hero .animated {
    -webkit-animation: none;
    animation: none;
  }
  #hero .hero-img {
    text-align: center;
  }
  #hero .hero-img img {
    width: 50%;
  }
}

@media (max-width: 768px) {
  #hero h1 {
    font-size: 28px;
    line-height: 45px;
  }
  #hero h2 {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 30px;
  }
  #hero .hero-img img {
    width: 70%;
  }
  #hero .gif {
    max-width: 100%;
    margin: auto;
  }
}

@media (max-width: 575px) {
  #hero .container {
    padding-top: 0px;
  }

  #hero .hero-img img {
    width: 80%;
  }
  #hero .btn-get-started, .btn-apply, .btn-docs {
    font-size: 16px;
    padding: 10px 24px 11px 24px;
  }
}

@-webkit-keyframes up-down {
  0% {
    transform: translateY(10px);
  }
  100% {
    transform: translateY(-10px);
  }
}

@keyframes up-down {
  0% {
    transform: translateY(10px);
  }
  100% {
    transform: translateY(-10px);
  }
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 60px 0;
  overflow: hidden;
}

.section-bg {
  background-color: #f3f5fa;
}

.section-title {
  text-align: center;
  padding-bottom: 30px;
}

.section-title h2 {
  font-size: 32px;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
  color: #37517e;
}

.section-title h2::before {
  content: '';
  position: absolute;
  display: block;
  width: 120px;
  height: 1px;
  background: #ddd;
  bottom: 1px;
  left: calc(50% - 60px);
}

.section-title h2::after {
  content: '';
  position: absolute;
  display: block;
  width: 40px;
  height: 3px;
  background: #47b2e4;
  bottom: 0;
  left: calc(50% - 20px);
}

.section-title p {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Upcoming Projects
--------------------------------------------------------------*/

.tooltip > .tooltip-inner {
  max-width: 400px !important;
  border:white 1px solid;
}

.upcoming {
  background: #000;
  box-sizing: border-box;
  color: #FFF;
}

.upcoming .container {
  padding-top: 30px;
}

.upcoming h3 {
  font-family: "Nunito", sans-serif;
  font-size: 36px;
  font-weight: 700; 
  margin: 0 0 50px 0;
}

.upcoming .project-holder {
  width: 130px;
  height: 130px;
  margin: auto;
  display: flex;
  overflow: hidden;
  transition: 0.2s ease-in-out;
  cursor: pointer;
}

.upcoming img {
  width: 100%;
  margin: auto;
}

.upcoming h4 {
  font-family: "Nunito", sans-serif;
  font-size: 18px;
  margin: 0px 0px 0px 0px;
  color: #0041FF;
  font-weight: 700;
}

.upcoming p {
  color: #ABAFC7;
  font-size: 14px;
}

.upcoming .icons {
  font-size: 13px;
  display: flex;
  flex-direction: row;
  width: 50%;
  height: 24px;
  margin: auto;
  margin-top: 10px;
}

.upcoming .icons .divider {
  flex-grow: 1;
}

.upcoming .icons a img {
  transition: all 0.15s ease-in-out;;
  height: 24px;
}

.upcoming .icons a img:hover {
  transition: all 0.15s ease-in-out;;
  transform: scale(1.15);
}

.upcoming .row2 {
  justify-content: space-evenly;
  margin: 40px auto;
}

.upcoming .row2 h6 {
  color: rgba(255, 255, 255, 0.6);
  text-align: center;
  text-transform: uppercase;
  margin-bottom: 56px;
}

.upcoming .row2 h6:after {
  content: "\2014";
  margin-left: 10px;
}

.upcoming .row2 h6:before {
  content: "\2014";
  margin-right: 10px;
}

.upcoming-project.bio .project-holder:hover {
  transform: scale(1.1);
}

.upcoming .info-box {
  padding: 40px 30px 30px 30px;
  background: linear-gradient(
    180deg
    , #1F1F1F 68.75%, rgb(17 17 17 / 80%) 100%);
  box-shadow: -15px 20px 50px rgba(0, 0, 0, 0.301961);
  border-radius: 28px;
  width: 30%;
  display: flex;
  flex-direction: column;
}

.upcoming .logo {
  object-fit: fill;
}

.upcoming .info-box:hover {
  background: linear-gradient(
    180deg
    , #222D4D 46.05%, rgb(4 6 10 / 91%) 100%);
  box-shadow: -15px 20px 50px rgba(0, 0, 0, 0.301961);
}

.upcoming .info-box .flex-divider {
  flex-grow: 1;
}

.upcoming .info-box img {
  width: 100%;
  margin: auto;
}

.upcoming .info-box .img-border {
  /* width: 15px; */
  
  width: 160px;
}

.upcoming .info-box h4 {
  font-family: "Nunito", sans-serif;
  font-size: 18px;
  margin: 20px 0px 10px 0px;
}

.upcoming .info-box p {
  margin: 5px 0;
}

@media (max-width: 1200px) {
  .upcoming .project-holder {
    width: 100px;
    height: 100px;
  }

  .upcoming .icons {
    width: 75%;
  }

  .upcoming .info-box {
    width: 40%;
  }
}

@media (max-width: 1000px) {
  .upcoming .icons {
    width: 100%;
  }

}

@media (min-width: 576px) {
  .upcoming .row1 {
    margin: 40px auto;
  }
}

@media (max-width: 575px) {
  .upcoming .upcoming-project {
    margin: 20px auto;
  }
  .upcoming .row2 {
    margin-bottom: 0;
  }
  .upcoming h3 {
    margin-bottom: 0px;
  }
  .upcoming .icons {
    width: 50%;
  }
  .upcoming .info-box {
    width: 70%;
    margin-bottom: 2rem;
  }
}

/*--------------------------------------------------------------
# About Us
--------------------------------------------------------------*/
.about {
  background: #1B1B1B;
  box-sizing: border-box;
  margin-bottom: -2px;
}

.about .content h4 {
  font-weight: 600;
  font-size: 36px;
  color: #FFF;
  font-family: "Nunito", sans-serif;
}

.about .content h3 {
  font-weight: 600;
  font-size: 48px;
  color: #0041FF;
  font-family: "Nunito", sans-serif;
}

.about p {
  color: #ABAFC7;
  margin: 30px 0px;
  font-size: 14px;
}

.about .first-row, .about .second-row {
  margin-top: 30px;
}

.about .info-box {
  padding: 40px 30px 30px 30px;
  background: linear-gradient(
    180deg
    , #1F1F1F 68.75%, rgb(17 17 17 / 80%) 100%);
  box-shadow: -15px 20px 50px rgba(0, 0, 0, 0.301961);
  border-radius: 28px;
}

.about .info-box:hover {
  background: linear-gradient(
    180deg
    , #222D4D 46.05%, rgb(4 6 10 / 91%) 100%);
  box-shadow: -15px 20px 50px rgba(0, 0, 0, 0.301961);
}

.about .info-box img {
  width: 16px;
  margin: 15px 17px 17px 15px;
}

.about .info-box .img-border {
  /* width: 15px; */
  background: #343434;
  border: 1px solid #777777;
  box-shadow: -15px 20px 50px rgba(0, 0, 0, 0.301961);
  /* padding: 20px; */
  border-radius: 24px;
  width: 48px;
  height: 48px;
}

.about .info-box:hover .img-border {
  background: #0041FF;
  border: 1px solid #0041FF;
}

.about .info-box h4 {
  font-family: "Nunito", sans-serif;
  font-size: 18px;
  margin: 30px 0px 10px 0px;
}

.about .info-box p {
  margin: 5px 0;
}

@media (min-width: 769px) {
  .about .right-padded {
    max-width: 40%;
  }
  .about .order-1 {
    margin: auto;
  }
}
@media (min-width: 576px) {
  .about .info-box {
    width: 100%;
    height: 100%;
  }
  .about .info-box.left {
    transform: translateY(-20px);
  }
  .about .info-box.right {
    transform: translateY(20px);
  }
  .about .flex-column .col-sm-6 {
    padding-right: calc(var(--bs-gutter-x)/ 1.5);
    padding-left: calc(var(--bs-gutter-x)/ 1.5);
  }
  .about .order-1 {
    padding-left: 50px;
  } 
}
@media (max-width: 575px) {
  .about .info-box {
    margin-bottom: 10px;
  }
  .about .first-row, .about .second-row {
    margin-top: 0px;
  }
  .about .order-1 {
    text-align: center;
  }
}

.about .content p:last-child {
  margin-bottom: 0;
}


.about .content .btn-learn-more {
  font-family: "Nunito", sans-serif;
  font-weight: 300;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 28px 11px 28px;
  border-radius: 50px;
  transition: 0.5s;
  margin: 10px 0 0 0;
  color: #fff;
  background: #343434;
  border: 1px solid #777777;
  box-shadow: -15px 20px 50px rgba(0, 0, 0, 0.301961);
}

.about .content .btn-learn-more:hover {
  box-shadow: -15px 20px 50px rgba(0, 0, 0, 0.301961);
}

/*--------------------------------------------------------------
# Partners
--------------------------------------------------------------*/
.partners {
  background: #1B1B1B;
  box-sizing: border-box;
  padding-top: 30px;
}

.partners .row {
  justify-content: center;
  align-items: center;
  width: 80%;
  margin: 0 auto;
}

.partners img {
  width: 100%;
  padding: 20px;
}

@media (max-width: 991px) {
  .partners .row {
    width: 100%;
  }
  .partners img {
    padding: 10px;
  }
}

@media (max-width: 575px) {
  .partners .row {
    width: 60%;
  }
  .partners img {
    padding: 30px;
  }
}

/*--------------------------------------------------------------
# Get Cards
--------------------------------------------------------------*/

.getcards {
  background: #1B1B1B;
  box-sizing: border-box;
  color: #FFF;
  padding-bottom: 30px;
  margin-bottom: -2px;
  overflow: visible;
}

.getcards>.container>.row>.col {
  padding: 0 30px;
}

.getcards .info-box {
  padding: 60px;
  background: linear-gradient(
    180deg
    , rgba(31, 31, 31, 0.95) 55.75%, rgba(31, 31, 31, 0.5) 100%);
  box-shadow: -15px 20px 50px rgb(0 0 0 / 50%);
  border-radius: 28px;
  text-align: center;
}

.getcards h3 {
  font-family: "Nunito", sans-serif;
  font-size: 36px;
  font-weight: 700;
  margin: 0 0 30px 0;
}

.getcards .btn {
  font-family: "Nunito", sans-serif;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 28px 11px 28px;
  border-radius: 50px;
  transition: 0.5s;
  margin: 10px 0 0 0;
  color: #fff;
  background: #0041FF;
  box-shadow: -15px 20px 50px rgba(0, 0, 0, 0.301961);
}

.getcards .btn:hover {
  box-shadow: -15px 20px 50px rgba(0, 65, 255, 0.301961);
}

/*--------------------------------------------------------------
# Team
--------------------------------------------------------------*/

.team {
  background: #000;
  box-sizing: border-box;
  color: #FFF;
}

.team h3 {
  font-family: "Nunito", sans-serif;
  font-size: 36px;
  font-weight: 700; 
  margin: 0 0 50px 0;
}

.team .profile-holder {
  width: 100px;
  height: 100px;
  margin: auto;
  display: flex;
  border-radius: 50%;
  background: #343434;
  overflow: hidden;
  transition: 0.2s ease-in-out;
}

.team img {
  width: 100%;
  margin: auto;
}

.team h4 {
  font-family: "Nunito", sans-serif;
  font-size: 18px;
  margin: 20px 0px 5px 0px;
  color: #0041FF;
  font-weight: 700;
}

.team p {
  color: #ABAFC7;
  font-size: 14px;
}

.team .row2 {
  justify-content: center;
  margin: 40px auto;
}

.team .row2 h6 {
  color: rgba(255, 255, 255, 0.6);
  text-align: center;
  text-transform: uppercase;
  margin-bottom: 56px;
}

.team .row2 h6:after {
  content: "\2014";
  margin-left: 10px;
}

.team .row2 h6:before {
  content: "\2014";
  margin-right: 10px;
}

.team-member.bio {
  cursor: pointer;
}

.team-member.bio:hover .profile-holder {
  transform: scale(1.1);
}

.modal .info-box {
  padding: 40px 30px 30px 30px;
  background: linear-gradient(
    180deg
    , #1F1F1F 68.75%, rgb(17 17 17 / 80%) 100%);
  box-shadow: -15px 20px 50px rgba(0, 0, 0, 0.301961);
  border-radius: 28px;
  color: #ABAFC7;
}

.modal .info-box .modal-title {
  color: #0041FF;
  font-weight: 700;
}

.modal .info-box .btn-close {
  background: transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%230041FF'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat;
}

@media (min-width: 1200px) {
  .team .profile-holder {
    width: 130px;
    height: 130px;
  }
}

@media (min-width: 576px) {
  .team .row1 {
    margin: 40px auto;
  }
}

@media (max-width: 575px) {
  .team .team-member {
    margin: 20px auto;
  }
  .team .row2 {
    margin-bottom: 0;
  }
}

/*--------------------------------------------------------------
# Subscription
--------------------------------------------------------------*/
.subscription {
  background: #1B1B1B;
  box-sizing: border-box;
  color: #FFF;
}

.subscription h3 {
  font-family: "Nunito", sans-serif;
  font-size: 36px;
  font-weight: 700; 
  margin: 0 0 50px 0;
}

.subscription .sub-head {
  margin: 10px 0 30px 0;
}

.subscription .sub-head h4 {
  font-weight: 700;
  color: #0041FF;
  font-size: 32px;
}

.single, .deuce, .trip {
  color: #B8B8B8;
}
.jack {
  color: #F2B28E;
}
.queen {
  color: #90B4EB;
}
.king {
  color: #FFA825;
}
.kingclub {
  color: #78F684;
}
.ace {
  color: #C7C9D1;
}
.joker {
  color: #FF6565;
}

.subscription .col-sm-4 {
  padding: 0px 30px;
}
.subscription .tier {
  position: relative;
  background: linear-gradient(180deg, rgba(31, 31, 31, 0.95) 55.75%, rgba(31, 31, 31, 0.5) 100%);
  box-shadow: -15px 20px 50px rgba(0, 0, 0, 0.5);
  border-radius: 28px;
  padding: 40px 0;
}

@media (min-width: 576px) {
  .subscription .tier::before {
    content: '';
    position: absolute;
    top: 35px;
    left: 35px;
    right: -35px;
    bottom: -35px;
    z-index: -1;
    background: #282828;
    mix-blend-mode: normal;
    border-radius: 20px;
  }

  .subscription .tier:hover::before {
    background: #0041FF;
    box-shadow: -15px 30px 60px rgba(0, 65, 255, 0.301961);
  }

  .subscription .row1 {
    margin-bottom: 100px;
  }
}

@media (max-width: 575px) {
  .subscription {
    padding: 50px 0 50px 0;
  }
  .subscription .tier {
    margin: 15px 0;
  }
}

.subscription .tier-middle {
  background: #343434;
  box-shadow: -15px 20px 50px rgba(0, 0, 0, 0.5);
  margin-right: 0;
  margin-left: 0;
  z-index:2;
  padding: 10px 0;
}

.subscription .tier:hover .tier-middle {
  background: #0041FF;
  box-shadow: unset;
}

.subscription .tier-header h4 {
  font-weight: bold;
  font-size: 28px;
}

.subscription .tier-header p {
  font-family: "Quicksand", sans-serif;
  font-size: 12px;
  margin: 10px 0 20px 0;
}

.subscription .tier-middle .countholder {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}

.subscription .tier-middle .req-count {
  font-size: 42px;
  font-family: "Nunito", sans-serif;
  font-weight: 500;
}

.subscription .tier-middle .cards {
  color: #ABAFC7;
  font-size: 18px;
  font-family: "Quicksand", sans-serif;
  font-weight: 500;
  padding-left: 10px;
}

.subscription .tier-middle .cards.white {
  color: #FFFFFF;
  padding-bottom: 10px;
}

.subscription .tier-middle .midcards {
  color: #FFFFFF;
  font-size: 28px;
  font-family: "Quicksand", sans-serif;
  font-weight: 500;
  padding-left: 10px;
  padding-top: 14px;
  padding-bottom: 14px;
}

.subscription .tier-middle p {
  font-size: 12px;
  margin: 0;
  font-family: "Quicksand", sans-serif;
}

.subscription .tier-footer p {
  font-size: 14px;
  font-family: "Quicksand", sans-serif;
}

.subscription .tier-footer .bolded {
  font-weight: 700;
  margin: 40px 0 10px 0;
}

/*--------------------------------------------------------------
# Features
--------------------------------------------------------------*/

.features {
  background: #000;
  box-sizing: border-box;
  color: #FFF;
}

.features h3 {
  font-family: "Nunito", sans-serif;
  font-size: 36px;
  font-weight: 700; 
  margin: 0 0 50px 0;
}

.features .icon-holder {
  width: 60px;
  height: 60px;
  margin: auto;
  display: flex;
  border-radius: 15px;
  background: #343434;
  border: 1px solid #777777;
  box-shadow:-15px 20px 50px rgba(0, 0, 0, 0.301961);
}

.features img {
  width: 18px;
  margin: auto;
}

.features h4 {
  font-family: "Nunito", sans-serif;
  font-size: 18px;
  margin: 30px 0px 10px 0px;
}

.features p {
  color: #ABAFC7;
  margin: 0px 30px;
  font-size: 14px;
}

@media (min-width: 576px) {
  .features .row1 {
    max-width: 60vw;
    margin: 40px auto;
  }
  .features .row2 {
    max-width: 40vw;
    margin: 40px auto;
  }
}
@media (max-width: 575px) {
  .features .feature {
    margin: 20px auto;
  }
}

/*--------------------------------------------------------------
# Token
--------------------------------------------------------------*/

.token {
  background: #000;
  box-sizing: border-box;
  color: #FFF;
}

.token .hero-img {
  display: flex;
}

.token .gif {
  max-width: 120%;
  margin: auto;
}

@media (max-width: 991px) {
  .token {
    height: unset;
    text-align: center;
  }
  .token .animated {
    -webkit-animation: none;
    animation: none;
  }
  .token .hero-img {
    text-align: center;
  }
  .token .hero-img img {
    width: 50%;
  }
}

@media (max-width: 768px) {
  .token .hero-img img {
    width: 70%;
  }
  .token .gif {
    max-width: 100%;
    margin: auto;
  }
}

.token h3 {
  font-family: "Nunito", sans-serif;
  font-size: 36px;
  font-weight: 700; 
  margin: 20px 0 10px 0;
}

.token p {
  color: #ABAFC7;
  margin: 10px 0;
  font-size: 14px;
}

.token ul {
  list-style: none;
  padding: 0;
}

.token ul li {
  padding-bottom: 10px;
}

.token ul i {
  font-size: 20px;
  padding-right: 4px;
  color: #0041FF;
}

.token p:last-child {
  margin-bottom: 0;
}

.token .skills-content {
  padding: 20px 0;
}

.token .progress {
  height: 50px;
  display: block;
  background: none;
  border-radius: 0;
}

.token .progress .skill {
  padding: 0;
  margin: 0 0 6px 0;
  display: block;
  font-weight: 600;
  font-family: "Nunito", sans-serif;
  color: #FFF;
}

.token .progress .skill .val {
  float: right;
  font-style: normal;
}

.token .progress-bar-wrap {
  background: #192431;
  height: 8px;
  opacity: 0.5;
  border-radius: 20px;
}

.token .progress-bar {
  width: 1px;
  height: 8px;
  transition: .9s;
  background: #0041FF;
  box-shadow: 0px 0px 15px #0041FF;
  border-radius: 20px;
}

@media (max-width: 575px) {
  .token .hero-img img {
    width: 80%;
  }

  .token .skills-content {
    padding: 0 20px;
  }

  .token .progress .skill {
    text-align: left;
  }
}

/*--------------------------------------------------------------
# Distribution
--------------------------------------------------------------*/

.distribution {
  background: #000;
  box-sizing: border-box;
  color: #FFF;
}

.distribution h3 {
  font-family: "Nunito", sans-serif;
  font-size: 36px;
  font-weight: 700; 
  margin: 0 0 50px 0;
}

.distribution .left {
  text-align: right;
  padding-right: 60px;
}

.distribution .right {
  text-align: left;
  padding-left: 60px;
}

.distribution .token-number {
  color: #ABAFC7;
  font-family: "Nunito", sans-serif;
  font-size: 42px;
  opacity: 0.6;
  font-weight: 700;
  margin-bottom: 10px;
}

.distribution .cards {
  color: #0041FF;
  font-family: "Quicksand", sans-serif;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 10px;
}

.distribution .round {
  font-family: "Nunito", sans-serif;
  color: #FFF;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 10px;
}

.distribution .desc {
  color: #ABAFC7;
  font-size: 14px;
}

@media (min-width: 768px) {
  .distribution .dist {
    max-width: 60%;
    margin: auto;
  }
}

@media (max-width: 576px) {
  .distribution .left, .distribution .right {
    text-align: center;
    padding: 0px 15px;
  }
}

/*--------------------------------------------------------------
# Roadmap
--------------------------------------------------------------*/
.roadmap, .roadmap-mobile {
  background: #1B1B1B;
  box-sizing: border-box;
  color: #FFF;
  padding: 0 0 150px 0;
}

.roadmap-mobile {
  padding: 0 0 60px 0;
}

.roadmap .container, .roadmap-mobile .container {
  position: relative;
  padding: 100px 0 0 0;
}

.roadmap img {
  width: 100%;
}

.roadmap-mobile img {
  width: 80%;
  margin: 0 10%;
}

.roadmap .floater {
  position: absolute;
  top: 0;
  left: 0;
  width: 280px;
}

.roadmap-mobile .floater {
  position: relative;
  top: 0;
  left: 0;
  width: 280px;
  text-align: center;
  margin: auto;
  margin-bottom: 40px;
}

.roadmap h3, .roadmap-mobile h3 {
  font-family: "Nunito", sans-serif;
  font-size: 32px;
  font-weight: 700; 
  margin: 90px 0 10px 0;
}

.roadmap-mobile h3 {
  margin-top: 0;
}

.roadmap p, .roadmap-mobile p {
  color: #ABAFC7;
  margin: 10px 0;
  font-size: 14px;
}

.roadmap .btn-tg, .roadmap-mobile .btn-tg {
  font-family: "Nunito", sans-serif;
  font-weight: 300;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 28px 11px 28px;
  border-radius: 50px;
  transition: 0.5s;
  margin: 10px 0 0 0;
  color: #fff;
  background: #0041FF;
  box-shadow: -15px 20px 50px rgba(0, 0, 0, 0.301961);
}

.roadmap .btn-tg:hover, .roadmap-mobile .btn-tg:hover {
  box-shadow: -15px 20px 50px rgba(0, 65, 255, 0.301961);
  cursor: pointer;
}

@media (max-width: 575px) {
  .roadmap {
    display: none;
  }
  .roadmap-mobile {
    display: block;
  }
}

@media (min-width: 576px) {
  .roadmap {
    display: block;
  }
  .roadmap-mobile {
    display: none;
  }
}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact {
  background: #1B1B1B;
  box-sizing: border-box;
  color: #FFF;
  padding: 0 0 100px 0;
}

.contact .col-lg-4 {
  padding-right: 45px;
  margin: auto;
}

.contact h3 {
  font-weight: 700;
  font-size: 42px;
  color: #0041FF;
  font-family: "Nunito", sans-serif;
}

.contact p {
  color: #ABAFC7;
  margin: 30px 0px;
  font-size: 14px;
}

.contact .php-email-form {
  width: 100%;
  padding: 30px 0;
}

.contact .php-email-form .form-group {
  padding-bottom: 8px;
}

.contact .php-email-form .validate {
  display: none;
  color: red;
  margin: 0 0 15px 0;
  font-weight: 400;
  font-size: 13px;
}

.contact .php-email-form .error-message {
  display: none;
  color: #ed3c0d;
  text-align: left;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .error-message br + br {
  margin-top: 25px;
}

.contact .php-email-form .sent-message {
  display: none;
  color: #18d26e;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .loading {
  display: none;
  text-align: center;
  padding: 15px;
}

.contact .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  -webkit-animation: animate-loading 1s linear infinite;
  animation: animate-loading 1s linear infinite;
}

.contact .php-email-form .form-group {
  margin-bottom: 20px;
}

.contact .text-box label {
  padding-left: 0;
  border: none;
}

.contact .php-email-form input, .contact .php-email-form textarea {
  border-radius: 0 !important;
  box-shadow: none;
  font-size: 14px;
  border-radius: 4px;
  border: none;
  border-bottom: 1px solid;
  border-color: #212C3A;
  background-color: #1B1B1B !important;
  color: #FFF !important;
  padding-left: 0;
}

.contact .php-email-form input:focus, .contact .php-email-form textarea:focus {
  border: none;
  border-bottom: 2px solid;
  border-color: #0041FF;
  color: #FFF;
}

/* Change Autocomplete styles in Chrome*/
input:-webkit-autofill,
input:-webkit-autofill:hover, 
input:-webkit-autofill:focus,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover,
textarea:-webkit-autofill:focus,
select:-webkit-autofill,
select:-webkit-autofill:hover,
select:-webkit-autofill:focus {
  -webkit-text-fill-color: #FFF;
  -webkit-box-shadow: 0 0 0px 1000px #1B1B1B inset;
  transition: background-color 5000s ease-in-out 0s;
}

.contact .php-email-form input {
  /* height: 64px; */
  margin-bottom: 30px;
}

.contact .php-email-form textarea {
  height: 130px;
}

.contact .php-email-form .right-submit {
  text-align: right;
}

.contact .php-email-form button[type="submit"] {
  font-family: "Nunito", sans-serif;
  font-weight: 300;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 28px 11px 28px;
  border-radius: 50px;
  transition: 0.5s;
  margin: 10px 0 0 0;
  color: #fff;
  background: #0041FF;
  box-shadow: -15px 20px 50px rgba(0, 0, 0, 0.301961);
  border-color: transparent;
}

.contact .php-email-form button[type="submit"]:hover {
  box-shadow: -15px 20px 50px rgba(0, 65, 255, 0.301961);
}

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

@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@media (max-width: 767px) {
  .contact .col-lg-4 {
    text-align: center;
    padding-right: 0;
  }
  .contact h4 {
    text-align: center;
  }
  .contact .right-submit {
    text-align: center !important;
  }
}

/*--------------------------------------------------------------
# Application form
--------------------------------------------------------------*/
#application-form {
  padding: 120px 0 60px 0;
}

#application-form .container {
  width: 60%;
}

#application-form .lead {
  margin: 50px 0;
}

#application-form .lead p {
  font-size: 16px;
  margin-bottom: 0;
}

#application-form h3 {
  font-size: 36px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 30px;
}

#application-form h4 {
  color: #0041FF;
  margin: 0 0 30px;
}

#application-form form .row {
  margin-top: 60px;
  margin-bottom: 60px;
}

#application-form form .row:first-child {
  margin-top: 0;
}

#application-form .form-check {
  padding-left: calc(var(--bs-gutter-x)/ 2);
  padding-right: calc(var(--bs-gutter-x)/ 2);
}

#application-form .form-check-input {
  background-color: #212C3A !important;
  margin-left: 0;
  margin-right: 10px;
}

@media (max-width: 991px) {
  #application-form .container {
    width: 80%;
  }
}

@media (max-width: 767px) {
  #application-form h4 {
    text-align: left;
  }
}

@media (max-width: 575px) {
  #application-form .container {
    width: 100%;
  }
}

/*--------------------------------------------------------------
# FAQ
--------------------------------------------------------------*/

.faq {
  background: #000;
  box-sizing: border-box;
  color: #FFF;
}

.faq .accordion-item {
  background-color: transparent;
}

.faq .accordion-button {
  background-color: transparent;
  color: #ABAFC7;
}

.faq .accordion-flush .accordion-item .accordion-button {
  border-radius: 10px;
}

.accordion-button:after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%230041FF'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
  background-position: center;
  width: 2.25rem;
}

.faq .accordion-button:not(.collapsed) {
  background-color: #0041FF;
  color: #fff;
}

.faq .accordion-button:not(.collapsed)::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.faq .accordion-body {
  border-bottom: 1px solid #212C3A;
}

.faq h3 {
  font-family: "Nunito", sans-serif;
  font-size: 36px;
  font-weight: 700; 
}

.faq p.docs {
  margin: 30px 0;
}

.btn-docs {
  margin-bottom: 50px;
}

.faq p {
  color: #ABAFC7;
  font-size: 14px;
}

.faq .accordion-body p:last-child {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 15px 0;
  background: #f3f5fa;
  min-height: 40px;
  margin-top: 72px;
}

@media (max-width: 992px) {
  .breadcrumbs {
    margin-top: 68px;
  }
}

.breadcrumbs h2 {
  font-size: 28px;
  font-weight: 600;
  color: #37517e;
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0 0 10px 0;
  margin: 0;
  font-size: 14px;
}

.breadcrumbs ol li + li {
  padding-left: 10px;
}

.breadcrumbs ol li + li::before {
  display: inline-block;
  padding-right: 10px;
  color: #4668a2;
  content: "/";
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  font-size: 14px;
  background: #000;
}

#footer .footer-bottom {
  padding-top: 30px;
  padding-bottom: 30px;
  color: #fff;
}

#footer .copyright {
  float: left;
}

#footer .termsOfUse {
  margin-left: 30px;
  color: white;
}

#footer .termsOfUse:hover {
  text-decoration: underline;
}


#footer .icons {
  float: right;
  font-size: 13px;
}

#footer .icons img {
  transition: 0.3s;
  padding: 0 10px;
}

@media (max-width: 768px) {
  #footer .footer-bottom {
    padding-top: 20px;
    padding-bottom: 20px;
  }
  #footer .copyright, #footer .icons {
    text-align: center;
    float: none;
  }
  #footer .icons {
    padding-top: 10px;
  }

  #footer .termsOfUse {
    margin: 20px 0 30px 20px;
  }
  
}