.events {
    padding: 100px 0 0 0;
}

.events h2 {
    font-size: 36px;
    font-weight: 700;
    color: #112231;
    text-align: center;
    margin-bottom: 67px;
}

.events h2 span {
    font-weight: 400;
}

.event__items {
    display: flex;
    flex-direction: column;
    gap: 70px;
}

.events__item {
    display: flex;
    gap: 30px;
    align-items: center;
    justify-content: center;
    padding-inline: 1.5rem;
    flex-wrap: wrap;
    width: 100%;
}

.events__item h3 {
    font-size: 24px;
    font-weight: 800;
    color: #112231;
    margin-bottom: 0;
    line-height: normal;
}

.event__image img {
    max-width: 200px;
    max-height: 200px;
}

.event__start {
    color: #FF4F3F;
    background-color: #F9FAFB;
    border-radius: 4px;
    width: 75px;
    min-height: 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.event__image {
    width: 200px
}

.event__info {
    flex: 1;
}

.event__start .day {
    font-size: 24px;
    font-weight: 800;
    line-height: normal;
}

.event__start .month {
    font-size: 16px;
    font-weight: 500;
    line-height: normal;
    color: #112231
}

.event__duration {
    color: #003446;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 130%;
}

.events__item a.btn.btn-primary {
    font-size: 14px;
}

.book-link {
    font-size: 16px;
    font-weight: 400;
    color: #29D8C1;
    line-height: normal;
    text-decoration: none;
}

@media (max-width: 768px) {
    .events__item {
    }

    .event__image__empty {
        position: relative;
    }

    .event__image__empty .event__start {
        position: absolute;
        left: 1.5rem;
        top: 0;
    }

    .event__image {
        width: calc(100% - 75px - 30px);
    }

    .event__image__empty .event__info h3,
    .event__image__empty .event__info .event__duration__dur {
        padding-left: 90px;
    }

    .event__image__empty .event__info .event__duration__dur {
        margin-bottom: 20px;
    }

    .event__image__empty .event__image {
        display: none;
    }
}