html {
    scroll-behavior: smooth;
    font-size: 20px;
}

#boton-hamburguesa {
    background-color: #333;
    color: #fff;
    font-size: 24px;
    font-family: sans-serif;
    padding: 10px;
    border: none;
    cursor: pointer;
  }

@media (max-width: 900px) {
    html { font-size: 16px; }
    #hero #image-carousel h1
    {
        font-size: 2.5em;        
    }
    #hero #image-carousel h2
    {
        font-size: 1.2em;        
    }

    .splide__slide__container {
        position: absolute;
        top: 0% !important;
        left: 10%;                
    }

    .slide__content{
        padding:0px !important;        
    }  
    
    #gallery_grid {
        display: none;
    }
}
  
@media (max-width: 400px) {
    html { font-size: 12px; }
    #hero #image-carousel h1
    {
        font-size: 2.5em;        
    }
    #hero #image-carousel h2
    {
        font-size: 1.2em;        
    }

    .splide__slide__container {
        position: absolute;
        top: 0% !important;
        left: 10%;                
    }

    .slide__content{
        padding:0px !important;        
    }

    #waModal .modal-dialog
    {
        width: 70% !important;
    }          
        
}

@media (min-width: 768px) {
    #boton-hamburguesa {
      display: none;
    }    

    #gallery_slide {
        display: none;
    }

    #gallery_grid {
        display: block;
    }
}

body {
    font-family: "Open Sans", sans-serif;
    color: #444444;
}

a {
    color: #1acc8d;
    text-decoration: none;
}

a:hover {
    color: #34e5a6;
    text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Montserrat", sans-serif;
}

.img-fluid
{
    width: 100%; 
    height:auto;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
    height: 85px;
    transition: all 0.5s;
    z-index: 997;
    transition: all 0.5s;
    background: rgba(41, 206, 170, 1);
}

#header.header-transparent {
    background: transparent;
}

#header.header-sticky {
    background: rgba(41, 206, 170, 1);
    height: 85px;
}

#header .logo h1 {
    font-size: 28px;
    margin: 0;
    padding: 0;
    line-height: 1;
    font-weight: 700;
}

#header .logo h1 a,
#header .logo h1 a:hover {
    color: #fff;
    text-decoration: none;
}

#header .logo img {    
    padding: 10px 5px;
    max-height: 180px;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
    padding: 0;
}

.navbar ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
}

.navbar li {
    position: relative;
}

.navbar a,
.navbar a:focus {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0 10px 30px;
    font-size: 15px;
    font-weight: 500;
    font-family: "Poppins", sans-serif;
    color: rgba(255, 255, 255, 0.7);
    white-space: nowrap;
    transition: 0.3s;
}

.navbar a i,
.navbar a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
}

.navbar>ul>li>a:before {
    content: "";
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 3px;
    left: 30px;
    background-color: rgba(41, 206, 170, 1);
    visibility: hidden;
    width: 0px;
    transition: all 0.3s ease-in-out 0s;
}

.navbar a:hover:before,
.navbar li:hover>a:before,
.navbar .active:before {
    visibility: visible;
    width: 25px;
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover>a {
    color: #fff;
}

.navbar .dropdown ul {
    display: block;
    position: absolute;
    left: 30px;
    top: calc(100% + 30px);
    margin: 0;
    padding: 10px 0;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    background: #fff;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
    transition: 0.3s;
    border-radius: 4px;
}

.navbar .dropdown ul li {
    min-width: 200px;
}

.navbar .dropdown ul a {
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 500;
    text-transform: none;
    color: #01036f;
}

.navbar .dropdown ul a i {
    font-size: 12px;
}

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover>a {
    color: #1acc8d;
}

.navbar .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
}

.navbar .dropdown .dropdown ul {
    top: 0;
    left: calc(100% - 30px);
    visibility: hidden;
}

.navbar .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: 100%;
    visibility: visible;
}

