.side-by-side-layout {
  width: 100%;
  padding: 60px 0;
  position: relative;
  background: black;
  z-index: 0;
  /* MOBILE */
}
.side-by-side-layout .side-by-side-layout-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 60px;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 20px;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  position: relative;
  /* VS BACKGROUND BADGE */
}
.side-by-side-layout .side-by-side-layout-wrap .side-by-side-content {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 45%;
          flex: 1 1 45%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
  position: relative;
  z-index: 1;
}
.side-by-side-layout .side-by-side-layout-wrap .side-by-side-content .heading-left--light {
  margin-bottom: 10px;
}
.side-by-side-layout .side-by-side-layout-wrap .side-by-side-content .heading-left--light .small-title {
  display: block;
  font-size: 14px;
  letter-spacing: 1px;
  margin-bottom: 6px;
}
.side-by-side-layout .side-by-side-layout-wrap .side-by-side-content .heading-left--light .big-title {
  margin: 0;
}
.side-by-side-layout .side-by-side-layout-wrap .side-by-side-content .left-content,
.side-by-side-layout .side-by-side-layout-wrap .side-by-side-content .right-content {
  font-size: 16px;
  line-height: 1.6;
}
.side-by-side-layout .side-by-side-layout-wrap .side-by-side-content a.button-solid-green {
  margin-top: 10px;
  -ms-flex-item-align: start;
      align-self: flex-start;
}
.side-by-side-layout .side-by-side-layout-wrap .vs-block {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 0;
  opacity: 0.4;
  pointer-events: none;
}
.side-by-side-layout .side-by-side-layout-wrap .vs-block .vs-image {
  width: max(260px, 20vw);
  height: auto;
  -webkit-animation: vs-spin 25s linear infinite;
          animation: vs-spin 25s linear infinite;
  -webkit-transform-origin: center;
          transform-origin: center;
  opacity: inherit;
  display: block;
}
.side-by-side-layout .section-button {
  display: inline-block;
  margin: 40px auto 0;
  text-align: center;
  position: relative;
  z-index: 1;
}
@media (max-width: 900px) {
  .side-by-side-layout .side-by-side-layout-wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 30px;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
  }
  .side-by-side-layout .left-content-wrap {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  .side-by-side-layout .vs-block {
    position: static;
    -webkit-transform: none;
            transform: none;
    z-index: 1;
    opacity: 1;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    margin: 0 auto;
    pointer-events: auto;
  }
  .side-by-side-layout .vs-block .vs-image {
    width: 50px;
    height: 50px;
    -webkit-animation-duration: 20s;
            animation-duration: 20s;
  }
  .side-by-side-layout .right-content-wrap {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }
  .side-by-side-layout .side-by-side-content {
    width: 100%;
  }
}

/* SPIN ANIMATION */
@-webkit-keyframes vs-spin {
  from {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
@keyframes vs-spin {
  from {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}