/* Box sizing rules */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

*,
*::before,
*::after {
  box-sizing: inherit;
}

body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

p, span {
  font-size: 12px;
}

.text-custom-18 {
  font-size: 18px;
}

/* CUSTOM */
.mt-100-neg {
  margin-top: -100px;
}
.max-w-286 {
  width: 100%;
  max-width: 286px;
}
.max-w-800 {
  width: 100%;
  max-width: 800px;
}
.max-w-960 {
  width: 100%;
  max-width: 960px;
}
.max-w-970 {
  width: 100%;
  max-width: 970px;
}

/* ACCORDION STYLES */
.accordion-item {
  width: 100%;
  max-width: 910px;
  cursor: pointer;
}
.accordion-trigger {
  position: relative;
  z-index: 10;
  background-color: var(--gray);
}
.accordion-item.open .accordion-trigger {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}
.accordion-content {
  position: relative;
  z-index: 10;
  max-height: 0;
  background-color: var(--white);
  overflow: hidden;
  transition: max-height 0.3s ease;
  border-bottom-left-radius: 12px;
  border-bottom-right-radius: 12px;
}
.accordion-icon {
  width: 21px;
  height: 14px;
  transition: transform 0.3s ease;
}

.accordion-icon.open {
  transform: rotate(180deg);
}

/* CARROSSEL */
.benefits-carousel-viewport {
  min-width: 0;
  overflow: hidden;
  flex: 1;
}
.benefits-carousel-track {
  display: flex;
  gap: 16px;
  transition: transform 0.35s ease;
}
.benefits-carousel-track .card-benefits {
  display: flex;
  flex: 0 0 calc((100% - 32px) / 3);
  min-width: 0;
}
.benefits-carousel-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 0;
  padding: 0;
  background: transparent;
  cursor: pointer;
}
.benefits-carousel-arrow:disabled {
  opacity: 0.35;
  cursor: default;
}

.testimonials-carousel-viewport {
  min-width: 0;
  overflow: hidden;
  flex: 1;
}
.testimonials-carousel-track {
  display: flex;
  gap: 32px;
  transition: transform 0.35s ease;
}
.testimonials-carousel-card {
  flex: 0 0 100%;
  min-width: 0;
}
.testimonials-carousel-card img {
  width: 100%;
  height: auto;
}
.testimonials-carousel-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 0;
  padding: 0;
  background: transparent;
  cursor: pointer;
}
.testimonials-carousel-arrow:disabled {
  opacity: 0.35;
  cursor: default;
}

@media (max-width: 767px) {
  .benefits-carousel-track .card-benefits {
    flex-basis: calc((100% - 16px) / 1);
  }
}

@media (min-width: 768px) {
  .testimonials-carousel-card {
    flex-basis: calc((100% - 32px) / 2);
  }
}

@media (min-width: 1024px) {
  .testimonials-carousel-card {
    flex-basis: calc((100% - 64px) / 3);
  }
}

@media (min-width: 1280px) {
  .testimonials-carousel-card {
    flex-basis: calc((100% - 96px) / 4);
  }
}

/* ANIME */
/* Base para elementos com animação */
[data-anime] { opacity: 0; animation-play-state: paused; /* Animação pausada até entrar na tela */ }

/* Tipos de animação */
[data-anime="top"] { animation-name: fromTop; }
[data-anime="right"] { animation-name: fromRight; }
[data-anime="left"] { animation-name: fromLeft; }
[data-anime="bottom"] { animation-name: fromBottom; }
[data-anime="center"] { animation-name: fromCenter; }

/* Tempos de animação */
[data-time="fast"] {
  animation-duration: 0.2s;
  animation-delay: 0.2s;
  animation-timing-function: ease;
  animation-fill-mode: forwards;
}

[data-time="medium"] {
  animation-duration: 0.4s;
  animation-delay: 0.4s;
  animation-timing-function: ease;
  animation-fill-mode: forwards;
}

[data-time="slow01"] {
  animation-duration: 0.6s;
  animation-delay: 0.6s;
  animation-timing-function: ease;
  animation-fill-mode: forwards;
}

[data-time="slow02"] {
  animation-duration: 0.8s;
  animation-delay: 0.8s;
  animation-timing-function: ease;
  animation-fill-mode: forwards;
}

