.carousel {
    height: 280px;
    margin: 2% 0;
}

.carousel-prev, .carousel-next {
    margin-top: 25px;
    width: 50px;
    height: 50px;
}

.carousel-prev {
    left: 10%;
}

.carousel-next {
    right: 10%;
}

.carousel-prev:hover svg, .carousel-next:hover svg {
    cursor: pointer;
    transform: scale(1.05, 1.3);
}

.carousel-prev svg, .carousel-next svg {
    transition: all 0.2s ease-in-out;
    position: absolute;
    width: 47px;
    height: 47px;
}

.carousel-prev svg path, .carousel-next svg path {
    fill: #EC7305;
}

.carousel-container {
    transition: all 0.3s ease-in-out;
}

.carousel-item {
    box-sizing: border-box;
    background: linear-gradient(180deg, #F0F0F0 0%, #E2E2E2 100%);
    border: 3px solid #EC7305;
    box-shadow: 4px 4px 4px rgba(0, 0, 0, 0.25);
    border-radius: 15px;
    width: 563px;
    height: 260px;
    transition: all 0.3s ease-in-out;
}

.carousel-item:hover {
    transform: translate(0px, -10px);
}

.carousel-border {
    height: 120%;
}

.carousel-item svg {
    width: 40px;
    height: 40px;
    left: -50px;
    top: -10px;
    position: absolute;
}

.carousel-item .date {
    margin: 26px;
    font-weight: bold;
    font-size: 72px;
    color: #D3D3D3;
}

.carousel-item .diplome {
    height: 20px;
    position: relative;
    margin-bottom: 35px;
    margin-left: 108px;
    font-weight: bold;
    font-size: 20px;
    line-height: 23px;
    color: #818589;
}

.carousel-item path {
    fill: black;
}

.carousel-item .formateur, .carousel-item .lieu {
    height: 20px;
    margin-left: 108px;
    position: relative;
    margin-bottom: 8px;
    font-weight: normal;
    font-size: 18px;
    line-height: 21px;
    color: #818589;
}

.other .diplome {
    margin-bottom: 23px;
    font-size: 18px;
}

.other .date {
    margin-bottom: 5px;
}

.carousel-indexes-container {
    width: 65px;
    display: flex;
    position: absolute;
    justify-content: space-between;
    align-items: center;
}

.carousel-indexes-container .carousel-page-indicator {
    width: 7px;
    height: 7px;
    border-radius: 100%;
    background: #C4C4C4;
    transition: all 0.3s ease-in-out;
}

.carousel-indexes-container .active {
    background: #7C7C7C;
    transform: scale(1.1);
}