:root {
  --grey-primary: #e1e1e1;
  --green-light: #e1eeeb;
  --green-dark: #0B493A;
  --gold: #E4A943;
  --light-gold: #F9E5C9;
  --accent-light: #1fc99e;
  --green-glow-from: #34d399;
  /* Un verde esmeralda suave (equivalente a emerald-400) */
  --green-glow-to: #10b981;
  /* Un verde más intenso (equivalente a emerald-500) */
  --glow-blur: 250px;
}

html {
  scroll-behavior: smooth;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.w-fit {
  width: fit-content;
}

.w-full {
  width: 100%;
}

.no-select {
  user-select: none;
}

@media(max-width:768px) {
  p {
    font-size: 16px;
    letter-spacing: 1px;
  }

  h1,
  h2,
  h3,
  h4,
  h5,
  h6,
  p,
  span {
    text-align: center;
  }

  a {
    align-items: center;
    justify-content: center;
  }

  a.button {
    width: 100%;
    padding: 13px 25px;
  }

  .tag {
    margin: auto;
  }

}

/*Whatsapp Button*/
.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 25px;
  right: 25px;

  /* Color verde con transparencia (RGBA) */
  background-color: rgb(7, 122, 93);

  color: #FFF;
  border-radius: 50px;
  text-align: center;
  font-size: 34px;

  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s ease;
}

/* --- EL TOOLTIP (Pseudo-elemento ::before) --- */
.whatsapp-float::before {
  content: "¡Contactanos por WhatsApp!";
  position: absolute;
  right: 70px;
  /* Separación del botón */
  background-color: rgba(0, 0, 0, 0.75);
  color: #fff;
  padding: 8px 15px;
  border-radius: 8px;
  font-size: 13px;
  font-family: sans-serif;
  white-space: nowrap;

  /* Estado inicial: oculto y desplazado */
  opacity: 0;
  visibility: hidden;
  transform: translateX(10px);
  transition: all 0.3s ease;
  pointer-events: none;

  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);

}

/* Efecto al pasar el mouse */
.whatsapp-float:hover {
  background-color: rgb(6, 104, 80);
  box-shadow: 0px 6px 20px rgba(0, 0, 0, 0.3);
}

/* Mostrar tooltip al pasar el mouse */
.whatsapp-float:hover::before {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
  /* Se desliza suavemente a su posición */
}

/* Adaptabilidad para móviles (Responsive) */
@media screen and (max-width: 768px) {
  .whatsapp-float {
    width: 55px;
    height: 55px;
    bottom: 20px;
    right: 10px;
    font-size: 30px;
  }

  .whatsapp-float::before {
    display: none;
  }
}

/**/
.card-step {
  display: flex;
  flex-direction: column;
  /* Apila contenido verticalmente */
  height: 100%;
  border-radius: 30px;
  background-color: #fff;
  box-shadow: 0 12px 30px -10px rgba(0, 0, 0, 0.9);
  transition: all 0.3s ease;
}

.pt-10 {
  padding-top: 10px;
}

.card-step:hover {
  background: var(--green-dark);
}

.card-step:hover h5,
.card-step:hover span {
  color: #fff !important;
}

.card-step:hover .step-overlay {
  background-color: #00000091;
}

.card-step:hover .step-text {
  background: var(--grey-primary);
  color: var(--green-dark) !important;

}

.card-step i {
  transition: all 0.3s ease;
  background: #fff;
  padding: 10px;
  border-radius: 50%;
  font-weight: 600;
}

.card-step:hover i {
  transform: rotate(-20deg);
  color: var(--gold);
}

.card-step__img-cont {
  box-shadow: 0 12px 15px -10px rgba(0, 0, 0, 0.5);
  transition: all 0.4s ease;
  transform: translateY(10px);
  z-index: 1;
  /* Asegura que la sombra se proyecte sobre el padding del div inferior */
}

.card-step:hover .card-step__img-cont {
  box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.7);
  transform: translateY(0px);
}

.step-overlay {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #0000005b;
  transition: all 0.3s ease;
}

.step-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 19px;
  font-weight: 500;
  color: #fff;
  border: 1px solid #fff;
  border-radius: 10px;
  line-height: 1em;
  padding: 5px 20px;

}

.step-content {
  padding: 1.5rem;
  /* Equivalente a p-6 */
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  /* Hace que este contenedor ocupe todo el espacio sobrante */
  justify-content: space-between;
}

