.custom-slider {
            position: relative;
            width: 100%;
            overflow: hidden;
        }

        .custom-slider-wrapper {
            display: flex;
            transition: transform 0.5s ease-in-out;
        }

        .custom-slide {
            min-width: 100%;
            box-sizing: border-box;
        }

        .custom-slider img {
            width: 100%;
            height: auto;
        }

        .slider-nav {
            position: absolute;
            top: 50%;
            width: 100%;
            display: flex;
            justify-content: space-between;
            transform: translateY(-50%);
        }

        .slider-nav button {
            background-color: rgba(0, 0, 0, 0.5);
            color: white;
            border: none;
            padding: 10px;
            cursor: pointer;
        }

        .slider-pagination {
            position: absolute;
            bottom: 10px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 5px;
        }

        .slider-pagination span {
            width: 10px;
            height: 10px;
            background-color: rgba(0, 0, 0, 0.5);
            border-radius: 50%;
            cursor: pointer;
        }

        .slider-pagination .active {
            background-color: white;
        }
        
        
        .logo-slider {
  overflow: hidden;
  position: relative;
  height: 100%;
  padding-bottom: 20px;
}

.logo-slider .swiper-slide {
  position: relative;
    max-width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    justify-content: center;
    align-items: center;
    -webkit-transition: all .2s ease;
    transition: all .2s ease;
    flex-wrap: wrap;
    gap: 15px;
    background:#000;
    padding:10px;
    border-radius:5px;
}



