@import url('./font.css');

*{
    scrollbar-width: 0px !important;
}
::-webkit-scrollbar{
    width: 0px;
}
.splide-list {
    animation: slider 500s infinite;
}

@keyframes slider {
    from {
        transform: translateX(0%);
    }

    to {
        transform: translateX(-500%);
    }
}
/* Remove the border around active thumbnails */
.splide__slide.is-active img {
    border: none;
    outline: none;
  }
  
  /* Custom vertical arrows */
  .vertical-arrows {
    position: absolute;
    bottom: 10px;
    left: 10px;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  
  .splide__arrow {
    width: 30px;
    height: 30px;
    background: #007bff;
    border: none;
    border-radius: 50%;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  
.container-slide {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}


.splide-track {
    width: 100%;
}


::-webkit-input-placeholder {
    color: white !important;
}
.from-modal input, textarea {
    background-color: #E3E3E3;
}
.from-modal ::-webkit-input-placeholder{
    color: #4F554AB3 !important;
}
.cotalog::-webkit-input-placeholder {
    color: #3f8218c0 !important;
}

.custom-slide {
    transition: transform 0.3s ease;
}

.active-slide {
    transform: scale(1.4);
    z-index: 10;
    margin-left: 50px;
}

.frist-slide {
    padding: 20px 0px;
}

.splide__slide {
    margin-right: 20px;
}

.splide__slide img {
    transform: scale(0.8);
    object-fit: contain;
    margin: 0px 13px !important;
}

.active {
    color: #3F8218;
}

.section {
    padding-top: 80px;
}

.section__title {
    font-family: 'nunito';
    font-size: 30px;
    text-transform: uppercase;
    font-weight: 800;
}

.splide-autoscroll {
    position: static !important;
    width: auto !important;
    transform: rotateZ('20deg') !important;

}



@media only screen and (max-width:1024px) {
    .section__title {
        font-size: 25px;
    }
}

@media only screen and (max-width:768px) {
    .section {
        padding-top: 40px;
    }

    .section__title {
        font-size: 20px;
        font-weight: 700;
    }
}

.innerSwiper .splide__track--nav>.splide__list>.splide__slide.is-active{
    border: 1px solid #00000060;
}
.splide__arrow--prev {
    padding: 6px;
    bottom: 24px !important;
    left: 24px !important;
    background-color: transparent;
    top: auto;
    transform: rotate(-90deg);
}
.splide__arrow--next {
    padding: 6px;
    bottom: 84px !important;
    left: 24px !important;
    background-color: transparent;
    top: auto;
    transform: rotate(-90deg);
}