[data-time="slow03"] {
  animation-duration: 1.0s;
  animation-delay: 1.0s;
  animation-timing-function: ease;
  animation-fill-mode: forwards;
}

[data-time="slow04"] {
  animation-duration: 1.2s;
  animation-delay: 1.1s;
  animation-timing-function: ease;
  animation-fill-mode: forwards;
}

[data-time="slow05"] {
  animation-duration: 1.4s;
  animation-delay: 1.4s;
  animation-timing-function: ease;
  animation-fill-mode: forwards;
}

[data-time="slow06"] {
  animation-duration: 1.6s;
  animation-delay: 1.6s;
  animation-timing-function: ease;
  animation-fill-mode: forwards;
}

[data-time="slow07"] {
  animation-duration: 1.8s;
  animation-delay: 1.8s;
  animation-timing-function: ease;
  animation-fill-mode: forwards;
}

[data-time="slow08"] {
  animation-duration: 2s;
  animation-delay: 2s;
  animation-timing-function: ease;
  animation-fill-mode: forwards;
}

[data-time="slow09"] {
  animation-duration: 2.2s;
  animation-delay: 2.2s;
  animation-timing-function: ease;
  animation-fill-mode: forwards;
}

[data-time="slow10"] {
  animation-duration: 2.4s;
  animation-delay: 2.4s;
  animation-timing-function: ease;
  animation-fill-mode: forwards;
}

[data-time="slow11"] {
  animation-duration: 2.6s;
  animation-delay: 2.6s;
  animation-timing-function: ease;
  animation-fill-mode: forwards;
}

[data-time="slow12"] {
  animation-duration: 2.8s;
  animation-delay: 2.8s;
  animation-timing-function: ease;
  animation-fill-mode: forwards;
}

[data-time="slow13"] {
  animation-duration: 3s;
  animation-delay: 3s;
  animation-timing-function: ease;
  animation-fill-mode: forwards;
}

/* Dispara a animação quando a classe 'visible' é adicionada */
[data-anime].visible { animation-play-state: running; }

/* Definição das animações */
@keyframes fromTop {
  from { opacity: 0; transform: translate3d(0, -50px, 0); }
  to { opacity: 1; transform: translate3d(0, 0, 0); }
}

@keyframes fromRight {
  from { opacity: 0; transform: translate3d(50px, 0, 0); }
  to { opacity: 1; transform: translate3d(0, 0, 0); }
}

@keyframes fromLeft {
  from { opacity: 0; transform: translate3d(-50px, 0, 0); }
  to { opacity: 1; transform: translate3d(0, 0, 0); }
}

@keyframes fromBottom {
  from { opacity: 0; transform: translate3d(0, 50px, 0); }
  to { opacity: 1; transform: translate3d(0, 0, 0); }
}

@keyframes fromCenter {
  from { opacity: 0; transform: scale(0.8); }
  to { opacity: 1; transform: scale(1); }
}

@keyframes cardReveal {
  from { opacity: 0; }
  to { opacity: 1; }
}

.card-front[data-anime="center"] {
  animation-name: cardReveal;
}

