/*///////////////// GENERALES /////////////////*/
:root {
  --primary: #0867b5;
  --secondary: #f3b410;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Funnel Display", sans-serif;
  color: #373737;
}

.wrapper {
  overflow: hidden;
}

.ibm {
  font-family: "IBM Plex Sans", sans-serif;
}

.funnel {
  font-family: "Funnel Display", sans-serif;
}

.underline {
  text-decoration: underline;
}

a {
  transition: 0.3s;
  color: var(--primary);
}

a:hover {
  text-decoration: none;
}

.fw-300 {
  font-weight: 300;
}

.fw-400 {
  font-weight: 400;
}

.fw-500 {
  font-weight: 500;
}

.fw-600 {
  font-weight: 600;
}

.fw-700 {
  font-weight: 700;
}

.fw-800 {
  font-weight: 800;
}

.fs-14 {
  font-size: 14px;
}

.fs-18 {
  font-size: 18px;
}

.fs-22 {
  font-size: 22px;
}
.separator{
  background-color: var(--secondary);
  width: 100px;
  height: 3px;
}
.primary {
  color: var(--primary);
}

.bg-primary {
  background-color: var(--primary);
}

.secondary {
  color: var(--secondary);
}

.bg-secondary {
  background-color: var(--secondary);
}

.dark {
  color: #373737;
}

.gray {
  color: #373737c3;
}

.rotate {
  transform: scaleX(-1);
}

.custom-list {
  list-style: none;
  padding-left: 0;
}

.custom-list li {
  padding-left: 1.2rem;
  margin-bottom: 0.6rem;
  position: relative;
}

.custom-list li::before {
  content: "\e5ca";
  font-family: "Material Symbols Outlined";
  position: absolute;
  left: 0rem;
  margin-right: 0.4rem;
  color: var(--secondary);
}

.two-col {
  columns: 2;
  -webkit-columns: 2;
  -moz-columns: 2;
}

.btn-whatsapp-pulse {
  background: #25d366;
  color: white;
  position: fixed;
  z-index: 999;
  bottom: 2rem;
  right: 1.5rem;
  font-size: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 0;
  height: 0;
  padding: 29px;
  text-decoration: none;
  border-radius: 50%;
  animation-name: pulse;
  animation-duration: 1.5s;
  animation-timing-function: ease-out;
  animation-iteration-count: infinite;
}

.btn-whatsapp-pulse:hover {
  transition: all ease 0.25s;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
  }

  80% {
    box-shadow: 0 0 0 14px rgba(37, 211, 102, 0);
  }
}

.scroll-top {
  position: fixed;
  right: 1.4rem;
  bottom: 6.7rem;
  background-color: transparent;
  border: none;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
  z-index: 1000;
}

.scroll-top img {
  width: 50px;
  height: 50px;
}

.scroll-top.visible {
  opacity: 1;
  pointer-events: auto;
}

/*///////////////////// BOTONES QUE PISAN BS //////////////////*/
.btn {
  font-family: "Funnel Display", sans-serif;
  border-radius: 26px;
  font-size: 18px;
  font-weight: 600;
  align-items: center;
  justify-content: center;
  padding: 10px 30px;
  transition: all 150ms ease-out;
  text-decoration: none !important;
  width: fit-content;
}

.btn-sm {
  border-radius: 26px;
  font-size: 16px;
  font-weight: 600;
  padding: 7px 15px;
  transition: all 150ms ease-out;
  text-decoration: none !important;
}

.btn:hover {
  transform: translateY(-5px);
}

