.events {
    position: relative;
    z-index: 2;
    padding-left: 20px;
    padding-bottom: 60px;
}

.events>.title {
    max-width: 280px;
    margin-bottom: 25px;
}

.events>.title a {
    color: var(--off-white);
}

.events>.title .outline {
    font-size: 43px;
    line-height: 42px;
    text-transform: uppercase;
    -webkit-text-stroke: 1px;
    font-family: var(--font-display);
    font-weight: 900;
}

.events>.title .bottom {
    font-size: 43px;
    line-height: 42px;
    margin-bottom: 10px;
    text-transform: uppercase;
    font-family: var(--font-body);
    font-weight: 700;
    color: var(--off-white);
}

.events>.title .link a {
    color: var(--off-white);
    text-transform: uppercase;
    font-size: 15px;
    line-height: 18px;
    font-family: var(--font-body);
    font-weight: 500;
}

.events>.title .link .icon {
    margin-left: 10px;
}

.events .event-cont {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
}

.events .event {
    position: relative;
    width: 100%;
    max-width: 265px;
    margin-left: 20px;
    margin-right: 20px;
    margin-bottom: 40px;
    box-shadow: 0 0 38px rgba(0, 0, 0, 0.35)
}

.events .event:last-child {
    margin-bottom: 0;
}

.events .event .img-cont {
    position: relative;
}

.events .event .img-cont img {
    width: 100%;
    height: auto;
    vertical-align: middle;
}

.events .event .img-cont .date-bubble {
    position: absolute;
    width: 70px;
    height: 70px;
    top: -15px;
    left: -20px;
    background-color: #fff;
    border-radius: 50%;
    box-shadow: 0 0 38px rgba(0, 0, 0, 0.35)
}

.events .event .img-cont .date-bubble .date {
    position: absolute;
    top: 50%;
    right: 50%;
    transform: translate(50%, -50%);
    text-align: center;
}

.events .event .img-cont .date-bubble .top {
    color: var(--dark-grey);
    font-size: 10px;
    font-family: var(--font-body);
    font-style: normal;
    font-weight: 500;
    line-height: 12px;
    text-transform: uppercase;
}

.events .event .img-cont .date-bubble .bottom {
    color: var(--dark-grey);
    font-size: 30px;
    font-family: var(--font-body);
    font-style: normal;
    font-weight: 500;
    line-height: 32px;
    text-transform: uppercase;
}

.events .event .content {
    padding: 12px 20px 10px;
    background-color: #fff;
}

.events .event .content .title h6 {
    font-size: 17px;
    line-height: 20px;
    margin-bottom: 5px;
}

.events .event .content .date {
    color: var(--dark-grey);
    font-size: 12px;
    font-family: var(--font-body);
    font-style: normal;
    font-weight: 500;
    line-height: 15px;
    text-rendering: optimizeLegibility;
    margin-bottom: 5px;
}

.events .event .content .address {
    color: var(--dark-grey);
    font-size: 12px;
    font-family: var(--font-body);
    font-style: normal;
    font-weight: 500;
    line-height: 15px;
    text-rendering: optimizeLegibility;
    margin-bottom: 5px;
}

.events .event .content .address .icon {
    color: var(--red);
    margin-right: 5px;
}

.events .bg {
    display: none;
}

@media only screen and (min-width: 768px) {
    .events {
        position: relative;
        margin-top: 40px;
        margin-right: 145px;
        padding: 0;
    }

    .events::after {
        display: none;
        background-image: none;
    }

    .events .event-cont {
        display: flex;
        align-items: flex-start;
    }

    .events .event:last-child {
        margin-top: 150px;
        margin-right: 0;
    }

    .events>.title {
        position: absolute;
        left: 360px;
        top: -8px;
        width: 100%;
        max-width: 460px;
        padding: 0 18px 0 46px;
    }

    .events>.title .outline {
        font-size: 69px;
        line-height: 70px;
        -webkit-text-stroke: 2px;
        letter-spacing: 2px;
    }

    .events>.title .bottom {
        font-size: 71px;
        line-height: 60px;
    }

    .events>.title .link {
        position: absolute;
        right: 18px;
        top: 24px;
    }

    .events>.title .link a {
        font-size: 18px;
        line-height: 18px;
    }

    .events>.title .link .icon {
        margin-left: 10px;
    }

    .events .event {
        max-width: 355px;
        margin-left: 0;
        margin-right: 100px;
        margin-bottom: 0;
    }

    .events .event .img-cont .date-bubble {
        width: 96px;
        height: 96px;
    }

    .events .event .img-cont .date-bubble .top {
        font-size: 13px;
        line-height: 14px;
    }

    .events .event .img-cont .date-bubble .bottom {
        font-size: 38px;
        line-height: 40px;
    }

    .events .event .content {
        padding: 13px 25px 25px;
    }

    .events .event .content .title h6 {
        font-size: 23px;
        line-height: 26px;
        margin-bottom: 5px;
    }

    .events .event .content .date {
        font-size: 15px;
        line-height: 18px;
    }

    .events .event .content .address {
        font-size: 15px;
        line-height: 18px;
    }

    .events .bg {
        position: absolute;
        display: block;
        left: 140px;
        top: 35px;
        z-index: -1;
    }
}