
.titremerch {

    font-size: 40px;
    color: rgb(255, 255, 255);
}
.mercharcadelegends {
    display: flex;
    /* flex-direction: column; */
    align-items: center;
    justify-content: center;
      background: linear-gradient(  rgb(0, 132, 255), #e80000);
}

.mercharcadelegendscontainer {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 50%;
    color: rgb(255, 255, 255);
  
    border-radius: 10px;
    margin-top: 20px;
    padding:20px;
}

.mercharcadelegendstexte {
    font-family: 'Elms', sans-serif;
    font-size: 22px;
    padding: 20px;
    color: white;
    text-align: justify;
    width: 60%;
}


.merchimage {
    display: flex;
    /* flex-wrap: wrap; */
    align-items: center;
    gap: 10px;
    justify-content: center;
}

.imgmerch {
    width: 300px;
    height: 400px;
}

.merchbtn {
    background-color: rgb(0, 62, 249);
    padding: 15px 20px;
    color: white;
    border-radius: 10px;
    border: 2px solid rgba(255, 255, 255, 0.091);
    width: 200px;
    cursor: pointer;
    font-size: 22px;
    font-family: "Elms Sans", sans-serif;
    margin-top: 10px;
}

.merchbox {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
   border: 2px solid rgba(255, 255, 255, 0.201);
    border-radius: 10px;
    padding: 20px;
}






.merch-logo-slider {
    width: 100%;
    overflow: hidden;
    /* white-space: nowrap; */
    box-sizing: border-box;
    position: relative;
    
   
}

.merch-logo-slider:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 120px;
    height: 100%;
    z-index: 9;
}

.merch-logo-slider:after {
    content: "";
   
    position: absolute;
    top: 0;
    right: 0;
    width: 120px;
    height: 100%;
    z-index: 9;
}

.merch-logo-slide {
    display: flex;
    align-items: center;
  
    gap: 20px;
    animation: merch-logo 30s linear infinite;
}

.merch-logo-slide:hover {
    animation-play-state: paused;
}

.merch-logo-slide img {
    padding: 20px;
    border-radius: 10px;
}

@keyframes merch-logo {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

@media only screen and (max-width: 1025px) {
    .merch-logo-slide {
        gap: 20px;
    }

   
}