/*
 * Shortcode: faq.scss
 * -----------------------------------------------
*/


/*
 * Shortcode: services.scss
 * -----------------------------------------------
*/

.services-block .inner-box .thumb {
    position: relative;
    overflow: hidden;
}

.services-block .inner-box .thumb:before {
    position: absolute;
    content: '';
    left: 0px;
    bottom: 0px;
    width: 100%;
    height: 0px;
    opacity: 0.8;
    z-index: 1;
    border-radius: 0px 50px 0px 0px;
    display: block;
    cursor: pointer;
    z-index: 1;
    border: 150px solid rgba(68, 57, 134, 0);
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -moz-transition: all 0.8s cubic-bezier(0.94, 0.85, 0.1, 0.62);
    -webkit-transition: all 0.8s cubic-bezier(0.94, 0.85, 0.1, 0.62);
    -o-transition: all 0.8s cubic-bezier(0.94, 0.85, 0.1, 0.62);
    -ms-transition: all 0.8s cubic-bezier(0.94, 0.85, 0.1, 0.62);
    transition: all 0.8s cubic-bezier(0.94, 0.85, 0.1, 0.62);
}

.services-block .inner-box:hover .thumb:before {
    border: 0px double rgba(18, 208, 234);
}

.services-block .inner-box .thumb img {
    position: relative;
    width: 100%;
    display: block;
    border-radius: 0px 50px 0px 0px;
}

.services-block .inner-box .content {
    position: relative;
    z-index: 2;
    margin-left: 25px;
    margin-right: 25px;
    margin-top: -55px;
    text-align: center;
    padding: 30px 25px 15px;
    background-color: #ffffff;
    border-radius: 0px 0px 0px 50px;
    transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.2);
}

.services-block .inner-box .content .symbol-icon {
    position: absolute;
    top: -40px;
    width: 64px;
    padding: 15px;
    border-radius: 3px;
    transition: all 0.3s ease-in-out;
}

.services-block .inner-box .content .symbol-icon {
    background: #1bacd6;
}

.services-block .inner-box .content .symbol-icon:hover {
    background: #263856;
}


/*
 * Shortcode: staff.scss
 * -----------------------------------------------
*/

.about-section {
    padding: 10px;
    list-style: none;
    *list-style: decimal;
    font: 16px 'Monospace', 'lucida sans';
}

.colr {
    font-size: 1.1rem;
    font-family: "Poppins", sans-serif;
    color: #051662;
}


/*slider de logos*/

.carousel {
    background: #ffffff;
    border: 1px solid rgb(215, 212, 212);
    border-radius: 20px;
    padding: 10px 0;
    max-width: auto;
    overflow: hidden;
    display: flex;
}

.imagen {
    max-width: 100%;
    border-radius: 28px;
    padding: 20px;
    justify-content: center;
    align-items: center;
    &:nth-child(1) {
        background: #0215c4;
    }
    &:nth-child(2) {
        background: #0215c4;
    }
    &:nth-child(3) {
        background: #0215c4;
    }
    &:nth-child(4) {
        background: #0215c4;
    }
}


/* Responsivo */

@media (max-width: 768px) {
    .carousel img {
        max-width: 80px;
    }
}

.carousel {
    /* ... */
    >* {
        flex: 0 0 100%;
    }
}


/* Agrupando las tarjetas para una mejor estructura. */

.group {
    display: flex;
    gap: 20px;
    /* Agrega padding a la derecha para crear un espacio entre la última y la primera tarjeta. */
    padding-right: 10px;
}

.group {
    /* ... */
    will-change: transform;
    /* Deberíamos ser amables con el navegador: hazle saber qué vamos a animar. */
    animation: scrolling 18s linear infinite;
}

@keyframes scrolling {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-100%);
    }
}

.carousel {
    /* ... */
    &:hover .group {
        animation-play-state: paused;
    }
}