.btn-primary {
  border: 2px solid var(--primary);
  color: #fff;
  background-color: var(--primary);
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active,
.btn-primary:not(:disabled):not(.disabled).active,
.btn-primary:not(:disabled):not(.disabled):active,
.show > .btn-primary.dropdown-toggle {
  background: #015090;
  color: #fff;
  border: 2px solid #015090;
  transition: all ease 0.25s;
}

.btn-outline-primary {
  border: 1px solid var(--primary);
  color: var(--primary);
  background-color: transparent;
}

.btn-outline-primary:hover,
.btn-outline-primary:focus,
.btn-outline-primary:active,
.btn-outline-primary.disabled,
.btn-outline-primary:disabled,
.btn-outline-primary:not(:disabled):not(.disabled).active,
.btn-outline-primary:not(:disabled):not(.disabled):active,
.show > .btn-outline-primary.dropdown-toggle {
  background: #cd0300;
  color: #fff;
  border: 1px solid #cd0300;
  transition: all ease 0.25s;
}

.btn-secondary {
  border: 2px solid var(--secondary);
  color: #373737;
  background-color: var(--secondary);
}

.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary:active,
.btn-secondary:not(:disabled):not(.disabled).active,
.btn-secondary:not(:disabled):not(.disabled):active,
.show > .btn-secondary.dropdown-toggle {
  background: #eba800;
  color: #373737;
  border: 2px solid #eba800;
  transition: all ease 0.25s;
}

.btn-outline-secondary {
  border: 2px solid #001881;
  color: #001881;
  background-color: #fff;
}

.btn-outline-secondary:hover,
.btn-outline-secondary:focus,
.btn-outline-secondary:active,
.btn-outline-secondary:not(:disabled):not(.disabled).active,
.btn-outline-secondary:not(:disabled):not(.disabled):active,
.show > .btn-outline-secondary.dropdown-toggle {
  background: #001881;
  color: #fff;
  border: 2px solid #001881;
  transition: all ease 0.25s;
}

.btn-success {
  border: 1px solid #78bf24;
  color: #fff;
  background-color: #78bf24;
}

.btn-success:hover,
.btn-success:focus,
.btn-success:active,
.btn-success:not(:disabled):not(.disabled).active,
.btn-success:not(:disabled):not(.disabled):active,
.show > .btn-success.dropdown-toggle {
  background: #fff;
  color: #78bf24;
  border: 1px solid #78bf24;
  transition: all ease 0.25s;
}

.btn-outline-success {
  border: 1px solid #cbde12;
  color: #cbde12;
  background-color: #fff;
}

.btn-outline-success:hover,
.btn-outline-success:focus,
.btn-outline-success:active,
.btn-outline-success:not(:disabled):not(.disabled).active,
.btn-outline-success:not(:disabled):not(.disabled):active,
.show > .btn-outline-success.dropdown-toggle {
  background: #cbde12;
  color: #fff;
  border: 1px solid #cbde12;
  transition: all ease 0.25s;
}

.btn-outline-white {
  border: 1px solid #fff;
  color: #fff;
  background-color: transparent;
}

.btn-outline-white:hover,
.btn-outline-white:focus,
.btn-outline-white:active,
.btn-outline-white:not(:disabled):not(.disabled).active,
.btn-outline-white:not(:disabled):not(.disabled):active,
.show > .btn-outline-white.dropdown-toggle {
  background: #fff;
  color: #ff0600;
  border: 1px solid #fff;
  transition: all ease 0.25s;
}

.btn-wsp {
  border: 1px solid #1cd071;
  color: #fff;
  background-color: #1cd071;
}

.btn-wsp:hover {
  border: 1px solid #09a150;
  color: #fff;
  background-color: #09a150;
}

.btn-link {
  display: flex;
  align-items: center;
  color: var(--primary);
  transition: 0.3s;
  margin-bottom: 0;
  font-weight: 400;
}

.btn-link:hover {
  text-decoration: none;
  color: #de4133;
}

/*///////////////// HEADER /////////////////*/
.navbar-brand img {
  height: 75px;
  width: auto;
  transition: 0.3s;
}

.sticked.in .navbar-brand img {
  height: 53px;
}

/* Navegador principal */
.navbar-collapse {
  justify-content: center;
  display: flex;
}

.navbar {
  padding: 2rem;
  border-radius: 20px;
}

.custom-nav {
  justify-content: end;
  width: 100%;
  align-items: center;
}

.nav-link {
  color: #373737 !important;
  padding: 0.6rem 0rem !important;
  margin-right: 1rem !important;
  margin-left: 1rem !important;
  font-weight: 400;
  position: relative;
  font-size: 18px;
  line-height: 1.2;
  display: flex !important;
}

.nav-link:not(.nav-link-d)::after {
  background: none repeat scroll 0 0 transparent;
  bottom: 0rem;
  content: "";
  display: block;
  border-radius: 6px;
  height: 3px;
  left: 0;
  right: 0;
  margin: 0 auto;
  position: absolute;
  background: var(--secondary);
  transition: width 0.3s ease 0s, left 0.3s ease 0s;
  width: 0;
}

.nav-link:hover:after,
.nav-link.active:after {
  width: 30px;
}

.nav-link i {
  font-size: 14px;
  margin-left: 6px;
}

/* Menú flotante */
.nav-item.dropdown > .navbar-nav {
  opacity: 0;
}

.nav-item.dropdown > .navbar-nav.in {
  clip: rect(0, 80vw, 2000px, -15px);
  transition: 0.6s ease-in;
  opacity: 1;
  transform: translateX(-150px);
}

.bsnav-light .nav-item.dropdown > .navbar-nav {
  background: #fff;
  border-radius: 20px !important;
  box-shadow: 0px 6px 10px 2px rgba(0, 0, 0, 0.1) !important;
  width: auto;
  border: 1px solid #e9e9e9;
}

.menu-border {
  border-right: 1px solid #e9e9e9;
}

.float-nav {
  width: 650px;
  color: #373737;
}

.float-nav a {
  color: #373737;
  transition: 0.3s;
}

.divider {
  width: 40px;
  height: 3px;
  margin: 0.3rem 0;
}

.divider-red {
  background-color: #de4133;
}

.divider-secondary {
  background-color: var(--secondary);
}

.divider-primary {
  background-color: var(--primary);
}

.menu-deco {
  box-shadow: 0px -3px 30px 2px rgba(0, 0, 0, 0.1) !important;
}

.menu-deco-left {
  border-radius: 10px 0 0 10px;
}

.menu-sm-container {
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  height: 100%;
}

.menu-sm {
  padding: 0 1rem;
}

.menu-divider {
  background-color: #e9e9e9;
  width: 100%;
  height: 1px;
}

.float-nav a:hover {
  color: var(--primary);
}

/* Bs nav para el menú mobile */
.bsnav-mobile {
  z-index: 100;
}

.bsnav-mobile .navbar {
  left: 0 !important;
  color: #fff !important;
  transform: translate3d(-320px, 0, 0) !important;
  width: 300px;
}

.bsnav-mobile.in .navbar {
  transform: translate3d(0px, 0, 0) !important;
}

.bsnav-mobile .navbar.bsnav-dark {
  background: url(../images/bg-menu.svg) var(--primary);
  background-position: bottom right;
  background-repeat: no-repeat;
  background-size: contain;
  color: #fff !important;
  padding: 0px 0 15px;
  box-shadow: 2px 2px 5px -2px rgba(0, 0, 0, 0.65);
  -webkit-box-shadow: 2px 2px 5px -2px rgba(0, 0, 0, 0.65);
  -moz-box-shadow: 2px 2px 5px -2px rgba(0, 0, 0, 0.65);
  border-radius: 0 25px 25px 0;
}

.bsnav-mobile .nav-link {
  color: #ffffff !important;
}

.bsnav-sticky.bsnav-sticky-slide.sticked.in {
  background: #ffffffad;
  padding: 1.4rem 2rem;
  backdrop-filter: blur(10px);
  margin: 1rem;
}

.bsnav-light .navbar-toggler .navbar-toggler-icon,
.bsnav-light .navbar-toggler .navbar-toggler-icon::after,
.bsnav-light .navbar-toggler .navbar-toggler-icon::before {
  background-color: #373737;
}

/*////////////////////////// HOME //////////////////////////*/

/* Hero */
.main {
  height: 99vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: url(../images/bg-main.png);
  background-position: bottom center;
  background-repeat: no-repeat;
  background-size: cover;
}

.main .container {
  position: relative;
  z-index: 5;
}

.main-txt {
  font-size: 64px;
  line-height: 1.1;
}

/* Video de fondo */
/* .main-video-container {
  position: absolute;
  top: 0;
  z-index: -5;
  background-color: #fff;
  width: 100%;
  min-height: 100vh;
}

.main-video {
  width: 100%;
  position: absolute;
  bottom: 0;
  height: 100%;
  object-fit: cover;
} */

/* Soluciones */
.solutions {
  background-color: var(--primary);
  padding: 6rem 0;
  border-radius: 40px;
  margin-top: 2rem;
  position: relative;
  margin: 1rem;
  overflow: hidden;
}

.solutions-card {
  background-color: #F3F3E3;
  border-radius: 20px;
  padding: 2.4rem 1.6rem 1rem 1.6rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 535px;
    transition: .3s;
}

.solutions-card-header {
  display: flex;
  gap: 1rem;
  margin-bottom: 3.2rem;
  color: #373737;
}

.solutions-card-header img {
  height: 125px;
  width: auto;
}

.solutions-card-deco {
  transition: .3s;
}

.solutions-card:hover .solutions-card-deco {
  transform: scale(1.04);
}
.solutions-card:hover {
  box-shadow: 0 0.45rem 1.2rem rgba(0, 0, 0, 0.15);
}


.solutions-gradient {
  position: absolute;
  bottom: 0;
  height: 300px;
  width: 350px;
  z-index: 5;
}

.gradient-left {
  background: #0867b5;
  background: linear-gradient(
    90deg,
    rgba(8, 103, 181, 1) 0%,
    rgba(8, 103, 181, 0) 100%
  );
  left: 0;
}

.gradient-right {
  background: #0867b5;
  background: linear-gradient(
    270deg,
    rgba(8, 103, 181, 1) 0%,
    rgba(8, 103, 181, 0) 100%
  );
  right: 0;
}

.infinite-slide-container {
  overflow: hidden;
  white-space: nowrap;
  width: 100%;
  position: relative;
}

.infinite-track {
  display: flex;
  gap: 1rem;
  width: max-content;
  margin: 0.6rem 0;
}

.infinite-slide {
  padding: 1rem 1.6rem;
  border: 1px solid #f3f3e3;
  border-radius: 5px;
  display: flex;
  align-items: center;
  color: white;
  background: var(--primary);
  white-space: nowrap;
}

.infinite-to-right .infinite-track {
  animation: scroll-right 45s linear infinite;
}

.infinite-to-left .infinite-track {
  animation: scroll-left 45s linear infinite;
}

@keyframes scroll-right {
  from {
    transform: translateX(-50%);
  }

  to {
    transform: translateX(0);
  }
}

@keyframes scroll-left {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

/* Bloques de texto */
.txt-blocks {
  padding: 6rem 0;
}

/* Contadores */
.counters {
  margin: 1rem 2rem;
}

.counter-container {
  background: url(../images/bg-counter.png) #c41315;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  border-radius: 50px;
  color: white;
  padding: 2rem;
  position: relative;
}

.counter-container::after {
  content: url(../images/deco-counter-right.svg);
  position: absolute;
  z-index: 5;
  top: -3rem;
  right: 1rem;
}

.counter-container::before {
  content: url(../images/deco-counter-left.svg);
  position: absolute;
  z-index: -1;
  bottom: -2rem;
  left: -2rem;
}

.counter-block {
  text-align: center;
  line-height: 1.1;
  padding: 1rem 3rem;
  font-family: "IBM Plex Sans", sans-serif;
}

.counter-border {
  border-right: 1px solid #f3f3e3;
}

.counter-number {
  font-size: 52px;
  font-weight: 600;
  display: inline-block;
  transition: transform 0.3s ease;
}

.counter-number:not(:empty) {
  transform: scale(1.05);
}

.counter-text {
  font-size: 20px;
  font-weight: 300;
  margin-top: 0.4rem;
  margin-bottom: 0;
}

/* Ventajas */
.txt-blocks {
  padding: 6rem 0;
}

.advantages-card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  background-color: #fafaf3;
  border-radius: 20px;
  text-align: center;
  padding: 1.6rem 1.2rem;
  min-height: 225px;
  justify-content: center;
  align-items: center;
  transition: 0.3s;
}

.advantages-card img {
  width: 70px;
  height: 70px;
}

.advantages-card:hover {
  box-shadow: 0 0.25rem 1rem rgba(0, 0, 0, 0.09);
}

#advantagesCarousel .f-carousel__slide {
  width: 90%;
  padding: 0.5rem;
}

