.events_section{
    /* background: linear-gradient(45deg, rgba(215, 244, 190, 1) 20%, rgba(54, 144, 255, 1) 100%); */
    background: linear-gradient(244deg, #D7F4BE -6.38%, #3690FF 146.1%);
    padding: 45px 0 55px;
}

.events__title{
    font-size: 43px;
    font-weight: 700;
    color: #0083BF;
    margin-bottom: 50px;
    text-align: center;
    text-transform: uppercase;
}

.events__grid{
    display:grid;
    grid-template-columns: 1fr;
    gap: 20px;
    position: relative;
}

.event_box{
    position: relative;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-color: #000;
    background-image: none !important;!i;!;
}

.event__wrapper{
    position: relative;
    transition: all .25s;
    position: absolute;
    z-index: 3;
    padding: 0 15px;
    top: 40%;
}

.event_box .after {
    content: "";
    padding-bottom: 89%;
    display: block;
    width: 100%;
    transition: all .25s;
    background-size: cover;
    opacity: 0.8;
}

.event_box:hover .event__wrapper {
    transform: translateY(-20px);
}

.event_box:hover .after {
    background-color: rgba(0, 0, 0, 0.25);
    transform: scale(1.1);
    opacity: 0.65;
}

.event_box:hover .event_button_wrapper {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    max-height: 200px;
}

.event_button_wrapper {
    margin-top: 30px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-40px);
    transition: all 0.25s;
    max-height: 0;
    text-align: center;
}

a.celebrate_cta.blue {
    background-color: #0083bf;
    color: #fff;
    font-weight: 500;
    display: inline-block;
    padding: 10px 30px;
}

a.celebrate_cta.blue:hover {
    background-color: #fff;
    color: #0083bf;
}

.event__head{
    position: absolute;
    top: 16px;
    width: 88%;
    display: flex;
    justify-content: space-between;
    color: #fff;
    z-index: 2;
}

.event__day{
    font-size:22px;
    line-height: 100%;
}
.event__day span{
    font-size: 14px;
    display: block;
    margin-top: 4px;
		line-height: 16px;
}

.event__date{
    font-size:50px;
    font-weight: 900;
    line-height: 1;
}

.event__month{
    font-size: 18px;
    line-height: normal;
    text-transform: uppercase;
    text-align: right;
}

.event_title{
    text-transform: uppercase;
    color: #fff;
    font-size: 24px;
    font-weight: 700;
    line-height: 120%;
    text-align: center;
}

#events__section .event_button_wrapper .fas {
    width: 18px;
    height: 18px;
    border: 2px solid #ffffff;
    border-radius: 50%;
    line-height: 14px;
    font-size: 10px;
    margin-left: 10px;
}

a.celebrate_cta.blue:hover .fas {
    border: 2px solid #0083bf !important;
    /* color: #0083bf; */
}

@media (min-width: 1200px){
    .events_section{
        padding: 80px 0 95px;
    }
    .events__grid{
        grid-template-columns: 1fr 1fr 1fr;
    }
}

@media (min-width: 1600px){
    .event_title{
        font-size: 35px;
    }
    .event__day{
        font-size: 27px;
    }
    .event__date{
        font-size: 63px;
    }
}
