.parallax__container {
    display: block;
    width: 100%;
    height: 700px;
    margin: 0px auto;
    overflow: hidden;
    position: relative;
    z-index: 0;
  }
  .row {
    position: absolute;
    width: 100%;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
  }
  .col1 {
    width: 33%;
    height: auto;
  }
  .col2 {
    width: 33%;
    height: auto;
    margin-left: calc(33% + 10px);
  }
  .col3 {
    width: 33%;
    height: auto;
    margin-left: calc(66% + 20px);
  }
  .gallery {
    position: relative;
    z-index: 4;
  }
  .gallery .gallery_item {
    padding-bottom: 10px;
    text-align: left;
  }
  .gallery .gallery_item img {
    width: 100%;
    height: auto;
  }

  /*********************Horizontal Parallax********************/

  .El {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
}
.El__wrapper {
    display: flex;
    width: 400vw;
    height: 100vh;
}
.El__slide {
    display: flex;
    align-items: center;
    width: 100vw;
}

.El__content {
    width: 100%;
}
.El__title, .El__subtitle {
    position: relative;
}

  