/*=============== GOOGLE FONTS ===============*/
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600&display=swap");
/*=============== VARIABLES CSS ===============*/
:root {
  /*========== Colors ==========*/
  --hue-color: 206;
  --black-color: hsl(var(--hue-color), 4%, 4%);
  --black-color-alt: hsl(var(--hue-color), 4%, 8%);
  --title-color: hsl(var(--hue-color), 4%, 95%);
  --text-color: hsl(var(--hue-color), 4%, 75%);
  --text-color-light: hsl(var(--hue-color), 4%, 65%);
  --green-color: #rgb(62, 131, 30);
  --body-color: #606c38;
  --container-color: hsl(var(--hue-color), 4%, 10%);
  --text-gradient: linear-gradient(hsl(var(--hue-color), 4%, 24%), hsl(var(--hue-color), 4%, 8%));
  --scroll-thumb-color: hsl(var(--hue-color), 4%, 16%);
  --scroll-thumb-color-alt: hsl(var(--hue-color), 4%, 20%);
  /*========== Font and typography ==========*/
  --body-font: 'Poppins', sans-serif;
  --biggest-font-size: 5rem;
  --bigger-font-size: 3.5rem;
  --big-font-size: 2.5rem;
  --h2-font-size: 1.25rem;
  --h3-font-size: 1.125rem;
  --normal-font-size: .938rem;
  --small-font-size: .813rem;
  --smaller-font-size: .75rem;
  --text-line-height: 2rem;
  /*========== Font weight ==========*/
  --font-medium: 500;
  --font-semi-bold: 600;
  /*========== Margenes Bottom ==========*/
  --mb-0-5: .5rem;
  --mb-0-75: .75rem;
  --mb-1: 1rem;
  --mb-1-5: 1.5rem;
  --mb-2: 2rem;
  --mb-2-5: 2.5rem;
  /*========== z index ==========*/
  --z-tooltip: 10;
  --z-fixed: 100;
}

@media screen and (min-width: 968px) {
  :root {
    --biggest-font-size: 7.5rem;
    --bigger-font-size: 4.5rem;
    --big-font-size: 4rem;
    --h2-font-size: 1.5rem;
    --h3-font-size: 1.25rem;
    --normal-font-size: 1rem;
    --small-font-size: .875rem;
    --smaller-font-size: .813rem;
  }
}

