/* 1. Use a more-intuitive box-sizing model */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* 2. Remove default margin */
* {
  margin: 0;
}

/* 3. Enable keyword animations */
@media (prefers-reduced-motion: no-preference) {
  html {
    interpolate-size: allow-keywords;
  }
}

body {
  /* 4. Add accessible line-height */
  line-height: 1.5;
  /* 5. Improve text rendering */
  -webkit-font-smoothing: antialiased;
}

/* 6. Improve media defaults */
img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}

/* 7. Inherit fonts for form controls */
input,
button,
textarea,
select {
  font: inherit;
}

/* 8. Avoid text overflows */
p,
h1,
h2,
h3,
h4,
h5,
h6 {
  overflow-wrap: break-word;
}

/* 9. Improve line wrapping */
p {
  text-wrap: pretty;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  text-wrap: balance;
}

/*
  10. Create a root stacking context
*/
#root,
#__next {
  isolation: isolate;
}

@font-face {
  font-family: "Roustel";
  src: url("https://biscuitbelly.com/wp-content/themes/biscuit-belly-consumer-website/resources/fonts/Roustel.ttf") format("truetype");
}

:root {
  --blue: #054477;
  --yellow: #f4af00;
  --green: #4ac2bf;
  --red: #f2746b;

  --font-title: "termina", sans-serif;
  --font-title-weight: 700;
  --font-text: "proxima-nova", sans-serif;
  --font-text-weight: 500;
  --font-special: "Roustel", serif;
}

html {
  overflow-x: hidden;
}
body {
  overflow-x: clip;
}

/* First */

.first-section {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: #fff;
  padding: 2%;
  gap: 16px;
}

.header-image {
  width: 100%;
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
}

.second-header {
  width: 100%;
  display: flex;
  flex-direction: row-reverse;
  gap: 16px;
}

.second-header-image {
  width: 100%;
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  flex: 1;
  flex-grow: 2;
  @media (max-width: 768px) {
    display: none;
  }

  & img {
    object-fit: cover;
    width: 100%;
    height: 100%;
    /* todo: Ajustar según necesario */
  }
}

.header-text {
  background-color: var(--blue);
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  color: #fff;
  flex: 1;
  flex-grow: 3;
  padding: 5%;
  justify-content: center;
}

.first-section .title {
  text-transform: uppercase;
  letter-spacing: 1vw;
  line-height: 4vw;
  font-size: 3.5vw;
  font-family: var(--font-title);
  font-weight: var(--font-title-weight);
  @media (max-width: 768px) {
    font-size: 6vw;
    line-height: 8vw;
    letter-spacing: 8px;
  }
}

.subtitle {
  text-transform: uppercase;
  letter-spacing: 16px;
  line-height: 4vw;
  font-size: 3.5vw;
  font-family: var(--font-title);
  font-weight: var(--font-title-weight);
  color: var(--blue);
  text-shadow: 1px 0 0 #fff, /* Desplaza a la derecha */ -1px 0 0 #fff,
    /* Desplaza a la izquierda */ 0 1px 0 #fff,
    /* Desplaza abajo */ 0 -1px 0 #fff; /* Desplaza arriba */

  @media (max-width: 768px) {
    font-size: 4.8vw;
    line-height: 40px;
    letter-spacing: 8px;
  }
}

.paragraph {
  font-size: 1.3vw;
  line-height: 1;
  letter-spacing: 1px;
  font-family: var(--font-text);
  font-weight: var(--font-text-weight);
  margin-top: 16px;
  @media (max-width: 768px) {
    font-size: 20px;
    line-height: 24px;
  }
}

/* Second */

.second-section {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 5% 2%;
  width: 100%;
  position: relative;
  color: var(--blue);

  @media (max-width: 768px) {
    padding: 10% 5%;
    margin-top: 10%;
  }
}