/* MEDIA QUERYS */
@media (max-width: 640px) {
  .logo-header-130 {
    width: 114px;
    height: 37px;
  }
  .logo-header {
    width: 32px;
    height: 32px;
  }
  .text-custom-12 {
    font-size: 12px;
  }
  .text-custom-18 {
    font-size: 18px;
  }
  .max-w-118 {
    width: 100%;
    max-width: 118px;
  }
  .max-w-183 {
    width: 100%;
    max-width: 183px;
  }
  .movie {
    max-width: 320px;
    height: 165px;
  }
  .card-numbers {
    width: 110px;
    height: 72px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 12px;
    border: 1px solid var(--primary-500);
    padding: 16px;
  }
  .card-numbers-custom {
    width: 224px;
    height: auto;
  }
  .bg-numbers-mobile {
    background-image: url('../img/bayer-numbers-mobile_2x.webp');
    background-repeat: no-repeat;
    background-size: cover;
    background-position-x: 90%;
  }
  .bg-experience {
    background-image: url('../img/experience-mobile_2x.webp');
    background-repeat: no-repeat;
    background-size: cover;
    background-position-x: center;
  }
  .img-border {
    width: 105px;
    height: 50px;
  }
  .card-rotate {
    position: relative;
    width: 100%;
    max-width: 140px;
    height: 140px;
    perspective: 1000px;
    transform-style: preserve-3d;
  }
  .card-front,
  .card-back {
    backface-visibility: hidden;
    transition: transform 0.6s ease;
    transform-style: preserve-3d;
    cursor: pointer;
  }
  .card-front {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    max-width: 140px;
    height: 140px;
    display: flex;
    justify-content: end;
    flex-direction: column;
    align-items: center;
    background-color: var(--primary-500);
    border-radius: 8px;
    border: 2px solid var(--white);
    padding-bottom: 24px;
  }
  .card-back {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    max-width: 140px;
    height: 140px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--primary-500);
    border-radius: 8px;
    border: 2px solid var(--white);
    padding: 4px;
    transform: rotateY(180deg);
  }
  .card-rotate:hover .card-front {
    transform: rotateY(-180deg);
  }
  .card-rotate:hover .card-back {
    transform: rotateY(0);
  }
  .accordion-trigger {
    min-height: 68px;
    padding-top: 8px;
    padding-bottom: 8px;
    gap: 20px;
  }
  .rocket {
    width: 60px;
    height: 60px;
  }
  .uping {
    width: 65px;
    height: 60px;
  }
  .hands {
    width: 60px;
    height: 62px;
  }
  .flag {
    width: 60px;
    height: 60px;
  }
  .graphic {
    width: 65px;
    height: 60px;
  }
  .potential-01 {
    width: 65px;
    height: 60px;
  }
  .potential-02 {
    width: 50px;
    height: 60px;
  }
  .potential-03 {
    width: 65px;
    height: 60px;
  }
  .potential-04 {
    width: 65px;
    height: 60px;
  }
  .potential-05 {
    width: 65px;
    height: 60px;
  }
  .potential-06 {
    width: 65px;
    height: 60px;
  }
  .icon {
    width: 16px;
    height: 12px;
  }
  .bottom-1 {
    bottom: -1px;
  } 
  .right-1 {
    right: -1px;
  }
  .card-benefits {
    width: 284px;
    height: 136px;
    display:flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: var(--primary-500);
    border-radius: 12px;
  }
  .bg-steps-mobile {
    width: 286px;
    height: 457px;
    background-image: url('../img/bg-steps-mobile.webp');
    background-repeat: no-repeat;
    background-size: cover;
  }
  .step {
    width: 100px;
    height: 105px;
  }
  .top-0 {
    top: 0;
  }
  .top-130 {
    top: 130px;
  }
  .left-0 {
    left: 0;
  }
  .bottom-0 {
    bottom: 0;
  }
  .right-18 {
    right: 18px;
  }
  .bg-footer {
    background-image: url('../img/footer-mobile_2x.webp');
    background-repeat: no-repeat;
    background-size: cover;
    background-position-x: 65%;
  }
  .movie-testemonial {
    width: 280px;
    height: 530px;
  }
}

