.options {
  width: 100%;
  margin-top: 5vh;
  margin-bottom: 15vh;
}

.options__container {
  position: relative;
  justify-content: flex-start;
  width: 100%;
  height: 400px;
  margin: 5px 0;
}

.options__container__reverse {
  flex-direction: row-reverse;
  justify-content: flex-start;
}

.options__image {
  position: absolute;
  z-index: 1;
  top: 0;
  right: 0;
  width: calc(100% - 400px);
  height: 400px;
  transform-origin: left;
  overflow: hidden;
}

.options__container__reverse .options__image {
  right: unset;
  left: 0;
  transform-origin: right;
}

.options__image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.options__content {
  position: relative;
  z-index: 2;
  width: 300px;
  height: 300px;
  padding: 50px;
}

.options__bg {
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--dark2);
}

.options__border {
  position: absolute;
  z-index: -1;
  top: 50%;
  left: 50%;
  width: 90%;
  height: 90%;
  border: 3px solid #fff;
  transform: translate(-50%,-50%);
}

.options__content img {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.options__content h3 {
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin: 20px 0;
  text-align: center;
}

.options__content p {
  margin: 0;
  text-align: center;
}

.editor-styles-wrapper .options__container.flex {
  justify-content: flex-start;
}

@media only screen and (max-width: 1000px) {
  .options__container, .options__container__reverse {
    flex-direction: column-reverse;
    height: auto;
    margin: 0;
  }

  .options__content {
    width: 100%;
    max-width: 300px;
    height: auto;
  }

  .options__content::before {
    width: 90%;
    height: 90%;
  }

  .options__image {
    position: relative;
    top: 100px;
    left: unset;
    right: unset;
    width: 100%;
    height: auto;
    padding-top: 45%;
  }
}

@media only screen and (max-width: 600px) {
  .options__content {
    width: calc(100% - 60px);
    padding: 50px 30px;
  }
  .options__image {
    top: 40px;
    padding-top: 50%;
  }
  .options__content h3 {
    font-size: 18px;
    margin: 10px 0;
  }
}

.acf-block-preview {
}