/*Custom Code New*/

.bg-grey-light {
  background-color: var(--grey-primary);
}

.bg-gold-light {
  background-color: #faf5ee;
}

.bg-green-dark {
  background-color: #0B493A;
}

.accent {
  color: rgb(11 73 58 / var(--tw-bg-opacity));
}

.accent-light {
  color: #1fc99e;
}

.gold-accent {
  color: #E4A943;
}

.background-gradient-green-light {
  background-image: linear-gradient(to top,
      var(--green-light),
      var(--grey-primary));
}

.glow-effect-green {
  position: absolute;
  left: 50%;
  top: 80%;
  z-index: -1;
  /* Coloca el efecto detrás del contenido */

  /* Tamaño */
  height: 1280px;
  width: 1280px;

  /* Centrado */
  transform: translateX(-50%);

  /* Forma y Color */
  border-radius: 50%;
  /* rounded-full */
  background-image: linear-gradient(to top, var(--green-glow-from), var(--green-glow-to));

  /* Efecto de desenfoque (La clave) */
  filter: blur(var(--glow-blur));

  /* Opción: añade opacidad si el efecto es muy fuerte */
  /* opacity: 0.8; */
}

.btn-conoce-mas {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 500;
  color: var(--green-dark);
}

.btn-conoce-mas:hover {
  color: #147e64;
}


.button {
  border-radius: 10px !important;
  border: 1px solid var(--green-dark) !important;
  transition: all 0.3s ease !important;
}

.button:hover {
  color: var(--green-dark) !important;
  background-color: var(--grey-primary);
  border: 1px solid var(--grey-primary) !important;
}

.button-light {
  border-radius: 10px !important;
  border: 1px solid var(--grey-primary) !important;
  background-color: var(--grey-primary) !important;
  color: var(--green-dark) !important;
}

.button-light:hover {
  background-color: #c8c8c8 !important;
  border: 1px solid var(--green-light) !important;
}

/*NavBar Style Strat*/
/* Oculta el último elemento de la lista en escritorio */
.site-menu-main>.nav-item:last-child {
  display: none !important;
}

/* Lo muestra solo en mobile/tablet */
@media screen and (max-width: 1023px) {
  .site-menu-main>.nav-item:last-child {
    display: block !important;
  }
}

/* --- Contenedor del Botón --- */
.mobile-menu-trigger {
  position: relative;
  z-index: 1001;
  width: 40px;
  height: 40px;
  background: transparent;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* --- El elemento central y sus brazos --- */
.mobile-menu-trigger span,
.mobile-menu-trigger span::before,
.mobile-menu-trigger span::after {
  content: "";
  position: absolute;
  /* Todas nacen del mismo sitio */
  width: 28px;
  height: 3px;
  background-color: #fff;
  border-radius: 4px;
  transition: transform 0.3s ease, top 0.3s ease, opacity 0.2s ease;
}

/* --- Posición en modo Hamburguesa (Cerrado) --- */
.mobile-menu-trigger span::before {
  top: -10px;
  /* Línea superior */
}

.mobile-menu-trigger span::after {
  top: 10px;
  /* Línea inferior */
}

/* --- TRANSFORMACIÓN A CRUZ (Abierto) --- */
.mobile-menu-trigger.is-active span {
  background-color: transparent;

}

.mobile-menu-trigger.is-active span::before {
  top: 0;
  /* Baja al centro exacto */
  transform: rotate(45deg);
  /* Se convierte en '/' */
}

.mobile-menu-trigger.is-active span::after {
  top: 0;
  /* Sube al centro exacto */
  transform: rotate(-45deg);
  /* Se convierte en '\' */
}

/* 1. Estilos Base del Overlay */
.menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;

  /* Degradado Lineal: de derecha (verde) a izquierda (negro) */
  background: #3a3a3ad8;
  z-index: 99;

  /* Estado Inicial */
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease-in-out;
}

.menu-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

/* 3. Bloqueo de Scroll en el Body */
body.no-scroll {
  overflow: hidden;
  height: 100vh;

}

/* Estado Base (Arriba del todo) */
#sticky-menu {
  position: fixed;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  max-width: 1200px;
  transition: all 0.95s cubic-bezier(0.4, 0, 0.2, 1);
  /* Transición suave */
  height: 53px;
  z-index: 1000;
}

#sticky-menu {
  width: 95%;
}

@media (min-width:1432px) {
  #sticky-menu {
    width: 60%;
  }
}


