/**
* Template Name: Ninestars - v2.0.0
* Template URL: https://bootstrapmade.com/ninestars-free-bootstrap-3-theme-for-creative/
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
*/

/*--------------------------------------------------------------
# Custom colors
--------------------------------------------------------------*/

:root {
  --toolbarColor: #FAFAFB;/*#D4D4D8;*/
  --backgroundColor: #FEFEFF;
  --layerColor: #FAFAFB;
  --layer2Color: #F4F4F5;
  --layer2FadeColor: #F4F4F580;
  --disabledColor: #D4D4D8;

  --titleColor: #272138;
  --titleButtonColor: #FDF1EE;
  --subtitleColor: #8F86A9;

  --primaryColor: #7541E6;
  --primaryFadeColor: #7541E640;
  --primaryHoverColor: #A340F4;
  --secondaryColor: #D764EA;
  --secondaryFadeColor: #D764EA40;
  --secondaryHoverColor: #EA75D0;

  --iconsColor: #ea75ad;
  --ongoingColor: #ffb340;
}

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: 'Nasalization', sans-serif;
  color: var(--backgroundColor);
}

a {
  color: #007bff;
}

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

h1, h2, h3, h4, h5, h6, .font-primary {
  font-family: 'Nasalization', sans-serif;
}

h1 {
  margin: 0 0 16px 0;
  font-size: 32px;
  font-weight: 700;
  color: var(--titleColor);
}

h2 {
  color: var(--subtitleColor);
  margin-bottom: 50px;
  font-size: 20px;
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  display: none;
  width: 40px;
  height: 40px;
  border-radius: 30px;
  right: 15px;
  bottom: 15px;
  background: var(--primaryColor);
  color: var(--titleColor);
  transition: display 0.5s ease-in-out;
  z-index: 99999;
}

.back-to-top i {
  font-size: 24px;
  position: absolute;
  top: 8px;
  left: 8px;
}

.back-to-top:hover {
  color: var(--titleColor);
  background: var(--primaryHoverColor);
  transition: background 0.2s ease-in-out;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  height: 72px;
  transition: all 0.5s;
  z-index: 997;
  transition: all 0.5s;
  padding: 15px 0;
  background: var(--toolbarColor);
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

#header .logo h1 {
  font-size: 28px;
  margin: 0;
  padding: 6px 0;
  line-height: 1;
  font-weight: 400;
  letter-spacing: 2px;
  color: var(--titleColor);
}

#header .logo h1 a, #header .logo h1 a:hover {
  color: var(--titleColor);
  text-decoration: none;
}

#header .logo img {
  padding: 0;
  margin: 0;
  max-height: 40px;
}