@media (max-width: 1366px) {
    .navbar .dropdown .dropdown ul {
        left: -90%;
    }

    .navbar .dropdown .dropdown:hover>ul {
        left: -100%;
    }
}

/**
  * Mobile Navigation 
  */
.mobile-nav-toggle {
    color: #fff;
    font-size: 28px;
    cursor: pointer;
    display: none;
    line-height: 0;
    transition: 0.5s;
}

@media (max-width: 991px) {
    .mobile-nav-toggle {
        display: block;
    }

    .navbar ul {
        display: none;
    }
}

.navbar-mobile {
    position: fixed;
    overflow: hidden;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background: rgba(41, 206, 170, 1);
    transition: 0.3s;
    z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
    position: absolute;
    top: 15px;
    right: 15px;
}

.navbar-mobile ul {
    display: block;
    position: absolute;
    top: 55px;
    right: 15px;
    bottom: 15px;
    left: 15px;
    padding: 10px 0;
    border-radius: 8px;
    background-color: #fff;
    overflow-y: auto;
    transition: 0.3s;
}

.navbar-mobile>ul>li>a:before {
    left: 20px;
}

.navbar-mobile a,
.navbar-mobile a:focus {
    padding: 10px 20px;
    font-size: 15px;
    color: #3c2b78;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
    color: #3c2b78;
}

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
    margin: 15px;
}

.navbar-mobile .dropdown ul,
.navbar-mobile .dropdown .dropdown ul {
    position: static;
    display: none;
    margin: 10px 20px;
    padding: 10px 0;
    z-index: 99;
    opacity: 1;
    visibility: visible;
    background: #fff;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

.navbar-mobile .dropdown ul li,
.navbar-mobile .dropdown .dropdown ul li {
    min-width: 200px;
}

.navbar-mobile .dropdown ul a,
.navbar-mobile .dropdown .dropdown ul a {
    padding: 10px 20px;
}

.navbar-mobile .dropdown ul a i,
.navbar-mobile .dropdown .dropdown ul a i {
    font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover>a,
.navbar-mobile .dropdown .dropdown ul a:hover,
.navbar-mobile .dropdown .dropdown ul .active:hover,
.navbar-mobile .dropdown .dropdown ul li:hover>a {
    color: #1acc8d;
}

.navbar-mobile .dropdown>.dropdown-active,
.navbar-mobile .dropdown .dropdown>.dropdown-active {
    display: block;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
    width: 100%;
    position: relative;
    padding: 100px 0 10px 0;
    background: linear-gradient(180deg, rgba(41, 206, 170, 1) 0%, rgba(104, 185, 92, 1) 49%, rgba(127, 178, 64, 1) 100%);
}

#hero h1 {
    margin: 0 0 20px 0;
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 56px;
    color: rgba(255, 255, 255, 1);
}

#hero h1 span {
    color: #fff;
    border-bottom: 4px solid #1acc8d;
}

#hero h2 {
    color: rgba(255, 255, 255, 1);
    margin-bottom: 40px;
    font-size: 2rem;
}

#hero p {
    color: rgba(255, 255, 255, 1);
    margin-bottom: 40px;
    font-size: 0.8rem;
}

.btn-get-started {
    font-family: "Montserrat", sans-serif;
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 10px 30px;
    border-radius: 50px;
    transition: 0.5s;
    color: #fff;
    background: #1acc8d;
    text-decoration:none;
}

.btn-get-started:hover {
    background: #17b57d;
}

#hero .animated {
    animation: up-down 2s ease-in-out infinite alternate-reverse both;
}


/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
    background: #3c2b78;
    padding: 0 0 30px 0;
    color: #fff;
    font-size: 14px;
}


#footer .footer-top {
    padding: 60px 0 30px 0;
}

#footer .footer-top .footer-info {
    margin-bottom: 15px;
    background: #158b83;
    color: #fff;
    border-top: 4px solid #6eb01f;
    text-align: center;
    padding: 30px 20px;
}

