.our_core_values_section {
    padding: 120px 0;
}

.our_core_values_section .section_title {
    margin-bottom: 16px;
}

.our_core_values_section .section_description {
    margin-bottom: 40px;
    padding: 0;
}
.our_core_values_section .section_description a{
    background: linear-gradient(90deg, #544FF8 0%, #2EB6AE 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 500;
    text-decoration: underline;
}

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

.core_value_card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    width: 491px;
    height: 271px;
    padding: 74px 30px;
    border-radius: 12px;
    background: linear-gradient(129deg, #EBF6FF 40.65%, #85B7FF 101.31%);
}

.core_value_card:last-child {
    background: linear-gradient(316deg, #D1D8FC 1.47%, #FEF4FF 84.25%);
}

 .core_value_card .card_bg_image {
    position: absolute;
    bottom: 0px;
    right: 0px;
    z-index: 0;
}

.core_value_card:hover .card_bg_image {
    bottom: 0;
} 

.core_value_card h3 {
    color: #1A1A1A;
    font-size: 28px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    width: 302px;
    height: 84px;
    text-align: left;
}

/* Breakpoints */
@media (max-width: 1199.98px) {
   
    .core_value_card h3{
        font-size: 26px;

    }
    .core_value_card {
        height: 240px;
        padding: 45px 30px;
    }
    .core_value_card .card_bg_image {
        height: 135px;
    }
    .our_core_values_section {
        padding: 80px 0;
    }
    
 }

 @media (max-width: 767.98px) { 
     .core_values_cards {
    flex-wrap: wrap;
    }
    .our_core_values_section {
    padding: 60px 0;
    }
    .core_value_card h3{
        font-size: 24px;
    }
    .our_core_values_section .section_description {
        padding: 0 12px;
    }
    .core_value_card h3 {
        width: 250px;
    }
 }