#main {
  margin-top: 72px;
  background: var(--backgroundColor);
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Desktop Navigation */
.nav-menu, .nav-menu * {
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-menu > ul > li {
  position: relative;
  white-space: nowrap;
  float: left;
}

.nav-menu a {
  display: block;
  position: relative;
  color: var(--subtitleColor);
  padding: 10px 15px;
  transition: 0.3s;
  font-size: 16px;
  font-family: 'Nasalization', sans-serif;
}

.nav-menu a:hover, .nav-menu .active > a, .nav-menu li:hover > a {
  color: var(--titleColor);
  text-decoration: none;
}

.nav-menu .get-started a {
  background: var(--primaryColor);
  color: var(--titleColor);
  border-radius: 50px;
  margin: 0 15px;
  padding: 10px 25px;
}

.nav-menu .get-started a:hover {
  background: var(--primaryHoverColor);
  color: var(--titleColor);
}

.nav-menu .drop-down ul {
  display: block;
  position: absolute;
  left: 0;
  top: calc(100% - 30px);
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  padding: 10px 0;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: ease all 0.3s;
}

.nav-menu .drop-down:hover > ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.nav-menu .drop-down li {
  min-width: 180px;
  position: relative;
}

.nav-menu .drop-down ul a {
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 500;
  text-transform: none;
  color: #3c1300;
}

.nav-menu .drop-down ul a:hover, .nav-menu .drop-down ul .active > a, .nav-menu .drop-down ul li:hover > a {
  color: #eb5d1e;
}

.nav-menu .drop-down > a:after {
  content: "\ea99";
  font-family: IcoFont;
  padding-left: 5px;
}

.nav-menu .drop-down .drop-down ul {
  top: 0;
  left: calc(100% - 30px);
}

.nav-menu .drop-down .drop-down:hover > ul {
  opacity: 1;
  top: 0;
  left: 100%;
}

.nav-menu .drop-down .drop-down > a {
  padding-right: 35px;
}

.nav-menu .drop-down .drop-down > a:after {
  content: "\eaa0";
  font-family: IcoFont;
  position: absolute;
  right: 15px;
}

@media (max-width: 1366px) {
  .nav-menu .drop-down .drop-down ul {
    left: -90%;
  }
  .nav-menu .drop-down .drop-down:hover > ul {
    left: -100%;
  }
  .nav-menu .drop-down .drop-down > a:after {
    content: "\ea9d";
  }
}

/* Mobile Navigation */
.mobile-nav {
  position: fixed;
  top: 0;
  bottom: 0;
  z-index: 9999;
  overflow-y: auto;
  left: -260px;
  width: 260px;
  padding-top: 18px;
  background: var(--toolbarColor);
  transition: 0.4s;
}

.mobile-nav * {
  margin: 0;
  padding: 0;
  list-style: none;
}

.mobile-nav a {
  display: block;
  position: relative;
  color: var(--subtitleColor);
  padding: 10px 20px;
  font-weight: 500;
  transition: 0.3s;
}

.mobile-nav a:hover, .mobile-nav .active > a, .mobile-nav li:hover > a {
  color: var(--titleColor);
  text-decoration: none;
}

.mobile-nav .get-started a {
  background: var(--primaryColor);
  color: var(--titleColor);
  border-radius: 50px;
  margin: 15px;
  padding: 10px 25px;
}

.mobile-nav .get-started a:hover {
  background: var(--primaryHoverColor);
  color: var(--titleColor);
}

.mobile-nav .drop-down > a:after {
  content: "\ea99";
  font-family: IcoFont;
  padding-left: 10px;
  position: absolute;
  right: 15px;
}

.mobile-nav .active.drop-down > a:after {
  content: "\eaa0";
}

.mobile-nav .drop-down > a {
  padding-right: 35px;
}

.mobile-nav .drop-down ul {
  display: none;
  overflow: hidden;
}

.mobile-nav .drop-down li {
  padding-left: 20px;
}

.mobile-nav-toggle {
  position: fixed;
  right: 15px;
  top: 22px;
  z-index: 9998;
  border: 0;
  background: none;
  font-size: 24px;
  transition: all 0.4s;
  outline: none !important;
  line-height: 1;
  cursor: pointer;
  text-align: right;
}

.mobile-nav-toggle i {
  color: var(--titleColor);
}

.mobile-nav-overly {
  width: 100%;
  height: 100%;
  z-index: 9997;
  top: 0;
  left: 0;
  position: fixed;
  background: #2c273f60;
  overflow: hidden;
  display: none;
}

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

.mobile-nav-active .mobile-nav {
  left: 0;
}

.mobile-nav-active .mobile-nav-toggle i {
  color: var(--titleColor);
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  height: 70vh;
  background-image: url("../img/hero.png");
  background-size: cover;
  background-color: var(--backgroundColor);
  margin: 72px 0 -72px 0;
  border-bottom: 4px solid var(--toolbarColor);
}

#hero .hero-img img {
  width: 256px;
}

#hero .btn-get-started {
  font-family: 'Nasalization', sans-serif;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  border-radius: 50px;
  margin: 20 15px;
  padding: 10px 25px;
  transition: 0.5s;
  color: var(--titleButtonColor);
  background: var(--primaryColor);
}

#hero .btn-get-started:hover {
  background: var(--primaryHoverColor);
}

#hero .animated {
  animation: up-down 2s ease-in-out infinite alternate-reverse both;
}

@media (min-width: 1024px) {
  #hero {
    background-attachment: fixed;
  }
}

@media (max-width: 991px) {
  #hero {
    height: calc(50vh - 72px);
  }

  #hero .hero-img img {
    width: 180px;
  }

  #hero h1 {
    font-size: 28px;
    line-height: 36px;
  }
  #hero h2 {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 30px;
  }
}

@media (max-width: 768px) {
  #hero h1 {
    visibility: hidden;
    display: none;
    height: 0px;
  }
  #hero h2 {
    visibility: hidden;
    display: none;
    height: 0px;
  }
}

@-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: 48px 0;
}

