.section--events {
    margin: 90px 0;
}

.section--events::after{
    content:'';
    width: 50vw;
    height: 100%;
    background:#EDEDED;
    position: absolute;
    top:0;
    left:50%;
    z-index: -1;
}
.section--events .container {
    background:#EDEDED;
    display: flex;
    justify-content: space-between;
    border-radius: 20px 0 0 20px;
}
.section--events .section__column {
    width: calc(50% - 35px);
}
.section--events .section__column:nth-child(1){
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-left:60px;
    padding-bottom:40px;
}
.section--events .section__column:nth-child(2){
    padding: 110px 0;
}
.section--events .section__image {
    max-height: 80%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.section--events .section__image img{
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}
.section--events  .section__header .section__title {
    margin: 0 0 45px 0;
    text-transform: uppercase;
}
.section--events  .button--primary {

}


@media all and (max-width: 1340px){
    .section--events .container {
        border-radius: 0;
    }
}

@media all and (max-width: 1000px){
    .section--events {
        margin: 0 0 50px 0;
    }
    .section--events .container {
        flex-direction: column;
    }
    .section--events .section__column{
        width: 100%;
    }
    .section--events .section__column:nth-child(1){
        padding:clamp(14px, 5%, 25px) 0 55px 0
    }
    .section--events .section__column:nth-child(2){
        padding:0 0 clamp(14px, 5%, 25px) 0;
    }
    .section--events .section__header .section__title{
        width: 100%;
        text-align: center;
        margin: 0 0 clamp(14px, 5%, 25px)  0;
    }
    .section--events .section__text{
        width: 100%;
        text-align: center;
    }
    .section--events .section__controls{
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .section--events .section__controls .button {
        margin: clamp(14px, 5%, 25px)  0 0 0;
    }
}

