.events {
    padding: 65px 0 50px 0;
}

.events-container {
    max-width: 84.375rem;
    margin: 0 auto;
    padding: 0 .9375rem
}

.events__title {
    max-width: 450px;
    font-size: 24px;
    color: #000000;
    font-weight: 800;
    margin-bottom: 50px;
}

.events-list {
    display: flex;
    flex-direction: column;
    gap: 50px;
    border-left: 2px solid #D8D9DD;
    padding-left: 50px;
    max-width: 585px;
    align-items: stretch;
}

.event-item {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 120px;
    gap: 15px;
    box-shadow: 0px 4px 4px 0px #1C59AE40;
    padding: 8px 10px 7px 15px;
    border-radius: 16px;
}

.event-item::before {
    position: absolute;
    content: '';
    width: 50px;
    height: 2px;
    left: -50px;
    top: 50%;
    transform: translateY(-50%);
    background-color: #D8D9DD;
}

.event-item::after {
    position: absolute;
    content: '';
    width: 10px;
    height: 10px;
    border-radius: 50%;
    left: -56px;
    top: 50%;
    transform: translateY(-50%);
    background-color: #D8D9DD;
}

.event-details {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    gap: 20px;
}

.event-date {
    display: flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 0;
}

.icon-calendar {
    display: flex;
    justify-content: center;
    align-items: center;
}

@media (max-width: 1024px) {
    .events {
        padding: 50px 0 25px 0;
    }

    .events__title {
        margin-bottom: 25px;
        font-size: 18px;
    }
}

@media (max-width: 767px) {

    .events-list {
        gap: 25px;
        padding-left: 25px;
    }

    .event-item::before {
        width: 25px;
        height: 2px;
        left: -25px;
    }

    .event-item::after {
        width: 10px;
        height: 10px;
        left: -31px;
    }
}

@media (max-width: 560px) {
    .event-item {
        flex-direction: column;
        align-items: flex-start;
        padding-bottom: 20px;
    }
}