/*=============== BASE ===============*/
* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--body-font);
  font-size: var(--normal-font-size);
  background: linear-gradient(0deg, #364b32, var(--body-color));
  background: -webkit-linear-gradient(0deg, #222c20, var(--body-color));
  color: var(--text-color);
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
}

/*=============== REUSABLE CSS CLASSES ===============*/
.section__title {
  font-size: var(--bigger-font-size);
  text-align: center;
}

.section__title-gradient {
  background: var(--text-gradient);
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
}

@media screen and (max-width: 340px) {
  .section__title {
    font-size: var(--big-font-size);
  }
}
/*=============== LAYOUT ===============*/
.main {
  overflow: hidden;
}
/*------------------------------- Header -------------------------------*/
.header {
  padding: 10px 20px;
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: var(--z-fixed);
  background-color: rgba(100, 111, 96, 0.85);
  backdrop-filter: blur(5px);
}

/*=============== NAV ===============*/
.nav {
  height: var(--header-height);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav__logo {
  display: flex;
  width: 160px;
}

.nav__toggle {
  font-size: 1.2rem;
  color: var(--white-color);
  cursor: pointer;
}

.nav__list {
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 1rem;
}

.nav__link {
  color: var(--white-color);
  font-size: var(--h2-font-size);
  text-transform: uppercase;
  font-weight: var(--font-semi-bold);
  background: var(--text-gradient);
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  transition: .4s;
}

.nav__link:hover {
  color: #eeeeee;
}

.nav__close {
  position: absolute;
  font-size: 1.5rem;
  top: 1rem;
  right: 1rem;
  color: var(--white-color);
  cursor: pointer;
}

.nav_logoquerie {
  display: none;
}

@media screen and (max-width: 767px) {
  .nav__menu {
    position: fixed;
    background-color: rgba(100, 111, 96, 0.97);
    top: -100%;
    left: 0;
    width: 100%;
    padding: 4rem 0 3rem;
    transition: .4s;
  }
  .nav__menu {
    opacity: 0;
    transform: translateY(-300px);
  }
  .nav_logoquerie {
    display: block;
    width: 160px;
  }
}
  @media screen and (min-width: 767px) {
    .nav {
      height: calc(var(--header-height) + 1.5rem);
    }
    .nav__list {
      flex-direction: row;
      column-gap: 3.5rem;
    }
    .nav__link {
      font-size: var(--normal-font-size);
      text-transform: initial;
    }
    .nav__toggle, .nav__close {
      display: none;
    }
    .nav__logo {
      display: flex;
      width: 160px;
    }
  
}

.show-menu {
  top: 0;
  transform: translateY(0);
  opacity: 1;
  transition: transform 0.8s ease-in-out;
}

.active-link {
  color: #eeeeee;
}

/*------------------------------- buttons -------------------------------*/
.button {
  color: var(--white-color);
  padding: 1rem 1.25rem;
  border-radius: 0.5rem;
  font-weight: bold;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: background-color 0.3s ease;
  cursor: pointer;
  outline: none;
  background-color: #128c7e;
  text-decoration: none;
}

.button.button--flex {
  display: inline-flex;
  
  align-items: center;
  gap: 0.5rem;
  color: #fff;
  padding: 0.75rem 1.5rem;
  border: none;
  font-size: 1rem;
}

.button.button--flex:hover {
  background-color: var(--black-color-alt);
}

@media (max-width: 768px) {
  .button {
    padding: 0.75rem 1rem;
    font-size: 0.9rem;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
  }
  .button.button--flex {
    padding: 0.5rem 1rem;
    gap: 0.3rem;
  }
}

@media (max-width: 480px) {
  .button {
    padding: 0.5rem 0.75rem;
    font-size: 0.8rem;
    border-radius: 0.25rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  }

  .button__icon {
    font-size: 0.9rem;
  }

  .button.button--flex {
    padding: 0.5rem 0.75rem;
    gap: 0.2rem;
  }

  .button i {
    margin: 0 0 0.5rem 0;
  }
}
/*-------------------------------Home-------------------------------*/
.home_container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  background-color: #646f60;
  padding-top: 58px;
}
.home_img img {
  flex-grow: 2;
  margin-top: 50px;
  object-fit: cover;
}
.home_text {
  padding: 20px;
  flex-grow: 1;
  margin: 0 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.home_title {
  font-size: 2.5rem;
  margin: 0;
}
.home_subtitle {
  font-size: 1.5rem;
  margin-bottom: 20px;
  color: #000000;
}
.home_title-description {
  font-size: 1.2rem;
  font-weight: bold;
  margin-bottom: 10px;
}
.home_description {
  font-size: 1rem;
  line-height: 1.5;
  margin-bottom: 20px;
  color: #000000;
}

@media (max-width: 768px) {
  .home_container {
      flex-direction: column;
  }
  .home_text {
      margin: 0 20px;
      text-align: center;
  }
  .home__img img{
    margin-top: 0px;
  }
}

/*-------------------------------Metodo-------------------------------*/
.background-metodo {
  background: linear-gradient(0deg, #ffffff, #eeeeeefa);
}
.metodo {
  padding: 0px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.metodoCarrossel {
  position: relative;
  transform: translateX(0%);
  width: 100%;
}
.metodoCarrossel span {
  display: block;
  width: 100%;
  height: 75px;
  margin-bottom: 3px;
  background: url(../img/metodo/metodo.png);
  animation: metodocarrossel 150s linear infinite;
}

@keyframes metodocarrossel {
  0% {
      background-position-x: 0;
  }

  100% {
      background-position-x: 1920px;
  }
}

@media (max-width: 768px) {
  .metodo__content {
      align-items: center;
  }

  .metodoCarrossel {
      width: 100%;
  }
}

.process-section {
  max-width: 1000px;
  margin: 0 auto;
  padding: 20px;
  text-align: center;
}

.process-section h2 {
  font-size: 1.8rem;
  color: #333;
  margin-bottom: 40px;
  text-transform: uppercase;
}
.timeline-content h3 {
  color: #000000;
}
.timeline-content p {
  color: #ffffff;
}

.timeline_row {
  display: flex;
  flex-direction: row;
  width: 100%;
  justify-content: center;
}
.timeline {
  display: flex;
  flex-direction: column;
  position: relative;
  padding: 20px 0;
  justify-content: center;
}

.timeline_line {
  width: 3px;
  background-color: #242424;
  border-radius: 10px;
}

.timeline_space {
  height: 100px;
}

.timeline-item {
  position: relative;
  display: flex;
  justify-content: flex-end;
  padding: 10px 40px;
  transition: transform 0.5s ease;
  opacity: 0;
  transform: translateX(-100px);
}

.timeline-item.reverse {
  justify-content: flex-start;
  transform: translateX(100px);
}

.timeline-content {
  background: #646f60;
  padding: 15px 20px;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  max-width: 500px;
  text-align: left;
}

.timeline-item.reverse {
  left: auto;
}

.timeline-item.show {
  transform: translateX(0);
  opacity: 1;
}

@media (max-width: 768px) {
  .timeline {
      border-left: none;
      padding-left: 0;
  }

  .timeline-item {
      flex-direction: column;
      justify-content: flex-end;
      align-items: center;
      padding: 10px 20px;
  }

  .timeline-item.reverse {
      justify-content: flex-start;
  }

  .timeline-content {
      max-width: 100%;
      text-align: center;
  }
}

/*-------------------------------Serviços-------------------------------*/
.service {
  position: relative;
  background-color: #ccd5ae;
  padding: 20px;
}

.service-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
  background-size: cover;
  background-position: center;
  position: relative;
  animation: iconMexendo 5s linear infinite;
}

@keyframes iconMexendo {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(0.8);
  }
  100% {
    transform: scale(1);
  }
}

.service-title {
  font-size: var(--text-line-height);
  text-align: center;
  margin-bottom: var(--mb-2-5);
  background: var(--text-gradient);
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
}

.service-subtitle {
  font-size: var(--normal-font-size);
  font-weight: var(--font-medium);
  transition-property: color;
  transition-duration: 1s;
  transition-timing-function: ease-in-out;
  color:#222c20;
}

.service-colunas {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  padding: 20px;
  height: 100%;
  justify-content: space-around;
}
.colunaout {
  text-align: center;
  flex: 1 1 calc(25% - 20px);
  padding: 10px;
  box-sizing: border-box;
  height: 100%;
}
.colunain {
  flex: 1 1 20%;
  min-height: 350px;
  height: auto;
  padding: 20px;
  box-sizing: border-box;
  border: 1px solid #ccc;
  text-align: center;
  border-radius: 5px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  background: #f1ebdf;
  transition-property: background-color, border-radius;
  transition-duration: 2s, 1.5s;
  transition-timing-function: ease-in-out;
}

.colunain:hover {
  background-color: #646f60;
  transition: background-color 0.5s ease-in, border-radius 0.5s ease-in;
  border-radius: 25px;
  transform: translateY(-10px);
  .service-subtitle,
  .service-subtitle:focus {
    color: hsl(0, 0%, 100%);
    transition: color 0.5s ease-in,
  }
}


@media (max-width: 768px) {
  .service-colunas {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }

  .colunaout {
    flex: 1 1 100%;
    padding: 20px;
  }

  .colunain {
    min-height: 220px;
    padding: 15px;
  }

  .service-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 15px;
  }

  .service-title {
    font-size: var(--h2-font-size);
  }

  .service-subtitle {
    font-size: var(--normal-font-size);
  }
}

@media (max-width: 480px) {
  .service {
    padding: 10px;
  }

  .service-icon {
    width: 40px;
    height: 40px;
    margin-bottom: 10px;
  }

  .colunaout {
    padding: 10px;
  }

  .colunain {
    padding: 10px;
    min-height: 220px;
  }

  .service-title {
    font-size: var(--h3-font-size);
  }

  .service-subtitle {
    font-size: var(--small-font-size);
  }
}


/*-------------------------------Clientes-------------------------------*/
.background-parceiro {
  background: linear-gradient(90deg, #c7eea286, #faedcdcb);
}
.parceiros {
  padding: 40px 0px 40px 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
}
.parceiros__content {
  display: flex;
  width: 100%;
  justify-content: space-between;
  align-items: center;
}
.parceiros_text {
  width: 30%;
  text-align: left;
  padding-left: 80px;
}
.parceiros__description {
  font-size: 16px;
  color: #222c20;
  line-height: 1.6;
}
.fundoCarrossel {
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
}
.fundoCarrossel span:first-of-type {
  display: block;
  width: 100%;
  height: 120px;
  margin-bottom: 3px;
  background: url(../img/parceiros/logos.png);
  animation: carrossel 150s linear infinite;
}
.fundoCarrossel span:last-of-type {
  display: block;
  width: 100%;
  height: 120px;
  background: url(../img/parceiros/logos.png);
  animation: carrossel 150s linear infinite reverse;
}

@keyframes carrossel {
  0% {
      background-position-x: 0;
  }

  100% {
      background-position-x: 1920px;
  }
}

@media (max-width: 768px) {
  .parceiros__content {
      flex-direction: column;
      align-items: center;
  }

  .parceiros_text {
      width: 80%;
      text-align: center;
      padding-left: 0;
      padding-bottom: 20px;
  }

  .fundoCarrossel {
      width: 100%;
  }

  .fundoCarrossel span {
      height: 100px;
  }
}

@media (max-width: 480px) {
  .parceiros_text {
      width: 90%;
      padding: 0 20px;
      font-size: 14px;
  }

  .parceiros__description {
      font-size: 14px;
      line-height: 1.4;
  }

  .fundoCarrossel span {
      height: 80px;
  }
  .parceiros {
    padding: 0px;
  }
  
  .parceiros_button{
    width: 300px;
  }
}

/*------------------------------- Depoimento -------------------------------*/
.depoimento {
  width: 100%;
  padding: 40px 20px;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  background: linear-gradient(0deg, #ffffff54, var(--body-color));
}

.depoimento-slider {
  position: relative;
  margin: 0 auto;
  padding: 20px;
  border-radius: 10px;
  overflow: hidden;
}

.depoimento-slide {
  display: none;
  text-align: center;
  max-width: 800px;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.4);
  background: #ffffff;
}

.depoimento-slide.active {
  display: block;
  animation: fadeIn 0.5s ease-in-out;
}

.depoimento-content {
  position: relative;
}

.depoimento-img {
  border-radius: 50%;
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
}

.depoimento-text {
  font-size: 16px;
  color: #333;
  margin-bottom: 20px;
}

.depoimento-author {
  font-size: 14px;
  font-weight: bold;
  color: #333;
}
.prev,
.next {
  background: none;
  border: none;
  color: #fff;
  font-size: 40px;
  cursor: pointer;
  pointer-events: auto;
  transition: color 0.3s;
  position: relative;
  z-index: 1;
}

.prev:hover,
.next:hover {
  color: #717171;
}

.depoimento-dots {
  text-align: center;
  padding-top: 10px;
}

.dot {
  height: 10px;
  width: 10px;
  margin: 0 5px;
  background-color: #ffffff;
  border-radius: 50%;
  display: inline-block;
  cursor: pointer;
}

.dot.active, .dot:hover {
  background-color: #717171;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}


/*-------------------------------Sobre Mim-------------------------------*/
.sobremim {
  display: flex;
  flex-direction: column;
  background: #ccd5ae;
  padding-top: 25px;
}
.sobremim_container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 25% 25px;
}
.sobremim_img {
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  max-width: 400px;
}
.sobremim_text {
  margin-left: 100px;
  color: #000000;
}

/*-------------------------------Certificado-------------------------------*/
.certificado {
  background: linear-gradient(90deg, #c7eea286, #faedcdcb);
  min-height: fit-content;
  grid-template-columns: repeat(4, 1fe);
}
.certificado-title {
    font-size: var(--text-line-height);
    text-align: center;
    margin-bottom: var(--mb-2-5);
    background: var(--text-gradient);
    color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
    padding: 15px 0 0;
}
.certificado-img {
  width: 300px;
  height: auto;
  border-radius: 8px;
  transition: transform 0.3s ease;
}
.certificado-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(110px, 1fr));
  gap: 20px;
  justify-items: center;
  align-items: center;
  padding: 5px 0 10px;
}
.certificado-img:hover {
  transform: scale(1.1);
}

@media (max-width: 1024px) {
  .sobremim_container {
    padding: 20px 15% 25px;
    flex-direction: column;
    text-align: center;
  }

  .sobremim_img {
    max-width: 300px;
  }

  .sobremim_text {
    margin-left: 0;
    margin-top: 20px;
  }

  .certificado-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

  .certificado-img {
    width: 200px;
  }
}

@media (max-width: 768px) {
  .sobremim_container {
    padding: 15px 10% 20px;
  }

  .sobremim_img {
    max-width: 250px;
  }

  .sobremim_text {
    margin-top: 15px;
    font-size: 16px;
  }

  .certificado-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .certificado-img {
    width: 150px;
  }
}
@media (max-width: 480px) {
  .sobremim_container {
    padding: 10px 5% 15px;
  }

  .sobremim_img {
    max-width: 200px;
  }

  .sobremim_text {
    margin-top: 10px;
    font-size: 14px;
  }
  .certificado-img {
    width: 120px;
  }
}

@media (max-width: 360px) {
  .sobremim_container {
    padding: 5px 2% 10px;
  }

  .sobremim_img {
    max-width: 150px;
  }

  .sobremim_text {
    margin-top: 8px;
    font-size: 12px;
  }

  .certificado-img {
    width: 100px;
  }
}

/*------------------------------- FAQ -------------------------------*/
.section-faq {
  background: linear-gradient(0deg, #ffffff, #eeeeeefa);
}
.section-ecosystem {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 50px;
}
.responsive-content {
  display: flex;
  width: 80%;
  max-width: 1200px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
.accordion-container {
  flex: 1;
  padding: 20px;
  background-color: #646f60;
}
.accordion {
  display: flex;
  flex-direction: column;
  color: #252525;
}
.accordion-item {
  background-color: none;
  margin-top: 10px;
  margin-bottom: 10px;
}
.accordion-header {
  border-top: 1px solid #000000;
  padding-top: 5px;
  margin-top: -10px;
}
.accordion-button {
  width: 100%;
  padding: 15px;
  background: none;
  border: none;
  color: #000000;
  text-align: left;
  font-size: 18px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.accordion-button:hover {
  color: #ffffffaf;
}

.accordion-button--active h2 {
  color: #ffffffaf;
}

.accordion-icon {
  transition: transform 0.3s;
}

.accordion-content {
  padding: 15px;
  display: none;
  color: #ffffffaf;
}

.accordion-item.expanded .accordion-content {
  display: block;
}

.accordion-item.expanded .accordion-icon {
  transform: rotate(180deg);
}

.button_info{
  text-align: center;
  padding: 30px 0 45px;
}

@media screen and (min-width: 640px) {
  .accordion {
    padding: 2.3rem;
  }
}

@media screen and (min-width: 1440px) {
  .accordion__title {
    margin-bottom: 2rem;
  }
  .accordion__title h1 {
    font-size: 3.5rem;
  }
}

/*------------------------------- Footer -------------------------------*/
.footer {
  background-color: #22222298;
  color: #fff;
  padding: 2rem 1rem;
}

.footer__container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
}

.footer__logo-container {
  flex: 1 1 100%;
  text-align: center;
  margin-bottom: 2rem;
}

.footer__logo img {
  width: 500px;
  max-width: 100%;
}

.footer__content {
  flex: 1 1 calc(33.333% - 2rem);
  text-align: center;
}

.footer__title {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.footer__links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer__social {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
}

.footer__social-link {
  color: #fff;
  font-size: 1.5rem;
  transition: color 0.3s ease;
}

.footer__social-link:hover {
  color: #1da1f2;
}

.footer__copy {
  margin-top: 2rem;
  text-align: center;
  font-size: 0.875rem;
}

.footer__copy-link {
  color: #aaa;
  text-decoration: none;
}

.footer__copy-link:hover {
  color: #fff;
}

@media (max-width: 576px) {
  .footer__container {
    flex-direction: column;
    align-items: center;
  }

  .footer__logo img {
    width: 350px;
    max-width: 100%;
  }
  .footer__content {
    flex: 1 1 100%;
    text-align: center;
  }

  .footer__social {
    justify-content: center;
  }

  .button.button--flex {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .footer__content {
    flex: 1 1 100%;
    text-align: center;
    margin-bottom: 2rem;
  }
}

@media (max-width: 992px) {
  .footer__container {
    gap: 1.5rem;
  }

  .footer__content {
    flex: 1 1 calc(50% - 1rem);
  }

  .button.button--flex {
    width: auto;
  }
}

@media (max-width: 1200px) {
  .footer__container {
    gap: 2rem;
  }
}


/*------------------------------- Scroll Up -------------------------------*/
.scrollup {
  position: fixed;
  right: 1rem;
  bottom: -20%;
  display: flex;
  background-color: var(--container-color);
  border-radius: .25rem;
  padding: .45rem;
  opacity: 9;
  z-index: var(--z-tooltip);
  transition: .4s;
}

.scrollup:hover {
  background-color: var(--black-color);
  opacity: 1;
}

.scrollup__icon {
  color: #fff;
  font-size: 1.35rem;
}

.show-scroll {
  bottom: 5rem;
}

/*------------------------------- Scroll Bar -------------------------------*/
::-webkit-scrollbar {
  width: .60rem;
  border-radius: .5rem;
}

::-webkit-scrollbar-thumb {
  background-color: var(--scroll-thumb-color);
  border-radius: .5rem;
}

::-webkit-scrollbar-thumb:hover {
  background-color: var(--scroll-thumb-color-alt);
}