.section-bg {
  background-color: var(--backgroundColor);
}

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

.section-title h2 {
  font-size: 16px;
  font-weight: 700;
  padding-bottom: 0;
  line-height: 1px;
  margin-bottom: 15px;
  color: var(--titleColor);
}

.section-title p {
  padding-bottom: 15px;
  margin-bottom: 15px;
  position: relative;
  font-size: 20px;
  font-weight: 700;
  color: var(--subtitleColor);
}

.section-title p::after {
  content: '';
  position: absolute;
  display: block;
  width: 60px;
  height: 2px;
  background: var(--secondaryColor);
  bottom: 0;
  left: calc(50% - 30px);
}

/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
.about h3 {
  margin: 0 0 16px 0;
  font-weight: 700;
  font-size: 18px;
  color: var(--titleColor);
}

.about i {
  font-size: 48px;
  margin-top: 15px;
  color: var(--iconsColor);
}

.about p {
  font-size: 16px;
  color: var(--subtitleColor);
}

@media (max-width: 991px) {
  .about .about-full {
    visibility: hidden;
    height: 0px;
  }
  .about .about-mobile h1 {
    font-size: 22px;
    height: 50%;
    align-content: flex-end;
  }
  .about .about-mobile h2 {
    font-size: 16px;
    height: 50%;
  }
}

@media (min-width: 991px) {
  .about .about-mobile {
    visibility: hidden;
    display: none;
    height: 0px;
  }
}

/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
.services .icon-box {
  padding: 30px;
  position: relative;
  overflow: hidden;
  margin: 0  0 40px 0;
  background: var(--layerColor);
  box-shadow: 0 0px 16px 0 var(--toolbarColor);
  transition: all 0.3s ease-in-out;
  border-radius: 15px;
  text-align: center;
  border-bottom: 2px solid var(--backgroundColor);
}

.services .icon-box:hover {
  transform: translateY(-5px);
  border-color: var(--primaryColor);
}

.services .icon i {
  font-size: 48px;
  line-height: 1;
  margin-bottom: 15px;
  color: var(--iconsColor);
}

.icon img {
  width: 48px;
  height: 48px;
  margin-bottom: 16px;
}

.services .title {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 18px;
}

.services .title a {
  color: var(--titleColor);
  font-size: 20px;
}

.services .description {
  font-size: 16px;
  line-height: 28px;
  margin-bottom: 0;
  color: var(--subtitleColor);
}

/*--------------------------------------------------------------
# Portfolio
--------------------------------------------------------------*/
.portfolio .portfolio-item {
  margin-bottom: 30px;
}

.portfolio #portfolio-flters {
  padding: 0;
  margin: 0 0 35px 0;
  list-style: none;
  text-align: center;
}

.portfolio #portfolio-flters li {
  cursor: pointer;
  margin: 0 15px 15px 0;
  display: inline-block;
  padding: 5px;
  font-size: 16px;
  font-weight: 600;
  line-height: 20px;
  color: var(--subtitleColor);
  margin-bottom: 5px;
  transition: all 0.3s ease-in-out;
}

.portfolio #portfolio-flters li:hover, .portfolio #portfolio-flters li.filter-active {
  color: var(--primaryColor);
}

.portfolio #portfolio-flters li:last-child {
  margin-right: 0;
}

.portfolio .portfolio-wrap {
  transition: 0.3s;
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  z-index: 1;
  background: var(--layerColor);
  box-shadow: 0 0px 16px 0 var(--toolbarColor);
}

.portfolio .portfolio-wrap::before {
  content: "";
  background: var(--primaryFadeColor);
  position: absolute;
  left: 100%;
  right: 0;
  top: 0;
  bottom: 0;
  transition: all ease-in-out 0.3s;
  z-index: 2;
}

.portfolio .portfolio-wrap img {
  transition: 0.3s;
  position: relative;
  z-index: 1;
}

.portfolio .portfolio-wrap .portfolio-links {
  opacity: 0;
  left: 0;
  right: 0;
  top: calc(50% - 32px);
  text-align: center;
  z-index: 3;
  position: absolute;
  transition: all ease-in-out 0.3s;
}

.portfolio .portfolio-wrap .portfolio-links a {
  color: var(--titleColor);
  margin: 0 4px;
  font-size: 18px;
  line-height: 1;
  background-color: var(--primaryColor);
  padding-top: 6px;
  padding-right: 1px;
  border-radius: 50px;
  text-align: center;
  width: 32px;
  height: 32px;
  display: inline-block;
  transition: 0.3s;
}

