  .simple-card-section {
    color: #fff;
    /* padding-bottom: 100px; */
    border-radius: 20px;
    background: url('/assets/images/homepage/why-choose-us-background.png');
    background-repeat: no-repeat;
        background-size: cover;
    background-position: top center;
}
.simple-card-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    flex-wrap: wrap;
    position: relative;
}

.simple-card-content {
    flex: 1;
    min-width: 320px;
}

.simple-card-content h2 {
    margin-bottom: 20px;
    max-width: 1040px;
    width: 100%;
    position: relative;
    z-index: 1;
}

.simple-card-content .body-medium {
    max-width: 700px;
    margin-bottom: 30px;
    color: var(--gayser);
}

.simple-card-content .headline-5 {
    margin-bottom: 18px;
}


.simple-card-image {
    width: 40%;
    max-width: 860px;
    height: auto;
    position: absolute;
    display: block;
    width: 40vw;
    right: 0;
    top: 100px;
}
.simple-card-image:lang(ar){
  right: unset;
  left: 0;
}
.simple-card-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Logo Row */
.card-logos {
    display: flex;
    align-items: center;
    gap: 40px;
    justify-content: flex-start;
    border-top: 1px solid #d5e1e723;
    border-bottom: 1px solid #d5e1e723;
      
}

.card-logos svg {
    width: 100px;
}
.card-logos.container{
    padding-top: 24px;   
    padding-bottom: 24px;
}
/* Responsive */
@media (max-width: 1440px) {
    .card-logos{
        margin-bottom: 0;
    }
    .simple-card-section{
        padding-bottom: 72px;
    }
}
@media (max-width: 900px) {
    
    
    .simple-card-container {
        flex-direction: column;
        text-align: left;
    }
    
    .simple-card-image img {
        max-width: 100%;
    }
    .simple-card-content:lang(ar){
        display: flex;
        flex-direction: column;
        align-items: start;
        text-align: right;
    }
}
@media (max-width: 768px) {

    .simple-card-container{
        flex-direction: column-reverse;
    }
    .simple-card-image{
        width: 100%;
        position: relative;
        top: 0;
        height: 200px;
    }
    .simple-card-image img{
        width: 375px;
        position: absolute;
        right: -64px;
    }
    .simple-card-image img:lang(ar){
        right: unset;
        left: -64px;
    }
    .card-logos.container{
        padding-top: 0;
        padding-bottom: 0;
    }
}