.second-section .title {
  position: relative;
  font-family: var(--font-title);
  font-weight: var(--font-title-weight);
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 16px;
  line-height: 4vw;
  font-size: 3vw !important;

  @media (max-width: 768px) {
    font-size: 8vw !important;
    line-height: 7vw;
    letter-spacing: 1vw !important;
  }
}

.second-section .title::before {
  content: "";
  position: absolute;
  background: url("https://biscuitbelly.com/wp-content/uploads/2026/01/wavy-pattern.png") no-repeat center / contain;
  top: 0;
  left: -50%;
  width: 45%;
  height: 100%;

  @media (max-width: 768px) {
    top: -16vw;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 100%;
  }
}

.second-section .title::after {
  content: "";
  position: absolute;
  background: url("https://biscuitbelly.com/wp-content/uploads/2026/01/wavy-pattern.png") no-repeat center / contain;
  top: 0;
  right: -50%;
  width: 45%;
  height: 100%;

  @media (max-width: 768px) {
    display: none;
  }
}

.second-section-footer {
  width: 100%;
  display: flex;
  gap: 80px;
  text-align: center;

  @media (max-width: 768px) {
    flex-direction: column;
    gap: 24px;
    width: 100%;
  }
}

.second-section-footer .second {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;

  @media (max-width: 768px) {
    margin-top: 20px;
  }
}

.second-section-footer .second .paragraph {
  margin: 0% 0;
  width: 50%;

  @media (max-width: 768px) {
    margin: 0px 0;
    width: 80%;
  }
}

/* Sliding banner */

.sliding-banner {
  width: 100%;
  background-color: var(--blue);
  overflow: hidden;
  padding: 20px 0;
  position: relative;

  @media (max-width: 768px) {
    padding: 15px 0;
  }
}

.banner-content {
  display: flex;
  align-items: center;
  gap: 80px;
  white-space: nowrap;

  @media (max-width: 768px) {
    gap: 40px;
  }
}

.banner-text {
  font-size: 2vw;
  font-family: var(--font-title);
  font-weight: var(--font-title-weight);
  color: #fff;
  letter-spacing: 2px;
  flex-shrink: 0;

  @media (max-width: 768px) {
    font-size: 18px;
    letter-spacing: 1px;
  }
}

.banner-separator {
  height: 40px;
  width: auto;
  flex-shrink: 0;

  @media (max-width: 768px) {
    height: 30px;
  }
}

@keyframes slide {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}

/* Third */

.third-section {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  position: relative;
  /* margin-top: 40px; */
  margin-top: 14vw;
  margin-bottom: 24px;
  color: #fff;
  /* gap: 40px; */
  column-gap: 40px;

  .left-right-container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 6% 0 2% 0;
  }

  @media (max-width: 768px) {
    flex-direction: column;
    text-align: center;
    gap: 8px;
    padding: 25% 10%;
    margin-bottom: 0;
    margin-top: 50%;
  }
}

.third-section .background {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: -1;
  padding-left: 2vw;
  padding-right: 2vw;
  transition: opacity 0.25s ease;
}

.third-section .left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  /* padding: 12% 0 3% 5%; */
  padding: 0% 0 0% 7%;
  width: 100%;

  & .title {
    margin-bottom: 0px;
    font-family: var(--font-title);
    font-weight: var(--font-title-weight);
    text-transform: uppercase;
    letter-spacing: 16px;
    line-height: 3vw;
    font-size: 3vw;
    color: #054477;
    /* color: var(--blue); */
    text-shadow: 1px 0 0 #fff,
      /* Desplaza a la derecha */ -1px 0 0 #fff,
      /* Desplaza a la izquierda */ 0 1px 0 #fff,
      /* Desplaza abajo */ 0 -1px 0 #fff; /* Desplaza arriba */
    
  }

  & .title2 {
    font-family: var(--font-title);
    font-weight: var(--font-title-weight);
    text-transform: uppercase;
    letter-spacing: 1vw;
    line-height: 3vw;
    font-size: 2.5vw;
    margin-bottom: 0px;
  }

  & .special-text {
    font-family: var(--font-special);
    font-size: 4vw;
    margin-top: 8px;
  }

  & .paragraph {
    font-size: 1.3vw;
    line-height: 1.3vw;
    letter-spacing: 1px;
    font-family: var(--font-text);
    font-weight: var(--font-text-weight);
    margin-top: 16px;
  }

  & .paragraph2 {
    font-size: 0.9vw;
    line-height: 1vw;
    letter-spacing: 1px;
    font-family: var(--font-text);
    font-weight: var(--font-text-weight);
    margin-top: 32px;
    margin-bottom: 20px !important;
  }

  @media (max-width: 768px) {
    display: none;
  }
}