#footer .footer-top .footer-info h3 {
    font-size: 24px;
    margin: 0 0 20px 0;
    padding: 2px 0 2px 0;
    line-height: 1;
    font-weight: 700;
}

#footer .footer-top .footer-info p {
    font-size: 14px;
    line-height: 24px;
    margin-bottom: 0;
    font-family: "Montserrat", sans-serif;
}

#footer .footer-top .social-links a {
    font-size: 18px;
    display: inline-block;
    color: #fff;
    line-height: 1;
    padding: 8px 0;
    margin-right: 4px;
    border-radius: 50%;
    text-align: center;
    width: 36px;
    height: 36px;
    transition: 0.3s;
}

#footer .footer-top .social-links a:hover {
    background: #3c2b78;
    color: #fff;
    text-decoration: none;
}

#footer .footer-top h4 {
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    position: relative;
    padding-bottom: 12px;
}

#footer .footer-top .footer-links {
    margin-bottom: 30px;
}

#footer .footer-top .footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

#footer .footer-top .footer-links ul i {
    padding-right: 2px;
    color: #61ebba;
    font-size: 18px;
    line-height: 1;
}

#footer .footer-top .footer-links ul li {
    padding: 10px 0;
    display: flex;
    align-items: center;
}

#footer .footer-top .footer-links ul li:first-child {
    padding-top: 0;
}

#footer .footer-top .footer-links ul a {
    color: #fff;
    transition: 0.3s;
    display: inline-block;
    line-height: 1;
}

#footer .footer-top .footer-links ul a:hover {
    color: #4be8b0;
}

#footer .footer-top .footer-newsletter form {
    margin-top: 30px;
    background: #fff;
    padding: 6px 10px 6px 15px;
    position: relative;
    border-radius: 50px;
}

#footer .footer-top .footer-newsletter form input[type=email] {
    border: 0;
    padding: 4px;
    width: calc(100% - 110px);
}

#footer .footer-top .footer-newsletter form input[type=submit] {
    position: absolute;
    top: 0;
    right: -2px;
    bottom: 0;
    border: 0;
    background: none;
    font-size: 16px;
    padding: 0 20px;
    background: #1acc8d;
    color: #fff;
    transition: 0.3s;
    border-radius: 50px;
}

#footer .footer-top .footer-newsletter form input[type=submit]:hover {
    background: #149f6e;
}

#footer .copyright {
    border-top: 1px solid #158b83;
    text-align: center;
    padding-top: 30px;
}

#footer .credits {
    padding-top: 10px;
    text-align: center;
    font-size: 13px;
    color: #fff;
}

@media (max-width: 575px) {
    #footer .footer-top .footer-info {
        margin: -20px 0 30px 0;
    }
}

/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/

.nosotros {
    padding: 5px 0 0 0;
}

.nosotros h3 {
    font-size: 28px;
    font-weight: 700;
    color: #3c2b78;
    margin-bottom: 15px;
}

.lander h3 {
    font-size: 28px;
    font-weight: 700;
    color: #3c2b78;
    margin-bottom: 15px;
}

.nosotros_text{
    font-size: 1rem;
}

.servicios {
    padding: 40px 0 0 0;
}

.servicios h3 {
    font-size: 28px;
    font-weight: 700;
    color: #3c2b78;
    margin-bottom: 15px;
}

