@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
:root{
  

    --color_primario:#1e2c5b;
    --color_segundario:#eba802;
    --color_bases:#f7f6e8;

    --letra_titulos: 'Archivo Black', sans-serif;
    --textos_especiales:  'Courgette', cursive;
    --textos_especiales2:  'Sriracha', cursive;
    --textos_especiales3: 'Tangerine', cursive;
    --texto_otros1: 'Francois One', sans-serif;
    --texto_otros2: 'Lexend Deca', sans-serif;
    
  }


*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body{
    background-image: url(../images/fondo2.png);
  
  background-repeat: no-repeat;
    
}

.cajas{
    height: 650px;
    
     
}

.titulo {
    color: #530039;
    text-align: center;
    font-family: sans-serif;
    font-size: 25px;
    
     
}

.logo{
    width: 300px;
    height: 150px;
   
}

.logo_footer{
    width: 50px;
    height: 50px;
}

.baner_inicial{
  
height: 150px;
 
text-align: center;

z-index: 70;
  

 
}
/*.container__background-triangle{
    max-width: 1200px;
    height: 600px;
    margin: auto;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.triangle{
    width: 300px;
    height: 300px;
    background: red;
    position: absolute;
}

.triangle1{
    width: 250px;
    height: 250px;
    background: linear-gradient(to left, #0ea1e6, #1e67c7);
    right: 100px;
    top: 100px;
    animation: t1 8s ease infinite;
}

.triangle2{
    width: 200px;
    height: 200px;
    background: linear-gradient(to left, #ee8105, #c7371e);
    top: 350px;
    animation: t2 9s ease infinite;
}

.triangle3{
    width: 300px;
    height: 300px;
    background: linear-gradient(to left, #1b8fc5, #df0f8f);
    left: 200px;
    animation: t3 7s ease infinite;
}*/

@keyframes t1 {
    0%{
        transform: rotate(45deg) translateY(0px);
    }
    50%{
        transform: rotate(45deg) translateY(20px);
    }
    100%{
        transform: rotate(45deg) translateY(0px);
    }
}

@keyframes t2 {
    0%{
        transform: rotate(65deg) translateY(0px);
    }
    50%{
        transform: rotate(65deg) translateY(20px);
    }
    100%{
        transform: rotate(65deg) translateY(0px);
    }
}

@keyframes t3 {
    0%{
        transform: rotate(45deg) translateY(0px);
    }
    50%{
        transform: rotate(45deg) translateY(20px);
    }
    100%{
        transform: rotate(45deg) translateY(0px);
    }
}


.container__cards{
    width:100%;
    height: 600px;
    margin: auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 80;
    margin-top: 300px;
    
    
  
       }

.card{
    width: 350px;
    margin: 10px;
    padding: 20px;
    box-shadow: 10px 10px 20px rgba(0,0,0,0.5);
    background: rgba(83, 0, 57, 0.3);
   /* background-color: #fff;*/
    border-left: 1px solid rgba(255, 255, 255, 0.5);
    border-top: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 15px;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    transition: all 300ms;
    text-align: center;
}

.card:hover{
    transform: translateY(-10px);
}

.card:hover .cover__card img{
    transform: scale(1.1);
}

.cover__card{
    width: 100%;
    height: 250px;
    border-radius: 14px;
    overflow: hidden;
}

.cover__card img{
    width: 110%;
    transition: all 300ms;
}

.card h2{
    font-size: 20px;
    font-weight: 400;
    margin-top: 20px;
    color: white;
     font-family: sans-serif;
}

.card p{
    margin-top: 20px;
    font-size: 14px;
    font-weight: 300;
    color: white;
    letter-spacing: 0.5px;
     font-family: sans-serif;
}

.card hr{
    margin-top: 30px;
    border: none;
    height: 0.2px;
    background: #41414138;
}

.footer__card{
    margin-top: 10px;
    display: flex;
    color: #1e2c5b;
    justify-content: space-between;
}

.footer__card h3{
    font-size: 15px;
    font-weight: 500;
}



.boton {
  display: inline-block;
  line-height: 2;
  border: 1px solid #ddd;
  background-color: #530039;
  
  
  padding: 10px 60px 10px 60px;
        font-size: 12px;
        border: none;
        outline: 0px;
        color: white;
        border-radius: 20px;
        cursor: pointer;
        transition: all 300ms ease;
        border: 2px solid white;
}

.boton:hover {
      background: white;
      color: var(--color_primario);
      border-color: var(--color_primario);
  }

@media screen and (max-width:1200px) {
    .container__cards{
        position: absolute;
        top: 0;
        left: 0;
        transform: none;
        margin-top: 300px;
        padding-bottom: 100px;
        z-index: 80;
    }
    .cajas{
    height: 750px;
    
     
}
}