/* Base styles 


site cidax
largura maxima 1440px
12 colunas - 16px de gap

fonte: aspekta
texto: 18pt
titulo: 40pt / line height: 1 / letter spacing: -0.05em
título grande: 64pt / line height: 1 / letter spacing: -0.05em


*/
:root {
  --primary-color: #dbe442;
  --text-color: #fff;
  --text-gray: #999;
  --bg-dark: #000;
  --bg-gray: #2f2f2f;
  --card-bg: #333;
}


@font-face {
  font-family: Aspekta;
  src: url(../fonts/Aspekta-400.woff2);
}

@font-face {
  font-family: Aspekta Bold;
  font-weight: bold;
  src: url(../fonts/Aspekta-600.woff2);
}



body.cidax {
  margin: 0 auto;
  padding: 0;
  font-family:
    'Aspekta',
    -apple-system,
    Roboto,
    Helvetica,
    sans-serif;
  font-size: 18px;
  background-color: var(--bg-dark);
  color: var(--text-color);
}

.container-fluid,
.container {
  max-width: 1440px;
 
}





/*-------------------------
       MENU
--------------------------*/

/* Navigation */
.navigation {
  background-color: var(--bg-dark);
 
  max-width: 1440px;
  padding: 0 30px 30px;
  margin: 0 auto;
}

.nav-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.nav-logo {
  width: 120px;
  height: auto;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  margin-bottom: 0;
}

a.nav-link,
a.contact-link:hover {
  color: var(--text-color);
}
a.nav-link:hover,
a.contact-link {
  color: var(--primary-color);
}

.nav-link {
  color: var(--text-color);
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
}

.contact-link {
  color: var(--text-color);
  text-decoration: none;
  text-align: right;
  width: 140px;
}



nav ul {
  display: block;
}

nav ul li {
  display: inline-block;
  float: left;
  color: #fff;
}


a {}

@media screen and (max-width: 864px) {
  
  .nav-logo {
    margin: 0 auto;
    transform: translateY(-300px) translateX(150px);
  }

  .nav-links {
    display: block;
  }

  #contato {
    display: none;
  }

  .nav-wrapper {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: -1;
        background: var(--bg-gray);
        opacity: 0;
        transition: all 0.2s ease;
  }

  .nav-wrapper ul {
        position: absolute;
        top: 25vh;
        width: 100%;
        padding: 0;
  }

  .nav-wrapper ul li {
        display: block;
        float: none;
        width: 100%;
        text-align: center;
        margin-bottom: 10px;
  }

  .nav-wrapper ul li:nth-child(1) a {
        transition-delay: 0.2s;
  }

  .nav-wrapper ul li:nth-child(2) a {
        transition-delay: 0.3s;
  }

  .nav-wrapper ul li:nth-child(3) a {
        transition-delay: 0.4s;
  }

  .nav-wrapper ul li:nth-child(4) a {
        transition-delay: 0.5s;
  }

  .nav-wrapper ul li:nth-child(5) a {
    transition-delay: 0.5s;
}

.nav-wrapper ul li:nth-child(6) a {
  transition-delay: 0.5s;
}

  .nav-wrapper ul li:not(:first-child) {
        margin-left: 0;
  }

  .nav-wrapper ul li a {
        padding: 10px 24px;
        opacity: 0;
        color: #fff;
        font-size: 18px;
        font-weight: 400;
        transform: translateX(-20px);
        transition: all 0.2s ease;
  }

  .nav-btn {
        position: absolute;
        right: 10%;
        top: 10vh;
        display: block;
        cursor: pointer;
        z-index: 9999;
        transform: translate(0, -8px);
  }

  .nav-btn i {
        display: block;
        width: 30px;
        height: 2px;
        background: #fff;
        border-radius: 2px;
        margin: 0;
  }

  .nav-btn i:nth-child(1) {
        margin-top: 0;
  }

  .nav-btn i:nth-child(2) {
        margin-top: 5px;
        opacity: 1;
  }

  .nav-btn i:nth-child(3) {
        margin-top: 5px;
  }
}

#nav:checked + .nav-btn {
  transform: rotate(45deg);
}

#nav:checked + .nav-btn i {
  background: #fff;
  transition: transform 0.2s ease;
}

#nav:checked + .nav-btn i:nth-child(1) {
  transform: translateY(6px) rotate(180deg);
}

#nav:checked + .nav-btn i:nth-child(2) {
  opacity: 0;
}

#nav:checked + .nav-btn i:nth-child(3) {
  transform: translateY(-6px) rotate(90deg);
}

#nav:checked ~ .nav-wrapper {
  z-index: 9990;
  opacity: 1;
}

#nav:checked ~ .nav-wrapper ul li a {
  opacity: 1;
  transform: translateX(0);
}


.hidden {
  display: none;
}











/* Hero Section */
.hero {
  position: relative;
  min-height: 1005px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}



.hero-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;

}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 1));

  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1440px;
  padding: 0 20px;
}

.hero-subtitle {
  color: var(--primary-color);
  font-size: 18px;
  line-height: 2;
  margin-bottom: 4px;
}

.hero-title {
  color: var(--text-color);
  font-size: 64px;
  line-height: 1;
  letter-spacing: -1.28px;
  margin: 0;
  padding: 0 8%;
}