#advantagesCarousel .f-carousel__dots li.is-current .f-carousel__dot {
  opacity: 1;
  width: 18px;
  height: 18px;
}

#advantagesCarousel .f-carousel__dot {
  width: 12px;
  height: 12px;
  background-color: #c41315;
}

/* Soluciones destacadas */
.highlights-solutions {
  background-color: #f3f3e3;
  padding: 4rem 0 0;
  border-radius: 40px;
}

/* Testimonios */
.testimonials {
  background-image: url(../images/bg-testimonios.jpg);
  border-radius: 50px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center right;
  padding: 4.2rem 0;
  display: flex;
  align-items: center;
}

.testimonials-card {
  border-radius: 20px;
  background-color: white;
  padding: 2rem;
}

.testimonial-container {
  position: relative;
  padding: 2rem 0;
}

.testimonial-img {
  border-radius: 50px;
  width: 50px;
  height: 50px;
  margin-right: 1rem;
}

#testimonialsCarousel .f-carousel__nav {
  display: flex;
  flex-direction: row-reverse;
  justify-content: center;
  gap: 2rem;
}

#testimonialsCarousel .f-carousel__nav button {
  transform: none;
  position: relative;
  color: var(--primary);
}

/* Alianzas */
.alliances {
  padding: 14rem 0;
}

.alliances-container {
  border-radius: 20px;
  background-color: #f3f3e3;
  padding: 1.6rem;
}

.alliances-deco {
  position: absolute;
  left: 0;
  top: -5rem;
}

.alliances-logo {
  transition: 0.3s;
}

.alliances-logo:hover {
  filter: drop-shadow(0 0.25rem 1rem rgba(0, 0, 0, 0.1));
}

/* Buenas prácticas */
.banner-practices {
  background: url(../images/deco-banner-buenas-practicas.png?2),
    url(../images/bg-banner-buenas-practicas.svg);
  background-position: bottom right, left center;
  background-size: contain, cover;
  background-repeat: no-repeat;
  padding: 4rem 0;
  display: flex;
  align-items: center;
  margin: 1rem 2rem;
  border-radius: 50px;
  min-height: 675px;
}

.title-container {
  margin-bottom: 2rem;
  border-left: 10px solid #c41315;
  padding-left: 1.2rem;
  padding-bottom: 0.4rem;
}

/* Casos de exito */
.success {
  padding: 4rem 0;
  background-image: url(../images/bg-casos-de-exito.svg);
  background-position: center;
  background-size: auto;
  background-repeat: no-repeat;
}

#successCarousel {
  width: 1150px;
}

#successCarousel .f-carousel__slide {
  padding: 0.5rem;
  width: 28%;
}

#successCarousel .f-carousel__slide .success-img {
  width: 100%;
  transition: 0.3s;
}

.success-case-container {
  position: relative;
}

.success-case-container:hover .success-img {
  filter: brightness(1.3);
}

#successCarousel .f-carousel__nav {
  display: flex;
  flex-direction: row-reverse;
  justify-content: center;
  gap: 2rem;
  margin-top: 1rem;
  transform: translateX(-2.5%);
}

#successCarousel .f-carousel__nav button {
  transform: none;
  position: relative;
  color: var(--primary);
}

/* Play btn */
.video-play-button {
  position: absolute;
  z-index: 10;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  margin: auto;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-play-button:before {
  content: "";
  position: absolute;
  z-index: 0;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  display: block;
  width: 75px;
  height: 75px;
  background: #ffffff;
  border-radius: 50%;
  animation: pulse-border 1500ms ease-out infinite;
}

.video-play-button:after {
  content: "";
  position: absolute;
  z-index: 1;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  display: block;
  width: 75px;
  height: 75px;
  background: #ffffff;
  border-radius: 50%;
  transition: all 200ms;
}

.video-play-button img {
  position: relative;
  z-index: 3;
  width: 18px;
  height: auto;
}

@keyframes pulse-border {
  0% {
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
    opacity: 1;
  }

  100% {
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
    opacity: 0;
  }
}

/* Novedades */
.color-1,
.color-5,
.color-7 {
  color: #0867b5;
}

.color-2,
.color-4,
.color-8 {
  color: #de4133;
}

.color-3,
.color-6,
.color-9 {
  color: #f3b410;
}

.home-news {
  padding: 6rem 0 3rem 0;
  background: url(../images/deco-news.svg);
  background-repeat: no-repeat;
  background-size: auto;
  background-position: top right;
  overflow: hidden;
}

.news-card {
  height: 475px;
  border-radius: 20px;
  overflow: hidden;
  transition: 0.3s;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
  background-color: white;
}

.news-card:hover {
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.25) !important;
}

.news-card img {
  height: 230px;
  width: 100%;
  object-fit: cover;
}

.news-card-text {
  padding: 1.2rem;
  background-color: white;
}

