/*
  (c) 2025 Inmedia Global Group - Diseño por Grupo Interactivo
*/

.marca1 {
  border: 1px red dotted;
}

.marca2 {
  border: 2px green dashed;
}

.marca3 {
  border: 2px salmon dotted;
}

.marca4 {
  border: 2px orange dashed;
}

.marca5 {
  border: 2px rgb(255, 246, 231) dashed;
}

/* -------- COLOR PALETTE  -------- */
:root {
  --text-color: #ffffff;
  --sky-blue: #3abbda;
  --light-blue: #0099cc;
}

/* -------- Fonts --------- */

/* Texto bold en Mulish */
.texto-destacado {
  font-family: 'Mulish', sans-serif;
  font-weight: 800;
}

/* Títulos destacados */
.titulo-destacado {
  font-family: 'Figtree', sans-serif;
  font-weight: 800;
}

/* Subtítulos */
.subtitulo {
  font-family: 'Figtree', sans-serif;
  font-weight: 600;
}

/* ------- Estilos por defecto -------- */
html {
  scroll-behavior: smooth;
}

html,
body {
  margin: 0;
  padding: 0;
  font-family: "Mulish", sans-serif, ;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.8em;
  color: var(--body-text);
  background-color: black;
  text-align: left;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  -webkit-overflow-scrolling: touch;
  user-select: none;
}

h1,
h2,
h3,
h4 {
  font-family: 'Figtree', sans-serif;
  font-weight: 800;
  font-size: 1.4em;
  line-height: 1.2em;
  margin-top: 10px;
  margin-bottom: 1.5em;
  color: var(--text-color);
}

a {
  color: var(--text-color);
  text-decoration: none;
  cursor: pointer;
}

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

p {
  color: var(--text-color);
  font-family: "Mulish", sans-serif;
  font-size: 1em;
  line-height: 1.5em;
}

p strong {
  font-family: 'Mulish', sans-serif;
  font-weight: 800;
  color: var(--text-color);
}

p a {
  font-family: 'Mulish', sans-serif;
  font-weight: 400;
  color: var(--text-color);
  text-decoration: none;
}

p a:hover {
  color: var(--light-blue);
}

ul {
  list-style: none;
  padding: 0;
  padding-left: 0;
  line-height: 1.8em;
  text-align: left;
  font-family: "Mulish", sans-serif;
  font-size: 1em;
}

ol {
  padding-left: 15px;
  line-height: 1.8em;
}

ul li,
ol li {
  font-size: 1em;
  line-height: 1.5em;
  color: var(--body-text);
}

/*  -------  Custom scrollbar ------- */
body::-webkit-scrollbar {
  width: 10px;
  position: relative;
}

body::-webkit-scrollbar-track {
  background-color: transparent;
}

body::-webkit-scrollbar-thumb {
  background-color: var(--light-blue);
  border-radius: 0;
}

body::-webkit-scrollbar-thumb:hover {
  background-color: var(--light-blue);
}

/* --------------  Selección de textos ---------------- */
::-moz-selection,
a::-moz-selection,
p::-moz-selection {
  color: #ffffff;
  background-color: var(--light-blue);
  text-shadow: none;
}

::selection,
a::selection,
p::selection {
  color: #ffffff;
  background-color: var(--light-blue);
  text-shadow: none;
}

h1::selection,
h2::selection,
h3::selection,
h4::selection,
h5::selection {
  color: #ffffff;
  background-color: var(--light-blue);
  text-shadow: none;
}

/* --------------  ANIMATED TITLE ---------------- */
.animated-title {
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-duration: 2.5s;
  animation-duration: 2.5s;
  -webkit-animation-name: fadeInRight;
  animation-name: fadeInRight;
}

@-webkit-keyframes fadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-45%, 0, 0);
    transform: translate3d(-45%, 0, 0);
    -webkit-filter: blur(12px);
    filter: blur(12px);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    -webkit-filter: blur(0);
    filter: blur(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-45%, 0, 0);
    transform: translate3d(-45%, 0, 0);
    -webkit-filter: blur(12px);
    filter: blur(12px);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    -webkit-filter: blur(0);
    filter: blur(0);
  }
}

.fade-blur {
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-duration: 4s;
  animation-duration: 4s;
  -webkit-animation-name: Titleblur;
  animation-name: Titleblur;
}

@-webkit-keyframes Titleblur {
  from {
    opacity: 0;
    -webkit-filter: blur(12px);
    filter: blur(12px);
  }

  to {
    opacity: 1;
    filter: blur(0);
  }
}