.center-nav {
  background-color: rgba(79, 79, 79, 0.56);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  /* Transición suave */
  aspect-ratio: 4/4;
  padding: 6px;
  height: 100%;
}

#sticky-menu.is-sticky .center-nav {
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

#sticky-menu.is-sticky .center-nav {
  background-color: rgba(79, 79, 79, 0.56);
}

.right-nav {
  height: 100%;
}

.right-nav .button {
  height: 100%;
}

@media (max-width:990px) {

  .center-nav,
  #sticky-menu.is-sticky .center-nav {
    backdrop-filter: none;
    -webkit-backdrop-filter: blur(0px);
    background-color: transparent;
    border: none;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0);
  }

  .right-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 10px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    background-color: rgba(79, 79, 79, 0.56);
    border: 1px solid rgba(255, 255, 255, 0.1);
  }
}

.right-nav .button {}

.center-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;

}

/* Ajuste para que el logo y links no sufran saltos bruscos */
#sticky-menu img {
  transition: transform 0.3s ease;
}

.logo-nav {
  border-radius: 15px;

}

.logo-nav:hover {
  filter: brightness(1.1);
}

@media (max-width:429px) {
  .logo-nav {
    width: 55px;
  }
}

/* Solo se aplica en pantallas menores a 1024px (Mobile/Tablet) */
@media (max-width: 1023px) {

  /* 1. Ocultamos el submenú de servicios */
  .nav-item-has-children .sub-menu {
    display: none !important;
  }

  /* 2. Ocultamos el icono de la flechita */
  .nav-item-has-children .dropdown-icon {
    display: none !important;
  }

  /* 3. (Opcional) Si quieres que el enlace de "Servicios" 
     deje de parecer un disparador y se comporte como un link normal */
  .nav-item-has-children .drop-trigger {
    pointer-events: auto;
    /* Permite click si tiene un link real */
    cursor: default;
  }
}

@media(max-width:990px) {
  #sticky-menu .button {
    display: none;
  }
}

/* --- Navigation System (Custom CSS) --- */

/* Desktop Nav Utility */
.desktop-nav-container {
  display: none !important;
}

@media (min-width: 992px) {
  .desktop-nav-container {
    display: flex !important;
  }
}

/* Nav Right Utility */
.nav-right-container {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.desktop-contact-btn {
  display: none !important;
}

@media (min-width: 992px) {
  .desktop-contact-btn {
    display: inline-flex !important;
  }
}

.mobile-trigger-container {
  display: flex !important;
}

@media (min-width: 992px) {
  .mobile-trigger-container {
    display: none !important;
  }
}

/* Mobile Drawer Styles */
.mobile-menu-drawer {
  position: fixed;
  top: 80px;
  right: 20px;
  height: auto;
  min-height: fit-content;
  width: 300px;
  background-color: rgba(60, 60, 60, 0.98);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 1100;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transform: translateX(120%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
  padding: 10px 0;
  overflow: hidden;
}

.mobile-menu-drawer.active {
  transform: translateX(0);
}

.mobile-drawer-header {
  display: flex;
  justify-content: flex-end;
  padding: 10px 20px;
}

.mobile-nav-list {
  display: flex;
  flex-direction: column;
  list-style: none;
  padding: 0;
  margin: 0;
}

.mobile-nav-list li {
  padding: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.mobile-nav-list li:last-child {
  border-bottom: none;
}

.mobile-nav-link {
  display: block;
  padding: 15px 25px;
  color: #ffffff;
  font-size: 1.1rem;
  font-weight: 500;
  text-decoration: none;
  transition: background 0.3s ease;
}

.mobile-nav-link:hover {
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--colorGreen);
}


.slider-container {
  min-height: 750px;
  height: screen;
}

/*Hero End*/
/*SERACH BAR Decoration*/
.search-container {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 60%;

}

/* SEARCH BAR */
.search-bar {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 5px 20px;
  border-radius: 50px;

  background: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);

  border: 1px solid rgba(255, 255, 255, 0.6);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.4),
    0 8px 20px rgba(0, 0, 0, 0.1);

  color: white;
  font-size: 15px;
  letter-spacing: 0.5px;
}

/* ICON */
.search-icon {
  width: 14px;
  height: 14px;
  border: 2px solid white;
  border-radius: 50%;
  position: relative;
  opacity: 0.9;
}

