.why_choose_us {
    background-image: var(--wcu-bg-image);
    background-position: right;
    background-repeat: no-repeat;
    background-size: 70%;
    padding: 80px 0px 80px 0px;
    position: relative;
    z-index: 0;
}

.why_choose_us h2 {
    font-size: 40px;
}

.service_wrapper {
    position: relative;
}
.service_card_bg {
    position: absolute;
    top: 0;
    left: -25px;
    z-index: -1;
}
.service_card {
    position: relative;
    z-index: 1;
}
.service_card .card_wrapper {
    display: flex;
    flex-direction: column;
    gap: 25px;
    align-items: center;
    box-shadow: 0px 0px 29px 0px rgba(12, 12, 12, 0.05);
    padding: 35px;
    height: 100%;
    background-color: var(--white);
    transition: 0.5s all;
    cursor: pointer;
}
.service_card .card_wrapper:hover {
    background: #f2f4e6;
    transition: 0.5s all;
}
.service_card .card_wrapper img {
    width: 70px;
    height: 70px;
    border-radius: 52px;
}
.service_card .card_wrapper p {
    font-family: var(--font-Barlow-Condensed);
    font-size: 22px;
    font-weight: 700;
    line-height: 26.4px;
    text-align: center;
}

.wcu_pre_title {
    font-family: var(--font-Architects-Daughter);
    color: #76A713;
    font-size: 24px;
    line-height: 39px;
    font-weight: 400;
}
.whychooseus_content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    padding-left: 1em;
}
.whychooseus_description p {
    font-family: var(--font-Barlow);
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #666666;
    margin-bottom: 20px;
}


@media (max-width: 1280px) {
    .why_choose_us h2 {
        font-size: 33px;
    }
    .wcu_pre_title {
        font-size: 22px;
    }
    .service_card .card_wrapper p {
        font-size: 20px;
    }    
}
@media (max-width: 992px) {
    .why_choose_us {
        padding: 60px 0 60px 0;
        background-size: 100%;
    }
    .service_wrapper {
        margin-bottom: 50px;
    }
}
@media (max-width: 767px) {
    .why_choose_us h2 {
        font-size: 28px;
    }
    .service_card .card_wrapper {
        padding: 25px;
    }
    .service_card_bg {
        width: 100%;
    }
}