.news-card-title {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.news-card-description {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-size: 14px;
}

.news-link {
  display: flex;
  align-items: center;
  color: var(--primary);
  transform: translateY(100px);
  transition: 0.3s;
  margin-bottom: 0;
  font-weight: 600;
}

.news-card:hover .news-link {
  transform: translateY(0);
}

.news-link:hover {
  color: #de4133;
}

.home-news-deco {
  position: absolute;
  z-index: -1;
}

.home-news-deco-left {
  bottom: -2rem;
  left: -2rem;
}

.home-news-deco-center {
  left: 0;
  right: 0;
  margin: auto;
  top: -1rem;
}

.home-news-deco-right {
  right: -1rem;
  top: 0;
  bottom: 0;
  margin: auto;
}

/* Logos */
.logos-carousel {
  padding: 3rem 0;
}

.logos {
  background: white;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.logos-slide {
  display: inline-flex;
  animation: scroll 60s linear infinite;
}

@keyframes scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.logos-slide img {
  filter: grayscale(1);
  opacity: 0.4;
  transition: 0.3s;
  width: auto;
  height: 70px;
  object-fit: contain;
  margin: 0 2.4rem;
  flex-shrink: 0;
  display: inline-block;
}

.logos-slide img:hover {
  filter: grayscale(0);
  opacity: 1;
}

.logos:before,
.logos:after {
  content: "";
  position: absolute;
  top: 0;
  width: 200px;
  height: 100%;
  z-index: 2;
}

.logos:before {
  left: 0;
  background: linear-gradient(to left, rgba(255, 255, 255, 0), white);
}

.logos:after {
  right: 0;
  background: linear-gradient(to right, rgba(255, 255, 255, 0), white);
}

/* Footer */
footer {
  background: url(../images/bg-footer.svg);
  padding: 5rem 0 3rem 0;
  position: relative;
  color: #f3f3e3;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: bottom right;
  border-radius: 50px 50px 0 0;
}

footer ul {
  padding-left: 0px;
}

footer ul li {
  list-style: none;
  margin-bottom: 0.6rem;
}

footer ul li a,
footer a {
  color: #f3f3e3;
}

footer a:hover,
footer a:focus,
footer a.active {
  color: var(--secondary);
}

footer h6 {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 1rem;
  position: relative;
}

.social-media-links {
  display: flex;
  align-items: center;
}

.social-media-links a {
  font-size: 18px;
  width: 36px;
  height: 36px;
  border: 1px solid #f3f3e3;
  display: block;
  border-radius: 50%;
  transition: 0.3s;
  background-color: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #f3f3e3;
}

.social-media-links a:hover {
  background-color: var(--secondary);
  border-color: var(--secondary);
}

.logo-footer {
  width: 300px;
}

/*///////////////////////////////////////////////////////////////////////////////
 /////////////////////////// INTERNA - CONTACTO//////////////////////*/
.title-section {
  min-height: 300px;
  padding: 3rem 0;
  display: flex;
  align-items: center;
  background: url(../images/bg-section-header-left.svg),
    url(../images/bg-section-header-right.svg);
  background-position: left bottom, top right;
  background-size: auto, auto;
  background-repeat: no-repeat;
  margin-top: 130px;
}

.title-section h1,
.title-section-alt h1 {
  font-size: 60px;
}

.contact-section {
  padding: 5rem 0;
}

.contact-card {
  height: 360px;
  border-radius: 15px;
  overflow: hidden;
  transition: 0.3s;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
  background-color: #f7f7f2;
}

.contact-card:hover {
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.25) !important;
}

.contact-card img {
  height: 160px;
  width: 100%;
  object-fit: cover;
}

.contact-card-text {
  padding: 1.2rem;
  min-height: 200px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.contact-link {
  display: flex;
  align-items: center;
  color: var(--primary);
  transform: translateY(100px);
  transition: 0.3s;
  margin-bottom: 0;
  font-size: 18px;
  font-weight: 600;
}

.contact-card:hover .contact-link {
  transform: translateY(0);
}

.contact-link:hover {
  color: #de4133;
}

.contact-form {
  /*background-color: #f7f7f2;*/
  border-radius: 50px;
  padding: 6rem 0;
}

.contact-form .social-media-links a {
  font-size: 20px;
  width: 46px;
  height: 46px;
  border: 1px solid #bdbdbd;
  color: #373737 !important;
}

.social-media-links a:hover {
  background-color: var(--primary);
  border-color: var(--primary);
  color: white !important;
}

.contact-form-container {
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
  background-color: #ffffff;
  padding: 2rem;
  border-radius: 20px;
}

.contact-form-container::after {
  content: url(../images/deco-form-left.svg);
  position: absolute;
  bottom: 1rem;
  left: -1rem;
  z-index: -1;
}

.contact-form-container::before {
  content: url(../images/deco-form-right.svg);
  position: absolute;
  top: -1.6rem;
  right: -1rem;
  z-index: -1;
}

.form-control {
  border-radius: 5px;
  font-size: 16px;
  padding: 1.3rem 1rem;
  color: #373737;
  border-color: #d9d9d9;
  font-weight: 400;
}

.form-control:focus {
  border: 1px solid var(--primary);
  box-shadow: none;
}

.form-label {
  color: #373737c3;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.has-error .form-control {
  border-color: #dc3545 !important;
  background-color: #fdf5f5;
}

.help-block {
  color: #dc3545;
}

.fx-fading-circle {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 100;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.6);
}

form {
  position: relative;
}

.loading {
  display: none;
}

.modal-backdrop {
  background-color: #000;
}

.modal-backdrop.show {
  opacity: 0.8;
}

.modal-content {
  border: 0;
  border-radius: 25px;
  outline: 0;
}

.modal-body {
  padding: 1.6rem 3rem;
}

.close {
  font-size: 2rem;
  font-weight: 400;
  color: #373737;
  opacity: 0.5;
  position: absolute;
  right: 1rem;
  top: 0.6rem;
  z-index: 5;
  opacity: 1;
}

.modal-content-deco {
  position: relative;
}

.modal-content-deco::before {
  content: url(../images/modal-deco.svg);
  position: absolute;
  right: 0;
  top: 2rem;
}

/*///////////////////////////////////////////////////////////////////////////////
 /////////////////////////// INTERNA -EMPRESA - NOSOTROS //////////////////////*/
.txt-block-img-container {
  position: relative;
}

.txt-block-info {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  width: 220px;
  height: auto;
  padding: 1.4rem 1rem;
  background-color: var(--primary);
  border-radius: 20px;
  position: absolute;
  bottom: 4rem;
  right: -0.5rem;
  text-align: center;
  color: white;
  line-height: 1.1;
}

.time-line {
  padding: 7rem 0 8rem 0;
  background-color: var(--primary);
  border-radius: 50px;
  margin: 0 1rem;
  overflow: hidden;
  position: relative;
}

.swipe-icon {
  width: 55px;
  position: absolute;
  bottom: 3rem;
  left: auto;
  right: 10%;
  z-index: 10;
}

.slide-left {
  -webkit-animation: slide-left 0.6s 1s infinite alternate both;
  animation: slide-left 0.6s 1s infinite alternate both;
}

/**
 * ----------------------------------------
 * animation slide-left
 * ----------------------------------------
 */
@-webkit-keyframes slide-left {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  100% {
    -webkit-transform: translateX(-100px);
    transform: translateX(-100px);
  }
}

@keyframes slide-left {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  100% {
    -webkit-transform: translateX(-100px);
    transform: translateX(-100px);
  }
}

/* Swipper */
.time-line-container {
  color: #373737;
  padding: 1rem;
  background-color: rgba(255, 255, 255, 0.841);
  border-radius: 20px;
  transition: all 0.3s;
  cursor: pointer;
  min-height: 195px;
  position: relative;
  font-family: "IBM Plex Sans", sans-serif;
}

.time-line-container:hover {
  background-color: white;
}

.time-line-year {
  position: absolute;
  font-family: "IBM Plex Sans", sans-serif;
  top: -6rem;
  line-height: 1;
  color: white;
  opacity: 1;
  font-size: 26px;
  font-weight: 600;
}

.time-line-dot {
  width: 22px;
  height: 22px;
  background-color: #f3c910;
  transition: 0.3s;
  border: 0;
  border-radius: 50%;
  position: absolute;
  top: -2.8rem;
  z-index: 10;
}

.time-line-container:hover .time-line-dot {
  background-color: #c41315;
  transform: scale(1.2);
}

.timeline-content {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.timeline-content img {
  width: 100%;
  height: 110px;
  object-fit: cover;
  border-radius: 10px;
  margin-top: 0.8rem;
}

.timeline-content ul {
  list-style: none;
  padding-left: 0rem;
  margin-bottom: 0.8rem;
  text-align: left;
}

.timeline-content ul li {
  font-size: 18px;
  padding-left: 1rem;
}

.timeline-content ul li:not(:last-child) {
  margin-bottom: 0.4rem;
}

.timeline-content ul li::before {
  content: "\e5ca";
  font-family: "Material Symbols Outlined";
  margin-right: 6px;
  position: absolute;
  font-size: 18px;
  color: var(--secondary);
  left: 0.8rem;
}

.gallerySlider {
  margin-top: 6rem;
  min-width: 1500px;
}

.swiper-container {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  z-index: 1;
}

.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  transition-property: transform;
  box-sizing: content-box;
}

.gallerySlider__swiper {
  overflow: visible;
  margin-left: -12px;
  margin-right: -12px;
}

.slider-container-hidden {
  overflow-x: clip;
}

.gallerySlider__slider {
  position: relative;
  flex: 0 0 28%;
  max-width: 28%;
}

.gallerySlider__slide {
  padding-left: 12px;
  padding-right: 12px;
}

.gallerySlider__nav {
  margin-top: 0px;
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 1;
}

.gallerySlider__navProgress {
  height: 5px;
  position: relative;
  flex: 1;
  background-color: rgba(247, 248, 251, 0.274);
}

.gallerySlider .swiper-pagination-progressbar-fill {
  background-color: #f3f3e3;
}

.gallerySlider__navProgress::before {
  content: "";
  height: 5px;
  width: 3000px;

  background-color: #f3f3e3;
  position: absolute;
  left: -3000px;
  z-index: 100;
}

/* Fin swipper */

/* Accordion */
.our-team {
  padding: 5rem 0 0 0;
}

#accordionTeam .card {
  border: 0;
  border-bottom: 1px solid #37373729;
}

