
body, html {
    font-family: 'Poppins','Montserrat', sans-serif;
  }


#myBtn-whatsapp {
    display: none;
    position: fixed;
    bottom: 25px;
    left: 20px;
    width: 50px;
    height: 50px;
    z-index: 999;
    font-size: 1.7rem;
    border: none;
    outline: none;
    background-color: #09CC61;
    color: #fff;
    border-color: #09CC61;
    border-width: 0px;
    border-style: solid;
    cursor: pointer;
    padding-top: 6px;
    padding-bottom: 8px;
    padding-right: 6px;
    padding-left: 13px;
    border-radius: 40px;
}


/* This only changes this particular animation duration */
.animate__animated.animate__bounce {
--animate-duration: 2s;
}

/* This changes all the animations globaly */
:root {
--animate-duration: 3000ms;
--animate-delay: 0.9s;
}


.bg-institucional {
    background-color:  #3947E6;
}

.color-institucional {
    color: #3947E6 !important;
}

/* footer redes sociales */
.social-networks {
  font-size: 1.1rem;
  
}

.social-networks {
    font-size: 1rem;
    display: flex;
    gap: 9px; /* espacio entre botones */
    justify-content: right; /* centra el ícono */
}

.social-networks a {
    color: #3947E6;
    transition: 0.2s;
    background-color: #FFFFFF;
    width: 35px !important;
    height: 35px !important;
    min-width: 35px !important;
    border-radius: 50%; /* hace que se vean redondos */
    display: flex;
    align-items: center;
    justify-content: center; /* centra el ícono */
    text-decoration: none;
    font-size: 1rem;
}


.facebook:hover {
  color: #0077e2;
}

.linkedin:hover {
  color: #2390f0;
}

.instagram:hover {
  color: #C934AC;
}

.mail:hover {
  color: #666;
}

.ws:hover {
  color: #09CC61;
}

.youtube:hover {
  color: #D0112B;
}


.marcas {
    width: 110px !important;
    height: 110px !important;
}

.marcas-mobile {
    width: 50px !important;
    height: 50px !important;
}


.form-control {
    display: block;
    width: 100%;
    padding: .375rem .75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #AAA !important;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-color: var(--bs-body-bg);
    background-clip: padding-box;
    border: 0px;
    border-radius: 0;
    border-bottom-color: #EEEEEE;
    border-bottom-width: 2px;
    border-bottom-style: solid;
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}






/* Container for the entire carousel */
.multi-carousel-container {
  cursor: grab;
  margin: 0 auto;
  max-width: 100%;
  overflow: hidden;
  position: relative;
}

/* Cursor styles for dragging */
.multi-carousel-container.dragging,
#multiCarousel.dragging {
  cursor: grabbing;
}

/* Wrapper for all slides */
.multi-carousel-inner {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Individual slide */
.multi-carousel-item,
.clone {
  box-sizing: border-box;
  flex: 0 0 33.333333%;
  padding: 0 5px;
  position: relative; /* Essential for item-number positioning */
}

/* Control buttons */
.multi-carousel-control-prev,
.multi-carousel-control-next {
  align-items: center;
  background-color: rgba(184, 184, 184, 0.5);
  border: none;
  border-radius: 50%;
  color: white;
  cursor: pointer;
  display: flex;
  height: 35px;
  justify-content: center;
  position: absolute;
  text-decoration: none;
  top: 50%;
  transform: translateY(-50%);
  transition: background-color 0.3s ease;
  width: 35px;
  z-index: 10;
}

.multi-carousel-control-prev:hover,
.multi-carousel-control-next:hover {
  background-color: rgba(0, 0, 0, 0.7);
}

.multi-carousel-control-prev {
  left: 10px;
}

.multi-carousel-control-next {
  right: 10px;
}


/* Carousel cursor styling */
#multiCarousel {
  cursor: grab;
  touch-action: pan-y;
}

/* Disable text selection during drag */
#multiCarousel.dragging {
  user-select: none;
  -webkit-user-select: none;
}

/* Responsive adjustments for screens smaller than 720px (45em) */
@media (max-width: 45em) {
  .multi-carousel-item,
  .clone {
    flex: 0 0 100%;
  }
}