.event-section {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.event-item {
    position: relative;
    margin: 24px;
    width: 320px;
    height: 570px;
    overflow: hidden;
    background-color: var(--white);
    box-shadow: 0 0 30px 5px rgba(0, 0, 0, 0.15);
}

.item-img,
.event-body {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.item-img img {
    width: 100%;
}

.event-body {
    position: relative;
}

.specific-event-overlay {
    position: relative;
    width: 100%;
    height: 400px;
    background-color: rgba(24, 83, 122, 0.6);
    opacity: 0;
    transition: height linear 0.4s, opacity linear 0.2s;
}

.event-item:hover .specific-event-overlay {
    opacity: 1;
    height: 150px;
}

.event-info {
    background-color: var(--white);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 8px;
}

.specific-event-title {
    color: var(--blue-light);
    font-size: 1.5em;
    font-weight: bold;
    letter-spacing: 1px;
    margin: 12px;
}

.specific-event-price {
    color: var(--blue-light);
    font-size: 1em;
    font-weight: bold;
    letter-spacing: 1px;
    margin: 12px;
    margin-bottom: 19px;
    text-align: center;
}

.specific-event-info {
    letter-spacing: 0.5px;
    margin-bottom: 6px;
}

.specific-event-separator {
    width: 20%;
    height: 6px;
    background-color: var(--orange);
    margin-bottom: 16px;
}

.additional-info {
    border-top: 1px solid var(--green);
    margin-top: 12px;
    padding: 28px;
    padding-bottom: 0;
}

.additional-info .specific-event-info {
    font-size: 0.9em;
    margin-bottom: 20px;
    text-align: center;
}

.specific-event-info i {
    color: var(--blue-light);
    font-size: 1.1em;
    margin-right: 4px;
}

.specific-event-price span {
    color: var(--black);
    font-weight: normal;
}

.specific-event-action {
    color: var(--white);
    border: 3px solid var(--white);
    background-color: transparent;
    position: absolute;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    outline: none;
    padding: 12px;
    text-transform: uppercase;
    font-size: 1.3em;
    font-weight: bold;
    letter-spacing: 2px;
    transition: background-color 0.4s, top 0.4s;
}

.event-item:hover .specific-event-action {
    top: 50px;
}

.specific-event-action:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

.specific-event-info-description {
    text-align: center;
}