.third-section .right {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  /* padding: 10% 10% 5% 0; */
  padding: 1% 8% 2% 0;
  /* gap: 40px; */
  gap: 20px;
  width: 100%;
  height: 100%;
  align-self: end;

  & .top {
    display: flex;
    justify-content: space-evenly;
    width: 100%;
    & .earn-item {
      display: flex;
      flex-direction: column;
      width: 50%;
      max-width: 200px;
      text-align: center;
      text-wrap: balance;
      & .first,
      .last {
        font-size: 1.3vw;
        line-height: 1.3vw;
        letter-spacing: 1px;
        font-family: var(--font-text);
        font-weight: var(--font-text-weight);
      }

      & .number {
        font-size: 3vw;
        font-family: var(--font-title);
        font-weight: var(--font-title-weight);
        color: #054477;
        /* color: var(--blue); */
        text-shadow: 1px 0 0 var(--yellow),
          /* Desplaza a la derecha */ -1px 0 0 var(--yellow),
          /* Desplaza a la izquierda */ 0 1px 0 var(--yellow),
          /* Desplaza abajo */ 0 -1px 0 var(--yellow); /* Desplaza arriba */
      }
    }
  }

  @media (max-width: 768px) {
    display: none;
  }
}

.third-section .button-container {
  align-items: end;

  @media (max-width: 768px) {
    align-items: center;
    width: 100%;
    margin-top: 16px;
  }
}


.third-section .button-container .button {
  font-size: 1.5vw;
  padding: 15px 40px;

  @media (max-width: 768px) {
    font-size: 4.5vw;
    padding: 8px 32px;
  }
}

.primary-button {
  background-color: var(--green);
  color: #fff;
}

.primary-button:hover {
  background-color: var(--red);
  color: #fff;
  border-color: #fff;
}

.secondary-button {
  background-color: var(--yellow);
  color: var(--blue);
  margin-top: 0px !important;
}

.secondary-button:hover {
  background-color: var(--blue);
  color: #fff;
  border-color: #fff;
}

.button-disabled {
  background-color: #bbb !important;
}

.button-disabled:hover {
  background-color: #bbb !important;
  cursor: default !important;
}


.third-section .how-it-works-desktop {
  .accordion-header {
    border-top: 1px solid #fff;
    border-bottom: 1px solid #fff;
    padding: 1vw 4vw;
    width: 100%;
    margin-top: auto;

    &:hover {
      cursor: pointer;
    }

    .container-text {
      font-family: var(--font-title);
      font-weight: var(--font-title-weight);
      font-size: 1.3vw;
      letter-spacing: 0.6vw;
    }
  }
}

.third-section {
  .accordion-content {
    width: 100%;
    transition:
      max-height 0.7s ease,
      padding 0.7s ease;
    overflow: hidden;
    max-height: 0;
    text-align: left;
    padding: 0 5% 0 4%;
    margin-left: 10vw;
    padding-right: 16vw !important; 

    .item-title {
      margin-left: 1vw;
    }

    li::marker,
    .item-title {
      font-family: var(--font-title);
      font-weight: var(--font-title-weight);
      color: var(--green);
      font-size: 1.5vw;
      line-height: 1.2;
    }

    .item-text {
      font-family: var(--font-text);
      font-weight: 400;
      font-size: 1.3vw;
      line-height: 1.1;
      margin-top: 0.6vw;
      margin-bottom: 1vw !important;
      margin-left: 1vw;
    }
  }
}