.portfolio .portfolio-wrap .portfolio-links a i {
  line-height: 1;
}

.portfolio .portfolio-wrap .portfolio-links a:hover {
  background: var(--primaryHoverColor);
  color: var(--titleColor);
}

.portfolio .portfolio-wrap .portfolio-info {
  opacity: 0;
  position: absolute;
  bottom: -20px;
  left: 0;
  right: 0;
  text-align: center;
  z-index: 3;
  transition: all ease-in-out 0.3s;
}

.portfolio .portfolio-wrap .portfolio-info h4 {
  font-size: 20px;
  color: var(--titleColor);
  font-weight: 600;
}

.portfolio .portfolio-wrap .portfolio-info p {
  color: var(--titleColor);
  font-size: 16px;
  text-transform: uppercase;
}

.portfolio .portfolio-wrap:hover::before {
  left: 0;
}

.portfolio .portfolio-wrap:hover .portfolio-links {
  opacity: 1;
  top: calc(50% - 16px);
}

.portfolio .portfolio-wrap:hover .portfolio-info {
  opacity: 1;
  bottom: 0;
}

/*--------------------------------------------------------------
# F.A.Q
--------------------------------------------------------------*/
.faq {
  padding: 60px 0;
}

.faq .faq-list {
  padding: 0;
  list-style: none;
}

.faq .faq-list li {
  padding: 0 0 20px 25px;
}

.faq .faq-list a {
  display: block;
  position: relative;
  font-family: #eb5d1e;
  font-size: 20px;
  font-weight: 600;
  color: var(--primaryColor);
}

.faq .faq-list i {
  font-size: 18px;
  position: absolute;
  left: -25px;
  top: 6px;
}

.faq .faq-list p {
  padding-top: 5px;
  margin-bottom: 20px;
  font-size: 16px;
  color: var(--subtitleColor);
}

.faq .faq-list a.collapse {
  color: var(--primaryColor);
}

.faq .faq-list a.collapsed {
  color: var(--titleColor);
}

.faq .faq-list a.collapsed:hover {
  color: var(--primaryColor);
}

.faq .faq-list a.collapsed i::before {
  content: "\eab2" !important;
}

/*--------------------------------------------------------------
# Team
--------------------------------------------------------------*/
.team {
  background: var(--backgroundColor);
  padding: 0 0 30px 0;
}

.team .member {
  transition: 0.3s;
  text-align: center;
  margin-bottom: 20px;
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  z-index: 1;
  background: var(--layerColor);
  box-shadow: 0 0px 16px 0 var(--toolbarColor);
}

.team .member .member-info {
  opacity: 0;
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
  transition: 0.2s;
}

.team .member .member-info-content {
  position: absolute;
/*  left: 50px; */  
  left: 0;
  right: 0;
  bottom: 0;
  transition: bottom 0.4s;
}

.team .member .member-info-content h4 {
  font-weight: 700;
  margin-bottom: 2px;
  font-size: 18px;
  color: var(--titleColor);
}

.team .member .member-info-content span {
  font-style: italic;
  display: block;
  font-size: 13px;
  color: var(--subtitleColor);
}

.team .member .social {
  position: absolute;
  left: -50px;
  top: 0;
  bottom: 0;
  width: 50px;
  transition: left ease-in-out 0.3s;
  background: var(--layer2FadeColor);
  text-align: center;
}

.team .member .social a {
  transition: color 0.3s;
  display: block;
  color: var(--titleColor);
  margin-top: 15px;
}

.team .member .social a:hover {
  color: var(--secondaryColor);
}

.team .member .social i {
  font-size: 18px;
  margin: 0 2px;
}

.team .member:hover .member-info {
  background: linear-gradient(0deg, rgba(53, 47, 71, 0.95) 0%, rgba(53, 47, 71, 0.95) 15%, rgba(255, 255, 255, 0) 100%);
  opacity: 1;
  transition: 0.4s;
}

.team .member:hover .member-info-content {
  bottom: 30px;
  transition: bottom 0.4s;
}

.team .member:hover .social {
  left: 0;
  transition: left ease-in-out 0.3s;
}

/*--------------------------------------------------------------
# Clients
--------------------------------------------------------------*/

