#projects-section-selector{
    width: 350px;
    border-radius: 5px;
}

.img-flag{
    width: 45px;
}

#carrousel{
    overflow-x: auto;
    display: flex;
    gap: 1em;

}

#carrousel::-webkit-scrollbar{
    display: none;
}

.projects-container{
    animation: spin 25s infinite linear;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 30px 0;
    gap: 1em;
}




@keyframes spin {
    from {translate: 0%;}
    to {translate: -100%;}
}


.project-target{
    position: relative;
    width: 350px;
    height: 250px;
    overflow: hidden;
    box-shadow: 0 12px 30px rgba(0, 0, 0, .25);
}



.image-target-project{
    width: 100%;
    height: 100%;
    border: 1px solid #ddd;
    padding: 5px;
    border-radius: 5px;
}

.project-description{
    position: absolute;
    border-radius: 5px;
    background-color: whitesmoke;
    bottom: 0;
    width: 100%;
    height: 0;
    opacity: 0.9;
    transition: height 0.6s;

}

.project-target:hover .project-description{
    height: 100%;
}

.access-link-project a{
    text-decoration: none;
    font-weight: bold;
    color: black;
    cursor: pointer;

}

.access-link-project .bi-arrow-right{
    transition: all 0.6s;

}

.access-link-project:hover .bi-arrow-right{
    transform: translateX(10px);

}