/* Third mobile */

.third-section .bill {
  position: absolute;
  /* top: -40vw; */
  top: -11vw;
  /* left: 50%; */
  right: -1.3vw;
  /* transform: translateX(-50%); */
  /* width: 90%; */
  width: 30%;

  @media (max-width: 768px) {
    top: -30vw;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
  }
}

.third-section {
  .title {
    margin-bottom: 0px !important;
    font-family: var(--font-title);
    font-weight: var(--font-title-weight);
    text-transform: uppercase;
    letter-spacing: 2vw;
    line-height: 6vw;
    font-size: 7vw;
    color: #054477;
    /* color: var(--blue); */
    text-shadow: 1px 0 0 #fff, 
      /* Desplaza a la derecha */ -1px 0 0 #fff,
      /* Desplaza a la izquierda */ 0 1px 0 #fff,
      /* Desplaza abajo */ 0 -1px 0 #fff; /* Desplaza arriba */
    
      @media (max-width: 768px) {
        font-size: 6vw !important;
        margin-bottom: 0px !important;
        letter-spacing: 2vw !important;
      }
  }

  .title2 {
    font-family: var(--font-title);
    font-weight: var(--font-title-weight);
    text-transform: uppercase;
    /* letter-spacing: 2.3vw; */
    letter-spacing: 2vw;
    line-height: 1.2;
    font-size: 6vw;
    margin-bottom: 0px;
  }

  .special-text {
    font-family: var(--font-special);
    font-size: 10vw;
    line-height: 1;
    margin: 8px 0;
  }

  .paragraph {
    font-size: 5vw;
    max-width: 60vw;
    /* text-wrap: balance; */
    line-height: 1;
    letter-spacing: 1px;
    font-family: var(--font-text);
    font-weight: var(--font-text-weight);
    margin: 8px 0 16px 0;
  }

  .earn-container {
    display: none;
    flex-direction: column;
    position: relative;
    gap: 40px;
    margin-top: 40px;

    &::before {
      position: absolute;
      content: "";
      top: -30px;
      left: 50%;
      transform: translateX(-50%);
      width: 100%;
      height: 2vw;
      background: url("https://biscuitbelly.com/wp-content/uploads/2026/01/wavy-pattern.png") no-repeat center / contain;
    }

    .earn-item {
      display: flex;
      flex-direction: column;
      width: 100%;
      max-width: 50vw;
      text-align: center;
      text-wrap: balance;

      .first,
      .last {
        font-size: 6vw;
        line-height: 1.1;
        letter-spacing: 1px;
        font-family: var(--font-text);
        font-weight: 700;
      }
      .number {
        font-size: 15vw;
        line-height: 1.2;
        font-family: var(--font-title);
        font-weight: var(--font-title-weight);
        color: #054477;
        /* color: var(--blue); */
        -webkit-text-stroke-width: thin;
        background-position: center center;
        -webkit-text-stroke-color: var(--yellow);
      }
    }
    @media (max-width: 768px) {
      display: flex;
    }
  }

  .paragraph2 {
    font-size: 4vw;
    line-height: 5vw;
    letter-spacing: 1px;
    font-family: var(--font-text);
    font-weight: var(--font-text-weight);
    margin-top: 8px;
  }
}

.third-section .how-it-works-mobile {
  .accordion-header {
    border-top: 1px solid #fff;
    border-bottom: 1px solid #fff;
    padding: 3vw 0;
    width: 100%;
    margin-top: 6vw;

    &:hover {
      cursor: pointer;
    }

    .container-text {
      font-family: var(--font-title);
      font-weight: var(--font-title-weight);
      font-size: 5vw;
      letter-spacing: 0.6vw;
    }
  }

  .accordion-content {
    margin-top: 4vw;
    width: 100%;
    transition: max-height 0.7s ease;
    overflow: hidden;
    max-height: 0;
    text-align: left;
    padding: 0 5% 0 10%;

    li {
      margin-top: 6vw;
    }

    li::marker,
    .item-title {
      font-family: var(--font-title);
      font-weight: var(--font-title-weight);
      color: var(--green);
      font-size: 5vw;
      line-height: 1.2;
    }

    .item-text {
      font-family: var(--font-text);
      font-weight: 400;
      margin-left: -7vw;
      font-size: 5vw;
      line-height: 1.2;
      margin-top: 2vw;
    }
  }
}