.clients {
  background-color: var(--backgroundColor);
}

.clients .owl-item {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 20px;
}

.clients .owl-item img {
  height: 100%;
}

.clients .owl-nav, .clients .owl-dots {
  margin-top: 5px;
  text-align: center;
}

.clients .owl-dot {
  display: inline-block;
  margin: 0 5px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: var(--subtitleColor) !important;
}

.clients .owl-dot.active {
  background-color: var(--secondaryColor) !important;
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  padding: 0 0 30px 0;
  color: var(--titleColor);
  font-size: 14px;
  background: var(--toolbarColor);
}

#footer .footer-newsletter {
  padding: 0 0 30px 0;
  background: var(--backgroundColor);
  text-align: center;
  font-size: 15px;
}

#footer .footer-newsletter h4 {
  font-size: 16px;
  margin: 0 0 20px 0;
  padding: 0;
  line-height: 1;
  font-weight: 600;
  color: var(--titleColor);
}

#footer .footer-newsletter p {
  color: var(--subtitleColor);
  font-size: 20px;
}

#footer .footer-newsletter form {
  margin-top: 30px;
  background: var(--titleColor);
  padding: 6px 10px;
  position: relative;
  border-radius: 40px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  text-align: left;
}

#footer .footer-newsletter form input[type="email"] {
  border: 0;
  padding: 4px 4px;
  width: calc(100% - 100px);
  background: var(--titleColor);
  outline: none;
  font-size: 16px;
}

#footer .footer-newsletter form input[type="submit"] {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  border: 0;
  background: none;
  font-size: 16px;
  padding: 0 20px;
  background: var(--primaryColor);
  color: var(--titleColor);
  transition: 0.3s;
  border-radius: 40px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  font-size: 16px;
}

#footer .footer-newsletter form input[type="submit"]:hover {
  background: var(--primaryHoverColor);
}

#footer .footer-top {
  padding: 60px 0 30px 0;
  background: var(--backgroundColor);
}

#footer .footer-top .footer-contact {
  margin-bottom: 30px;
}

#footer .footer-top .footer-contact h4 {
  font-size: 22px;
  margin: 0 0 30px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  font-weight: 700;
  color: var(--titleColor);
}

#footer .footer-top .footer-contact p {
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 0;
  font-family: 'Nasalization', sans-serif;
  color: var(--subtitleColor);
}

#footer .footer-top h4 {
  font-size: 16px;
  color: var(--titleColor);
  position: relative;
  padding-bottom: 12px;
}

#footer .footer-top p {
  color: var(--subtitleColor);
}

#footer .footer-top .footer-links {
  margin-bottom: 30px;
}

#footer .footer-top .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

#footer .footer-top .footer-links ul i {
  padding-right: 2px;
  color: var(--primaryColor);
  font-size: 18px;
  line-height: 1;
}

#footer .footer-top .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

#footer .footer-top .footer-links ul li:first-child {
  padding-top: 0;
}

#footer .footer-top .footer-links ul a {
  color: var(--subtitleColor);
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}

#footer .footer-top .footer-links ul a:hover {
  text-decoration: none;
  color: var(--titleColor);
}

#footer .footer-top .social-links a {
  font-size: 16px;
  display: inline-block;
  background: var(--primaryColor);
  color: var(--titleButtonColor);
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

#footer .footer-top .social-links a:hover {
  background: var(--primaryHoverColor);
  color: var(--titleColor);
  text-decoration: none;
}

#footer .copyright {
  text-align: center;
  float: left;
}

#footer .credits {
  float: right;
  text-align: center;
  font-size: 13px;
  color: #212529;
}

#footer .credits a {
  color: #eb5d1e;
}

@media (max-width: 575px) {
  #footer .copyright, #footer .credits {
    float: none;
    -moz-text-align-last: center;
    text-align-last: center;
    padding: 3px 0;
  }
}

/*--------------------------------------------------------------
# Chart
--------------------------------------------------------------*/
* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;  
}
.donut-chart {
  position: relative;
  width: 200px;
  height: 200px;
  margin: 0 auto 2rem;
  border-radius: 100%
 }
