.wrapper.main-page-we-care{
    margin-bottom: 25px;
    display: flex;
    padding-left: 0;
    padding-right: 0;
    max-width: 1230px;
}
.wrapper.we-care-separator{
    height: 1px;
    background: #DDDDDD;
    padding-left: 0;
    padding-right: 0;
    margin-bottom: 40px;
    border: none;
    max-width: 1230px;
}
.we-care-text {
    width: 21%;
}

.we-care-text h2 {
    color: #183B7E;
    font-size: 30px;
    font-family: 'cronospro-bold';
    margin-bottom: 20px;
    margin-top: 0;
}

.we-care-text p {
    color: #797979;
    font-size: 15px;
    margin-bottom: 20px;
}
.more-we-care.desktop,
.more-we-care.mobile {
    display: flex;
    background-color: #183B7E;
    color: #F4F4F4;
    font-family: brandontext-med;
    width: 170px;
    font-size: 16px;
    padding-top: 10px;
    padding-bottom: 10px;
    justify-content: center;
    align-items: center;
    border-radius: 5px;
    border: 1px solid #EEEEEE;
}
.more-we-care.desktop:hover,
.more-we-care.mobile:hover{
    background-color: #2F4E8B;
}
.more-we-care.mobile {
    display: none;
    width: 100%;
    margin-top: 20px;
}
.we-care-items {
    width: 79%;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: center;
    margin-left: 40px;
}
.we-care-item{
    width: 49%;
    height: 200px;
    background-size: cover;
    background-repeat: no-repeat;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    border-radius: 5px;
    margin-bottom: 20px;
}
.we-care-item p{
    font-family: 'cronospro-semibold';
    font-size: 26px;
    color: #ffffff;
}

@media screen and (max-width: 1280px) {
    .wrapper.main-page-we-care {
        margin-left: 10px;
        margin-right: 10px;
    }
}
@media screen and (max-width: 900px) {
    .we-care-text{
        width: 40%;
    }
    .we-care-items{
        width: 60%;
    }
}
@media screen and (max-width: 640px) {
    .wrapper.main-page-we-care {
        margin-left: 15px;
        margin-right: 15px;
        display: block;
    }
    .we-care-text{
        width: 100%;
        margin-bottom: 20px;
    }
    .we-care-items{
        width: 100%;
        margin-left: 0px;
        flex-direction: column;
    }
    .we-care-item{
        margin-bottom: 10px;
        width: 100%;
        height: 215px;
        background-position: center;
    }
    .more-we-care.desktop{
        display: none;
    }
    .more-we-care.mobile{
        display: flex;
    }
    .we-care-text h2 {
        font-size: 26px;
    }
    .we-care-item p{
        font-size: 22px;
    }
    .wrapper.we-care-separator{
        display: none;
    }
}