.cp{
    cursor: pointer;
}
.no-rounded-border{
    border-radius: 0 !important;
}
:root{
    --mateflix: #2d73b5;
    --mateflix2: rgba(24,166,185,1);
    --mateflix3: #0bb698;
    --facebook: #3b5998;
    --whatsapp: #59ce72;
}
.bg-mateflix{
    background-color: var(--mateflix);
}
.bg-mateflix2{
    background-color: var(--mateflix2);
}
.bg-mateflix3{
    background-color: var(--mateflix3);
}
.list-style-none{
    list-style: none;
}
.bg-dark2{
    background: #3f3e40;
}
.btn-contacto{
    position: fixed;
    right: 15px;
    bottom: 15px;
    background: #25D366;
    border-radius: 50%;
    width: 65px;
    height: 65px;
    border: solid 1px white;
    font-size: 40px;
    line-height: 1.5;
    z-index: 10;
}
#sistemas [sistema]{
    width: 100%;
    aspect-ratio: 1;
    position: relative;
    cursor: pointer; 
    margin-bottom: 2rem;
    overflow: hidden;
}
#sistemas [sistema] .filtro{
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: rgba(100,161,182, 0.6);
    top: 0;
}
#sistemas [sistema] .icono{
    width: 25%;
    height: 25%;
    z-index: 2;
    margin-bottom: 1rem;
}
#sistemas [sistema] h4{
    z-index: 2;
}
#sistemas .proximamente{
    position: absolute;
    bottom: -65px;
    right: -85px;
    width: 200px;
    height: 150px;
    color: white;
    text-align: center;
    text-transform: capitalize;
    background: rgba(10,10,10,.8);
    transform: rotate(-45deg);
}
.btn-mas-info{
    position: absolute;
    font-weight: bold;
    bottom: 0;
    z-index: 2;
    width: 100%;
    font-size: 16px;
    padding-top: 10px;
    padding-bottom: 10px;
    background: rgba(40,40,140,.8);
    cursor: pointer;
}
#portada{
    position: relative;
    /*
        background-color: #FD940A;
        background-image: radial-gradient(circle, #F9A72B 0%, #FA9026 70%, #FB6C1F 100%);
        
        background-color: #1a73e8db;
        background-image: radial-gradient(circle, rgb(0 123 255 / 25%) 0%, rgb(0 123 255 / 50%) 70%, #0062cc 100%);
    */
    /*
    background: linear-gradient(315deg, rgba(101,0,94,1) 3%, rgba(60,132,206,1) 38%, rgba(48,238,226,1) 68%, rgba(255,25,25,1) 98%);
    animation: gradient 15s ease infinite;
    background-size: 400% 400%;
    background-attachment: fixed;*/
    background: var(--mateflix);  
    background: -webkit-linear-gradient(to left, #8f94fb, #4e54c8);  
}


/*ANIMACION portada*/
#portada .area{
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
}

.circles{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.circles li{
    position: absolute;
    display: block;
    list-style: none;
    width: 20px;
    height: 20px;
    background: rgba(255, 255, 255, 0.2);
    animation: animate 25s linear infinite;
    bottom: -150px;
    
}

.circles li:nth-child(1){
    left: 25%;
    width: 80px;
    height: 80px;
    animation-delay: 0s;
}


.circles li:nth-child(2){
    left: 10%;
    width: 20px;
    height: 20px;
    animation-delay: 2s;
    animation-duration: 12s;
}

.circles li:nth-child(3){
    left: 70%;
    width: 20px;
    height: 20px;
    animation-delay: 4s;
}

.circles li:nth-child(4){
    left: 40%;
    width: 60px;
    height: 60px;
    animation-delay: 0s;
    animation-duration: 18s;
}

.circles li:nth-child(5){
    left: 65%;
    width: 20px;
    height: 20px;
    animation-delay: 0s;
}

.circles li:nth-child(6){
    left: 75%;
    width: 110px;
    height: 110px;
    animation-delay: 3s;
}

.circles li:nth-child(7){
    left: 35%;
    width: 150px;
    height: 150px;
    animation-delay: 7s;
}

.circles li:nth-child(8){
    left: 50%;
    width: 25px;
    height: 25px;
    animation-delay: 15s;
    animation-duration: 45s;
}

.circles li:nth-child(9){
    left: 20%;
    width: 15px;
    height: 15px;
    animation-delay: 2s;
    animation-duration: 35s;
}

.circles li:nth-child(10){
    left: 85%;
    width: 150px;
    height: 150px;
    animation-delay: 0s;
    animation-duration: 11s;
}



@keyframes animate {

    0%{
        transform: translateY(0) rotate(0deg);
        opacity: 1;
        border-radius: 0;
    }

    100%{
        transform: translateY(-1000px) rotate(720deg);
        opacity: 0;
        border-radius: 50%;
    }

}

.body-swipper{
    position: relative;
    height: 100%;
}

.swiper {
    width: 100%;
    aspect-ratio: 16/9;
    padding-top: 20px;
    padding-bottom: 20px;
}

.swiper-slide {
    background-position: center;
    background-size: cover;
    width: 100%;
}

.swiper-slide img {
    display: block;
    width: 100%;
    aspect-ratio: 16/9;
    max-width: 100%;
    max-height: 100%;
    object-fit: cover;
}
.swiper-button-next, .swiper-button-prev{
    text-shadow: 0 0 2px white;
}