@keyframes Titleblur {
  from {
    opacity: 0;
    filter: blur(12px);
  }

  to {
    opacity: 1;
    filter: blur(0);
  }
}


/* --------------  HEADER ---------------- */
#inmedia-header {
  position: fixed;
  top: 0;
  left: 0;
  height: auto;
  z-index: 1000;
}

#mainNav {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  width: 100%;
  height: 120px;
  padding-top: 0;
  padding-bottom: 0;
  border: none;
  background-color: transparent;
  transition: all 0.3s ease;
}

#mainNav .navbar-brand {
  width: 270px;
  margin-left: 5%;
  transition: width 0.4s ease;
}

#mainNav .navbar-brand img {
  width: 100%;
  height: auto;
}

.navbar-collapse {
  flex-grow: inherit;
}

#mainNav .navbar-nav {
  padding-right: 24px;
  padding-top: 0px;
}

#mainNav .navbar-nav .nav-item .nav-link {
  font-family: 'Mulish', sans-serif;
  font-weight: 800;
  font-size: 0.8125em;
  letter-spacing: 0.025em;
  text-transform: uppercase;
  text-wrap: nowrap;
  color: var(--text-color);
  transition: all 0.2s;
  padding: 4px 14px;
  margin-right: 4px;
}

#mainNav .navbar-nav .nav-item .nav-link.active,
#mainNav .navbar-nav .nav-item .nav-link.focus,
#mainNav .navbar-nav .nav-item .nav-link:hover {
  color: var(--sky-blue);
}

#mainNav.navbar-shrink {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1030;
  padding-bottom: 0;
  height: 90px;
}

#mainNav.navbar-shrink .navbar-brand {
  padding-top: 0;
  width: 170px;
}

/* Menu Hamburguesa */
.hamburglar {
  transform: scale(1);
  margin-top: 10px;
  position: relative;
  display: block;
  width: 68px;
  height: 68px;
  background: transparent;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  box-shadow: none;
  margin-right: -14px;
  margin-bottom: -8px;
}

.navbar-toggler {
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
  background-color: transparent !important;
}


/* .path-burger {
  position: absolute;
  top: 0;
  left: 0;
  height: 68px;
  width: 68px;
  -webkit-mask: url(#mask);
  mask: url(#mask);
} */

.animate-path {
  position: absolute;
  top: 0;
  left: 0;
  width: 68px;
  height: 68px;
}

/* .path-rotation {
  height: 34px;
  width: 34px;
  margin: 34px 34px 0 0;
  transform: rotate(0deg);
  transform-origin: 100% 0;
}

.path-rotation:before {
  content: "";
  display: block;
  width: 30px;
  height: 34px;
  margin: 0 4px 0 0;
  background: #209ec7;
} */

