.font20{
        font-size: 20px;
        font-weight: 600;
    }
    .font15{
        font-size: 15px;
        font-weight: 800;
    }
    .putih {
        color: #ffff;
    }
    .tour-container {
        display: flex;
       
    
        flex-wrap: nowrap;
        justify-content: space-between;
    }
    
    .tour-box {
        background-color: white;
        border-radius: 10px;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        overflow: hidden;
        width: 100%;
        margin-bottom: 20px;
        padding: 20px;
        box-shadow: 0 0 35px rgba(0, 0, 0, 0.12);
        
    }
    
    .tour-image img {
        width: 100%;
        border-radius: 5px;
    }
    
    .tour-details h2 {
        color: #0056b3;
        font-size: 1.5rem;
        margin: 10px 0;
    }
    
    .tour-details p {
        margin: 5px 0;
        font-size: 1rem;
        color: #333;
    }
    
    .progress-bar-container {
        display: flex;
        align-items: center;
        margin: 15px 0;
    }
    
    .progress-bar {
        flex-grow: 1;
        height: 10px;
        background-color: #dcdcdc;
        border-radius: 5px;
        overflow: hidden;
        margin: 0 10px;
    }
    
    .progress {
        height: 100%;
        background-color: #007bff;
        border-radius: 5px;
    }
    
    .btn-pesan {
        background-color: #007bff;
        color: white;
        padding: 10px 20px;
        border: none;
        border-radius: 5px;
        cursor: pointer;
        font-size: 1rem;
        margin-top: 10px;
        text-align: center;
    }
    
    .btn-pesan:hover {
        background-color: #0056b3;
    }
    
    .card__image{
        object-fit: cover;
        height : 200px;
    }
    @media (min-width: 320px) and (max-width: 767px) {
      .layer1 {
        
        height: 100px;
        object-fit: cover;
        object-position: -110px;
      }
        .tour-container {
        display: block;
        }
    }
    
        
    .btn-whatsapp {
      background-color: #25D366; /* WhatsApp green */
      color: white;
      border: none;
      padding: 12px 20px;
      border-radius: 5px;
      text-decoration: none;
      font-size: 16px;
      display: inline-block;
      margin-top: 20px;
    }

    .btn-whatsapp:hover {
      background-color: #128C7E; /* Darker green on hover */
      color: white;
    }

    .show-desktop {
        display: block;
    }

    .show-mobile{
        display: none;
    }

    @media(max-width: 768px) {
        .show-desktop {
            display: none;
        }

        .show-mobile {
            display: block;
        }
    }

    /* Center the images and add margin to the top and bottom */
    .show-mobile .carousel-inner .item img {
        display: block;
        margin: 20px auto; /* This centers the image and adds 20px margin on top and bottom */
        max-width: 70%; /* Ensures the image does not exceed 70% of its parent container */
        height: auto; /* Maintain the aspect ratio */
    }

    /* Optional: Adjusting text styling */
    .show-mobile .carousel-inner .item .carousel-text {
        padding-top: 20px;
        padding-bottom: 20px;
    }