.mod-carousel {
  .module-heading {
    text-align: center;
  }

  .section-intro {
    p:last-of-type {
      margin-bottom: 0;
    }
  }

  .basic-carousel {
    padding: 20px 0;
  }
}

.basic-carousel {
  position: relative;
  padding: 100px 0;

  /* Tablet Styles */
  @media (width >= 768px) {
    padding: 100px 0;
  }

  /* Full Screen Styles */
  @media (width >= 1280px) {
    max-width: 1150px;
    margin: 0 auto;
  }

  .owl-stage-outer {
    z-index: 1;
    background-color: rgb(from var(--dark-color) r g b / 0.1)
  }

  .owl-stage {
    display: flex;
    align-items: center;

    &:after {
      content: '';
    }
  }

  img {
    margin-bottom: 0;
  }

  .owl-nav {
    font-size: 40px;
    line-height: 1em;
    position: absolute;

    padding: 0 20px;
    left: 0;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    color: var(--light-color);
    z-index: 2;

    /* Tablet Styles */
    @media (width >= 768px) {
      font-size: 90px;
    }

    >div {
      background-color: var(--primary-color);
      padding: 10px;
      position: absolute;
      top: 50%;
      border-radius: 8px;
      transform: translateY(-50%);

      /* Full Screen Styles */
      @media (width >= 1280px) {
        padding: 20px;
      }

      &.owl-prev {
        left: 20px;
      }

      &.owl-next {
        right: 20px;
      }

      .carousel-arrow {
        display: flex;
        align-items: center;
        justify-content: center;
      }
    }
  }

  .carousel-description {
    text-align: center;
  }
}