#accordionTeam .card-header {
  padding: 1.25rem;
  margin-bottom: 0;
  background: white;
  border: 0;
  padding-right: 0.6rem;
}

#accordionTeam .card-body {
  padding-top: 0;
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.accordion-btn {
  width: 100%;
  outline: none;
  border: 0;
  background: white;
  position: relative;
  font-size: 32px;
  font-family: "Funnel Display", sans-serif;
  text-align: left;
  color: #373737;
  padding: 0;
  font-weight: 400;
  padding-right: 2.2rem;
}

.accordion-btn p {
  font-size: 16px;
}

#accordionTeam .accordion-btn::after {
  content: "\f88a";
  font-family: "Material Symbols Outlined";
  color: var(--primary);
  font-size: 30px;
  position: absolute;
  right: 0;
  top: calc(50% - 20px);
  transition: 0.3s;
}

#accordionTeam .accordion-btn.collapsed::after {
  content: "\e145";
  font-family: "Material Symbols Outlined";
  color: var(--primary);
}

.team-member-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: fit-content;
  padding: 1rem;
  text-align: center;
}

.team-member-container img {
  width: 135px;
  height: 135px;
  border-radius: 50%;
  margin-bottom: 1rem;
}

.team-member-container-lg img {
  width: 200px;
  height: 200px;
}

.text-underline {
  text-decoration: underline;
}

/* Grid */
.about-grid {
  overflow: hidden;
  margin: 4rem 1rem 2rem 1rem;
}

.about-grid-img-container {
  height: 370px;
  margin-bottom: 1.4rem;
}

.about-grid-txt-container {
  height: 370px;
  background-color: #f3f3e3;
  display: flex;
  flex-direction: column;
  justify-content: end;
  padding: 2rem;
  position: relative;
  margin-bottom: 1.4rem;
}

.about-grid-txt-container::after {
  content: "";
  width: 30px;
  height: 30px;
  background-color: #c41315;
  border-radius: 50%;
  position: absolute;
  top: 2rem;
  left: 2rem;
}

.about-grid-img-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.grid-fixed {
  width: 700px;
}
.grid-square{
  width: 100%;
  height: 97%;
  object-fit: cover;
}
.about-grid-deco-container {
  margin-bottom: 1.4rem;
  height: 100%;
}

.grid-deco {
  width: 100%;
  height: calc(100% - 1.4rem);
  object-fit: cover;
  border-top-left-radius: 100px;
  border-bottom-right-radius: 100px;
}

.about-grid-video-container {
  width: 100%;
  height: calc(740px + 1.4rem);
  background-color: #000000;
  margin-bottom: 1.4rem;
  position: relative;
}

.video-deco {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.8;
  transition: 0.3s;
}

.about-grid-video-container:hover .video-deco {
  opacity: 1;
}

.grid-bottom {
  min-height: 270px;
  background: url(../images/deco-empresa-7.svg) #f3f3e3;
  background-position: right bottom;
  background-repeat: no-repeat;
  background-size: auto;
  padding: 3rem;
  /*display: flex;*/
  display: block;
  align-items: center;
  border-radius: 0 0 50px 50px;
}

.grid-bottom p {
  width: 60%;
}

.grid-border-left {
  border-top-left-radius: 50px;
}

.grid-border-right {
  border-top-right-radius: 50px;
}

.txt-blocks-subtitles {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
  gap: 0.8rem;
}

.txt-blocks-subtitles img {
  width: 45px;
  height: 45px;
}

/*///////////////////////////////////////////////////////////////////////////////
 /////////////////////////// INTERNA - NOVEDADES //////////////////////*/
.news-section {
  background: #f7f7f2;
  border-radius: 50px;
  padding: 5rem 0;
}

.btn-group {
  display: inline-block;
}

.btn-group .btn {
  background-color: #f3f3e3;
  color: #373737;
  border: 1px solid #f3f3e3;
  margin: 0.6rem 0.6rem !important;
  border-radius: 26px !important;
  font-size: 16px;
  transition: 0.3s;
  text-transform: uppercase;
  font-weight: 600;
}

.btn-group .btn.active {
  background-color: var(--primary);
  border-color: var(--primary);
  color: white;
}

.btn-group .btn.focus {
  box-shadow: none;
}