.search-icon::after {
  content: "";
  position: absolute;
  width: 8px;
  height: 2px;
  background: white;
  right: -6px;
  bottom: -2px;
  transform: rotate(45deg);
  border-radius: 2px;
}

/* TEXT */
.search-text {
  position: relative;
  display: flex;
  align-items: center;
  color: white;
  opacity: 0.9;
}

/* BLINKING CURSOR */
.cursor {
  width: 2px;
  height: 14px;
  background: white;
  margin-left: 4px;
  animation: blink 1.5s infinite;
}

@keyframes blink {

  0%,
  50%,
  100% {
    opacity: 1;
  }

  25%,
  75% {
    opacity: 0;
  }
}

/*SEARCH BAR END*/
.img-service-bg {
  height: 380px;
  width: 100%;
  border-radius: 30px;
}

.add-service {
  background-image: url('/assets/img/services/google-ads-mf-marketing.jpg');
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.serv-img-container {
  position: relative;
  padding: 30px;
  border-radius: 30px;
}

.serv-img-container img {
  border-radius: 20px;
}

@media screen and (max-width: 767px) {
  .serv-img-container {
    padding: 10px;
  }
}

@media screen and (min-width: 768px) and (max-width: 1023px) {
  .serv-img-container {
    padding: 20px;
  }
}

.img-adds {
  border-radius: 20px;
  height: 300px;
}

/**/
#hero-section {
  position: relative;
  overflow: hidden;
  background: var(--grey-primary);
  min-height: screen;
}

.hero-content {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  position: relative;
  top: -30px;
  z-index: 10;
}

.hero-shape {
  z-index: 12;
}

/* Animación de zoom suave para el slide activo */
.swiper {
  z-index: 0;
  overflow: hidden;

}

.swiper-slide {
  overflow: hidden;
}

.swiper-slide img {
  width: 100%;
  height: 100%;
  object-cover: cover;
  /* La animación es infinita y no depende de clases de Swiper */
  animation: kenburns-continuous 30s linear infinite;
}

@keyframes kenburns-continuous {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.15);
    /* Crece hasta la mitad del tiempo */
  }

  100% {
    transform: scale(1);
    /* Vuelve suavemente al inicio */
  }
}

.black-overlay {
  position: absolute;
  left: 0;
  top: 0;
  width: 1002vw;
  height: 100%;
  background:
    radial-gradient(circle at center,
      rgba(0, 0, 0, 0) 30%,
      #000000e3 100%);
  z-index: 4;
}

.glow-verde-custom {
  position: absolute;
  left: 50%;
  top: 80%;
  transform: translateX(-50%);
  height: 1280px;
  width: 1280px;
  border-radius: 50%;
  /* Usamos un degradado radial para que el centro sea más brillante */
  background: radial-gradient(circle, rgba(31, 253, 113, 0.9) 0%, rgba(16, 185, 129, 0) 70%);
  filter: blur(150px);
  /* Bajamos un poco el blur para que no se "evapore" */
  z-index: 5;
  pointer-events: none;
  /* Para que no interfiera con clics */
}

.tag {
  font-family: "League Spartan", sans-serif;
  justify-content: center;
  align-items: center;
  width: fit-content;
  display: flex;
  padding: 5px 10px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 10px;
  font-size: 14px;
  margin-bottom: 22px;
}

.tag-dark {
  color: #061F00;
  background: linear-gradient(90deg, rgba(11, 73, 58, 0.1) 0%, rgba(255, 255, 255, 0.20) 100%);
}

.tag-light {
  color: #e1e1e1 !important;
  background: linear-gradient(90deg, rgba(11, 73, 58, 0.2) 0%, rgba(255, 255, 255, 0.20) 100%);
}

.tag .stars {
  width: 13px;
  height: auto;
}

.tag.light span {
  font-size: 14px;
  line-height: 20px;
  font-weight: 500;
}

.tag__inner {
  display: flex;
  gap: 5px;
  padding: 0px 10px;
  border-radius: 5px;
  background: rgb(11 73 58 / var(--tw-bg-opacity));
}

/*Marquee*/
@media (min-width:768px) {
  .serv-img-mobile {
    display: none;
  }
}

@media (max-width:768px) {
  .serv-img-desk {
    display: none
  }
}

/* Contenedor */
.marquee-container {
  height: 400px;
  overflow: hidden;
  position: relative;

}

/* Track que se anima */
.marquee-track {

  animation: vertical-marquee 30s linear infinite;
  will-change: transform;
}

/* Contenido */
.marquee-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;

}