/* Before fourth section */

.before-fourth {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  /* padding: 2%; */
  margin-top: 5%;

  @media (max-width: 768px) {
    width: 90%;
    margin: 40px 5% 0 5%;
  }
}


/* Fourth section */

.fourth-section {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 5% 2%;
  width: 100%;

  @media (max-width: 768px) {
    width: 90%;
    background-color: var(--red);
    padding: 10%;
    margin: 5%;
  }
}

.fourth-section .title {
  position: relative;
  font-family: var(--font-title);
  font-weight: var(--font-title-weight);
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 16px;
  line-height: 4vw;
  font-size: 2.6vw;
  text-align: center;

  @media (max-width: 768px) {
    color: #fff;
    text-align: left;
    font-size: 30px !important;
    line-height: 7vw;
    letter-spacing: 8px;
    width: 100%;
  }
}

.fourth-section .title .andmore {
  display: inline-block;
  vertical-align: middle;
  text-transform: lowercase;
  font-family: var(--font-special);
  font-size: 2vw;
  font-weight: 200;
  transform: rotate(-8deg);
  letter-spacing: 1px;
  color: var(--red);
  height: 80%;
  position: relative;
  top: -10px;

  @media (max-width: 768px) {
    height: 100%;
    font-size: 10vw;
    color: var(--blue);
  }
}

.fourth-section .title::before {
  content: "";
  position: absolute;
  background: url("https://biscuitbelly.com/wp-content/uploads/2026/01/wavy-pattern.png") no-repeat center / contain;
  top: 0;
  left: -35%;
  width: 30%;
  height: 100%;

  @media (max-width: 768px) {
    display: none;
  }
}

.fourth-section .title::after {
  content: "";
  position: absolute;
  background: url("https://biscuitbelly.com/wp-content/uploads/2026/01/wavy-pattern.png") no-repeat center / contain;
  top: 0;
  right: -35%;
  width: 30%;
  height: 100%;

  @media (max-width: 768px) {
    display: none;
  }
}

.fourth-section .paragraph {
  width: 50%;
  font-size: 1.3vw;
  line-height: 1.3vw;
  letter-spacing: 1px;
  font-family: var(--font-text);
  font-weight: var(--font-text-weight);
  margin-top: 16px;
  text-align: center;

  @media (max-width: 768px) {
    text-align: left;
    width: 100%;
    font-size: 20px;
    line-height: 24px;
    color: #fff;
  }
}

.fourth-section-desktop {
  display: flex;
  justify-content: center;
  /* align-items: center; */
  padding: 5% 2%;
  width: 100%;
  gap: 24px;
  @media (max-width: 768px) {
    display: none;
  }
}

.fourth-section-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 5%;
  width: 100%;
  flex: 2;
  background-color: var(--red);
  gap: 32px;
  height: 100%;

  & .button-container {
    justify-content: flex-start;

    & .button {
      padding: 16px 40px;
    }
  }
}

.fourth-section-text .title {
  position: relative;
  font-family: var(--font-title);
  font-weight: var(--font-title-weight);
  text-transform: uppercase;
  letter-spacing: 16px;
  line-height: 3vw;
  font-size: 2.6vw !important;
  color: #fff;
  margin-bottom: 0px !important;
}