.btn-group .btn:hover,
.btn-group .btn:focus,
.btn-group .btn:active {
  box-shadow: none;
  transform: none;
  background-color: var(--primary);
  border-color: var(--primary);
  color: white;
}

/* Paginador */
.pagination .page-item {
  margin: 0 0.4rem;
}

.pagination .page-link {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50% !important;
  font-family: "Sora", sans-serif;
}

.pagination .page-link {
  color: var(--primary);
  background-color: transparent;
  border: 1px solid var(--primary);
  font-weight: 600;
  font-size: 17px;
  transition: 0.3s;
}

.pagination .page-item:not(.disabled):hover .page-link {
  color: #fff;
  background-color: #373737;
  border-color: #373737;
}

.pagination .page-item.active .page-link {
  background-color: #373737;
  border-color: #373737;
}

.pagination .page-item.disabled .page-link {
  background-color: #e9e9e9;
  border-color: #b1b1b1;
}

/*///////////////// Breadcrumb /////////////////*/
/* .breadcrumb {
  background-color: transparent;
  padding: 0.5rem 0rem;
}

.breadcrumb-item {
  position: relative;
}

.breadcrumb-item:not(.active) {
  padding-left: 37px;
}

.breadcrumb-item:not(.active):before {
  background-color: #ff0600;
  content: "";
  width: 30px;
  height: 2px;
  position: absolute;
  left: 0;
  top: 14px;
}

.breadcrumb-item.active::before {
  color: #ff0600;
  content: "\f054";
  font-family: "FontAwesome";
  display: block;
  margin-top: 2px;
}

.breadcrumb a {
  color: #fff;
  font-size: 18px;
  transition: 0.3s;
  font-weight: 500;
}

.breadcrumb a:hover,
.breadcrumb a:focus {
  text-decoration: none;
  color: #bdbdbd;
}

.breadcrumb-item.active {
  color: #fff;
  font-weight: 500;
} */

/*///////////////// BACK /////////////////*/
.contenido {
  line-height: 1.75;
}

.contenido-main-img {
  height: 550px;
  width: 100%;
  object-fit: cover;
  border-radius: 30px;
}

.contenido a,
.services-section-detail p a {
  color: var(--primary);
  text-decoration: underline;
}

.services-section-detail ul li a {
  color: var(--primary);
  text-decoration: underline;
}

.share-section {
  position: relative;
  z-index: 5;
}

.share-section ul {
  list-style: none;
}

.share-section ul li:not(:last-child) {
  margin: 0 0.8rem 0 0;
}

.share-section ul li a {
  width: 33px;
  height: 33px;
  border-radius: 50%;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}

.share-section ul li a.icono-fb {
  background-color: #3b5998;
}

.share-section ul li a.icono-tw {
  background-color: #1da1f2;
}

.share-section ul li a.icono-wh {
  background-color: #1cd071;
}

.share-section ul li a.icono-em {
  background-color: #fb405a;
}

.contenido p {
  margin-bottom: 1.6rem;
  font-size: 16px;
  line-height: 1.5;
}

.contenido h2 {
  font-weight: 500;
  font-size: 30px;
  color: #373737;
  font-family: "Funnel Display", sans-serif;
  border-bottom: 2px solid #f3f3e3;
  padding-bottom: 0.3rem;
}

.contenido h3 {
  font-weight: 500;
  font-size: 26px;
  color: var(--primary);
  font-family: "Funnel Display", sans-serif;
}

.contenido h4 {
  font-weight: 500;
  font-size: 22px;
  color: var(--primary);
  font-family: "Funnel Display", sans-serif;
}

.contenido h5 {
  font-weight: 500;
  font-size: 20px;
  color: var(--primary);
  font-family: "Funnel Display", sans-serif;
}

.contenido h6 {
  font-weight: 500;
  font-size: 18px;
  color: #373737;
  font-family: "Funnel Display", sans-serif;
}

.contenido hr {
  margin-top: 1.6rem;
  margin-bottom: 1.6rem;
}

.contenido ul {
  list-style: none;
  font-size: 16px;
  padding-left: 0;
}

.contenido ol {
  font-size: 16px;
}
.contenido ol li {
  padding-left: 1rem;
  margin-bottom: 0.4rem;
  position: relative;
}
.contenido ul li{
  padding-left: 1.8rem;
  margin-bottom: 0.4rem;
  position: relative;
}

.contenido ul li::before {
  content: "\e5ca";
  font-family: "Material Symbols Outlined";
  position: absolute;
  font-size: 22px;
  font-weight: 700;
  left: 1px;
  top: -3px;
  margin-right: 0.4rem;
  color: var(--secondary);
}

.contenido blockquote {
  color: #373737;
  padding: 2rem 3rem;
  margin: 1.5rem 0;
  border-radius: 25px;
  background: url(/frontend/images/at-bg-blockquote.png) 95% 20% no-repeat
    #e0e0ca;
}

.contenido blockquote p {
  margin-bottom: 0;
}

.contenido p img {
  display: block;
  height: auto !important;
  max-width: 100%;
}

.contenido dl,
ol,
ul {
  margin-bottom: 1.5rem;
  padding-left: 1.25rem;
}

.contenido .media {
  padding-bottom: 1.5rem;
}

a.fresco img {
  border-radius: 25px;
}

/*///////////////////////////////////////////////////////////////////////////////
 /////////////////////////// INTERNA - eGOV//////////////////////*/
.title-section-alt {
  min-height: 650px;
  padding: 3rem 0;
  display: flex;
  align-items: center;
  background: #f3f3e3;
  background: linear-gradient(
    0deg,
    rgba(243, 243, 227, 1) 0%,
    rgba(243, 243, 227, 0) 100%
  );
  margin-top: 100px;
  border-bottom-left-radius: 50px;
  border-bottom-right-radius: 50px;
}

.title-section-alt-deco {
  width: 130%;
}

.features {
  padding: 4rem 0;
}

.features-container {
  display: flex;
  gap: 0.8rem;
  margin-bottom: 2rem;
}

.features-container img {
  width: 52px;
  height: 52px;
  transition: 0.3s;
}

.features-container:hover img {
  transform: scale(1.1);
}

.benefits {
  padding: 6rem 0;
}

.nav-tabs {
  background-color: #f3f3f3;
  border: 1px solid #d6d6d6;
  padding: 0.2rem;
  border-radius: 35px;
  display: flex;
  align-items: center;
  justify-content: space-around;
  text-align: center;
  width: fit-content;
}

.nav-tabs .nav-link {
  border: 0;
  background-color: #f3f3f3 !important;
  border-radius: 35px;
  color: #0a7bd8 !important;
  font-size: 20px;
  text-transform: uppercase;
  font-weight: 600;
  margin: 0 !important;
  padding: 0.6rem 1.4rem !important;
  transition: 0.3s !important;
}

.nav-tabs .nav-link.active {
  background-color: #0867b5 !important;
  color: white !important;
}

.nav-tabs .nav-link:after {
  content: none;
}

.benefits-card {
  background-color: #f7f7f2;
  border-radius: 15px;
  padding: 2.8rem 1.2rem 1.2rem 1.2rem;
  position: relative;
  min-height: 135px;
  transition: 0.3s;
}