@-webkit-keyframes rotate-out {
  0% {
    transform: rotate(0deg);
  }

  40% {
    transform: rotate(180deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes rotate-out {
  0% {
    transform: rotate(0deg);
  }

  40% {
    transform: rotate(180deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@-webkit-keyframes rotate-in {
  0% {
    transform: rotate(360deg);
  }

  40% {
    transform: rotate(180deg);
  }

  100% {
    transform: rotate(0deg);
  }
}

@keyframes rotate-in {
  0% {
    transform: rotate(360deg);
  }

  40% {
    transform: rotate(180deg);
  }

  100% {
    transform: rotate(0deg);
  }
}

.hamburglar.is-open .path {
  -webkit-animation: dash-in 0.5s linear normal;
  animation: dash-in 0.5s linear normal;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}

.hamburglar.is-open .animate-path {
  -webkit-animation: rotate-in 0.5s linear normal;
  animation: rotate-in 0.5s linear normal;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}

.hamburglar.is-closed .path {
  -webkit-animation: dash-out 0.5s linear normal;
  animation: dash-out 0.5s linear normal;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}

.hamburglar.is-closed .animate-path {
  -webkit-animation: rotate-out 0.5s linear normal;
  animation: rotate-out 0.5s linear normal;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}

/* .path {
  stroke-dasharray: 240;
  stroke-dashoffset: 240;
  stroke-linejoin: round;
} */

@-webkit-keyframes dash-in {
  0% {
    stroke-dashoffset: 240;
  }

  40% {
    stroke-dashoffset: 240;
  }

  100% {
    stroke-dashoffset: 0;
  }
}

@keyframes dash-in {
  0% {
    stroke-dashoffset: 240;
  }

  40% {
    stroke-dashoffset: 240;
  }

  100% {
    stroke-dashoffset: 0;
  }
}

@-webkit-keyframes dash-out {
  0% {
    stroke-dashoffset: 0;
  }

  40% {
    stroke-dashoffset: 240;
  }

  100% {
    stroke-dashoffset: 240;
  }
}

@keyframes dash-out {
  0% {
    stroke-dashoffset: 0;
  }

  40% {
    stroke-dashoffset: 240;
  }

  100% {
    stroke-dashoffset: 240;
  }
}

.burger-icon {
  position: absolute;
  padding: 20px 16px;
  height: 68px;
  width: 68px;
}

.burger-container {
  position: relative;
  height: 28px;
  width: 36px;
}

.burger-bun-top,
.burger-bun-bot,
.burger-filling {
  position: absolute;
  display: block;
  height: 4px;
  width: 36px;
  border-radius: 2px;
  background: #0099cc;
}

.burger-bun-top {
  top: 0;
  transform-origin: 34px 2px;
}

.burger-bun-bot {
  bottom: 0;
  transform-origin: 34px 2px;
}

.burger-bun-top.gihamb,
.burger-bun-bot.gihamb {
  width: 24px;
  margin-left: 12px;
}

.burger-filling {
  top: 12px;
}

/* .burger-ring {
  position: absolute;
  top: 0;
  left: 0;
  width: 68px;
  height: 68px;
} */

/* .svg-ring {
  width: 68px;
  height: 68px;
} */

.hamburglar.is-open .burger-bun-top {
  -webkit-animation: bun-top-out 0.5s linear normal;
  animation: bun-top-out 0.5s linear normal;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}

.hamburglar.is-open .burger-bun-bot {
  -webkit-animation: bun-bot-out 0.5s linear normal;
  animation: bun-bot-out 0.5s linear normal;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}

.hamburglar.is-open .burger-bun-top.gihamb,
.hamburglar.is-open .burger-bun-bot.gihamb {
  width: 36px;
  margin-left: 1px;
}

.hamburglar.is-closed .burger-bun-top {
  -webkit-animation: bun-top-in 0.5s linear normal;
  animation: bun-top-in 0.5s linear normal;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}

.hamburglar.is-closed .burger-bun-bot {
  -webkit-animation: bun-bot-in 0.5s linear normal;
  animation: bun-bot-in 0.5s linear normal;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}

@-webkit-keyframes bun-top-out {
  0% {
    left: 0;
    top: 0;
    transform: rotate(0deg);
  }

  20% {
    left: 0;
    top: 0;
    transform: rotate(15deg);
  }

  80% {
    left: -5px;
    top: 0;
    transform: rotate(-60deg);
  }

  100% {
    left: -5px;
    top: 1px;
    transform: rotate(-45deg);
  }
}

@keyframes bun-top-out {
  0% {
    left: 0;
    top: 0;
    transform: rotate(0deg);
  }

  20% {
    left: 0;
    top: 0;
    transform: rotate(15deg);
  }

  80% {
    left: -5px;
    top: 0;
    transform: rotate(-60deg);
  }

  100% {
    left: -5px;
    top: 1px;
    transform: rotate(-45deg);
  }
}

@-webkit-keyframes bun-bot-out {
  0% {
    left: 0;
    transform: rotate(0deg);
  }

  20% {
    left: 0;
    transform: rotate(-15deg);
  }

  80% {
    left: -5px;
    transform: rotate(60deg);
  }

  100% {
    left: -5px;
    transform: rotate(45deg);
  }
}

@keyframes bun-bot-out {
  0% {
    left: 0;
    transform: rotate(0deg);
  }

  20% {
    left: 0;
    transform: rotate(-15deg);
  }

  80% {
    left: -5px;
    transform: rotate(60deg);
  }

  100% {
    left: -5px;
    transform: rotate(45deg);
  }
}

@-webkit-keyframes bun-top-in {
  0% {
    left: -5px;
    bot: 0;
    transform: rotate(-45deg);
  }

  20% {
    left: -5px;
    bot: 0;
    transform: rotate(-60deg);
  }

  80% {
    left: 0;
    bot: 0;
    transform: rotate(15deg);
  }

  100% {
    left: 0;
    bot: 1px;
    transform: rotate(0deg);
  }
}

@keyframes bun-top-in {
  0% {
    left: -5px;
    bot: 0;
    transform: rotate(-45deg);
  }

  20% {
    left: -5px;
    bot: 0;
    transform: rotate(-60deg);
  }

  80% {
    left: 0;
    bot: 0;
    transform: rotate(15deg);
  }

  100% {
    left: 0;
    bot: 1px;
    transform: rotate(0deg);
  }
}

@-webkit-keyframes bun-bot-in {
  0% {
    left: -5px;
    transform: rotate(45deg);
  }

  20% {
    left: -5px;
    bot: 0;
    transform: rotate(60deg);
  }

  80% {
    left: 0;
    bot: 0;
    transform: rotate(-15deg);
  }

  100% {
    left: 0;
    transform: rotate(0deg);
  }
}

@keyframes bun-bot-in {
  0% {
    left: -5px;
    transform: rotate(45deg);
  }

  20% {
    left: -5px;
    bot: 0;
    transform: rotate(60deg);
  }

  80% {
    left: 0;
    bot: 0;
    transform: rotate(-15deg);
  }

  100% {
    left: 0;
    transform: rotate(0deg);
  }
}

.hamburglar.is-open .burger-filling {
  -webkit-animation: burger-fill-out 0.5s linear normal;
  animation: burger-fill-out 0.5s linear normal;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}

.hamburglar.is-closed .burger-filling {
  -webkit-animation: burger-fill-in 0.5s linear normal;
  animation: burger-fill-in 0.5s linear normal;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}

@-webkit-keyframes burger-fill-in {
  0% {
    width: 0;
    left: 36px;
  }

  40% {
    width: 0;
    left: 40px;
  }

  80% {
    width: 36px;
    left: -6px;
  }

  100% {
    width: 36px;
    left: 0px;
  }
}

@keyframes burger-fill-in {
  0% {
    width: 0;
    left: 36px;
  }

  40% {
    width: 0;
    left: 40px;
  }

  80% {
    width: 36px;
    left: -6px;
  }

  100% {
    width: 36px;
    left: 0px;
  }
}

@-webkit-keyframes burger-fill-out {
  0% {
    width: 36px;
    left: 0px;
  }

  20% {
    width: 42px;
    left: -6px;
  }

  40% {
    width: 0;
    left: 40px;
  }

  100% {
    width: 0;
    left: 36px;
  }
}

@keyframes burger-fill-out {
  0% {
    width: 36px;
    left: 0px;
  }

  20% {
    width: 42px;
    left: -6px;
  }

  40% {
    width: 0;
    left: 40px;
  }

  100% {
    width: 0;
    left: 36px;
  }
}

.hamburglar {
  transform: scale(0.7);
  transform-origin: top left;
}

.lang-switch-btn {
  background-color: #016ea9;
  color: white;
  padding: 6px 16px;
  border-radius: 20px;
  text-transform: uppercase;
  font-weight: 400;
  margin-left: 3em;
}

.lang-switch-btn:hover {
  color: white !important;
  background-color: var(--light-blue);
}

#header {
  position: relative;
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.header-bg {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 120vw;
  height: 120vh;
  z-index: 0;
  pointer-events: none;
}

.header-bg img {
  width: 100%;
  height: 100%;
  transform: rotate(-12deg);
  transform-origin: center center;
}

.header-info {
  position: absolute;
  bottom: 10%;
  z-index: 1;
}

.header-info h1 {
  font-family: 'Figtree', sans-serif;
  font-weight: 800;
  font-size: 5.5em;
  line-height: 0.9em;
  margin-bottom: 0;
  margin-left: 10%;
  width: 100%;
  text-shadow: 2px 2px 25px rgba(0, 0, 0, 0.4);
}

.header-info h1 span {
  display: block;
  font-weight: 600;
  font-size: 0.42em;
  margin-top: -15px;
}


/* -------------- BACK SECTION ---------------- */
.blackSection {
  padding-top: 12em;
  height: auto;
}

.primary-title {
  padding-left: 1.5em;
  padding-right: 1.5em;
  padding-bottom: 3em;
  padding-top: 7em;
  position: relative;
  z-index: 22;
}

.primary-title h2 {
  font-family: 'Figtree', sans-serif;
  font-weight: 800;
  font-size: 4em;
  line-height: 0.9em;
  margin-bottom: 0;
  margin-left: 10%;
  width: 100%;
}

.primary-title h2 span {
  color: var(--light-blue);
}

.primary-title h3 {
  font-family: 'Figtree', sans-serif;
  font-weight: 600;
  font-size: 2.5em;
  margin-left: 10%;
  margin-bottom: 0;
}

.textWithBorder {
  padding-left: 1.5em;
  padding-right: 1.5em;
  padding-bottom: 2em;
  position: relative;
  z-index: 22;
}

.textWithBorder p {
  width: 100%;
  max-width: 430px;
  height: auto;
  text-align: left;
  border-left: 1px solid #ffffff;
  padding-left: 1.5em;
  font-size: 1.1em;
  line-height: 1.8em;
}

/* -------------- FADE IMG CAROUSEL ---------------- */
.fadeImgCarousel {
  padding: 0;
  background: linear-gradient(to right, #06152e, #1a4677);
}

.fadeImgCarousel img {
  width: 100%;
  height: auto;
  border-radius: 0 0 40% 0;
}

.slick-next:before,
.slick-prev:before {
  display: none;
}

.slick-dots {
  display: none;
}

.slick-dotted.slick-slider {
  margin-bottom: 0;
}

/* -------------- BLUE GRADIENT ZONE ---------------- */
.blue-gradient-bg {
  padding-left: 0;
  padding-right: 0;
  background: linear-gradient(to right, #06152e, #1a4677);
}

/* --------------  CAROUSEL ---------------- */
.carousel-container {
  padding-top: 6em;
}

.scroll-carousel {
  width: 100%;
  overflow: hidden;
  padding-bottom: 2em;
}

.carousel {
  display: flex;
  align-items: center;
  gap: 20px;
  width: max-content;
  will-change: transform;
}

.slide img,
.slide video {
  width: 100%;
  max-width: 450px;
  height: auto;
  max-height: 232.5px;
  height: 16vw;
  border-radius: 16px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  object-fit: cover;
  display: block;
}

/* -------------- WHERE WE DO IT ---------------- */
.whitVideo .textWithBorder {
  margin-left: 22%;
  padding-top: 6em;
}

.videoInContent {
  padding-bottom: 5em;
}

.videoInContent video {
  width: 100%;
  max-width: 450px;
  max-height: 232.5px;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  object-fit: cover;
  display: block;
}

/* -------------- THE COMPANY ---------------- */
.imgInContent {
  padding-top: 5em;
  padding-bottom: 5em;
}

.imgInContent img {
  width: 100%;
  max-width: 320px;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  object-fit: cover;
  display: block;
  float: right;
  margin-right: 15%;
  position: relative;
  z-index: 22;
}

/* -------------- CIRCLE IN BODY ---------------- */
.circle-container {
  position: relative;
  /* height: 270px; */
  height: 10vw;
}

.circle {
  border-radius: 50%;
  /* width: 600px;
  height: 600px; */
  width: 40vw;
  height: 40vw;
  min-width: 350px;
  min-height: 350px;
  border: 60px solid var(--light-blue);
  opacity: 0.1;
  position: absolute;
  /* left: -170px; */
  left: -12%;
  z-index: 1;
}

/* -------------- FOOTER ---------------- */
footer {
  padding-top: 15vw;
  font-size: 1.1em;
  overflow: hidden;
}

footer .primary-title {
  padding-top: 0;
}

footer .primary-title h2 {
  margin-left: 0;
  text-align: center;
}

footer a {
  font-size: 1.1em;
}

footer p strong {
  color: var(--sky-blue);
}

footer .footer-info {
  text-align: center;
  position: relative;
  z-index: 22;
  padding-bottom: 17vw;
}

footer .footer-info p {
  line-height: 0.9em;
}

footer .contact-info {
  margin-top: 2.5em;
}

footer .footer-bg {
  padding: 0;
  position: relative;
}

footer .footer-bg img {
  width: 100%;
  height: auto;
  position: absolute;
  bottom: 0;
  z-index: 1;
}

/* Botón flotante de Audio */
#toggle-audio-btn {
  position: fixed;
  bottom: 20px;
  left: 20px;
  width: 50px;
  height: 50px;
  border: none;
  background: transparent;
  z-index: 9999;
}

#icon-on,
#icon-off {
  display: none;
}

/* Aviso de Cookie */
#cookie-modal { 
  display: flex;            display: none;
  flex-wrap: wrap;
  justify-content: space-between;
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  z-index: 9999;
  max-width: 1600px;
  margin: 0 auto;
  padding: 15px 20px;
  background: linear-gradient(to right, #1a4677, #06152e);
  color: white;
  font-family: 'Mulish', sans-serif;
  border-radius: 10px;
  text-align: left;
  align-items: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  animation: fadeIn 0.5s ease-out;
  gap: 1em;
}

#cookie-modal p {
  margin: 0;
}

#accept-cookie a {
  background-color: #016ea9;
  color: white;
  border-radius: 20px;
  padding: 8px 16px;
  margin: 0 12px;
  border-radius: 20px;
  cursor: pointer;
  transition: background 0.3s ease;
  text-align: center;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}