.outboundFunctions__title{
    width: 100%;
    margin: 5rem auto 0 auto;
    text-align: center;
    font-weight: 700;
    font-size: var(--fs-large);
}
.outboundFunctionsContainer{
    width: 90%;
    max-width: var(--max-sm-width);
    margin:3rem auto 5rem auto;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}
.outboundFunctions__card{
    width: 100%;
    display: flex;
    flex-direction: column;
    padding: 2rem;
    border-radius: 1rem;
    background-color: var(--light-gray);
    transition: transform 0.2s cubic-bezier(0.33, 1, 0.68, 1), box-shadow 0.2s cubic-bezier(0.33, 1, 0.68, 1);
}
.outboundFunctions__card:hover{
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 42, 121, 0.12);
}
.outboundFunctions__card:nth-child(odd){
    background-color: var(--water);
}
.outboundFunctions__card:nth-child(odd) svg path{
    fill: var(--light-blue);
}
.outboundFunctions__card svg,
.outboundFunctions__card img{
    width: 4rem;
    height: 4rem;
    align-self: center;
}
.outboundFunctions__card .outboundFunctionsCard_iconXL{
    width: 6rem;
    height: 6rem;
    align-self: center;
}
.outboundFunctions__card h4{
    font-weight: 600;
    align-self: center;
    margin-top:1rem;
}
@media (min-width: 768px){

    .outboundFunctions__card{
        width: 45%;
        display: flex;
        flex-direction: column;
        padding: 2rem;
    }
    .outboundFunctions__card:nth-child(1),
    .outboundFunctions__card:nth-child(4),
    .outboundFunctions__card:nth-child(5){
        background-color: var(--water);
    }
    .outboundFunctions__card:nth-child(1) svg path,
    .outboundFunctions__card:nth-child(4) svg path,
    .outboundFunctions__card:nth-child(5) svg path{
        fill: var(--light-blue);
    }
    .outboundFunctions__card:nth-child(2),
    .outboundFunctions__card:nth-child(3),
    .outboundFunctions__card:nth-child(6){
        background-color: var(--light-gray);
    }
    .outboundFunctions__card:nth-child(2) svg path,
    .outboundFunctions__card:nth-child(3) svg path,
    .outboundFunctions__card:nth-child(6) svg path{
        fill: black;
    }

}