.marquee-center {
  display: flex;
  justify-content: center;
  align-items: center;
}


/* Items */
.marquee-item {
  height: 320px;
  width: 350px;
  flex-shrink: 0;
  overflow: hidden;
}

/* Animación */
@keyframes vertical-marquee {
  from {
    transform: translateY(0);
  }

  to {
    transform: translateY(-50%);
  }
}


/*Marquee*/
/*//Cards Contenido///*/
.fan-container {
  display: flex;
  justify-content: center;
  align-items: center;
  perspective: 100px;
  overflow: visible;
  /* IMPORTANTE: evita que se corten */
}

.fan-stack {
  position: relative;
  width: 210px;
  height: 320px;
  transform-style: preserve-3d;
  /* Mejora el efecto 3D */
}

@media (min-width:768px) {
  .fan-stack {
    width: 210px;
    height: 320px;
  }
}

@media (max-width:768px) {
  .fan-stack {
    width: 140px;
    height: 250px;
  }

}

.fan-card {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
  border: 3px solid #fff;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
  transform-origin: bottom center;
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275),
    box-shadow 0.3s ease;

  will-change: transform;
  /* Mejora rendimiento */
  backface-visibility: hidden;
  /* Evita parpadeos */
}

@media (max-width:768px) {

  .fan-card {
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0) !important;
  }
}

/* 1. Carta Izquierda (más al fondo) */
.card-1 {
  transform: translateX(-140px) translateY(15px) rotate(-18deg);
  z-index: 10;
}

/* 2. Carta Izquierda (detrás de la central) */
.card-2 {
  transform: translateX(-70px) translateY(5px) rotate(-8deg);
  z-index: 20;
}

/* 3. CARTA CENTRAL (Protagonista) */
.card-center {
  transform: translateX(0) translateY(0) rotate(0);
  z-index: 50;
  /* Z-Index máximo para estar al frente */
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  /* Sombra más fuerte para dar profundidad */
}

/* 4. Carta Derecha (detrás de la central) */
.card-4 {
  transform: translateX(70px) translateY(5px) rotate(8deg);
  z-index: 20;
}

/* 5. Carta Derecha (más al fondo) */
.card-5 {
  transform: translateX(140px) translateY(15px) rotate(18deg);
  z-index: 10;
}

/* --- Efecto Extra: Animación de entrada --- */
.fan-stack:hover .card-1 {
  transform: translateX(-180px) translateY(30px) rotate(-30deg);
}

.fan-stack:hover .card-2 {
  transform: translateX(-90px) translateY(10px) rotate(-15deg);
}

.fan-stack:hover .card-center {
  transform: translateY(-20px);
}

.fan-stack:hover .card-4 {
  transform: translateX(90px) translateY(10px) rotate(15deg);
}

.fan-stack:hover .card-5 {
  transform: translateX(180px) translateY(30px) rotate(30deg);
}

/*//////*/
.feature-container {
  display: grid;
  align-items: stretch;
  background-color: var(--grey-primary);
  border-radius: 15px;
  padding: 40px 30px;
  gap: 20px;
}

@media(max-width:768px) {
  .feature-container {
    padding: 10px;
  }
}

.feature-container .content {
  display: flex;
  flex-direction: column;
  gap: 40px;
  background-color: #fff;
  border-radius: 12px;
  padding: 20px 10px;
  transition: all 0.3s ease;
}

.feature-container .content:hover {
  background-color: #0B493A;
  color: #fff;
}

.feature-container li {
  display: flex;
  flex-direction: column;
  height: 100%;
}

/* El div interno también debe crecer para llenar el li */
.feature-container li>div {
  flex: 1;
  display: flex;
  flex-direction: column;
}

/* Opcional: Centrar el contenido verticalmente si quieres que
   el texto quede alineado aunque sea corto */
.feature-container .content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  /* O center, según prefieras */
}

.feature-container img {
  width: 55px;
  height: auto;

}

@media (max-width: 576px) {
  .feature-container .content {
    align-items: center;
    text-align: center;
  }
}


/*Footer*/
.logo-footer {
  width: auto;
  height: 36px;
}

@media (max-width:906px) {
  .widgets-container {
    flex-direction: column;
    width: fit-content;
    margin: auto;
  }

}

.copy {
  opacity: .7;
}

.footer-link:hover .icon-footer {
  background-color: var(--green-dark);
}

