.events .box-container {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.events .box-container .box {
    border: .1rem solid rgba(0, 0, 0, .2);
    box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .1);
    border-radius: .5rem;
    overflow: hidden;
    background: #fff;
    flex: 1 1 30rem;
}

.events .box-container .box .image-container {
    overflow: hidden;
    position: relative;
    width: 100%;
    height: 25rem;
}


.events .box-container .box .image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .2s linear;
}

.events .box-container .box:hover .image-container img {
    transform: scale(1.1);
}

.events .box-container .box .image-container .info {
    position: absolute;
    top: 1rem;
    left: 0;
    display: flex;
}

.events .box-container .box .image-container .info h3 {
    font-weight: 500;
    font-size: 1.4rem;
    color: #fff;
    background: rgba(0, 0, 0, .3);
    border-radius: .5rem;
    padding: .5rem 1.5rem;
    margin-left: 1rem;
}

.events .box-container .box .image-container .icons {
    position: absolute;
    bottom: 1rem;
    right: 0;
    display: flex;
}

.events .box-container .box .image-container .icons a {
    font-size: 1.4rem;
    color: #fff;
    display: flex;
    border-radius: .5rem;
    background: rgba(0, 0, 0, .3);
    margin-right: 1rem;
    padding: .7rem;
}

.events .box-container .box .image-container .icons a h3 {
    font-weight: 500;
    padding-left: .5rem;
}

.events .box-container .box .image-container .icons a:hover {
    background: var(--lightBlue);
}

.events .box-container .box .content {
    padding: 1.5rem;
}

.events .box-container .box .content .price {
    display: flex;
    align-items: center;
}

.events .box-container .box .content .price h3 {
    color: var(--lightBlue);
    font-size: 2rem;
    margin-right: auto;
}

.events .box-container .box .content .price a {
    color: #666;
    font-size: 1.5rem;
    margin-right: .5rem;
    border-radius: .5rem;
    height: 4rem;
    width: 4rem;
    line-height: 4rem;
    text-align: center;
    background: #f7f7f7;
}

.events .box-container .box .content .price a:hover {
    background: var(--lightBlue);
    color: #fff;
}

.events .box-container .box .content .location {
    padding: 1rem 0;
}

.events .box-container .box .content .location h3 {
    font-size: 2.5rem;
    color: #333;
}

.events .box-container .box .content .location p {
    font-size: 1.5rem;
    color: #666;
    line-height: 1.5;
    padding-top: .5rem;
}

.events .box-container .box .content .details {
    padding: .5rem 0;
    display: flex;
}

.events .box-container .box .content .details h3 {
    flex: 1;
    padding: 1rem;
    border: .1rem solid rgba(0, 0, 0, .1);
    color: #999;
    font-size: 1.3rem;
}

.events .box-container .box .content .details h3 i {
    color: #333;
    padding-left: .5rem;
}

.events .box-container .box .content .details a {
    color: #333;

}

.events .box-container .box .content .buttons {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
}

.events .box-container .box .content .buttons .btn {
    flex: 1;
    font-size: 1.5rem;
}


.event-section .row {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.event-section .row .images {
    flex: 1 1 40rem;
    padding: 1rem;
    position: relative;
    /* Positionnement relatif ajouté ici */
}

.event-section .row .images img {
    width: 100%;
    border-radius: .5rem;
    border: 1rem solid var(--lightBlue);
}

.event-section .image-indicator {
    position: absolute;
    bottom: 10px;
    /* Position par rapport au bas du conteneur .images */
    right: 10px;
    /* Position par rapport au côté droit du conteneur .images */
    background-color: rgba(255, 255, 255, 0.5);
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 16px;
    color: #000;
    /* Assurez-vous que la couleur est visible sur votre fond */
}

.event-section .row .content {
    flex: 1 1 45rem;
}

.event-section .row .content h3 {
    font-size: 3.5rem;
    color: #000;
}

.event-section .row .content p {
    font-size: 1.5rem;
    color: #000;
    padding: 1rem 0;
    line-height: 2;
}

.event-section .row .content .count-down {
    display: flex;
    padding: 1rem 0;
    gap: 1.5rem;
}

.event-section .row .content .count-down .box {
    width: 9rem;
    text-align: center;
    border: .1rem solid var(--gradient);
}

.event-section .row .content .count-down .box h3 {
    font-size: 5rem;
    color: black;
}

.event-section .row .content .count-down .box span {
    font-size: 1.7rem;
    color: black;
    display: block;
    background: var(--gradient);
    padding: .5rem;
}
