.hd-switchback-image {
  position: relative;
  overflow-x: hidden;
}

.hd-switchback-image .content-column {
  position: relative;
}

.hd-switchback-image .content-column .content-wrapper {
  position: relative;
  z-index: 3;
  padding: 0;
}

.hd-switchback-image .content-column {
  padding-top: 50px;
  padding-bottom: 50px;
}

@media (min-width: 768px) {
  .hd-switchback-image .content-column{
    padding-top: 150px;
    padding-bottom: 150px;
  }
}

.hd-switchback-image .skew-column {
  display: none;
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
}

.hd-switchback-image .label {
  display: inline-block;
  margin-bottom: 30px;
}

.hd-switchback-image .label-separator {
  margin: 0 14px;
}

.hd-switchback-image .button-wrapper {
  margin-top: 25px;
}

@media (max-width: 767px) {
  .hd-switchback-image .image-column {
    padding: 0;
  }
  
  .hd-switchback-image .image-column img {
    max-width: 100vw;
    height: auto;
    margin: 0px calc(calc(100vw - 100%) * -1);
  }
}

@media (min-width: 768px) {
  .hd-switchback-image .skew-column {
    display: block;
  }
  .hd-switchback-image .image-column {
    position: absolute;
    top: 0;
    /*   right: 0; */
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
  }

  .hd-switchback-image .image-column img {
    object-fit: cover;
    object-position: 74% 19%;
    top: -30px;
    left: -30px;
    width: calc(100% + 60px);
    height: calc(100% + 60px);
    /* z-index: -4; */
    position: absolute;
    transition: transform 5s cubic-bezier(0.22, 0.63, 0.6, 0.88) 0s;
  } 
}