/* ORNAMENT */
.ornament-main-top-left-orange {
  width: 40px;
  background-color: var(--bg-orange-color);
  position: absolute !important;
  border-bottom-right-radius: 100px;
  z-index: 2;
}

.ornament-main-top-left-green {
  width: 40px;
  background-color: var(--bg-green-color);
  position: absolute !important;
  border-bottom-right-radius: 100px;
  left: 40px;
  z-index: 2;
}

.ornament-top-right-green {
  width: 40px;
  background-color: var(--bg-green-color);
  position: absolute !important;
  border-bottom-left-radius: 100px;
  right: 0px;
}

.ornament-bottom-left-orange {
  width: 40px;
  background-color: var(--bg-orange-color);
  position: absolute !important;
  border-top-right-radius: 100px;
  left: 0px;
  display: flex;
  bottom: 0;
}

.ornament-bottom-right-orange {
  width: 40px;
  background-color: var(--bg-orange-color);
  position: absolute !important;
  border-top-left-radius: 100px;
  right: 0px;
  display: flex;
  bottom: 0;
}

.ornament-top-left-green {
  width: 40px;
  background-color: var(--bg-green-color);
  position: absolute !important;
  border-bottom-right-radius: 100px;
  left: 0px;
  display: flex;
  top: 0;
}


/* !================================================ M O B I L E ================================================ */
/* !============================================================================================================= */

@media only screen and (max-width: 991px) {

  /* ORNAMENT */
  .ornament-main-top-left-orange {
    width: 15px;
    background-color: var(--bg-orange-color);
    position: absolute !important;
    border-bottom-right-radius: 100px;
    z-index: 2;
  }

  .ornament-main-top-left-green {
    width: 15px;
    background-color: var(--bg-green-color);
    position: absolute !important;
    border-bottom-right-radius: 100px;
    left: 15px;
    z-index: 2;
  }

  .ornament-top-right-green {
    width: 15px;
    background-color: var(--bg-green-color);
    position: absolute !important;
    border-bottom-left-radius: 100px;
    right: 0px;
  }

  .ornament-bottom-left-orange {
    width: 15px;
    background-color: var(--bg-orange-color);
    position: absolute !important;
    border-top-right-radius: 100px;
    left: 0px;
    display: flex;
    bottom: 0;
  }

  .ornament-bottom-right-orange {
    width: 15px;
    background-color: var(--bg-orange-color);
    position: absolute !important;
    border-top-left-radius: 100px;
    right: 0px;
    display: flex;
    bottom: 0;
  }

  .ornament-top-left-green {
    width: 15px;
    background-color: var(--bg-green-color);
    position: absolute !important;
    border-bottom-right-radius: 100px;
    left: 0px;
    display: flex;
    top: 0;
  }
}