.fourth-section-text .title .andmore {
  display: inline-block;
  vertical-align: middle;
  text-transform: lowercase;
  font-family: var(--font-special);
  font-size: 2vw;
  font-weight: 500;
  transform: rotate(-8deg);
  letter-spacing: 1px;
  color: var(--blue);
  position: relative;
  top: -10px;
}

.fourth-section-text .paragraph {
  width: 100%;
  font-size: 1.3vw;
  line-height: 1.3vw;
  letter-spacing: 1px;
  font-family: var(--font-text);
  font-weight: var(--font-text-weight);
  margin-top: 0px;
  color: #fff;
}

.fourth-section-image {
  display: flex;
  width: 100%;
  flex: 1;

  & img {
    width: 100%;
    object-fit: cover;
  }
}

/* Carousel */

.carousel-swiper {
  width: 100%;
  margin-bottom: 24px;
  padding: 40px 0;
  position: relative;

  @media (max-width: 768px) {
    width: 90%;
  }
}

.carousel-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 500px;
  margin: 0 auto;

  @media (max-width: 768px) {
    width: 100%;
    max-width: 100%;
  }
}

.carousel-item-image {
  width: 100%;
  height: 250px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 16px;

  @media (max-width: 768px) {
    width: 100%;
    height: 300px;
  }
}

.carousel-item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.carousel-item-title {
  font-size: 14px;
  font-family: var(--font-title);
  font-weight: var(--font-title-weight);
  color: var(--blue);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-left: 8px;

  @media (max-width: 768px) {
    font-size: 4vw;
  }
}

.carousel-button-prev,
.carousel-button-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 60px !important;
  height: 90% !important;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10;
  transition: all 0.3s ease;
  color: #fff;

  @media (max-width: 768px) {
    width: 40px;
    height: 40px;
  }
}

.carousel-button-prev {
  left: 0 !important;
  background: linear-gradient(to left, transparent, rgba(74, 194, 191, 0.9));

  &::after {
    content: "‹";
    font-size: 30px;
    font-weight: bold;
    color: #fff;
  }

  &:hover::after {
    color: var(--green);
  }
}

.carousel-button-next {
  right: 0 !important;
  background: linear-gradient(to right, transparent, rgba(74, 194, 191, 0.9));

  &::after {
    content: "›";
    font-size: 30px;
    font-weight: bold;
    color: #fff;
  }

  &:hover::after {
    color: var(--green);
  }
}
/* Fin carousel */

/* Button container */

.button-container {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.button-container.left-aligned {
  @media (max-width: 768px) {
    justify-content: flex-start;
    margin-left: 2%;
  }
}

.button-container .button {
  font-size: 1.5vw;
  padding: 1% 3%;

  @media (max-width: 768px) {
    font-size: 4vw;
    padding: 15px 40px;
  }
}

.buttons-container {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-top: 16px;
}

.button {
  display: inline-block;
  padding: 15px 40px;
  text-decoration: none;
  border-radius: 40px;
  text-transform: uppercase;
  font-family: var(--font-title);
  font-weight: var(--font-title-weight);
  font-size: 1.2vw;
  margin: 16px 0;
  -webkit-box-shadow: 5.56px 5.75px 0 0 rgba(0, 0, 0, 0.2);
  box-shadow: 5.56px 5.75px 0 0 rgba(0, 0, 0, 0.2);
  border: 1px solid transparent;
  line-height: 1.15;
  transition: all 0.4s;

  @media (max-width: 768px) {
    font-size: 4vw;
    letter-spacing: 1px;
  }
}

.primary-button {
  background-color: var(--green);
  color: #fff;
}

.primary-button:hover {
  background-color: var(--red);
  color: #fff;
  border-color: #fff;
}

.secondary-button {
  background-color: var(--yellow);
  color: var(--blue);
  margin-top: 0px !important;
}

.secondary-button:hover {
  background-color: var(--blue);
  color: #fff;
  border-color: #fff;
}

/* General */

.mobile {
  @media (min-width: 769px) {
    display: none;
  }
}

.desktop {
  @media (max-width: 768px) {
    display: none;
  }
}
