.event_overview{
    position:relative;
    overflow: hidden;
}
.event_overview .o-wrapper{
    position:relative;
    margin-top:12rem;
    margin-bottom:12rem;
    z-index:2;
}
.event_overview .points{
    display:flex;
    flex-direction:row;
    justify-content: space-between;
}
.event_overview .points .point{
    display:flex;
    flex-direction:row;
    align-items: center;
}
.event_overview .points .point .icon{
    padding:2rem;
}
.event_overview .points .point .icon svg{
    max-width: 80px;
    height:auto;
}
.event_overview .points .point .info{
    display:flex;
    flex-direction:column;
    padding:2rem;
    border-left:1px solid #FFFFFF;
    gap:1rem;
    color:#FFFFFF;
    font-family:"Open Sans",sans-serif;
    text-transform: uppercase;
    line-height:1;
}
.event_overview .points .point .info .number{
    font-size:4rem;
    font-weight:700;
}
.event_overview .points .point .info .label{
    font-size:1.4rem;
}
.event_overview .parallax_image{
    width:calc(100% + 2rem);
    height:auto;
    position:absolute;
    top:0px;
    left:-1rem;
    filter:blur(0.5rem);
    transition:top 0.1s ease;
}
@media screen and (max-width:850px){
    .event_overview .o-wrapper{
        margin-top:6rem;
        margin-bottom:6rem;
    }
    .event_overview .points {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap:3rem;
    }
    .event_overview .points .point{
        justify-content: center;
    }
    .event_overview .parallax_image{
        width: 200vw;
        margin-left:-50vw;
    }
    .event_overview .points .point .icon{
        padding-left:0;
    }
    .event_overview .points .point .icon svg{
        max-width:40px;
    }
    .event_overview .points .point .info .number{
        font-size:3rem;
    }
}
@media screen and (max-width:450px){
    .event_overview .points{
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
    .event_overview .points .point .info {
        width: 150px;
        padding-right:0;
    }
    .event_overview .points .point .icon {
        width: 150px;
        text-align: right;
    }
    .event_overview .parallax_image{
        width: 400vw;
        margin-left:-150vw;
    }
}