/**
* Updated: Sep 18 2023 with Bootstrap v5.3.2
*/

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
:root {
    --primary-color: #090528;
    --primary-accent-color: #1d1a39;
    --secondary-color: #f77231;
    --secondary-accent-color: #f29c4f;

    --white-color: #fffeff;
    --dark-color: #282046;
}

body {
  font-family: "Open Sans", sans-serif;
  color: var(--white-color);
  /* background: linear-gradient(150deg, var(--white-color) 0%, var(--primary-accent-color) 65%); */
  background: var(--white-color);
  background-attachment: fixed;
}

a {
    font-family: 'Poppins', sans-serif;
  color: var(--white-color);
  text-decoration: none;
}

a:hover {
  color: var(--secondary-color);
  text-decoration: none;
}

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

*, *:hover {
    transition: ease-in 0.25s;
}

.btn-action {
    font-family: "Poppins", sans-serif;
    text-transform: uppercase;
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 8px 28px;
    border-radius: 50px;
    margin-top: 75px;
    background: var(--primary-color);
    color: var(--white-color);
    width: 250px;
}

.btn-action:hover {
    background: var(--white-color);
    color: var(--primary-color);
    box-shadow: 0 0 10px 1px var(--primary-accent-color);
}

.clearfix {
    clear: both;
    height: 100px;
}

/*--------------------------------------------------------------
  # Custom Scrollbar
  --------------------------------------------------------------*/
*::-webkit-scrollbar {
    width: 10px;
}

*::-webkit-scrollbar-track {
    background: linear-gradient(150deg, var(--primary-color) 0%, var(--dark-color) 65%);
}

*::-webkit-scrollbar-thumb {
    border-radius: 8px;
    background: var(--primary-color);
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: var(--primary-color);
  width: 40px;
  height: 40px;
  border-radius: 50px;
  border: 1px solid var(--primary-color);
  color: var(--white-color);
}

.back-to-top i {
  font-size: 28px;
  line-height: 0;
}

.back-to-top:hover {
  background: var(--white-color);
  color: var(--primary-color);
  border: 1px solid var(--primary-color);
}

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

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

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  z-index: 997;
  top: 20px;
}

#header .header-container {
    background: var(--primary-color);
    color: var(--primary-accent-color);
    border-radius: 15px;
}

#header.header-scrolled {
  background: var(--primary-color);
  box-shadow: 0px 2px 10px var(--dark-color);
  top: 0;
  padding: 10px 0;
}

#header .logo {
  overflow: hidden;
  padding: 10px 0 10px 30px;
}

#header .logo h1 {
  font-size: 26px;
  padding: 0;
  line-height: 1;
  font-weight: 700;
  font-family: "Poppins", sans-serif;
}

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

#header .logo img {
  padding: 0;
  margin: 0;
  width: 175px;
}

@media (max-width: 992px) {
  #header {
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
    top: 0;
    /* background: #009970; */
  }

  #header.header-scrolled,
  #header .header-container {
    border-radius: 0;
  }

  #header .logo {
    padding-left: 0;
  }

  #header .logo h1 {
    font-size: 24px;
  }
}

/*--------------------------------------------------------------
# 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,
.navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px;
  margin: 0 10px;
  color: var(--white-color);
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  font-family: "Poppins", sans-serif;
  white-space: nowrap;
}

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

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover>a {
  color: var(--secondary-accent-color);
  border-bottom: 2px solid var(--secondary-accent-color);
}

.navbar .getstarted,
.navbar .getstarted:focus {
  background: var(--secondary-color);
  padding: 10px 25px;
  margin-left: 30px;
  margin-right: 30px;
  border-radius: 50px;
  color: var(--white-color);
}

.navbar .getstarted:hover,
.navbar .getstarted:focus:hover {
  background: var(--secondary-accent-color);
  color: var(--white-color);
  box-shadow: 0 0 1px 1px var(--secondary-accent-color);
  border: none;
}

.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 14px;
  top: calc(100% + 30px);
  margin: 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: var(--white-color);
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

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

.navbar .dropdown ul a {
  padding: 10px 20px;
  text-transform: none;
  font-weight: 500;
}

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

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover>a {
  color: var(--dark-color);
}

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

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

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

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

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

/**
* Mobile Navigation
*/
.mobile-nav-toggle {
  color: var(--white-color);
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  margin-right: 20px;
}

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

  .navbar ul {
    display: none;
  }

  #header .logo img {
    margin-left: 20px;
  }
}