.servicios .icon-boxes h3 {
    font-size: 28px;
    font-weight: 700;
    color: #3c2b78;
    margin-bottom: 15px;
  }
  
  .servicios .icon-box {
    margin-top: 40px;
  }

  .servicios .icon-box .icon {
    float: left;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    border: 2px solid #7ceec6;
    border-radius: 50px;
    transition: 0.5s;
  }

  .servicios .icon-box .title {
    margin-left: 85px;
    font-weight: 700;
    margin-bottom: 10px;
    font-size: 18px;
  }

  .servicios .icon-box:hover .icon {
    background: #1acc8d;
    border-color: #1acc8d;
  }
  
  .servicios .icon-box:hover .icon i {
    color: #fff;
  }

  .servicios .icon-box .title {
    margin-left: 85px;
    font-weight: 700;
    margin-bottom: 10px;
    font-size: 18px;
  }
  
  .servicios .icon-box .title a {
    color: #343a40;
    transition: 0.3s;
  }
  
  .servicios .icon-box .title a:hover {
    color: #1acc8d;
  }

  .servicios .icon-box .description {
    margin-left: 85px;
    line-height: 24px;
    font-size: 0.9rem;
  }

  .servicios .icon-box .icon i {
    color: #1acc8d;
    font-size: 32px;
  }

  /*MODAL*/
  .modal-content {
    background-color: #3c2b78;
    color: #fff;
  }
  .modal-body {
    background-color: #3c2b78;
    color: #fff;
  }

  .close
  {
    background-color: #3c2b78;
    border: none;
    font-size: 18px;
    color: #fff;
  }

  .error_msg
  {
    color: red;
    font-size: smaller;
  } 

  .card-text
  {
    font-size: 0.6rem;
    margin: 5px 0px;
  }

  #map {
    width:  100%; /*or 70%, or what you want*/
    
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  }


/*animations*/
.buttom_bounce-top{-webkit-animation:bounce-top 3s both;animation:bounce-top 3s both}


.slide-in-left{-webkit-animation:slide-in-left-anim 1.5s cubic-bezier(.25,.46,.45,.94) both;animation:slide-in-left-anim 1.5s cubic-bezier(.25,.46,.45,.94) both;animation-play-state: paused;}
.slide-in-left-anim{opacity: 0;}
.slide-in-left.activado {opacity: 1;animation-play-state: running;}

.slide-in-right{-webkit-animation:slide-in-right-anim 1.5s cubic-bezier(.25,.46,.45,.94) both;animation:slide-in-right-anim 1.5s cubic-bezier(.25,.46,.45,.94) both;animation-play-state: paused;}
.slide-in-right-anim{opacity: 0;}
.slide-in-right.activado {opacity: 1;animation-play-state: running;}
  /* ----------------------------------------------
 * Generated by Animista on 2023-4-5 13:25:41
 * Licensed under FreeBSD License.
 * See http://animista.net/license for more info. 
 * w: http://animista.net, t: @cssanimista
 * ---------------------------------------------- */

@-webkit-keyframes bounce-top{0%{-webkit-transform:translateY(-45px);transform:translateY(-45px);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in;opacity:1}24%{opacity:1}40%{-webkit-transform:translateY(-24px);transform:translateY(-24px);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}65%{-webkit-transform:translateY(-12px);transform:translateY(-12px);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}82%{-webkit-transform:translateY(-6px);transform:translateY(-6px);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}93%{-webkit-transform:translateY(-4px);transform:translateY(-4px);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}25%,55%,75%,87%{-webkit-transform:translateY(0);transform:translateY(0);-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}100%{-webkit-transform:translateY(0);transform:translateY(0);-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out;opacity:1}}@keyframes bounce-top{0%{-webkit-transform:translateY(-45px);transform:translateY(-45px);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in;opacity:1}24%{opacity:1}40%{-webkit-transform:translateY(-24px);transform:translateY(-24px);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}65%{-webkit-transform:translateY(-12px);transform:translateY(-12px);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}82%{-webkit-transform:translateY(-6px);transform:translateY(-6px);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}93%{-webkit-transform:translateY(-4px);transform:translateY(-4px);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}25%,55%,75%,87%{-webkit-transform:translateY(0);transform:translateY(0);-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}100%{-webkit-transform:translateY(0);transform:translateY(0);-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out;opacity:1}}

@-webkit-keyframes slide-in-left-anim{0%{-webkit-transform:translateX(-1000px);transform:translateX(-1000px);opacity:0}100%{-webkit-transform:translateX(0);transform:translateX(0);opacity:1}}@keyframes slide-in-left{0%{-webkit-transform:translateX(-1000px);transform:translateX(-1000px);opacity:0}100%{-webkit-transform:translateX(0);transform:translateX(0);opacity:1}}