/**/
/*Custom Code New*/
.orange-gradient-1 {
  background: radial-gradient(50% 50% at 50% 50%, #ff9831 0%, #fe330a 100%);
  filter: blur(55px);
}

.orange-gradient-2 {
  background: radial-gradient(50% 50% at 50% 50%, #fe330a 0%, #ff9831 100%);
  filter: blur(55px);
}


/* Custom CSS for accordion */
.accordion-item .accordion-header {
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}

.accordion-header {
  column-gap: 20px;
}

.accordion-header h5 {
  flex: 1;
}

.accordion-header .accordion-icon {
  transition: all 0.3s ease;
}

.accordion-item.active .accordion-icon {
  transform: rotate(-45deg);
}

.accordion-item.active .accordion-icon.is-blue {
  background-color: #321ca4;
}

.accordion-icon.is-blue {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #eaedf0;
}

.accordion-icon.is-blue img:last-child {
  position: absolute;
  opacity: 0;
}

.accordion-item.active .accordion-icon.is-blue img:last-child {
  opacity: 1;
}

.accordion-icon.is-chevron {
  position: relative;
  width: 30px;
  height: 30px;
}

.accordion-icon.is-chevron img:first-child {
  opacity: 1;
}

.accordion-icon.is-chevron img:last-child {
  opacity: 0;
}

.accordion-header .accordion-icon.is-chevron {
  transform: rotate(0deg);
}

.accordion-item.active .accordion-icon.is-chevron img:first-child {
  opacity: 0;
}

.accordion-item.active .accordion-icon.is-chevron img:last-child {
  opacity: 1;
}

.accordion-icon.is-outline-green {
  position: relative;
  width: 40px;
  height: 40px;
  border: 1px solid #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.accordion-icon-plus {
  position: relative;
}

.accordion-icon-plus::before,
.accordion-icon-plus::after {
  position: absolute;
  content: "";
  background: #fff;
  transition: all 0.5s ease;
  width: 20px;
  height: 1px;
  top: 0px;
  left: -10px;
}

.accordion-icon-plus::after {
  transform: rotate(90deg);
}

.accordion-item.active .accordion-icon.is-outline-green {
  border-color: #39ff14;
  transform: rotate(0);
}

.accordion-item.active .accordion-icon.is-outline-green .accordion-icon-plus::before {
  background: #39ff14;
}

.accordion-item.active .accordion-icon.is-outline-green .accordion-icon-plus::after {
  transform: rotate(0deg);
  opacity: 0;
}

.accordion-content {
  height: 0px;
  overflow: hidden;
  opacity: 0;
  transform: translateY(30px);
}

.accordion-item.active .accordion-content {
  height: auto;
  transition: all 0.5s ease;
  opacity: 1;
  transform: translateY(0px);
  margin-top: 15px;

}

.accordion-item.is-2:has(.active),
.accordion-item.is-3:has(.active) {
  border: none;
  box-shadow: 0px 4px 60px 0px rgba(0, 0, 0, 0.1);
  transition: all 0.5s ease;
}

.footer-text-slider {
  animation: horizontal-slide-from-right-to-left 10s linear infinite normal forwards;
}

.horizontal-slide-from-right-to-left {
  animation: horizontal-slide-from-right-to-left linear 10s infinite;
}

.horizontal-slide-from-left-to-right {

  animation: horizontal-slide-from-left-to-right linear 10s infinite;
}

.vertical-slide-from-top-to-bottom {
  animation: vertical-slide-from-top-to-bottom 15s linear infinite;
}

.vertical-slide-from-bottom-to-top {
  animation: vertical-slide-from-bottom-to-top 15s linear infinite;
}

@keyframes horizontal-slide-from-right-to-left {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@keyframes horizontal-slide-from-left-to-right {
  from {
    transform: translateX(-50%);
  }

  to {
    transform: translateX(0);
  }
}

@keyframes vertical-slide-from-top-to-bottom {
  from {
    transform: translateY(-50%);
  }

  to {
    transform: translateY(0);
  }
}

@keyframes vertical-slide-from-bottom-to-top {
  from {
    transform: translateY(0);
  }

  to {
    transform: translateY(-50%);
  }
}

.sticky-menu.nav-hidden {
  animation: fadeInDown 0.9s 1;
}

@keyframes fadeInDown {
  0% {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }

  100% {
    opacity: 1;
    transform: translateZ(0);
  }
}