.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(29, 28, 31, 0.9);
  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;
  background-color: var(--white-color);
  overflow-y: auto;
}

.navbar-mobile a,
.navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 15px;
  color: #36343a;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
  color: var(--primary-color);
}

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
  margin: 15px;
}

.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: var(--white-color);
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

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

.navbar-mobile .dropdown ul a {
  padding: 10px 20px;
}

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

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover>a {
  color: #009970;
}

.navbar-mobile .dropdown>.dropdown-active {
  display: block;
}

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

section h2 {
    font-family: "Poppins", sans-serif;
    font-size: 24px;
    line-height: 60px;
    text-transform: uppercase;
    color: var(--primary-color);
    letter-spacing: 10px;
}

section.section-alt {
    background: rgb(29 26 57 / 10%);
    color: var(--dark-color);
    box-shadow: 0 0 25px 1px var(--primary-accent-color);
}

section.alt, section.alt h2, section.alt p {
    color: var(--dark-color);
}


.table-responsive {
    border-radius: 25px;
}
.table-responsive {
    border-radius: 25px;
}

.table-responsive tbody,
.table-responsive td,
.table-responsive tfoot,
.table-responsive th,
.table-responsive thead,
.table-responsive tr {
    border: 0;
    color: var(--white-color);
}

.table-responsive thead tr,
.table-responsive tfoot tr {
    background: var(--secondary-color);
}

.table-responsive thead th,
.table-responsive tfoot th {
    padding: 22px 16px !important;
    background: inherit;
    color: inherit;
}

.table-responsive tbody tr:nth-child(odd) th,
.table-responsive tbody tr:nth-child(odd) td {
    color: var(--dark-color);
}

.table-responsive tbody tr:nth-child(even) th,
.table-responsive tbody tr:nth-child(even) td {
    background: var(--secondary-accent-color);
    color: var(--dark-color);
}

.table > :not(caption) > * > * {
    padding: 18px 16px;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#home {
  width: 100%;
  min-height: 1000px;
  position: relative;
  text-align: center;
  background: url('../img/token/background.png') center no-repeat;
  background-size: cover;
  box-shadow: 0 0 25px 1px var(--primary-color);
}

#home #home-container {
  /* height: 1000px; */
}

#home .container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

#home img {
    position: absolute;
    top: 0;
    right: 0;
    width: auto;
    height: 100%;
}

#home h1 {
  margin: 0 0 10px 0;
  font-size: 48px;
  font-weight: 700;
  line-height: 56px;
  color: var(--white-color);
}

#home p {
  color: var(--white-color);
  margin-top: 50px;
}

/***************************************************
 * Generated by SVG Artista on 12/5/2023, 11:41:26 AM
 * MIT license (https://opensource.org/licenses/MIT)
 * W. https://svgartista.net
 **************************************************/

#home svg {
    position: absolute;
    top: 220px;
    right: 40px;
    opacity: 0.75;
}

#home svg .svg-home-1 {
    fill: transparent;
    -webkit-transition: fill 3s cubic-bezier(0.68, -0.55, 0.265, 1.55) 0.5s;
            transition: fill 3s cubic-bezier(0.68, -0.55, 0.265, 1.55) 0.5s;
}

#home svg.active .svg-home-1 {
    fill: var(--primary-color);
}

#home svg .svg-home-2 {
    fill: transparent;
    -webkit-transition: fill 3s cubic-bezier(0.68, -0.55, 0.265, 1.55) 1s;
            transition: fill 3s cubic-bezier(0.68, -0.55, 0.265, 1.55) 1s;
}

