
*{
    --color_primario:#1e2c5b;
    --color_segundario:#eba802;
    --color_bases:#f7f6e8;
}
.sec_card{
    background-color: #f8e8aa;
    height: auto;
    display: grid;
    
    grid-template-columns: repeat(3, 1fr);
    padding top: 1%;
    justify-content: center;
    align-items: center;
    
}


.card {
    position: relative;
   
    height: auto;
    border-radius: 10px;
    box-shadow: 0px 0px 0px rgba(73, 69, 52, 0.4);
    margin: 40px;
}

.card .content {
    position: relative;
    z-index: 90;
    width: 100%;
    height: 100%;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    overflow: hidden;  
    text-align: left;  
    padding: 20px;
    background: #f7f6e8;
}

.card .content .img {
    height: 50%;
    margin-bottom: 20px;
}

.card .content .img img {
    position: relative;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.8);
}

.card .content span {
    position: absolute;
    width: 400px;
    height: 150px;
    background: linear-gradient(to right, #1e2c5b, #1e2c5b);
    transform: rotate(-35deg);
    top: -50px;
    left: -100px;
}

.card .content h4 {
    font-size: 25px;
    color: var(--color_primario);
    margin-bottom: 5px;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;

}

.card .content h6 {
    font-size: 13px;
    color: #5e2066;
}

.card .content p {
    font-size: 15px;
    color:var(--color_primario);
    margin-top: 10px;
    font-family:   'Lexend Deca', sans-serif;

}

.card .links {
    position: absolute;
    z-index: 70;
    width: 50px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    background: rgba(255, 255, 255, 0.5);
    box-shadow: 2px 3px 5px rgba(73, 69, 52, 0.4);
    padding: 20px;
    align-items: center;
    right: 10px;
    top: 15px;
    transition: .5s;
}

.card:hover .links {
    right: -50px;
    border-radius: 0 10px 10px 0;
}


.card .links a {
    font-size: 20px;
    color: #646069;
}

.card .links a:nth-child(1):hover {
    color: #0158ca;
}

.card .links a:nth-child(2):hover {
    color: #1C93E4;
}

.card .links a:nth-child(3):hover {
    color: #5D277D;
}

.card .links a:nth-child(4):hover {
    color: #FE0000;
}

.btns_cards {
    display: inline-block;
  line-height: 2;
  border: 1px solid #ddd;
  background-color: #eba802;
  width: 150px;
  text-align: center;
 padding: 2px 30px 2px 30px;
    
        font-size: 12px;
        border: none;
        outline: 0px;
       
        color: white;
        border-radius: 20px;
        cursor: pointer;
        transition: all 300ms ease;
        border: 2px solid white;
}

.btns_cards:hover {
    background-color: #f8e8aa;
    border-color: white;
    color: var(--color_primario);
}

@media (max-width: 800px){
    .sec_card{
        background-color:#f8e8aa;
        height: auto;
        display: grid;
        
        grid-template-columns: repeat(1, 1fr);
        padding-top: 2%;
        justify-content: center;
        align-items: center;
        
    }
}