/* HEADER SLIDER */
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

*{
    font-family: poppins;
}

.hero {
    width: 100%;
    min-height: 100%;
    position: relative;
    padding: 0 0 0 0;
    align-items: center;
    border: 1px solid;
  }

  .hero h1 {
    margin-top: 20px;
    font-size: 48px;
    font-weight: 700;
    line-height: 56px;
  }

  .hero p {
    color: color-mix(in srgb, var(--default-color), transparent 30%);
    margin: 5px 0 30px 0;
    font-size: 22px;
    line-height: 1.3;
    font-weight: 600;
  }

  .slider {
    height: 100vh;
    margin-top: -50px;
    width: 100vw;
    overflow: hidden;
    position: relative;
  }

  .slider .list .item {
    width: 100%;
    height: 100%;
    position: absolute;
    inset: 0 0 0 0;
  }

  .slider .list .item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .slider .list .item .content {
    position: absolute;
    top: 30%;
    width: 1140px;
    max-width: 80%;
    left: 50%;
    transform: translateX(-50%);
    padding-right: 30%;
    box-sizing: border-box;
    color: #fff;
    text-shadow: 0 5px 10px #0004;
  }

  .slider .list .item .content .title {
    font-size: 5rem;
    font-weight: 700;
    line-height: 1.3em;
  }

  .slider .list .item .content .type {
    font-size: 3rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #1489FF;
  }

  .slider .list .item .button button {
    margin: 20px 0;
    border: none;
    border-radius: 20px;
    background: #3a7bfd;
    cursor: pointer;
    font-weight: 100;
    transition: 0.4s;
    padding: 5px 10px;
    color: #fff;
  }
  .slider .list .item .button button:hover {
    transform: scale(1.2);
    background-color: #fff;
    color: #000;
  }

  .thumbnail {
    position: absolute;
    bottom: 50px;
    left: 50%;
    width: max-content;
    z-index: 100;
    display: flex;
    gap: 20px;
  }

  .thumbnail .item {
    width: 150px;
    height: 220px;
    flex-shrink: 0;
    position: relative;
  }

  .thumbnail .item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
  }
  .container-collection{
    background-color: white;
    width: 80%;
    margin: 0 auto;
}
  .arrowButtons {
    position: absolute;
    top: 80%;
    right: 57%;
    z-index: 100;
    width: 300px;
    max-width: 30%;
    display: flex;
    gap: 10px;
    align-items: center;
  }

  .arrowButtons button {
    width: 40px;
    height: 40px;
    bottom: 50px;
    border-radius: 50%;
    background-color: #3a7bfd;
    border: none;
    color: white;
    font-weight: bold;
    transition: 0.5s;
    cursor: pointer;
  }
  .arrowButtons button:hover {
    background-color: white;
    color: black;
  }
  .slider .list .item:nth-child(1) {
    z-index: 1;
  }

  .slider .list .item .content .description{
    width: 70%;
    font-size: 18px;
  }

  .slider .list .item:nth-child(1) .content .title,
  .slider .list .item:nth-child(1) .content .type,
  .slider .list .item:nth-child(1) .content .description,
  .slider .list .item:nth-child(1) .content .button
  {
    transform: translateY(50px);
    filter: blur(20px);
    opacity: 0;
    animation: showContent 0.5s 1s linear 1 forwards;
  }

  @keyframes showContent {
    to{
      transform: translateY(0px);
      filter: blur(0px);
      opacity: 1;
    }
  }

  .slider .list .item:nth-child(1) .content .title{
    animation-delay: 0.4s !important;
  }

  .slider .list .item:nth-child(1) .content .type{
    animation-delay: 0.6s !important;
  }

  .slider .list .item:nth-child(1) .content .description{
    animation-delay: 0.8s !important;
  }
  .slider .list .item:nth-child(1) .content .button{
    animation-delay: 1s !important;
  }

  .slider.next .list .item:nth-child(1) img {
    width: 150px;
    height: 220px;
    position: absolute;
    bottom: 50px;
    left: 50%;
    border-radius: 30px;
    animation: showImage 0.5s linear 1 forwards;
  }

  @keyframes showImage {
    to{
      bottom: 0;
      left: 0;
      width: 100%;
      height: 100%;
      border-radius: 0;
    }
  }

  .slider.next .thumbnail .item:nth-last-child(1) {
    overflow: hidden;
    animation: showThumbnail 0.5s linear 1 forwards;
  }

  .slider.prev .list .item img {
    z-index: 100;
  }

  @keyframes showThumbnail {
    from {
      width: 0;
      opacity: 0;
    }
  }

  .slider.next .thumbnail {
    animation: effectNext .5s linear 1 forwards;
  }

  @keyframes effectNext {
    from {
      transform: translateX(150px);
    }
  }

  .slider.prev .list .item:nth-child(2) {
    z-index: 2;
  }

  .slider.prev .list .item:nth-child(2) img {
    position: absolute;
    bottom: 0;
    left: 0;
      animation: outFrame 0.5s linear 1 forwards;

  }

  @keyframes outFrame {
    to{
      width: 150px;
      height: 220px;
      bottom: 50px;
      left: 50%;
      border-radius: 20px;
    }
  }

  .slider.prev .thumbnail .item:nth-child(1){
    overflow: hidden;
    opacity: 0;
    animation: showThumbnail .5s linear 1 forwards;
  }

  .slider.next .arrowButtons .button,
  .slider.prev .arrowButtons .button{
    pointer-events: none;
  }

  .slider.prev .list .item:nth-child(2) .content .title,
  .slider.prev .list .item:nth-child(2) .content .type,
  .slider.prev .list .item:nth-child(2) .content .description,
  .slider.prev .list .item:nth-child(2) .content .button
  {
    animation: contentOut 1.5s linear 1 forwards !important;
  }

  @keyframes contentOut {
    to{
      transform: translateX(-150px);
      filter: blur(20px);
      opacity: 0;
    }
  }
  @media (max-width: 640px) {
    .hero h1 {
      font-size: 28px;
      line-height: 36px;
    }

    .hero p {
      font-size: 18px;
      line-height: 24px;
      margin-bottom: 30px;
    }

    .hero .btn-get-started,
    .hero .btn-watch-video {
      font-size: 13px;
    }
  }

  @keyframes up-down {
    0% {
      transform: translateY(10px);
    }

    100% {
      transform: translateY(-10px);
    }
  }