.center img {
  height: 80%;
}
p.center {
  background: var(--backgroundColor);
  position: absolute;
  text-align: center;
  font-size: 28px;
  top:0;left:0;bottom:0;right:0;
  width: 130px;
  height: 130px;
  margin: auto;
  border-radius: 50%;
  line-height: 35px;
  padding: 15% 0 0;
} 
.portion-block {
  border-radius: 50%;
  clip: rect(0px, 200px, 200px, 100px);
  height: 100%;
  position: absolute;
  width: 100%;
}
.circle {
  border-radius: 50%;
  clip: rect(0px, 100px, 200px, 0px);
  height: 100%;
  position: absolute;
  width: 100%;
  font-family: monospace;
  font-size: 1.5rem;
}
  
#part1 {
  transform: rotate(0deg);
}

#part1 .circle {
  background-color: #ea75d0;
  animation: first 0.13s 1 forwards;
}
#part2 {
  transform: rotate(90deg);
}
#part2 .circle {
  background-color: #ea7575;
  animation: second 0.13s 1 forwards;
}
#part3 {
  transform: rotate(180deg);
}
#part3 .circle {
  background-color: #ffad94;
  animation: third 0.13s 1 forwards;
}
#part4 {
  transform: rotate(234deg);
}
#part4 .circle {
  background-color: #88c872;
  animation: fourth 0.13s 1 forwards;
}
#part5 {
  transform: rotate(270deg);
}
#part5 .circle {
  background-color: #47b2ef;
  animation: fifth 0.13s 1 forwards;
}
#part6 {
  transform: rotate(306deg);
}
#part6 .circle {
  background-color: #5873ff;
  animation: sixth 0.13s 1 forwards;
}
#part7 {
  transform: rotate(324deg);
}
#part7 .circle {
  background-color: #8146ff;
  animation: seventh 0.13s 1 forwards;
}
#part8 {
  transform: rotate(342deg);
}
#part8 .circle {
  background-color: #c15cd4;
  animation: eighth 0.13s 1 forwards;
}
  
  
/* Animation */
@keyframes first {
    from {transform: rotate(0deg);}
    to {transform: rotate(90deg);}
}
  
@keyframes second {
    from {transform: rotate(0deg);}
    to {transform: rotate(90deg);}
}
  
@keyframes third {
    from {transform: rotate(0deg);}
    to {transform: rotate(54deg);}
}
  
@keyframes fourth {
    from {transform: rotate(0deg);}
    to {transform: rotate(36deg);}
}
  
@keyframes fifth {
    from {transform: rotate(0deg);}
    to {transform: rotate(36deg);}
}
  
@keyframes sixth {
    from {transform: rotate(0deg);}
    to {transform: rotate(18deg);}
}
  
@keyframes seventh {
    from {transform: rotate(0deg);}
    to {transform: rotate(18deg);}
}
  
@keyframes eighth {
    from {transform: rotate(0deg);}
    to {transform: rotate(18deg);}
}

/*--------------------------------------------------------------
# Chart dots
--------------------------------------------------------------*/
.contact .info {
  width: 100%;
}

.contact .info i {
  color: var(--titleColor);
  float: left;
  width: 36px;
  height: 36px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
  font-size: 16px;
}

.contact .info h4 {
  padding: 0 0 0 44px;
  padding-top: 4px;
  font-size: 20px;
  font-weight: 600;
  color: var(--subtitleColor);
}

.contact .info2 {
  width: 100%;
}

.contact .info2 i {
  color: var(--titleColor);
  float: right;
  width: 36px;
  height: 36px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
  font-size: 16px;
}

.contact .info2 h4 {
  padding: 0 44px 0 0;
  padding-top: 4px;
  font-size: 20px;
  font-weight: 600;
  text-align: right;
  color: var(--subtitleColor);
}

/*--------------------------------------------------------------
# Services status
--------------------------------------------------------------*/

.status {
  width: 100%;
  background: #27213860;
  position: relative;
  overflow: hidden;
  margin: 0  0 40px 0;
  border-radius: 15px;
  text-align: center;
}

.status i {
  color: var(--titleColor);
  float: left;
  width: 16px;
  height: 16px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
}

.status h4 {
  padding: 0 0 0 8px;
  margin-top: 8px;
  text-align: left;
  font-size: 16px;
  font-weight: 600;
}

.status .soon {
  background: #ea757550;
}
.soon i {
  background: #ea7575;
}
.soon h4 {
  color: #ea7575;
}

.status .in-progress {
  background: #ffad9450;
}
.in-progress i {
  background: #ffad94;
}
.in-progress h4 {
  color: #ffad94;
}

