
.scroller{
    max-width: 100vw;
    min-height: 80px;
    overflow: hidden;
    mask: linear-gradient(90deg ,transparent, white 5%, white 95%, transparent);
}

.inner_scroller{    
    width: fit-content;
    display:flex;
    gap: 1rem;
    animation: scroll 20s infinite ease-in-out;
    color:#095702;
}

@keyframes scroll {
    0%{
        transform: translatex(0%);
    }
    50%{
        transform: translatex(-50%);
    }
    100%{
        transform: translatex(0%);
    }
}


.carousel {
    position: relative;
    height: 80vh;
    min-height: 400px;
    width: 40vw;
    min-width: 325px;
    max-width: 500px;
    margin: 0 auto;
}

.carousel_items > img {
    width:100%;
    height: 100%;
    object-fit: cover;
}

.carousel_track{
    position:relative;
    height: 100%;
    transition: transform 300ms ease-in;
}


.carousel_track_container{
    border-radius: 100%;
    background-color: aliceblue;
    height: 45vh;
    width: 45vh;
    position: relative;
    overflow: hidden;
    box-shadow: 0px 0px 5px 2px #063801;
}
.carousel_items{
    position:absolute;
    top: 0;
    bottom: 0;
    width:100%;
}

.carousel_button{
    color: #0b6b00;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
}

.carousel_button:hover{
    color:#27D515;
}

.carousel_button--left{
    left:-40px;
    
}
.carousel_button--right{
    right:-40px;
}

.carousel_nav {
    display: flex;
    justify-content: center;
    padding:10px;
}

.carousel_indi{
    border:0;
    border-radius: 100%;
    width:15px;
    height:15px;
    background-color: #27D515;
    margin: 0 10px;
    cursor: pointer;
}

.carousel_nav .current_indi{
    background-color: #0b6b00;
    width:16px;
    height:16px;
    
}

.is_hidden{
    display:none;
}

article{
    padding-top: 100px;
    padding-left: 5em;
}