/***** CONVENIOS Y MEMBRESÍAS *****/
#convenios {
    background-color: #F4F8FB;
    padding: 50px 0 60px;
    overflow: hidden;
}

.convenios-group {
    margin: 30px 0;
}

.convenios-subtitle {
    text-align: center;
    color: #005CA2;
    font-size: 22px;
    margin-bottom: 15px;
    font-weight: 600;
}

.convenios-carousel {
    overflow: hidden;
    width: 100%;
    display: flex;
    position: relative;
    padding: 10px 0;
}

.convenios-list {
    display: flex;
    position: relative;
    width: max-content;
    cursor: pointer;
    align-items: center;
    animation-play-state: running;
    -webkit-animation-play-state: running;
}

.convenios-list:hover {
    animation-play-state: paused;
    -webkit-animation-play-state: paused;
}

.convenios-list img {
    margin: 0 25px;
    max-height: 70px;
    width: auto;
    max-width: 180px;
    object-fit: contain;
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.convenios-list img:hover {
    transform: scale(1.05);
}

.scroll-left {
    animation: scroll-left 25s linear infinite;
    -webkit-animation: scroll-left 25s linear infinite;
}

.scroll-right {
    animation: scroll-right 25s linear infinite;
    -webkit-animation: scroll-right 25s linear infinite;
}

@keyframes scroll-left {
    0% {
        transform: translateX(0);
        -webkit-transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
        -webkit-transform: translateX(-50%);
    }
}

@keyframes scroll-right {
    0% {
        transform: translateX(-50%);
        -webkit-transform: translateX(-50%);
    }
    100% {
        transform: translateX(0);
        -webkit-transform: translateX(0);
    }
}

.convenios-note {
    text-align: center;
    font-size: 14px;
    color: #666;
    margin-top: 30px;
    font-style: italic;
}

#special-prices-month{
    position: fixed;
    left: 20px;
    bottom: 20px;
    width: 250px;
    height: 70px;
    color: white;
    background: linear-gradient(45deg, rgba(4,106,153,1) 0%, rgba(20,0,77,1) 35%, rgba(4,106,153,1) 65%, rgba(20,0,77,1) 100%);
    border-radius: 10px;
    text-align: center;
    box-shadow: 0px 0px 5px 5px white;
    -webkit-box-shadow: 1px 1px 5px 3px white;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    font-size: 18px;
    font-weight: bold;
    transition: all .3s ease;
}

#special-prices-month:hover{
    background: linear-gradient(to right, #ecc440 0%, #fffa8a 25%, #ddac17 50%, #ffff95 75%);
    box-shadow: 0px 0px 5px 5px #121212;
    -webkit-box-shadow: 1px 1px 5px 3px #121212;
    transform: scale(1.1);
    color: #121212;
}

#special-prices-month a{
    color: inherit;
	text-decoration: none;
}

#special-prices-month-button{
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
}

#special-prices-month-button > label{
    margin: 0 auto;
    cursor: pointer;
}

@media only screen and (max-width: 599px){
    #special-prices-month{
        left: 10px;
        bottom: 10px;
        width: 190px;
        height: 50px;
        font-size: 14px;
    }
}