.status .ready {
  background: #88c87250;
}
.ready i {
  background: #88c872;
}
.ready h4 {
  color: #88c872;
}

.status .live {
  background: #8146ff50;
}
.live i {
  background: #8146ff;
}
.live h4 {
  color: #8146ff;
}

/*--------------------------------------------------------------
# Services status
--------------------------------------------------------------*/

.tyc h4 {
  color: var(--titleColor);
}
.tyc p {
  color: var(--subtitleColor);
}

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

table {
  background: var(--layerColor);
  border-radius: 8px;
  box-shadow: 0 0px 16px 0 var(--toolbarColor);
}

table thead {
  color: var(--titleColor);
}

table tbody {
  color: var(--subtitleColor);
}

.badge-ethereum {
  color: var(--titleColor);
  margin: 4px;
  padding: 4px 8px 4px 8px;
  background: var(--primaryColor) !important;
  border-radius: 4px;
}

.badge-sepolia {
  color: var(--titleColor);
  margin: 4px;
  padding: 4px 8px 4px 8px;
  background: var(--subtitleColor) !important;
  border-radius: 4px;
}

.badge-secondary {
  color: var(--titleColor);
  background: var(--layerColor);
}

table th {
  border-bottom: 1px solid var(--primaryColor) !important;
  border-top: 0px !important;
}

table > tbody > tr > th, table > tfoot > tr > th, table > thead > tr > td, table > tbody > tr > td, table > tfoot > tr > td {
  border-top: 1px solid var(--subtitleColor) !important;
  border-bottom: 0px !important;
}

@media screen and (max-width: 600px) {
  table {
    border: 0;
  }

  table caption {
    font-size: 1.3em;
  }
  
  table thead {
    border: none;
    clip: rect(0 0 0 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
  }
  
  table tr {
    display: block;
    margin-bottom: .625em;
  }
  
  table td {
    border-bottom: 1px solid var(--subtitleColor) !important;
    border-top: 0px !important;
    display: block;
    font-size: .8em;
    text-align: right;
  }
  
  table td::before {
    content: attr(data-label);
    float: left;
    font-weight: bold;
    text-transform: uppercase;
    color: var(--titleColor);
  }
  
  table td:last-child {
    border-bottom: 0px !important;
  }
}

/*--------------------------------------------------------------
# Roadmap
--------------------------------------------------------------*/

.timeline {
  position: relative;
  padding-left: 4rem;
  margin: 0 0 0 30px;
  color: white;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 2px;
  height: 100%;
  background: var(--disabledColor);
}

.timeline-container {
  position: relative;
  margin-bottom: 2.5rem;
}

.timeline-container .timeline-icon {
  position: absolute;
  left: -75px;
  top: 4px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  text-align: center;
  background: var(--titleColor);
  color: var(--titleColor);
}

.timeline-icon-complete {
  background: var(--secondaryColor) !important;
}

.timeline-icon i {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.timeline-icon img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
}

.timeline-container .timeline-body {
  background: var(--layerColor);
  border-radius: 8px;
  padding: 20px 20px 15px;
  box-shadow: 0 0px 16px 0 var(--toolbarColor);
}

.timeline-body::before {
  content: '';
  background: inherit;
  width: 20px;
  height: 20px;
  display: block;
  position: absolute;
  left: -10px;
  transform: rotate(45deg);
  border-radius: 0 0 0 2px;
}

.timeline-body .timeline-title h4 {
  font-size: 20px;
  color: var(--titleColor);
  font-weight: 600;
}

.timeline-body .row {
  padding: 0px 12px 0px 12px;
}

.timeline-body .row span {
  font-size: 14px;
  color: var(--titleColor);
  font-weight: 600;
}

.badge {
  margin: 4px;
  padding: 4px 8px 4px 8px;
  background: var(--primaryColor) !important;
}

.badge {
  color: var(--titleColor);
  margin: 4px;
  padding: 4px 8px 4px 8px;
  border-radius: 4px;
}

.badge-live {
  background: var(--secondaryColor) !important;
}

.badge-ongoing {
  background: var(--ongoingColor) !important;
}

.badge-scheduled {
  background: var(--subtitleColor) !important;
}

/*--------------------------------------------------------------
# P Same line <p style="margin:0;display:inline;float:left">Presale: </p>
--------------------------------------------------------------*/

p strong {
  color: var(--titleColor);
}