.benefits-card:hover {
  box-shadow: 0px 6px 10px 2px rgba(0, 0, 0, 0.1) !important;
}

.benefits-card-deco::before {
  position: absolute;
  top: 1rem;
}

.benefits-card-deco1::before {
  content: url(../images/deco-beneficios1.svg);
}

.benefits-card-deco2::before {
  content: url(../images/deco-beneficios2.svg);
}

.benefits-card-deco3::before {
  content: url(../images/deco-beneficios3.svg);
}

.benefits-card-deco4::before {
  content: url(../images/deco-beneficios4.svg);
}

.benefits-card-deco5::before {
  content: url(../images/deco-beneficios5.svg);
}

.benefits-card-link {
  background-color: #de4133;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.benefits-link {
  display: flex;
  align-items: center;
  color: white;
  transition: 0.3s;
  margin-bottom: 0;
  font-weight: 600;
  font-size: 22px;
}

.benefits-link:hover {
  color: white;
}

.benefits-link span {
  transition: 0.3s;
}

.benefits-link:hover span {
  transform: translateX(5px);
}

.demo {
  padding: 6rem 0;
  background: url(../images/deco-demo.svg) var(--primary);
  background-size: auto;
  background-position: left 85%;
  background-repeat: no-repeat;
  margin: 0 1rem;
  border-radius: 50px;
  overflow: hidden;
}

#demoCarousel {
  width: 1150px;
}

#demoCarousel .f-carousel__slide {
  padding: 1rem;
  width: 33%;
}

#demoCarousel .f-carousel__nav {
  display: flex;
  flex-direction: row-reverse;
  justify-content: center;
  gap: 2rem;
  margin-top: 1rem;
  transform: translateX(-2.5%);
}

#demoCarousel .f-carousel__nav button {
  transform: none;
  position: relative;
  color: white;
}

.demo-card {
  border-radius: 20px;
  background-color: white;
  padding: 2rem 1.4rem;
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 1rem;
  overflow: hidden;
  height: 440px;
}

.demo-link {
  display: flex;
  align-items: center;
  color: var(--primary);
  transform: translateY(200px);
  transition: 0.3s;
  margin-bottom: 0;
  font-weight: 600;
}

.demo-card:hover .demo-link {
  transform: translateY(0);
}

.demo-link:hover {
  color: #de4133;
}

.demo-card img {
  height: 40px;
  width: auto;
}
.demo-card-logo{
  width: 55px !important;
  height: 55px !important;
  position: absolute;
  top: 35px;
  right: 35px;
  background-color: #de4133;
  border-radius: 7px;
  transform: translateY(-200px);
  transition: 0.3s;
  opacity: 0;
}
.demo-card:hover .demo-card-logo {
  transform: translateY(0);
  opacity: 1;
}
/*///////////////////////////////////////////////////////////////////////////////
 /////////////////////////// INTERNA - Comunidad PGM//////////////////////*/
.community {
  padding: 5rem 0;
}
.community-logo{
  width: 130px;
  margin-top: -12px;
}
.counter-block-community {
  display: flex;
  align-items: center;
  gap: 1rem;
  border-radius: 5px;
  border: 1px solid #0867b53b;
  padding: 1.6rem;
  font-family: "IBM Plex Sans", sans-serif;
  transition: 0.3s;
}

.counter-block-community img {
  width: 80px;
  height: 80px;
  transition: 0.3s;
}

.counter-number-community {
  font-weight: 600;
  font-size: 34px;
  margin-bottom: 0;
  line-height: 1;
}

.counter-text-community {
  font-size: 16px;
  font-weight: 300;
  margin-bottom: 0;
}

.counter-block-community:hover {
  border: 1px solid #0867b5;
}

.counter-block-community:hover img {
  transform: scale(1.1);
}

.newsletter {
  padding: 4rem 0;
}

.newsletter-container {
  background-color: #f3f3e3;
  border-radius: 20px;
  padding: 3rem 2rem;
}

.newsletter-deco {
  border-radius: 20px;
  margin-left: -5rem;
}

.map {
  background-color: var(--primary);
  border-radius: 40px;
  position: relative;
  margin: 1rem;
  overflow: hidden;
  height: 700px;
}
.iframe-container {
  height: 700px;
}
.iframe-container iframe {
  height: 100%;
}
/*/////////////////  RESPONSIVE /////////////////*/

@media (max-width: 1440px) {
  .navbar-brand img {
    height: 65px;
  }
  .about-grid-txt-container,
  .about-grid-img-container {
    height: 310px;
  }

  .about-grid-video-container {
    height: calc(620px + 1.4rem);
  }

  .title-section-alt-deco {
    width: 110%;
  }

  #successCarousel {
    width: 890px;
  }

  #successCarousel .f-carousel__slide {
    padding: 0.5rem;
    width: 40%;
  }
}

@media (max-width: 1360px) {
  .title-section {
    background: url(../images/bg-section-header-left.svg),
      url(../images/bg-section-header-right.svg);
    background-position: left bottom, center right;
    background-size: 6%, 30%;
    background-repeat: no-repeat;
    min-height: 220px;
  }

  .grid-bottom {
    background-size: 40%;
  }
}

@media (max-width: 1240px) {
  .navbar,
  .bsnav-sticky.bsnav-sticky-slide.sticked.in {
    padding: 1.2rem;
  }

  .navbar-brand img {
    height: 62px;
  }

  .nav-link,
  .nav-link-btn {
    font-size: 18px;
  }

  .nav-item.dropdown > .navbar-nav.in {
    clip: rect(0, 90vw, 2000px, -15px);
  }

  .counter-container {
    padding: 2rem 1rem;
  }

  .counter-block {
    padding: 1rem;
  }

  .banner-practices {
    background: url(../images/deco-banner-buenas-practicas.png?2),
      url(../images/bg-banner-buenas-practicas.svg);
    background-position: 165%, left center;
    background-size: contain, cover;
    background-repeat: no-repeat;
  }

  #demoCarousel {
    width: 120%;
  }

  #demoCarousel .f-carousel__slide {
    width: 60%;
  }

  .nav-tabs .nav-link {
    font-size: 18px;
    padding: 0.6rem 1.2rem !important;
  }

  .newsletter-deco {
    margin-left: -3rem;
  }
}

@media (max-width: 1024px) {
  .nav-link,
  .nav-link-btn {
    font-size: 16px;
    margin-right: 0.6rem !important;
    margin-left: 0.6rem !important;
  }

  .main {
    background-position: -889px 116px;
  }

  .counters {
    margin: 0rem;
  }

  #successCarousel {
    width: 110%;
  }

  #successCarousel .f-carousel__slide {
    padding: 0.5rem;
    width: 60%;
  }

  .banner-practices {
    background: url(../images/deco-banner-buenas-practicas.png?2),
      url(../images/bg-banner-buenas-practicas.svg);
    background-position: 230%, left center;
    background-size: contain, cover;
    background-repeat: no-repeat;
  }
}

