

.image_box_outer {
    position: relative;
  }
  
  .image_box_outer .left_side {
    float: left;
    width: 49%;
  }
  
  .image_box_outer .image {
    position: relative;
    padding: 10px;
    border-radius: 10px;
    border: 1px solid var(--border-color-one);
  }
  
  .image_box_outer .image img {
    border-radius: 10px;
    height: 600px;
    width: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center;
       object-position: center;
  }
  
  .image_box_outer .right_side {
    float: right;
    width: 49%;
  }
  
  .image_box_outer .right_side .image img {
    height: 280px;
  }
  
  .image_box_outer .right_side .image.three {
    margin-top: 15px;
  }
  
  .image_box_outer .right_side .image.three img {
    height: 283px;
  }

  /*-----style---two-----*/
  
.image_box_type_two {
    position: relative;
  }
  
  .image_box_type_two img {
    border-radius: 10px;
    height: 600px;
    width: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center;
       object-position: center;
    -webkit-animation: myAnim 2s ease 0s infinite normal forwards;
            animation: myAnim 2s ease 0s infinite normal forwards;
  }
  
  .image_box_type_two .simpleParallax {
    height: 100%;
    border-radius: 10px;
    overflow: hidden;
  }
  
  .image_box_type_two .left {
    position: relative;
    float: left;
    width: 49%;
  }
  
  .image_box_type_two .right {
    float: right;
    width: 49%;
  }