@-webkit-keyframes slide-in-right-anim{0%{-webkit-transform:translateX(1000px);transform:translateX(1000px);opacity:0}100%{-webkit-transform:translateX(0);transform:translateX(0);opacity:1}}@keyframes slide-in-right{0%{-webkit-transform:translateX(1000px);transform:translateX(1000px);opacity:0}100%{-webkit-transform:translateX(0);transform:translateX(0);opacity:1}}

/*
* WA widget
*/

.feedback {
    background-color : #1acc8d;
    color: white;
    padding: 10px 20px;
    border-radius: 4px;
    border-color: #46b8da;
  }
  #wabutton {
    position: fixed;
    bottom: -4px;
    right: 10px;
  }

  .modal.custom .modal-dialog {
    width:25%;        
    position:fixed;
        bottom:50px;
        right:0px;
        margin:0px;        
  }

  .modal.custom .modal-dialog .modal-content {
    background-color: #fff;
  }

  .modal.custom .modal-dialog .close {
    background-color: #fff;
    color:gray;
  }

  .modal.custom .modal-dialog .modal-header
  {
    color:#000;
    font-size: 12px;
    margin: 5px 3px;
  }  

  .modal.custom .modal-dialog .modal-body {
    background-color: rgb(230, 221, 212);
    content: "";
    background-image:url("/assets/img/whatsapp.webp");    
    background-position: center;
    opacity: 0.7;
  }

  .chat
  {
    background-color: #fff;
    color: #000;
    font-size: 12px;
    padding: 10px;
  }

  .chat p {
    margin: 5px 2px;
  }

  .walogo
  {
    background-color: #158b83;
    margin: 0;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    border-radius: 50px;
  }


  /*.wabg
  {
    content: "";
    background-image:url("/assets/img/whatsapp.webp");    
    background-position: center;
    opacity: 0.5;
  }*/



  /*slider*/
  .splide__slide img {
    width: 100%;
    height: auto;
    position: relative;
  }

  .my-slider-progress {
    background: #ccc;
  }
  
  .my-slider-progress-bar {
    background: greenyellow;
    height: 2px;
    transition: width 400ms ease;
    width: 0;
  }

  .splide__slide__container {
    position: absolute;
    top: 20%;
    left: 10%;    
  }

  .slide__content{
    background-color: rgba(0, 0, 0, 0.2);
    padding: 10px;
    width: 90%;
    text-align: center;
    
}


:target::before {
    content: '';
    display: block;
    height:      120px;
    margin-top: -120px;
}

#urgencias {
    text-align: center;
    background-color: rgba(41, 206, 170, 1);
    color: white;
    margin: 100px 0px;
}

#urgencias h1 {
    margin: 0 0 20px 0;
    font-family: "Montserrat", sans-serif;
    text-transform: uppercase;
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 56px;
    /*color: rgba(255, 255, 255, 1);*/
}

#urgencias h2 {
    /*color: rgba(255, 255, 255, 1);*/
    font-family: "Montserrat", sans-serif;
    text-transform: uppercase;    
    font-size: 1.5rem;
}

#urgencias h3 {
    /*color: rgba(255, 255, 255, 1);*/
    font-family: "Montserrat", sans-serif;
    text-transform: uppercase;    
    font-size: 1.2rem;
}

#urgencias a {
    color:white;
    text-decoration: underline;
}

/*Galería*/
.gallery .gallery-item {
    overflow: hidden;
    border-right: 3px solid #fff;
    border-bottom: 3px solid #fff;
  }
  
  .gallery .gallery-item img {
    transition: all ease-in-out 0.4s;
  }
  
  .gallery .gallery-item:hover img {
    transform: scale(1.1);
  }

  /*info accordion*/

  
  .card-title:hover {
    color: #3c2b78;
  }

  #btn-login { 
    background-color:#3c2b78;
  }
  