
.class_content {
    margin-top: 103px;
    display: flex;
    flex-direction: column;
    gap: 10px;

    margin-bottom: 100px;
}

.class_content__left-image{
    display: flex;
    width: 100%;
    flex: auto;
    gap: 10px;
    justify-content: left;
    margin-bottom: 20px;
}

.class_content__right-image {
    display: flex;
    width: 100%;
    flex: auto;
    gap: 10px;
    justify-content: right;
    margin-bottom: 20px;
}

.class_content__left-image .class_content__picture1{
    order: 0;
}

.class_content__left-image .class_content__content{
    order: 1;
}

.class_content__right-image .class_content__content{
    order: 0;
}

.class_content__right-image .class_content__picture2{
    order: 1;
}


.class_content__picture1 {
    background-image: url('https://sunride.ae/wp-content/themes/sunridetheme/assets/images/content1.jpg');
    background-position: center;
    background-size: cover;
    width: 30%;
    border-radius: 20px;
}

.class_content__picture2 {
    background-image: url('https://sunride.ae/wp-content/themes/sunridetheme/assets/images/content2.jpg');
    background-position: center;
    background-size: cover;
    width: 30%;
    border-radius: 20px;
}

.class_content__picture3 {
    background-image: url('https://sunride.ae/wp-content/themes/sunridetheme/assets/images/content3.jpg');
    background-position: center;
    background-size: cover;
    width: 30%;
    border-radius: 20px;

    height: 400px;
    width: 100%;
}

.class_content__content {
    color: var(--Text-Two, #4C4C4C);
    font-family: Euclid Circular B;
    font-display: fallback;
    font-size: 18px;
    font-style: normal;
    font-weight: 300;
    line-height: 116%; /* 20.88px */

    text-align: justify;

    width: 70%;
}

.class_content__alone {
    color: var(--Text-Two, #4C4C4C);
    font-family: Euclid Circular B;
    font-display: fallback;
    font-size: 18px;
    font-style: normal;
    font-weight: 300;
    line-height: 116%; /* 20.88px */

    text-align: justify;

    width: 100%;
}

.class_content__text {
    color: var(--Text-Two, #4C4C4C);
    font-family: Euclid Circular B;
    font-display: fallback;
    font-size: 18px;
    font-style: normal;
    font-weight: 300;
    line-height: 116%; /* 20.88px */
}

.wrappers {
    display: flex;
    width: 100%;
    flex: auto;
  }
  
  .paragraph {
    background-color: #3498db;
    color: white;
    font-style: italic;
    font-weight: bold;
    width: 50%;
  }
  
  .image-div {
    background-image: url('https://sunride.ae/wp-content/themes/sunridetheme/assets/images/content1.jpg');
    background-position: center;
    background-size: cover;
    width: 50%;
  }


@media (max-width:800px) {
    .class_content__left-image {
        flex-direction: column;
    }
    .class_content__right-image {
        flex-direction: column;
    }

    .class_content__picture1 {
        width: 100%;
        height: 250px;
    }

    .class_content__picture2 {
        width: 100%;
        height: 250px;
    }

    .class_content__picture3 {
        width: 100%;
        height: 250px;
    }

    .class_content__content {
        width: 100%;
    }

    .class_content__right-image .class_content__content{
        order: 1;
    }
    
    .class_content__right-image .class_content__picture2{
        order: 0;
    }

    .class_content {
        margin-top: 0;
    }
}