 /* =========================================
           SECTION
        ========================================= */
      .slider-two-section {
        position: relative;
        width: 100%;
        padding:
          30px 30px 25px;
        overflow: hidden;
        background:
          linear-gradient(110deg,
            #f7e8bd 0%,
            #f6e5b9 48%,
            #dea985 100%);
      }

      /* =========================================
           HEADER
        ========================================= */
      .slider-two-header {
        width: 100%;
        margin-bottom: 18px;
        text-align: center;
      }

      /* =========================================
           ICON
        ========================================= */
      .slider-two-icon {
        width: 23px;
        height: 23px;
        margin:
          0 auto 6px;
        color: #a97b68;
      }

      .slider-two-icon svg {
        display: block;
        width: 100%;
        height: 100%;
      }

      /* =========================================
           TITLE
        ========================================= */
      .slider-two-title {
        margin: 0;
        font-family:
          "Playfair Display",
          Georgia,
          serif;
        font-size: 22px;
        font-weight: 500;
        letter-spacing: 0.4px;
        color: #a97866;
        text-transform: uppercase;
      }

      /* =========================================
           CAROUSEL
        ========================================= */
      .slider-two-carousel {
        position: relative;
        width: 100%;
      }

      .slider-two-carousel .carousel-inner {
        width: 100%;
      }

      /* =========================================
           IMAGE WRAPPER
        ========================================= */
      .slider-two-image-wrapper {
        width: 60%;
        max-width: 850px;
        margin:
          0 auto;
      }

      .slider-two-image-wrapper picture {
        display: block;
        width: 100%;
      }

      /* =========================================
           IMAGE
        ========================================= */
      .slider-two-image {
        display: block;
        width: 100%;
        height: auto;
        object-fit: cover;
      }

      /* =========================================
           FADE EFFECT
        ========================================= */
      .slider-two-carousel.carousel-fade .carousel-item {
        opacity: 0;
        transition:
          opacity 1.2s ease-in-out;
      }

      .slider-two-carousel.carousel-fade .carousel-item.active {
        opacity: 1;
      }

      .slider-two-carousel.carousel-fade .active.carousel-item-start,
      .slider-two-carousel.carousel-fade .active.carousel-item-end {
        opacity: 0;
      }

      /* =========================================
           BUTTON AREA
        ========================================= */
      .slider-two-controls {
        position: absolute;
        right: 3%;
        bottom: 0;
        z-index: 20;
        display: flex;
        align-items: center;
        gap: 10px;
      }

      /* =========================================
           ARROW BUTTON
        ========================================= */
      .slider-two-arrow {
        width: 40px;
        height: 40px;
        margin: 0;
        padding: 0;
        border: 0;
        border-radius: 50%;
        background: #fff8d8;
        color: #cba064;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        transition:
          transform 0.25s ease,
          background-color 0.25s ease,
          color 0.25s ease;
      }

      .slider-two-arrow svg {
        display: block;
        width: 20px;
        height: 20px;
      }

      .slider-two-arrow:hover {
        background: #ffffff;
        color: #9e7546;
        transform: scale(1.08);
      }

      .slider-two-arrow:active {
        transform: scale(0.95);
      }

      .slider-two-arrow:focus {
        outline: none;
        box-shadow:
          0 0 0 3px rgba(255, 255, 255, 0.35);
      }

      /* =========================================
           LARGE DESKTOP
        ========================================= */
      @media (min-width: 1400px) {
        .slider-two-section {
          padding:
            35px 35px 28px;
        }

        .slider-two-image-wrapper {
          width: 58%;
          max-width: 950px;
        }

       

        .slider-two-arrow {
          width: 44px;
          height: 44px;
        }

        .slider-two-arrow svg {
          width: 21px;
          height: 21px;
        }
      }

      /* =========================================
           TABLET
        ========================================= */
      @media (max-width: 991.98px) {
        .slider-two-section {
          padding:
            28px 20px 25px;
        }

        .slider-two-image-wrapper {
          width: 78%;
        }

        .slider-two-controls {
          right: 3px;
        }

        .slider-two-arrow {
          width: 42px;
          height: 42px;
        }
      }

      /* =========================================
           MOBILE
        ========================================= */
      @media (max-width: 767.98px) {
        .slider-two-section {
          padding:
            25px 15px 70px;
        }

        .slider-two-header {
          margin-bottom: 45px;
			        padding-bottom: 4%;
			        padding-top: 4%;
        }

        .slider-two-icon {
          width: 21px;
          height: 21px;
        }

        .slider-two-title {
          font-size: 18px;
        }

        .slider-two-image-wrapper {
          width: 100%;
          max-width: none;
        }

        .slider-two-controls {
        right: 40%;
        bottom: -55px;
        gap: 10px;
    }

        .slider-two-arrow {
          width: 44px;
          height: 44px;
        }

        .slider-two-arrow svg {
          width: 21px;
          height: 21px;
        }
      }

      /* =========================================
           SMALL MOBILE
        ========================================= */
      @media (max-width: 480px) {
        .slider-two-section {
          padding-left: 12px;
          padding-right: 12px;
        }

        .slider-two-title {
          font-size: 17px;
        }

        .slider-two-arrow {
          width: 42px;
          height: 42px;
        }
      }