@media (max-width: 768px) {
  .navbar {
    padding: 1rem;
  }

  .custom-nav {
    align-items: baseline;
    padding: 3rem 0.8rem !important;
  }

  .nav-link {
    font-size: 18px;
    margin: 0.4rem 0.6rem !important;
    padding: 0.4rem 0rem !important;
  }

  .float-nav {
    width: 100%;
    padding: 0 1.4rem;
  }

  .menu-border {
    border: 0;
  }

  .menu-divider {
    display: none;
  }

  .float-nav a {
    color: #fff;
  }

  .float-nav a:hover {
    color: var(--secondary);
  }

  .menu-sm-container {
    gap: 1.2rem;
  }

  .title-section {
    background: url(../images/bg-section-header-sm.svg);
    background-position: center right;
    background-size: contain;
    background-repeat: no-repeat;
    margin-top: 90px;
    min-height: 300px;
  }

  .title-section-alt-deco {
    width: 100%;
  }

  .title-section-alt {
    min-height: 450px;
    padding: 3rem 0;
    margin-top: 90px;
  }

  .counter-border {
    border: 0;
  }

  .counter-block:after {
    content: "";
    width: 180px;
    height: 1px;
    background-color: #f3f3e3;
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    bottom: -1rem;
  }

  .solutions-card {
min-height: auto;
align-items: center;
}

  .no-border::after {
    content: none;
  }

  .news-card {
    height: auto;
  }

  .banner-practices {
    padding: 4rem 0 32rem 0;
    background: url(../images/deco-banner-buenas-practicas.png?2),
      url(../images/bg-banner-buenas-practicas.svg);
    background-position: bottom center, left center;
    background-size: contain, cover;
    background-repeat: no-repeat;
  }

  .contact-card-text,
  .contact-card {
    min-height: auto;
    height: auto;
  }

  .about-grid-txt-container {
    border-top-right-radius: 50px;
  }

  #demoCarousel .f-carousel__slide {
    width: 80%;
  }

  .benefits-card {
    min-height: 210px;
  }

  .counter-block-community {
    gap: 0.8rem;
    padding: 1.2rem;
  }

  .newsletter-deco {
    margin-left: 0rem;
    margin-bottom: 1rem;
  }

  .map {
    padding-top: 3rem;
    height: auto;
  }

    .iframe-container {
    height: 700px;
  }


}

@media (max-width: 525px) {
  .mobile-center {
    display: block;
    margin: auto;
  }

  .modal-body {
    padding: 1.2rem;
  }

  .bsnav-sticky.bsnav-sticky-slide.sticked.in {
    padding: 1rem;
  }

  .main-txt {
    font-size: 46px;
  }

  .title-wrap {
    max-width: 75%;
  }

  .highlights-solutions,
  .solutions,
  .testimonials {
    border-radius: 25px;
  }

  .solutions-card-header {
    display: flex;
    flex-direction: column;
    margin-bottom: 2.6rem;
}

  .solutions-gradient {
    width: 100px;
  }

  #successCarousel {
    width: 105%;
  }

  #successCarousel .f-carousel__slide {
    width: 90%;
  }

  .alliances {
    padding: 2rem 0 4rem 0;
  }

  .alliances-deco {
    display: none;
  }

  .banner-practices {
    margin: 1rem;
    border-radius: 25px;
    padding: 4rem 0 20rem 0;
    background: url(../images/deco-banner-buenas-practicas.png?2),
      url(../images/bg-banner-buenas-practicas.svg);
    background-position: bottom center, left center;
    background-size: contain, cover;
    background-repeat: no-repeat;
  }

  .logos:before,
  .logos:after {
    width: 50px;
  }

  footer {
    background: url(../images/footer-bg-sm.svg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: bottom right;
    border-radius: 25px 25px 0 0;
    padding: 4rem 0 2rem 0;
  }

  .title-section {
    background-size: 40%;
    min-height: 220px;
  }

  .title-section h1,
  .title-section-alt h1 {
    font-size: 46px;
  }

  .contact-form {
    border-radius: 25px 25px 0 0;
    padding: 4rem 0;
  }

  .contact-form-container {
    padding: 1.2rem;
  }

  .news-section {
    border-radius: 25px;
    padding: 3rem 0;
  }

  .deco-about-years {
    right: -0.4rem;
    bottom: -0.8rem;
  }

  .time-line {
    padding: 4rem 0 8rem 0;
    border-radius: 25px;
  }

  .gallerySlider__slider {
    position: relative;
    flex: 0 0 28%;
    max-width: 90%;
  }

  .gallerySlider {
    margin-top: 6rem;
    min-width: 100%;
    width: 100%;
  }

  .contenido-main-img {
    height: 350px;
  }

  .detail-banner-container img {
    height: 220px;
    border-radius: 20px;
    object-position: left center;
  }

  .about-grid {
    margin: 4rem 0rem 2rem 0rem;
  }

  .grid-border-left {
    border-top-left-radius: 25px;
    border-top-right-radius: 25px;
  }

  .about-grid-txt-container {
    border-top-right-radius: 0px;
  }

  .grid-bottom {
    padding: 1.6rem;
    padding-bottom: 2.2rem;
  }

  .grid-bottom p {
    width: 100%;
    font-size: 1.6rem !important;
  }

  .about-grid-txt-container,
  .about-grid-img-container {
    height: 240px;
  }

  .about-grid-video-container {
    height: calc(480px + 1.4rem);
  }

  .demo {
    padding: 4rem 0;
    margin: 0 1rem;
    border-radius: 25px;
  }

  #demoCarousel {
    width: 110%;
  }

  #demoCarousel .f-carousel__slide {
    width: 90%;
    padding: 0.5rem;
  }

  .demo-card {
    padding: 1.6rem 1.2rem;
    gap: 0.8rem;
    min-height: 410px;
  }

  .benefits-card {
    min-height: auto;
  }

  .nav-tabs {
    margin: auto;
    border-radius: 25px;
    gap: 0.2rem;
  }

  .nav-tabs .nav-link {
    font-size: 17px;
    width: 100%;
    justify-content: center;
  }

  .counter-block-community {
    padding: 1rem;
  }

  .counter-number-community {
    font-size: 30px;
  }

  .counter-block-community .h2 {
    font-size: 30px;
  }

  .counter-block-community img {
    width: 65px;
    height: 65px;
  }
}

@media (max-width: 375px) {
}

@media (max-width: 320px) {
}

.filtersActive a {
  background: #f1f7ff;
  border: 1px solid #3a82e5;
  border-radius: 8px;
  padding: 5px 10px;
  display: inline-flex;
  margin: 0 10px 10px 0;
  font-size: 14px;
  color: #3a82e5;
}

.filtersActive a:hover,
.filtersActive a:focus {
  background: #dae7f9;
}

.filtersActive svg {
  margin-top: 7px;
  margin-left: 8px;
}


#modal-timer .close {
  position: absolute;
  top: -5px;
  right: -10px;
  z-index: 99999;
  color: #fff;
  background: #0a65b1;
  float: right;
  border: 1px solid #0a65b1;
  border-radius: 50%;
  font-size: 2.2rem;
  width: 45px;
  height: 45px;
  padding: 0px;
  text-align: center;
  cursor: pointer;
  transition: 0.3s;
  opacity: 1;
}

#modal-timer .modal-dialog {
  margin-top: 4.5rem;
}

#modal-timer .modal-content {
  background: none;
  border: none;
  z-index: 50;
  max-width: 900px;
  margin: 0 auto;
}

.max-w-100 {
  max-width: 100px;
}
