.bg-attachment_one{
    background-image: url(../image/banner02.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    background-attachment: fixed;
    position: relative;
}
.bg-attachment_one:before{
    position: absolute;
    content: "";
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: #000;
    opacity: .6;
    z-index: 1;
}
.bg-attachment_one > *{
    z-index: 2;
    position: relative;
}
.carousel-container {
        position: relative;
        display: block;
        width: 100%;
        box-sizing: border-box;
      }

      .carousel__prev,
      .carousel__next {
        position: absolute !important;
        /* bottom: -15%; */
        transition: transform 0.25s ease;
        z-index: 2;
      }
      .item__3d-frame__box a{
        display: block;
        height: 100%;
        width: 100%;
      }
      .carousel__prev i,
      .carousel__next i {
        font-size: 24px;
        cursor: pointer;
        color: var(--box-border);
        cursor: pointer;
        width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #fff;
      }
      .carousel__next i:hover{
        background-color: yellow;
      }

      .carousel__prev {
    left: 10px;
    bottom: inherit;
    top: 50%;
    transform: translateY(-50%);
}

      .carousel__next {
        right: 10px;
        bottom: inherit;
    top: 50%;
    transform: translateY(-50%);
      }

      .carousel__body {
        width: 100%;
        padding: 20px 0 50px 0;
        overflow: hidden;
      }
        .carousel__body img{
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
      .carousel__slider {
        position: relative;
        transition: transform 1s ease-in-out;
        background: var(--crsl-bg);
      }

      .carousel__slider__item {
        position: relative;
        display: block;
        float: left;
        box-sizing: border-box;
        margin-left: 20px;
        margin-right: 20px;
      }

      .item__3d-frame {
        position: relative;
        width: 100%;
        height: 100%;
        transition: transform 1s ease-in-out;
        -webkit-transform-style: preserve-3d;
        transform-style: preserve-3d;
      }

      .item__3d-frame::after {
        content: "";
        position: absolute;
        bottom: -15%;
        width: 100%;
        height: 40px;
        background: var(--box-shadow);
        box-shadow: 0px 0px 5px 5px var(--box-shadow);
        transform: rotateX(90deg) translate3d(0px, -20px, 0px);
        opacity: 0.85;
      }

      .item__3d-frame__box {
        display: flex;
        align-items: center;
        text-align: center;
        position: absolute;
        width: 100%;
        height: 100%;
        box-sizing: border-box;
        /* border-color: var(--box-border); */
        background: var(--box-bg);
        /* border-width: 3px; */
        /* border-style: solid; */
      }

      .item__3d-frame__box h1 {
        font-size: 7em;
        width: 100%;
        color: var(--box-border);
      }

      .item__3d-frame__box--left,
      .item__3d-frame__box--right {
        top: 0;
        width: 40px;
        opacity: 0;
        backface-visibility: hidden;
      }

      .item__3d-frame__box--left {
        left: 0;
        border-left-width: 5px;
        transform: translate3d(1px, 0, -40px) rotateY(-90deg);
        transform-origin: 0%;
      }

      .item__3d-frame__box--right {
        right: 0;
        border-right-width: 5px;
        transform: translate3d(-1px, 0, -40px) rotateY(90deg);
        transform-origin: 100%;
      }

      .carousel__slider__item--active .item__3d-frame {
        /* Active state styling (empty if none needed) */
      }