@media (min-width: 640px) {
  p, span {
    font-size: 23px;
  }
  .sm\:text-custom-16 {
    font-size: 16px;
  }
  .sm\:text-custom-23 {
    font-size: 23px;
  }
  .sm\:text-custom-26 {
    font-size: 26px;
  }
  .sm\:text-custom-27 {
    font-size: 27px;
  }
  .sm\:text-custom-28 {
    font-size: 28px;
  }
  .sm\:text-custom-30 {
    font-size: 30px;
  }
  .sm\:text-custom-32 {
    font-size: 32px;
  }
  .sm\:text-custom-33 {
    font-size: 33px;
  }
  .sm\:text-custom-35 {
    font-size: 35px;
  }
  .sm\:text-custom-36 {
    font-size: 36px;
  }
  .sm\:text-custom-40 {
    font-size: 40px;
  }
  .sm\:text-custom-43 {
    font-size: 43px;
  }
  .sm\:text-custom-44 {
    font-size: 44px;
  }
  .sm\:text-custom-53 {
    font-size: 53px;
  }
  .sm\:text-custom-55 {
    font-size: 55px;
  }
  .sm\:text-custom-60 {
    font-size: 60px;
  }
  .sm\:mt-100-neg {
    margin-top: -100px;
  }
  .movie {
    max-width: 320px;
    height: 165px;
  }
  .sm\:max-w-500 {
    width: 100%;
    max-width: 500px;
  }
  .bg-banner {
    height: 350px;
    background-image: url('../img/banner_2x.webp');
    background-repeat: no-repeat;
    background-size: cover;
    background-position-x: center;
  }
  .bt-banner{
    position: absolute;
    bottom: 40px;
    width: 140px;
    height: 44px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--green);
    border-radius: 12px;
    margin-left: 70px;
  }
  .card-numbers {
    width: 210px;
    height: 160px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 12px;
    border: 1px solid var(--primary-500);
    padding: 16px;
  }
  .card-numbers-custom {
    width: 424px;
    height: auto;
  }
  .line-height-52 {
    line-height: 52px;
  }
  .card-benefits {
    width: 284px;
    height: 136px;
    display:flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: var(--primary-500);
    border-radius: 12px;
  }
  .bg-liner-primary-500 {
    background-image: linear-gradient(to right, var(--primary-500)0%, var(--primary-500)30%, var(--white)31%);
  }
  .bg-footer {
    background-image: url('../img/footer_2x.webp');
    background-repeat: no-repeat;
    background-size: cover;
    background-position-x: 65%;
  }

  .rocket {
    width: 70px;
    height: 70px;
  }
  .uping {
    width: 75px;
    height: 70px;
  }
  .hands {
    width: 70px;
    height: 72px;
  }
  .flag {
    width: 70px;
    height: 70px;
  }
  .graphic {
    width: 75px;
    height: 70px;
  }
  .potential-01 {
    width: 75px;
    height: 70px;
  }
  .potential-02 {
    width: 60px;
    height: 70px;
  }
  .potential-03 {
    width: 75px;
    height: 70px;
  }
  .potential-04 {
    width: 75px;
    height: 70px;
  }
  .potential-05 {
    width: 75px;
    height: 70px;
  }
  .potential-06 {
    width: 75px;
    height: 70px;
  }
  .movie-testemonial {
    width: 300px;
    height: 540px;
  }
}

@media (min-width: 640px) and (max-width: 767px) {
  .logo-header-130 {
    width: 114px;
    height: 37px;
  }
  .logo-header {
    width: 32px;
    height: 32px;
  }
  .movie {
    max-width: 600px;
    height: 330px;
  }
  .bg-numbers-mobile {
    background-image: url('../img/bayer-numbers-mobile_2x.webp');
    background-repeat: no-repeat;
    background-size: cover;
    background-position-x: 90%;
  }
  .bg-experience {
    background-image: url('../img/experience-mobile_2x.webp');
    background-repeat: no-repeat;
    background-size: cover;
    background-position-x: center;
  }
  .sm\:max-w-400 {
    width: 100%;
    max-width: 400px;
  }
  .sm\:max-w-600 {
    width: 100%;
    max-width: 600px;
  }
  .sm\:max-w-640 {
    width: 100%;
    max-width: 640px;
  }
  .accordion-icon {
    width: 39px;
    height: 21px;
  }
  .step {
    width: 122px;
    height: 120px;
  }
  .sm\:top-10 {
    top: 10px;
  }
  .sm\:bottom-6 {
    bottom: 6px;
  }
  .sm\:left-50 {
    left: 50px;
  }
  .sm\:left-240 {
    left: 240px;
  }
  .sm\:left-430 {
    left: 430px;
  }
  .bottom-1 {
    bottom: -1px;
  } 
  .right-1 {
    right: -1px;
  }
  .card-rotate {
    position: relative;
    width: 100%;
    max-width: 228px;
    height: 220px;
    perspective: 1000px;
    transform-style: preserve-3d;
  }
  .card-front,
  .card-back {
    backface-visibility: hidden;
    transition: transform 0.6s ease;
    transform-style: preserve-3d;
    cursor: pointer;
  }
  .card-front {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    max-width: 228px;
    height: 220px;
    display: flex;
    justify-content: end;
    flex-direction: column;
    align-items: center;
    background-color: var(--primary-500);
    border-radius: 8px;
    border: 2px solid var(--white);
    padding-bottom: 48px;
  }
  .card-back {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    max-width: 228px;
    height: 220px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--primary-500);
    border-radius: 8px;
    border: 2px solid var(--white);
    padding: 24px;
    transform: rotateY(180deg);
  }
  .card-rotate:hover .card-front {
    transform: rotateY(-180deg);
  }
  .card-rotate:hover .card-back {
    transform: rotateY(0);
  }
  .bg-liner-primary-500 {
    background-image: linear-gradient(to right, var(--primary-500)0%, var(--primary-500)10%, var(--white)11%);
  }
  .bg-steps {
    height: 490px;
    background-image: url('../img/bg-step-sm.webp');
    background-repeat: no-repeat;
    background-size: cover;
    background-position-x: -10px;
  }
  .movie-testemonial {
    width: 286px;
    height: 480px;
  }
}

