.card_section{
    
    margin: auto;
    margin-top: 50px;
    width: 80%;
    /* background-color: aqua; */
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-gap: 25px;
    
    
}

.card{
    height: 540px;
}

.card_top{
    display: flex;
    justify-content: center;
    border-radius: 10px 10px 0 0;
    overflow: hidden;
    padding: 20px;
    position: relative;
    width: 100%;
    height: 100px;
    background-color: #102B4E;
    color: #fff;
    text-align: center;
    font-size: 12px;
    display: flex;
    align-items: center;
    
}
/* .top_red{
    position: absolute;
    left: 0;
    width: 15px;
    height: 100%;
    background-color: #A71C20;
} */
.card_top h1{
    text-align: center;
    font-weight: 200;
}

.card_top h1::before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 20px;
    height: 100px;
    background-color: #A71C20;
}

.card_bottom{
    
    height: 440px;
    background-color: #fff;
    padding: 20px 30px 20px 30px;
    border: 1px solid rgb(22, 22, 22);
    border-radius: 0 0 10px 10px;
}

.card_bottom p{
    font-size: 14px;
    line-height: 25px;
    /* font-weight: 400; */
}

/* MOBILE */

@media only screen and (max-width: 1260px){
    .card_section{
        width: 90%;
    }
}

@media only screen and (max-width: 1120px){
    .card_section{
        grid-template-columns: 1fr 1fr;
        /* width: 80%; */
        justify-items: center;
    }

    .card{
        width: 400px;
    }
}
@media only screen and (max-width: 900px){
    .card_section{
        width: 900px;
    }
}


@media only screen and (max-width: 880px){
    .card_section{
        display: flex;
        flex-direction: column;
        /* justify-items: center; */
        align-items: center;
        width: auto;
        
    }
    .card{
        margin-bottom: 15px;
        width: 300px;
        height: auto;
    }
    .card_bottom{
        height: auto;
    }

}

