
@keyframes slide {
    0% {
        left: 100%; /* Start just off-screen to the right */
    }
    100% {
        left: -100px; /* End just off-screen to the left, adjust based on image width */
    }
}

@keyframes slide {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-100%);
    }
}
 
.logos {
    overflow: hidden;
}
 
.logoslide {
    display: inline-block;
    white-space: nowrap;
    animation: 18s slide infinite linear;
}
 
.logoslide img {
    margin: 0 4.4rem;
    height:120px;
    width:120px;
    border-radius: 50%;
}

.swiper {
    width: 100%;
    height: 50vh;
    padding-top: 50px;
    padding-bottom: 50px;
}

.swiper-slide {
    background-color: #fff;
    border-radius: 10px;
   
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
    text-align: center;
}

.swiper-slide p {
    font-size: 18px;
    line-height: 1.5;
    margin-bottom: 20px;
    color: #333;
}

.swiper-slide h4 {
    font-size: 16px;
    font-weight: bold;
    color: #007bff;
}

/* Navigation buttons */
.swiper-button-prev, .swiper-button-next {
    color: #007bff;
    width: 50px;
    height: 50px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid #ddd;
}

/* Pagination */
.swiper-pagination-bullet {
    background: #007bff;
    opacity: 1;
}

.swiper-pagination-bullet-active {
    background: #0056b3;
}
 nav{
    font-family:'poppins', sans-serif !important;
 }

  /* Additional styling to ensure our slider works well */
  .vertical-slider {
    max-width: 600px;
    margin: 20px auto;
}
.vertical-slider .slick-slide {
    border: 1px solid rgb(209, 200, 200);
    margin: 10px;
    padding: 20px;
    background: white;
    color: #333;
    height: 20px; /* Set a specific height */
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 5px;
    /* Additional styling for textboxes */
    text-align: center;
}
/* Style for the textboxes */
#slikslide{
    background-color: white;
    border-radius: 10px ;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}