@media (min-width: 768px) {
  .movie {
    max-width: 700px;
    height: 390px;
  }
  .md\:text-custom-24 {
    font-size: 24px;
  }
  .md\:text-custom-36 {
    font-size: 36px;
  }
  .md\:max-w-480 {
    width: 100%;
    max-width: 480px;
  }
  .md\:max-w-500 {
    width: 100%;
    max-width: 500px;
  }
  .md\:max-w-700 {
    width: 100%;
    max-width: 700px;
  }
  .md\:max-w-740 {
    width: 100%;
    max-width: 740px;
  }
  .bg-banner {
    height: 450px;
    background-image: url('../img/banner_2x.webp');
    background-repeat: no-repeat;
    background-size: cover;
    background-position-x: center;
  }
  .bt-banner{
    position: absolute;
    bottom: 70px;
    width: 200px;
    height: 54px;
    background-color: var(--green);
    border-radius: 16px;
    margin-left: 5%;
  }
  .bottom-1 {
    bottom: -1px;
  } 
  .right-1 {
    right: -1px;
  }
  .card-potential {
    justify-content: flex-start;
    padding-top: 58px;
  }
  .accordion-icon {
    width: 39px;
    height: 21px;
  }
  .bg-numbers {
    background-image: url('../img/bayer-numbers_2x.webp');
    background-repeat: no-repeat;
    background-size: cover;
    background-position-x: 60%;
  }
  .bg-experience {
    background-image: url('../img/experience_2x.webp');
    background-repeat: no-repeat;
    background-size: cover;
    background-position-x: center;
  }
  .bg-liner-primary-500 {
    background-image: linear-gradient(to right, var(--primary-500)0%, var(--primary-500)20%, var(--white)21%);
  }
  .bg-steps {
    height: 562px;
    background-image: url('../img/bg-step-md.webp');
    background-repeat: no-repeat;
    background-size: cover;
  }
  .step {
    width: 122px;
    height: 120px;
  }
  .md\:top-24 {
    top: 24px;
  }
  .md\:bottom-0 {
    bottom: 0;
  }
  .md\:left-70 {
    left: 70px;
  }
  .md\:left-290 {
    left: 290px;
  }
  .md\:left-510 {
    left: 510px;
  }
  .movie-testemonial {
    width: 286px;
    height: 508px;
  }
}

@media (max-width: 1023px) {
  ul {
    top: 60px !important;
  }

  .card-rotate {
    position: relative;
    width: 100%;
    max-width: 228px;
    height: 220px;
    perspective: 1000px;
    transform-style: preserve-3d;
  }
  .card-front,
  .card-back {
    backface-visibility: hidden;
    transition: transform 0.6s ease;
    transform-style: preserve-3d;
    cursor: pointer;
  }
  .card-front {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    max-width: 228px;
    height: 220px;
    display: flex;
    justify-content: end;
    flex-direction: column;
    align-items: center;
    background-color: var(--primary-500);
    border-radius: 8px;
    border: 2px solid var(--white);
    padding-bottom: 48px;
  }
  .card-back {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    max-width: 228px;
    height: 220px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--primary-500);
    border-radius: 8px;
    border: 2px solid var(--white);
    padding: 24px;
    transform: rotateY(180deg);
  }
  .card-rotate:hover .card-front {
    transform: rotateY(-180deg);
  }
  .card-rotate:hover .card-back {
    transform: rotateY(0);
  }
}

/* MENU MOBILE - Telas MENORES que 1024px */
@media (max-width: 1280px) {
  #check {
    display: none;
  }
  .checkbtn {
    font-size: 24px;
    float: right;
    cursor: pointer;
    display: flex;
  }
  ul {
    position: fixed;
    width: 100%;
    height: 100vh;
    background-color: var(--primary-500);
    top: 80px;
    left: -100%;
    text-align: center;
    transition: all 0.5s;
  }
  nav ul li {
    display: block;
  }
  nav ul li a p{
    font-family: 'BayerSans-Regular';
    font-size: 16px;
    color: var(--white);
    font-weight: 400;
    text-transform: uppercase;
  }
  #check:checked ~ ul {
    left: 0;
  }
}

