@import url('https://fonts.googleapis.com/css2?family=Baloo+Bhaina+2&display=swap');
/*@import url('https://fonts.googleapis.com/css2?family=Open+Sans&display=swap');*/
* {
    font-family: 'Baloo Bhaina 2', Arial, sans-serif;
    /*font-family: 'Open Sans', sans-serif !important;*/
}
.active-nav-item {
    color: #2C3E50 !important
}

.padding-custom {
    padding: 10px;
}

.no-padding {
    padding: 0;
}

.menuSticky {
    position: -webkit-sticky; 
    position: sticky;
    top: 20px; 
}

.divider {
    background: #cccccc;
    height: 1px;
    width: 100%;
}

.space-10 {
    height: 10px;
}

.space-15 {
    height: 15px;
}

.space-20 {
    height: 20px;
}
.margin-10 {
    margin: 10px;
}
.margin-20 {
    margin: 20px;
}

.btn {
    border-radius: 20px;
}

.full-width {
    width: 100%;
}

.full-height {
    height: 100%;
}
.full-width-image {
    display: block;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
}
.full-height-image {
    max-height: 100%;
}

.c-pointer {
    cursor: pointer;
}

.color-white {
    color: white !important;
}

.text-green {
    color: green;
}

.text-yellow {
    color: yellow;
}

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

.custom-control-input:checked ~ .custom-control-label::before {
    color: #fff;
    border-color: var(--primary);
    background-color: var(--primary);
}

.custom-card {
    background-color: white;
    padding: 20px;
    border: 1px solid  rgb(220, 220, 220);
    border-radius: 10px;
    box-shadow: 0px 6px 14px -6px rgba(82,82,82,1);
}
.custom-card-blue {
    color: white;
    font-weight: bold;
    background-color: var(--primary);
}
.custom-box-shadow {
    box-shadow: 0px 6px 14px -6px rgba(82,82,82,1);
}
.carousel-caption {
    color: black !important;
}
.carousel-indicators li {
    background-color: black;
}
.slides-testimonies {
    width: 100%;
    height: 130px;
    background-color: transparent;
    border-radius: 5px;
    font-size: 25px;
    text-align: center;
    justify-content: center;
    font-style: italic;
}
.slides-text {
    width: 100%;
    height: 180px;
    background-color: transparent;
    border-radius: 5px;
    font-size: 30px;
    line-height: 180px;
    text-align: center;
    justify-content: center;
}

@media(max-width: 768px) {
    .boton-flotante {
        position: fixed;
        bottom: 10px;
        right: 10px;
    }
    .custom-card {
        padding: 10px;
    }
    .slides-testimonies {
        font-size: 18px;
    }
}
@media(min-width: 768px) {
    .boton-flotante {
        position: fixed;
        bottom: 20px;
        right: 20px;
    }
    .invisible-on-desktop {
        display: none;
    }
}
@keyframes fadeInImg {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}
.img-loading {
    opacity: 0;
    width: 100%;
    height: auto;
}
.img-loaded {
    animation: fadeInImg cubic-bezier(0.23, 1, 0.32, 1) 1;
    position: relative;
    opacity: 0;
    animation-fill-mode: forwards;
    animation-duration: 0.7s;
    animation-delay: 0.1s;
}
