body{
    padding: 0px;
    margin: 0px;
    box-sizing: border-box;
    
    direction: rtl;
}

.con{
    margin: auto;
    display: flex;
    align-content: center;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.card{
    margin-top: 100px;
    padding: 20px 10px;
    max-width: 900px;
    height: auto;
    min-height: 400px;
    position: relative;
    display: flex;
    justify-content: center;
    align-content: center;
    align-items: center;
    flex-wrap: wrap;
    
}
.card .header{
    width: 40%;
    height: 400px;
    padding: 30px;
    box-sizing: border-box;
    
}
.card .content{
    padding-top: 30px;
    color: #000;
    width: 60%;
    min-height: 350px;
    
}

.card .header img{
    background-color: #fff;

    width: 100%;
    height: 100%;
    border-radius: 20px;
}

.con-background-card{
    width: 100%;
    position: absolute;
    top: 0px;
    left: 0px;
    height: 100%;
}
.con-background-card .background-card{
    width: 80%;
    position: absolute;
    top: 0px;
    left: 0px;
    height: 100%;
    z-index: -1;
    border-radius: 30px;
    cursor: pointer;
    box-shadow: 0 0 20px 4px #d0d0d0;
    background: #fff;
}
.card .content p{
    text-align: justify;
    font-size: 18px;
    font-weight: 600;
}
.card .content h3{
    font-size: 30px;
    font-weight: 900;
}
.card .content a{
    position: relative;
}
.card .content button{
    border: solid 0px;
    max-width: 400px;
    min-width: 200px;
    height: 50px;
    border-radius: 30px;
    font-size: 22px;
}
.card:nth-child(even) .content{
    padding-right: 20px;
    box-sizing: border-box;
}
@media screen and (min-width: 700px){
    .card .content{
        padding-left: 30px;
        box-sizing: border-box;
    }
    .card:nth-child(even){
        flex-direction: row-reverse;
    }
    .card:nth-child(even) .con-background-card .background-card{
        right: 0px;
    }
    .card:nth-child(even){
    padding: 0px;
    }
}
@media screen and (max-width: 700px) {
    .con-background-card .background-card{
        height: 75%;
        width: 100%;
    }
    .con-background-card{
        margin-top: 55%;
    }
    .card{
        margin-right: 10px;
        width: 92%;
        min-height: 600px;

    }
    .card .content{
        padding: 0px;
        width: 100%;
        padding-bottom: 10px;
        box-sizing: content-box;
        text-align: center;

    }
    .card .header{
        padding-bottom: 0px;
        padding-top: 60px;
        width: 100%;
    }
}