.our_objectives_section {
    padding: 120px 0 0px;
    text-align: center;
}

.our_objectives_section .section_title {
    margin-bottom: 26px;
}

.objectives_cards {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.objective_card {
    color: #000;
    font-size: 23px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    width: 375px;
    height: 200px;
    padding: 20px;
    display: flex;
    justify-content: start;
    align-items: center;
    text-align: start;
    /* transition: all 0.3s ease; */
}

.objective_card p {
    margin: 0;
}

.objective_card .card_bg_image {
    position: absolute;
    bottom: -9px;
    right: 0;
    transition: bottom 0.5s ease-in-out;
}
.objective_card:hover .card_bg_image {
    bottom: 0;
}
.objective_card:nth-child(odd) {
    background: linear-gradient(316deg, #E1E6FF 1.47%, #FEF4FF 84.25%), #F5F5F5;
}

.objective_card:nth-child(even) {
    background: linear-gradient(129deg, #EBF6FF 55.94%, #85B7FF 132.42%), #F5F5F5;
}
@media (max-width: 1199.98px) { 
    .our_objectives_section{
        padding: 80px 0 0;
    }
     .objective_card p{
        font-size: 22px;
    }
}
@media (max-width: 991.98px) {
    .objective_card {
        width: 48%;
    }
    .objective_card p{
        font-size: 20px;
    }
}

@media (max-width: 767.98px) {
     .our_objectives_section{
        padding: 60px 0 0;
    }
    .objective_card {
        width: 100%;
    }
}