/* END HEADER SLIDER */

/* KULINER SECTION SLIDER */
.kuliner {
    font-family: "Blank Ops One", cursive;
    overflow: hidden;
    margin: 0;
    background-color: #fff;
    /* height: 100vh; */
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .kuliner .container {
    width: 100%;
    display: flex;
    padding: 0 20px;
  }

  .slide {
    height: 80vh;
    border-radius: 20px;
    margin: 10px;
    cursor: pointer;
    color: #fff;
    flex: 1;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    transition: all 0.7s ease-in-out;
    /* filter: blur(4px); */
  }
  .slide h3 {
    position: absolute;
    font-size: clamp(1rem, 5vw, 5rem);
    left: 20px;
    top: 10px;
    margin: 0;
    opacity: 0;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: #fff;
  }

  .kuliner-description {
    position: absolute;
    font-size: clamp(1rem);
    left: 20px;
    bottom: 70px;
    margin: 0;
    opacity: 0;
    /* border: 1px solid #000; */
    -webkit-text-fill-color: #fff;
  }
  .kuliner-btn {
    position: absolute;
    left: 20px;
    bottom: 20px;
    margin: 0;
    opacity: 0;
    /* border: 1px solid #000; */
    background-color: #1976d2;
  }

  .slide.active {
    flex: 10;
    filter: blur(0px);
  }

  .slide.active h3 {
    opacity: 1;
    transition: opacity 0.3s ease-in 0.4s;
  }
  .slide.active .kuliner-description {
    opacity: 1;
    transition: opacity 0.3s ease-in 0.4s;
  }
  .slide.active .kuliner-btn {
    opacity: 1;
    transition: opacity 0.3s ease-in 0.4s;
  }


  /* Responsive */
  @media screen and (max-width: 1000px) {
    .kuliner .container {
        display: flex;
        height: 90vh;
        flex-direction: column;
        flex-wrap: wrap;
        align-items: center;
        justify-content: center;
        align-content: center;
    }

    .slide {
        width: 45vh;
        border-radius: 20px;
        margin: 10px;
    }
  }


/* UNIVERSAL  */
body{
    overflow-x: hidden;
}

.culinary-lumajang{
    /* background-color: #F6F8FD; */
}

.lumajang-eksotik{
    /* background-color: #F6F8FD; */
}

.news-lumajang{
    /* background-color: #F6F8FD; */
}

/* UNIVERSAL  */

/* PHONE DEVICE */
.header .slider-home{
    width: 100% !important;
    height: 600px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border-radius: 0px !important;
    overflow: hidden !important;
}

.header .slider-home .background-img{
    height: 100%;
}

/* SLIDER HOME  */
.home-slider .slick-prev{
    left: 40%;
}

.home-slider .slick-next{
    right: 40%;
}

.home-slider .slick-prev, .home-slider .slick-next{
    position: absolute;
    display: block;
    height: 20px;
    width: 20px;
    line-height: 0px;
    font-size: 0px;
    cursor: pointer;
    background: transparent;
    color: transparent;
    top: 90%;
    /* transform: translate(0, -50%); */
    padding: 0;
    border: none;
    outline: none;
}

.home-slider .slick-prev:before, .home-slider .slick-next:before{
    font-size: 40px;
}

.home-slider .home-slider-item .home-slider-content{
    display: flex !important;
    width: 100% !important;
}

.home-slider .home-slider-item .home-slider-content .text-slider{
    width: 60%;
    padding-right: 20px;
    margin-top: auto;
    margin-bottom: auto;
}

.home-slider .home-slider-item .home-slider-content .text-slider p{
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.home-slider .home-slider-item .home-slider-content .img-slider{
    width: 40%;
    height: 470px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border-radius: 0px !important;
    overflow: hidden !important;
}

.home-slider .home-slider-item .home-slider-content .img-slider img{
    width: 100%;
}
/* END SLIDER HOME  */

/* LUMAJANG HIGHLIGHT  */
.lumajang-highlight-grid{
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.lumajang-highlight-grid .lumajang-highlight-item{
    width: 100%;
    height: 100%;
    position: relative;
    margin: 5px;
}

.lumajang-highlight-grid .lumajang-highlight-item .card-lumajang-highlight {
    width: 100% !important;
    height: 200px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border-radius: 0px !important;
    overflow: hidden !important;
    border: 1px solid #E5E7E9 !important;
    border-radius: 20px;
}

.lumajang-highlight-grid .lumajang-highlight-item .card-lumajang-highlight img{
    width: 100%;
}

.lumajang-highlight-grid .lumajang-highlight-item .card-lumajang-highlight h5{
    position: absolute;
    color: white;
    bottom: 10px;
    left: 20px;
    z-index: 1;
}

.lumajang-highlight-grid .lumajang-highlight-item .card-shadow{
    width: 100%;
    height: 200px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border-radius: 0px !important;
    overflow: hidden !important;
    border: 1px solid #E5E7E9 !important;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0) 50%);
    position: absolute;
    z-index: 1;
}
/* END LUMAJANG HIGHLIGHT  */

/* KULINER LUMAJANG  */
.culinary-lumajang-section .culinary-lumajang-slider .culinary-lumajang-item{
    position: relative;
}

.culinary-lumajang-section .culinary-lumajang-slider .culinary-lumajang-item .card-shadow {
    width: 100%;
    height: 300px !important;
    display: flex !important;
    justify-content: center !important;
    border-radius: 0px !important;
    overflow: hidden !important;
    border: 1px solid #E5E7E9 !important;
    position: absolute;
    z-index: 1;
    left: 50%;
    transform: translateX(-50%);
}

.culinary-lumajang .title{
    padding-bottom: 1rem;
    padding-top: 1rem;
    margin-bottom: 0;
    position: relative;
    text-align: center;
}

.culinary-lumajang .title h2{
    position: relative;
    z-index: 1;
}

.culinary-lumajang .title .shadow-title{
    color: #F0F2F7;
    font-size: 89px;
    position: absolute;
    top: 12%;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    display: none;
}

.culinary-lumajang-section .culinary-lumajang-slider .culinary-lumajang-item .culinary-lumajang-item{
    width: 100%;
    height: 300px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border-radius: 0px !important;
    overflow: hidden !important;
    border: 1px solid #E5E7E9 !important;
    position: relative;
}

.culinary-lumajang-section .culinary-lumajang-slider .culinary-lumajang-item .culinary-lumajang-item img{
    height: 100%;
    width: unset;
}

.culinary-lumajang-section .culinary-lumajang-slider .culinary-lumajang-item .culinary-lumajang-item .title{
    position: absolute;
    left: 25px;
    bottom: 20px;
    width: 100%;
    z-index: 1;
    display: flex;
    flex-wrap: wrap;
}

.culinary-lumajang-section .culinary-lumajang-slider .culinary-lumajang-item .culinary-lumajang-item .title .text{
    width: 88%;
    order: 0;
}

.culinary-lumajang-section .culinary-lumajang-slider .culinary-lumajang-item .culinary-lumajang-item .title .text p{
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.culinary-lumajang-section .culinary-lumajang-slider .culinary-lumajang-item .culinary-lumajang-item .title .button{
    width: 100%;
    order: 1;
    text-align: left;
}
/* END KULINER LUMAJANG  */

/* LUMAJANG EKSOTIK  */
.lumajang-eksotik .title{
    padding-bottom: 1rem;
    padding-top: 1rem;
    margin-bottom: 0;
    position: relative;
    text-align: center;
}

.lumajang-eksotik .title h2{
    position: relative;
    z-index: 1;
}

.lumajang-eksotik .title .shadow-title{
    color: #F0F2F7;
    font-size: 89px;
    position: absolute;
    top: 12%;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    display: none;
}

.lumajang-eksotik-item{
    position: relative;
    margin: 5px;
}

.lumajang-eksotik-item .card-shadow {
    width: 100%;
    height: 200px !important;
    display: flex !important;
    justify-content: center !important;
    border-radius: 0px !important;
    overflow: hidden !important;
    border: 1px solid #E5E7E9 !important;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0) 50%);
    position: absolute;
    z-index: 1;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 10px !important;
}

.lumajang-eksotik-item .lumajang-eksotik-content{
    width: 100%;
    height: 200px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border-radius: 0px !important;
    overflow: hidden !important;
    border: 1px solid #E5E7E9 !important;
    position: relative;
    border-radius: 10px !important;
}

.lumajang-eksotik-item .lumajang-eksotik-content img{
    width: 100%;
    height: unset;
}

.lumajang-eksotik-item .lumajang-eksotik-content label{
    position: absolute;
    bottom: 20px;
    left: 20px;
    color: white;
    z-index: 1;
}

.card-text {
    white-space: nowrap;
    border: 1px solid #000;
}
/* END LUMAJANG EKSOTIK  */

/* EVENT  */
.event-section {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    background-color: #1976d2; /* Blue background */
    padding: 1px;
    border-radius: 10px;
    color: white;
  }

  .center {
    margin: auto;
    width: 90%;
    height: 300px;
  }

  .event-content {
    flex: 1;
    margin-left: 30px;
    min-width: 280px;
  }

  .event-content h2 {
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 10px;
  }

  .event-content p {
    font-size: 1rem;
    margin-bottom: 20px;
  }

  .event-button {
    background-color: #3a7bfd !important; /* Lighter blue for the button */
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    font-size: 1.2rem;
    cursor: pointer;
  }

  .event-button:hover {
    background-color: white !important; /* Slightly darker on hover */
    color: black;
  }

  .event-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
  }

  .event-image img {
    max-width: 100%;
    border-radius: 10px;
  }

  /* Responsive Design */
  @media (max-width: 450px) {
    .event-section {
        flex-direction: column;
        text-align: center;
    }

    .event-content {
        margin-left: 1px;
        margin-bottom: 20px;
    }

    .event-content h2 {
        font-size: 2rem;
    }

    .event-image img {
        width: 80%; /* Adjust image size for smaller screens */
    }
  }
  /* END EVENT  */

/* BERITA */
.news-lumajang .title{
    padding-bottom: 1rem;
    padding-top: 3rem;
    position: relative;
    text-align: center;
}

.news-lumajang .title h2{
    position: relative;
    z-index: 1;
}

.news-lumajang .title p{
    /* padding-top: 36px; */
}

.news-lumajang .title .shadow-title{
    color: #F0F2F7;
    font-size: 89px;
    position: absolute;
    top: 10%;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    display: none;
}

.news-lumajang .grid-news-lumajang{
    display: grid;
    gap: 1.2rem;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding: 1rem 1rem;
}

.news-lumajang .grid-news-lumajang .news-lumajang-content{
    height: 350px;
    border: 1px solid rgba(217, 217, 217, 1);
    border-radius: 10px;
}

.news-lumajang .grid-news-lumajang .news-lumajang-content .banner-news-lumajang{
    width: 100%;
    height: 200px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border-radius: 0px !important;
    overflow: hidden !important;
    position: relative;
    border-radius: 10px 10px 0px 0px !important;
}

.news-lumajang .grid-news-lumajang .news-lumajang-content .banner-news-lumajang img{
    /* height: 100%; */
}

.news-lumajang .grid-news-lumajang .news-lumajang-content .title-news-lumajang{
    padding: 15px;
}

.news-lumajang .grid-news-lumajang .news-lumajang-content .title-news-lumajang h6{
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    height: 20px;
}
.news-lumajang .grid-news-lumajang .news-lumajang-content .title-news-lumajang small{
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    height: 40px;
}
/* END BERITA */

/* PIN MAPS  */
.pin-maps{
    overflow-x: auto;
    height: 650px;
}

.pin-maps .pin-maps-canvas{
    position: relative;
    width: 1076px;
}

.pin-maps .pin-maps-canvas .pin-maps-item{
    position: absolute;
    border-radius: 100%;
}

.pin-maps .pin-maps-canvas .pin-maps-item button:hover{
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    background: white;
    width: 55px;
    height: 55px;
}

.pin-maps .pin-maps-canvas .pin-maps-item button{
    border-radius: 100%;
    width: 55px;
    height: 55px;
    font-size: 10px;
    padding: 1px;
}

.pin-maps .pin-maps-canvas .pin-maps-item .dropdown-menu{
    width: 300px;
    /* height: 300px; */
    background-color: white;
    border-radius: 10px;
    padding: 10px;
    left: 50%;
    transform: translateX(-50%);
    border: 0px;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    z-index: 2;
}
/* END PIN MAPS  */
/* PHONE DEVICE */

@media screen and (min-width: 1200px) {
    .header .slider-home{
        width: 100% !important;
        height: 750px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        border-radius: 0px !important;
        overflow: hidden !important;
    }

    .header .slider-home .background-img{
        width: 100%;
    }

    /* SLIDER HOME  */
    .home-slider .slick-prev{
        left: 47%;
    }

    .home-slider .slick-next{
        right: 47%;
    }

    .home-slider .slick-prev, .home-slider .slick-next{
        position: absolute;
        display: block;
        height: 20px;
        width: 20px;
        line-height: 0px;
        font-size: 0px;
        cursor: pointer;
        background: transparent;
        color: transparent;
        top: 107%;
        /* transform: translate(0, -50%); */
        padding: 0;
        border: none;
        outline: none;
    }

    .home-slider .slick-prev:before, .home-slider .slick-next:before{
        font-size: 40px;
    }

    .home-slider .home-slider-item .home-slider-content{
        display: flex !important;
        width: 100% !important;
    }

    .home-slider .home-slider-item .home-slider-content .text-slider{
        width: 70%;
        padding-right: 20px;
        margin-top: auto;
        margin-bottom: auto;
    }

    .home-slider .home-slider-item .home-slider-content .text-slider p{
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .home-slider .home-slider-item .home-slider-content .img-slider{
        width: 30%;
        height: 400px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        border-radius: 0px !important;
        overflow: hidden !important;
    }

    .home-slider .home-slider-item .home-slider-content .img-slider img{
        width: 100%;
    }
    /* END SLIDER HOME  */

    /* LUMAJANG HIGHLIGHT   */
    .lumajang-highlight-grid{
        display: grid;
        gap: 1.2rem;
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .lumajang-highlight-grid .lumajang-highlight-item{
        width: 100%;
        height: 100%;
        position: relative;
        margin: 5px
    }

    .lumajang-highlight-grid .lumajang-highlight-item .card-lumajang-highlight {
        width: 100% !important;
        height: 310px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        border-radius: 15px !important;
        overflow: hidden !important;
    }

    .lumajang-highlight-grid .lumajang-highlight-item .card-lumajang-highlight img{
        width: 100%;
    }

    .lumajang-highlight-grid .lumajang-highlight-item .card-lumajang-highlight h5{
        position: absolute;
        color: white;
        bottom: 10px;
        left: 20px;
        z-index: 1;
    }

    .lumajang-highlight-grid .lumajang-highlight-item .card-shadow{
        width: 100%;
        height: 310px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        border-radius: 0px !important;
        overflow: hidden !important;
        /* background: linear-gradient(0deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0) 50%); */
        position: absolute;
        z-index: 1;
    }
    /* END LUMAJANG HIGHLIGHT   */

    /* KULINER LUMAJANG  */
    .culinary-lumajang-section .culinary-lumajang-slider .culinary-lumajang-item{
        position: relative;
        margin-top: 20px;
    }

    .culinary-lumajang-section .culinary-lumajang-slider .culinary-lumajang-item .card-shadow {
        width: 75%;
        height: 500px !important;
        display: flex !important;
        justify-content: center !important;
        border-radius: 0px !important;
        overflow: hidden !important;
        border: 1px solid #E5E7E9 !important;
        background: linear-gradient(0deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0) 50%);
        position: absolute;
        z-index: 1;
        left: 50%;
        transform: translateX(-50%);
    }

    .culinary-lumajang .title{
        padding-bottom: 1rem;
        padding-top: 3rem;
        position: relative;
        text-align: center;
    }

    .culinary-lumajang .title h2{
        position: relative;
        z-index: 1;
    }

    .culinary-lumajang .title .shadow-title{
        color: #F0F2F7;
        font-size: 89px;
        position: absolute;
        top: 12%;
        left: 50%;
        transform: translateX(-50%);
        width: 100%;
        display: block;
    }

    .culinary-lumajang-section .culinary-lumajang-slider .culinary-lumajang-item .culinary-lumajang-item{
        width: 75%;
        height: 500px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        border-radius: 0px !important;
        overflow: hidden !important;
        border: 1px solid #E5E7E9 !important;
        position: relative;
    }

    .culinary-lumajang-section .culinary-lumajang-slider .culinary-lumajang-item .culinary-lumajang-item img{
        width: 100%;
        height: unset;
    }

    .culinary-lumajang-section .culinary-lumajang-slider .culinary-lumajang-item .culinary-lumajang-item .title{
        position: absolute;
        left: 25px;
        bottom: 20px;
        width: 100%;
        z-index: 1;
        display: flex;
        flex-wrap: wrap;
    }

    .culinary-lumajang-section .culinary-lumajang-slider .culinary-lumajang-item .culinary-lumajang-item .title .text{
        width: 70%;
        order: 0;
    }

    .culinary-lumajang-section .culinary-lumajang-slider .culinary-lumajang-item .culinary-lumajang-item .title .text p{
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .culinary-lumajang-section .culinary-lumajang-slider .culinary-lumajang-item .culinary-lumajang-item .title .button{
        width: 20%;
        order: 1;
        margin-top:auto;
        text-align: end;
    }

    .culinary-lumajang-section .culinary-lumajang-slider .culinary-lumajang-item .culinary-lumajang-item .title .button button{
        position: absolute;
        bottom: 20px;
    }
    /* END KULINER LUMAJANG  */

    /* LUMAJANG EKSOTIK  */
    .lumajang-eksotik .title{
        padding-bottom: 1rem;
        padding-top: 3rem;
        margin-bottom: 3rem;
        position: relative;
        text-align: center;
    }

    .lumajang-eksotik .title h2{
        position: relative;
        z-index: 1;
    }

    .lumajang-eksotik .lumajang-eksotik-slider-2 .slick-list{
        padding: 0px 280px !important;
    }

    .lumajang-eksotik .title .shadow-title{
        color: #F0F2F7;
        font-size: 89px;
        position: absolute;
        top: 12%;
        left: 50%;
        transform: translateX(-50%);
        width: 100%;
        display: block;
    }

    .lumajang-eksotik-item{
        position: relative;
        margin : 5px;
    }

    .lumajang-eksotik-item .card-shadow {
        width: 100%;
        height: 250px !important;
        display: flex !important;
        justify-content: center !important;
        border-radius: 0px !important;
        overflow: hidden !important;
        border: 1px solid #E5E7E9 !important;
        background: linear-gradient(0deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0) 50%);
        position: absolute;
        z-index: 1;
        left: 50%;
        transform: translateX(-50%);
        border-radius: 10px !important;
    }

    .lumajang-eksotik-item .lumajang-eksotik-content{
        width: 100%;
        height: 250px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        border-radius: 0px !important;
        overflow: hidden !important;
        border: 1px solid #E5E7E9 !important;
        position: relative;
        border-radius: 10px !important;
    }

    .lumajang-eksotik-item .lumajang-eksotik-content img{
        width: 100%;
        height: unset;
    }

    .lumajang-eksotik-item .lumajang-eksotik-content label{
        position: absolute;
        bottom: 20px;
        left: 20px;
        color: white;
        z-index: 1;
    }
    /* END LUMAJANG EKSOTIK  */

    /* EVENT  */
    .event {
        display: flex;
        flex-wrap: wrap;
        padding-top: 3rem;
    }

    .event .title{
        width: 30%;
        padding-right: 45px;
    }

    .event .event-item{
        width: 70%;
    }

    .event .event-item .event-content{
        height: 300px;
        padding: 10px;
        border: 1px solid rgba(217, 217, 217, 1);
        border-radius: 10px;
        margin-right: 10px;
        margin-left: 10px;
    }

    .event .event-item .event-content .banner-event{
        width: 100%;
        height: 200px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        border-radius: 0px !important;
        overflow: hidden !important;
        border: 1px solid #E5E7E9 !important;
        position: relative;
        border-radius: 10px !important;
        margin-bottom: 10px;
    }

    .event .event-item .event-content .banner-event img{
        height: 100%;
        width: unset;
    }

    .event .event-item .event-content .title-event h6{
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-overflow: ellipsis;
        height: 40px;
    }

    .event .event-item .slick-prev{
        left: -45px;
        z-index: 1;
    }

    .event .event-item .slick-prev.slick-disabled{
        cursor: not-allowed !important;
    }

    .event .event-item .slick-prev::before{
        color: black !important;
        font-size: 40px;
    }

    .event .event-item .slick-next{

    }

    .event .event-item .slick-next::before{
        color: black !important;
        font-size: 40px;
    }
    /* END EVENT  */

    /* BERITA */
    .news-lumajang .title{
        padding-bottom: 1rem;
        padding-top: 3rem;
        position: relative;
        text-align: center;
    }

    .news-lumajang .title h2{
        position: relative;
        z-index: 1;
    }

    .news-lumajang .title p{
        /* padding-top: 36px; */
    }

    .news-lumajang .title .shadow-title{
        color: #F0F2F7;
        font-size: 89px;
        position: absolute;
        top: 10%;
        left: 50%;
        transform: translateX(-50%);
        width: 100%;
        display: block;
    }

    .news-lumajang .grid-news-lumajang{
        display: grid;
        gap: 1.2rem;
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .news-lumajang .grid-news-lumajang .news-lumajang-content{
        height: 390px;
        border: 1px solid rgba(217, 217, 217, 1);
        border-radius: 10px;
    }

    .news-lumajang .grid-news-lumajang .news-lumajang-content .banner-news-lumajang{
        width: 100%;
        height: 250px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        border-radius: 0px !important;
        overflow: hidden !important;
        position: relative;
        border-radius: 10px 10px 0px 0px !important;
    }

    .news-lumajang .grid-news-lumajang .news-lumajang-content .banner-news-lumajang img{
        /* height: 100%; */
    }

    .news-lumajang .grid-news-lumajang .news-lumajang-content .title-news-lumajang{
        padding: 15px;
    }

    .news-lumajang .grid-news-lumajang .news-lumajang-content .title-news-lumajang h6{
        display: -webkit-box;
        -webkit-line-clamp: 1;
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-overflow: ellipsis;
        height: 20px;
    }
    .news-lumajang .grid-news-lumajang .news-lumajang-content .title-news-lumajang small{
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-overflow: ellipsis;
        height: 40px;
    }
    .berita-content a {
        background-color: #3a7bfd; /* Lighter blue for the button */
        color: white;
        border: none;
        padding: 10px 20px;
        border-radius: 5px;
        font-size: 1.2rem;
        cursor: pointer;
        transition: background-color 0.3s;
      }

    /* END BERITA */

    /* PIN MAPS  */
    .pin-maps{
        overflow-x: auto;
        height: 756px;
    }

    .pin-maps .pin-maps-canvas{
        position: relative;
        width: 1076px;
    }

    .pin-maps .pin-maps-canvas .pin-maps-item{
        position: absolute;
        border-radius: 100%;
    }

    .pin-maps .pin-maps-canvas .pin-maps-item button:hover{
        box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
        background: white;
        width: 55px;
        height: 55px;
    }

    .pin-maps .pin-maps-canvas .pin-maps-item button{
        border-radius: 100%;
        width: 55px;
        height: 55px;
        font-size: 10px;
        padding: 1px;
    }

    .pin-maps .pin-maps-canvas .pin-maps-item .dropdown-menu{
        width: 300px;
        /* height: 300px; */
        background-color: white;
        border-radius: 10px;
        padding: 10px;
        left: 50%;
        transform: translateX(-50%);
        border: 0px;
        box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
        z-index: 2;
    }
    /* END PIN MAPS  */
}

@media screen and (min-width: 768px) {
    .header .slider-home{
        width: 100% !important;
        height: 750px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        border-radius: 0px !important;
        overflow: hidden !important;
    }

    .header .slider-home .background-img{
        width: 100%;
    }

    /* SLIDER HOME  */
    .home-slider .slick-prev{
        left: 47%;
    }

    .home-slider .slick-next{
        right: 47%;
    }

    .home-slider .slick-prev, .home-slider .slick-next{
        position: absolute;
        display: block;
        height: 20px;
        width: 20px;
        line-height: 0px;
        font-size: 0px;
        cursor: pointer;
        background: transparent;
        color: transparent;
        top: 107%;
        /* transform: translate(0, -50%); */
        padding: 0;
        border: none;
        outline: none;
    }

    .home-slider .slick-prev:before, .home-slider .slick-next:before{
        font-size: 40px;
    }

    .home-slider .home-slider-item .home-slider-content{
        display: flex !important;
        width: 100% !important;
    }

    .home-slider .home-slider-item .home-slider-content .text-slider{
        width: 70%;
        padding-right: 20px;
        margin-top: auto;
        margin-bottom: auto;
    }

    .home-slider .home-slider-item .home-slider-content .text-slider p{
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .home-slider .home-slider-item .home-slider-content .img-slider{
        width: 30%;
        height: 400px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        border-radius: 0px !important;
        overflow: hidden !important;
    }

    .home-slider .home-slider-item .home-slider-content .img-slider img{
        width: 100%;
    }
    /* END SLIDER HOME  */

    /* LUMAJANG HIGHLIGHT   */
    .lumajang-highlight-grid{
        display: grid;
        gap: 1.2rem;
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .lumajang-highlight-grid .lumajang-highlight-item{
        width: 100%;
        height: 100%;
        position: relative;
        margin: 5px
    }

    .lumajang-highlight-grid .lumajang-highlight-item .card-lumajang-highlight {
        width: 100% !important;
        height: 310px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        border-radius: 20px !important;
        overflow: hidden !important;
        border: 1px solid #E5E7E9 !important;
    }

    .lumajang-highlight-grid .lumajang-highlight-item .card-lumajang-highlight img{
        width: 100%;
        border-radius: 20px;
    }

    .lumajang-highlight-grid .lumajang-highlight-item .card-lumajang-highlight h5{
        position: absolute;
        color: white;
        bottom: 10px;
        left: 20px;
        z-index: 1;
    }

    .lumajang-highlight-grid .lumajang-highlight-item .card-shadow{
        width: 100%;
        height: 310px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        border-radius: 20px !important;
        overflow: hidden !important;
        border: 1px solid #E5E7E9 !important;
        background: linear-gradient(0deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0) 50%);
        position: absolute;
        z-index: 1;
    }
    /* END LUMAJANG HIGHLIGHT   */

    /* KULINER LUMAJANG  */
    .culinary-lumajang-section .culinary-lumajang-slider .culinary-lumajang-item{
        position: relative;
        margin-top: 20px;
    }

    .culinary-lumajang-section .culinary-lumajang-slider .culinary-lumajang-item .card-shadow {
        width: 75%;
        height: 500px !important;
        display: flex !important;
        justify-content: center !important;
        border-radius: 0px !important;
        overflow: hidden !important;
        border: 1px solid #E5E7E9 !important;
        background: linear-gradient(0deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0) 50%);
        position: absolute;
        z-index: 1;
        left: 50%;
        transform: translateX(-50%);
    }

    .culinary-lumajang .title{
        padding-bottom: 1rem;
        padding-top: 3rem;
        position: relative;
        text-align: center;
    }

    .culinary-lumajang .title h2{
        position: relative;
        z-index: 1;
    }

    .culinary-lumajang .title .shadow-title{
        color: #F0F2F7;
        font-size: 89px;
        position: absolute;
        top: 12%;
        left: 50%;
        transform: translateX(-50%);
        width: 100%;
        display: block;
    }

    .culinary-lumajang-section .culinary-lumajang-slider .culinary-lumajang-item .culinary-lumajang-item{
        width: 75%;
        height: 500px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        border-radius: 0px !important;
        overflow: hidden !important;
        border: 1px solid #E5E7E9 !important;
        position: relative;
    }

    .culinary-lumajang-section .culinary-lumajang-slider .culinary-lumajang-item .culinary-lumajang-item img{
        width: 100%;
        height: unset;
    }

    .culinary-lumajang-section .culinary-lumajang-slider .culinary-lumajang-item .culinary-lumajang-item .title{
        position: absolute;
        left: 25px;
        bottom: 20px;
        width: 100%;
        z-index: 1;
        display: flex;
        flex-wrap: wrap;
    }

    .culinary-lumajang-section .culinary-lumajang-slider .culinary-lumajang-item .culinary-lumajang-item .title .text{
        width: 70%;
        order: 0;
    }

    .culinary-lumajang-section .culinary-lumajang-slider .culinary-lumajang-item .culinary-lumajang-item .title .text p{
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .culinary-lumajang-section .culinary-lumajang-slider .culinary-lumajang-item .culinary-lumajang-item .title .button{
        width: 20%;
        order: 1;
        margin-top:auto;
        text-align: end;
    }

    .culinary-lumajang-section .culinary-lumajang-slider .culinary-lumajang-item .culinary-lumajang-item .title .button button{
        position: absolute;
        bottom: 20px;
    }
    /* END KULINER LUMAJANG  */

    /* LUMAJANG EKSOTIK  */
    .lumajang-eksotik .title{
        padding-bottom: 1rem;
        padding-top: 3rem;
        margin-bottom: 3rem;
        position: relative;
        text-align: center;
    }

    .lumajang-eksotik .title h2{
        position: relative;
        z-index: 1;
    }

    .lumajang-eksotik .lumajang-eksotik-slider-2 .slick-list{
        padding: 0px 280px !important;
    }

    .lumajang-eksotik .title .shadow-title{
        color: #F0F2F7;
        font-size: 89px;
        position: absolute;
        top: 12%;
        left: 50%;
        transform: translateX(-50%);
        width: 100%;
        display: block;
    }

    .lumajang-eksotik-item{
        position: relative;
        margin : 5px;
    }

    .lumajang-eksotik-item .card-shadow {
        width: 100%;
        height: 250px !important;
        display: flex !important;
        justify-content: center !important;
        border-radius: 0px !important;
        overflow: hidden !important;
        border: 1px solid #E5E7E9 !important;
        background: linear-gradient(0deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0) 50%);
        position: absolute;
        z-index: 1;
        left: 50%;
        transform: translateX(-50%);
        border-radius: 10px !important;
    }

    .lumajang-eksotik-item .lumajang-eksotik-content{
        width: 100%;
        height: 250px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        border-radius: 0px !important;
        overflow: hidden !important;
        border: 1px solid #E5E7E9 !important;
        position: relative;
        border-radius: 10px !important;
    }

    .lumajang-eksotik-item .lumajang-eksotik-content img{
        width: 100%;
        height: unset;
    }

    .lumajang-eksotik-item .lumajang-eksotik-content label{
        position: absolute;
        bottom: 20px;
        left: 20px;
        color: white;
        z-index: 1;
    }
    /* END LUMAJANG EKSOTIK  */

    /* EVENT  */
    .event {
        display: flex;
        flex-wrap: wrap;
        padding-top: 3rem;
    }

    .event .title{
        width: 30%;
        padding-right: 45px;
    }

    .event .event-item{
        width: 70%;
    }

    .event .event-item .event-content{
        height: 300px;
        padding: 10px;
        border: 1px solid rgba(217, 217, 217, 1);
        border-radius: 10px;
        margin-right: 10px;
        margin-left: 10px;
    }

    .event .event-item .event-content .banner-event{
        width: 100%;
        height: 200px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        border-radius: 0px !important;
        overflow: hidden !important;
        border: 1px solid #E5E7E9 !important;
        position: relative;
        border-radius: 10px !important;
        margin-bottom: 10px;
    }

    .event .event-item .event-content .banner-event img{
        height: 100%;
        width: unset;
    }

    .event .event-item .event-content .title-event h6{
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-overflow: ellipsis;
        height: 40px;
    }

    .event .event-item .slick-prev{
        left: -45px;
        z-index: 1;
    }

    .event .event-item .slick-prev.slick-disabled{
        cursor: not-allowed !important;
    }

    .event .event-item .slick-prev::before{
        color: black !important;
        font-size: 40px;
    }

    .event .event-item .slick-next{

    }

    .event .event-item .slick-next::before{
        color: black !important;
        font-size: 40px;
    }
    /* END EVENT  */

    /* BERITA */
    .news-lumajang .title{
        padding-bottom: 1rem;
        padding-top: 3rem;
        position: relative;
        text-align: center;
    }

    .news-lumajang .title h2{
        position: relative;
        z-index: 1;
    }

    .news-lumajang .title p{
        /* padding-top: 36px; */
    }

    .news-lumajang .title .shadow-title{
        color: #F0F2F7;
        font-size: 89px;
        position: absolute;
        top: 10%;
        left: 50%;
        transform: translateX(-50%);
        width: 100%;
        display: block;
    }

    .news-lumajang .grid-news-lumajang{
        display: grid;
        gap: 1.2rem;
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .news-lumajang .grid-news-lumajang .news-lumajang-content{
        height: 390px;
        border: 1px solid rgba(217, 217, 217, 1);
        border-radius: 10px;
    }

    .news-lumajang .grid-news-lumajang .news-lumajang-content .banner-news-lumajang{
        width: 100%;
        height: 250px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        border-radius: 0px !important;
        overflow: hidden !important;
        position: relative;
        border-radius: 10px 10px 0px 0px !important;
    }

    .news-lumajang .grid-news-lumajang .news-lumajang-content .banner-news-lumajang img{
        /* height: 100%; */
    }

    .news-lumajang .grid-news-lumajang .news-lumajang-content .title-news-lumajang{
        padding: 15px;
    }

    .news-lumajang .grid-news-lumajang .news-lumajang-content .title-news-lumajang h6{
        display: -webkit-box;
        -webkit-line-clamp: 1;
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-overflow: ellipsis;
        height: 20px;
    }
    .news-lumajang .grid-news-lumajang .news-lumajang-content .title-news-lumajang small{
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-overflow: ellipsis;
        height: 40px;
    }
    /* END BERITA */

    /* PIN MAPS  */
    .pin-maps{
        overflow-x: unset;
        height: 900px;
    }

    .pin-maps .pin-maps-canvas{
        position: relative;
        width: 1076px;
    }

    .pin-maps .pin-maps-canvas .pin-maps-item{
        position: absolute;
        border-radius: 100%;
    }

    .pin-maps .pin-maps-canvas .pin-maps-item button:hover{
        box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
        background: white;
        width: 55px;
        height: 55px;
    }

    .pin-maps .pin-maps-canvas .pin-maps-item button{
        border-radius: 100%;
        width: 55px;
        height: 55px;
        font-size: 10px;
        padding: 1px;
    }

    .pin-maps .pin-maps-canvas .pin-maps-item .dropdown-menu{
        width: 300px;
        /* height: 300px; */
        background-color: white;
        border-radius: 10px;
        padding: 10px;
        left: 50%;
        transform: translateX(-50%);
        border: 0px;
        box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
        z-index: 2;
    }
    /* END PIN MAPS  */
}