#home svg.active .svg-home-2 {
    fill: var(--primary-color);
}

#home svg .svg-home-3 {
    fill: transparent;
    -webkit-transition: fill 3s cubic-bezier(0.68, -0.55, 0.265, 1.55) 1.5s;
            transition: fill 3s cubic-bezier(0.68, -0.55, 0.265, 1.55) 1.5s;
}

#home svg.active .svg-home-3 {
    fill: var(--primary-color);
}

#home svg .svg-home-4 {
    fill: transparent;
    -webkit-transition: fill 3s cubic-bezier(0.68, -0.55, 0.265, 1.55) 2s;
            transition: fill 3s cubic-bezier(0.68, -0.55, 0.265, 1.55) 2s;
}

#home svg.active .svg-home-4 {
    fill: var(--primary-color);
}

#home svg .svg-home-5 {
    fill: transparent;
    -webkit-transition: fill 3s cubic-bezier(0.68, -0.55, 0.265, 1.55) 2.5s;
            transition: fill 3s cubic-bezier(0.68, -0.55, 0.265, 1.55) 2.5s;
}

#home svg.active .svg-home-5 {
    fill: var(--primary-color);
}

#home svg .svg-home-6 {
    fill: transparent;
    -webkit-transition: fill 3s cubic-bezier(0.68, -0.55, 0.265, 1.55) 3s;
            transition: fill 3s cubic-bezier(0.68, -0.55, 0.265, 1.55) 3s;
}

#home svg.active .svg-home-6 {
    fill: var(--primary-color);
}

@media (max-width: 768px) {
  #home {
    height: 100vh;
  }

  #home .container {
    padding-top: 60px;
  }

  #home h1 {
    font-size: 32px;
    line-height: 36px;
  }
}

/*--------------------------------------------------------------
# Product
--------------------------------------------------------------*/
#product img {
    position: absolute;
    top: 50%;
    transform: translate(0, -50%);
}

@media (max-width: 992px) {
    #product img {
        position: relative;
    }
}
/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  font-size: 14px;
  color: var(--dark-color);
}

#footer .logo {
    width: 150px;
    margin-left: -10px;
}

#footer a {
    color: var(--dark-color);
}

#footer .footer-top {
  padding: 60px 0 30px 0;
}

#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(--dark-color);
}

#footer .footer-top .footer-contact p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  font-family: "Raleway", sans-serif;
  color: var(--dark-color);
}

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

#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;
  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 {
  display: inline-block;
  line-height: 1;
  color: var(--dark-color);
}

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

#footer .footer-newsletter {
  font-size: 15px;
}

#footer .footer-newsletter h4 {
  font-size: 16px;
  font-weight: bold;
  position: relative;
  padding-bottom: 12px;
}

#footer .footer-newsletter form {
  background: var(--white-color);
  padding: 6px 10px;
  position: relative;
  border-radius: 5px;
  text-align: left;
  border: 1px solid #e4e3e6;
}

#footer .footer-newsletter form input {
  border: 0;
  padding: 4px 8px;
  width: calc(100% - 65px);
  outline: none;
}

#footer .footer-newsletter form button {
    position: absolute;
    top: 50%;
    right: 10px;
    bottom: 0;
    transform: translate(0, -50%);
    border: 0;
    background: none;
    background: var(--primary-color);
    color: var(--white-color);
    border-radius: 5px;
    width: 40px;
    height: 35px;
  }

#footer .footer-newsletter form button:hover {
  background: var(--white-color);
  color: var(--primary-color);
  box-shadow: 0 0 10px 1px var(--primary-accent-color);
}

#footer .credits {
  padding-top: 5px;
  font-size: 13px;
  color: var(--dark-color);
}

#footer .social-links a {
  font-size: 18px;
  display: inline-block;
  color: var(--dark-color);
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
}

#footer .social-links a:hover {
  color: var(--dark-color);
  text-decoration: none;
}

#footer .copyright {
    border-top: 1px solid var(--secondary-color);
}