/* Overview Section */
.overview {
  padding: 120px 0 0;
}

.overview-container {
  max-width: 1436px;
  margin: 0 auto;
  padding: 0 32px;
}

.overview-content {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.overview-card {
  position: relative;
  border-radius: 16px;
  background-color: var(--card-bg);
  min-height: 806px;
  max-width: 100%;
}

/* Video */
.home-video video {
  max-width: 100%;
  margin: 0;
 
  
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  
}

.card-icon {
  position: absolute;
  width: 32px;
  height: 32px;
  right: 702px;
  bottom: 419px;
}


.section-title {
  color: var(--primary-color);
}

.purpose {
  padding: 120px 0 0;
}

.purpose .feature-title {
  margin: 15px;
  font-size: 14px;
  font-family: 'Aspekta Bold';
}

.purpose h2 {
  font-size: 40px;
  padding: 0 15%;
}

.purpose p {
  padding: 0 15%;
}




.why-cidax {
  background-color: var(--bg-gray);
  margin-top: 120px;
  padding: 120px 0;
}

.why-cidax h2 {
  font-size: 40px;
  padding: 0 20%;
}

.why-description {
  padding: 0 18%;
  margin-bottom: 100px;
  color: var(--text-gray);
}

.why-cidax .benefit-title {
  font-size: 18px;
  font-family: 'Aspekta Bold';
  color: var(--text-gray);
}

.why-cidax .benefits-2 {
  margin-top: 120px;
}


.who-cidax {
  background-color: var(--text-color);
  padding: 120px 0;
}



.who-cidax h2 {
  font-size: 40px;
  padding: 0 5%;
  color: var(--bg-dark);
}

.who-content {
  color: var(--text-gray);
  padding: 0 15%;
}

.who-content ul {
  color: var(--bg-dark);
}


.how-cidax {
  background-color: var(--bg-gray);
  padding: 120px 0;
}

.how-cidax h2 {
  font-size: 40px;
  padding: 0 10%;
}

.how-cidax p.how-description {
  padding: 0 20%;
  color: var(--text-gray);
}

.how-title {
  color: var(--primary-color);
}



.modules-cidax {
  padding: 120px 0;
}

.modules-cidax h2 {
  padding: 0 20%;
}

.modules-cidax p {
  color: var(--text-gray);
}

.modules-cidax a {
  text-decoration: none;
}

.modules-cidax .btn-a {
  text-decoration: underline;
  color: var(--text-color);
}

.modules-cidax a:hover {
  color: var(--text-gray);
  text-decoration: underline;
}

.modules-cidax .sign {
  color: var(--text-gray);
}




/* Marquee */
.scrolling-container {
  overflow: hidden;
}

/* Inner container styles */
.scrolling-inner {
  display: flex;
  white-space: nowrap;
  padding: 8px 0;
}

/* Text styles */
.scrolling-img {
  display: flex;
}

.scrolling-item {
  padding: 0 10px;
}

/* Apply the animation to the text items */
.scrolling-inner>div {
  animation: var(--direction) var(--marquee-speed) linear infinite;
}

/* Pause the animation when a user hovers over it */
.scrolling-container:hover .scrolling-inner>div {
  animation-play-state: paused;
}

/* Setting the Animation using Keyframes */
@keyframes scroll-left {
  0% {
      transform: translateX(0%);
  }

  100% {
      transform: translateX(-100%);
  }
}

@keyframes scroll-right {
  0% {
      transform: translateX(-100%);
  }

  100% {
      transform: translateX(0%);
  }
}



/*-------------------------
   FOOTER
--------------------------*/

.footer{
  background-color: var(--bg-gray);
  padding: 120px 0;
  margin: 0;
  text-align: center;
  color: #fff;
  font-size: 14px;

}
.footer img{
  height: 60px;
  margin-bottom: 4vh;
}
.footer a{
  color: #fff;
  text-decoration: underline;
}
.footer a:hover{
  color: var(--primary-color);
  text-decoration: none;
}



/*-------------------------
   BACK TO TOP BUTTON
--------------------------*/
.back-to-top {
  background: none;
  margin: 0 2vw 1vh;
  position: fixed;
  border: 50%;
  bottom: 0;
  right: 0;

  z-index: 100;
  display: inline;
  color: #fff;
  opacity: 0.8;
}
 
.back-to-top i {
  font-size: 2.5em;
}

.wow {
   visibility: hidden;
}



/*-------------------------
 Responsive Design 
--------------------------*/

@media (max-width: 991px) {
  .nav-container {
    padding: 0 20px;
  }

  .hero-title {
    font-size: 40px;
    line-height: 1.1;
  }

  .overview {
    padding: 60px 0;
  }

}





@media (min-width: 720px) {
  .carousel {
    margin: 0 auto;
    max-width: 70%;
  }

}

@media screen and (max-width: 864px) {
  .hero-title,
  .purpose-cidax h2,
  .why-cidax h2,
  .who-cidax h2,
  .how-cidax h2 {
    font-size: 30px;
  }

  .overview-heading {
    margin-bottom: 60px;
  }

  .container {
    padding-left: 20px;
  }
}