/* MENU DESKTOP - Telas 1024px ou MAIORES */
@media (min-width: 1024px) {
  .lg\:text-custom-22 {
    font-size: 22px;
  }
  .lg\:text-custom-32 {
    font-size: 32px;
  }
  .lg\:text-custom-40 {
    font-size: 40px;
  }
  .movie {
    max-width: 700px;
    height: 400px;
  }
  .lg\:max-w-950 {
    width: 100%;
    max-width: 950px;
  }
  .bg-banner {
    height: 600px;
    background-image: url('../img/banner_2x.webp');
    background-repeat: no-repeat;
    background-size: cover;
    background-position-x: center;
  }
  .bt-banner{
    position: absolute;
    bottom: 100px;
    width: 220px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--green);
    border-radius: 16px;
    margin-left: 60px;
  }
  .bg-steps {
    height: 684px;
    background-image: url('../img/bg-steps.webp');
    background-repeat: no-repeat;
    background-size: cover;
  }
  .card-rotate {
    position: relative;
    width: 318px;
    height: 304px;
    perspective: 1000px;
    transform-style: preserve-3d;
  }
  .card-front,
  .card-back {
    backface-visibility: hidden;
    transition: transform 0.6s ease;
    transform-style: preserve-3d;
    cursor: pointer;
  }
  .card-front {
    position: absolute;
    top: 0;
    left: 0;
    width: 318px;
    height: 304px;
    display: flex;
    justify-content: end;
    flex-direction: column;
    align-items: center;
    background-color: var(--primary-500);
    border-radius: 8px;
    border: 2px solid var(--white);
    padding-bottom: 48px;
  }
  .card-back {
    position: absolute;
    top: 0;
    left: 0;
    width: 318px;
    height: 304px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--primary-500);
    border-radius: 8px;
    border: 2px solid var(--white);
    padding: 24px;
    transform: rotateY(180deg);
  }
  .card-rotate:hover .card-front {
    transform: rotateY(-180deg);
  }
  .card-rotate:hover .card-back {
    transform: rotateY(0);
  }
  .card-potential {
    justify-content: flex-start;
    padding-top: 100px;
  }
  .bg-steps {
    height: 684px;
  }
  .lg\:w-134 {
    width: 134px;
  }
  .lg\:w-170 {
    width: 170px;
  }
  .lg\:w-188 {
    width: 188px;
  }
  .lg\:w-222 {
    width: 222px;
  }
  .lg\:w-440 {
    width: 440px;
  }
  .lg\:max-w-1010 {
    width: 100%;
    max-width: 1010px;
  }
  .card-numbers {
    height: 144px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    border-radius: 12px;
    border: 1px solid var(--primary-500);
    padding: 16px;
  }
  .card-numbers-custom {
    height: auto;
  }
  .step {
    width: 207px;
    height: 205px;
  }
  .lg\:top-0 {
    top: 0
  }
  .lg\:left-60 {
    left: 60px
  }
  .lg\:left-365 {
    left: 365px
  }
  .lg\:left-665 {
    left: 665px
  }
}

@media (min-width: 1280px) {
  .checkbtn {
    display: none;
  }
  #check {
    display: none;
  }
  ul {
    position: static;
    width: auto;
    height: auto;
    background-color: transparent;
    text-align: left;
    transition: none;
  }
  nav ul li {
    display: inline-flex;
  }
  nav ul li a p {
    font-family: 'BayerSans-Regular';
    font-size: 12px;
    color: var(--white);
    font-weight: 400;
    text-transform: uppercase;
  }
  .bg-banner {
    height: 600px;
    background-image: url('../img/banner_2x.webp');
    background-repeat: no-repeat;
    background-size: cover;
    background-position-x: center;
  }
  .bt-banner{
    margin-left: 60px;
    background-color: var(--green);
  }
}

@media (min-width: 1366px) {
  .bg-banner {
    height: 678px;
    background-image: url('../img/banner_2x.webp');
    background-repeat: no-repeat;
    background-size: cover;
    background-position-x: center;
  }
  .bt-banner{
    margin-left: 0;
    background-color: var(--green);
  }
}

@media (min-width: 1520px) {}
