
.event-description__section{
    padding-top: 6rem;
    padding-bottom: 6rem;
    position: relative;
}

.event-description__section::before{
    content: '';
    background: url(./../../img/icons/arc-beige.svg);
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    width: 45%;
    aspect-ratio: 10 / 16;
    position: absolute;
    right: -20%;
    top: 22.5%;
    opacity: 0.65;
    z-index: -1;
}

.event-description__section .event-description__title{
    margin: 0 auto 2rem auto;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    text-align: center;
}

.event-description__section .event-description__images{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin-bottom: 2rem;
}

.event-description__section .event-description__images .image-container{
    width: 48%;
    aspect-ratio: 10 / 10;
    margin-bottom: 4%;
}

.event-description__section .event-description__images .image-container .image{
    width: auto;
    min-height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
}

.event-description__section .event-description__content{
    text-align: center;
    margin-bottom: 4rem;
}

.event-description__section .event-description__content .event-description__text{
    margin-bottom: 3rem;
}

.event-description__section .event-description__pros{
    list-style: none;
    margin: 0;
}

.event-description__section .event-description__pros .event-description__pro{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
}

.event-description__section .event-description__pros .event-description__pro .pro__icon{
    height: 3rem;
    width: 3rem;
    margin-top: 1rem;
    margin-right: 2rem;
}

.event-description__section .event-description__pros .event-description__pro .pro__content{
    width: calc(100% - 5rem);
}

@media (min-width: 576px){
    .event-description__section::before{
        width: 40%;
    }

    .event-description__section .event-description__pros .event-description__pro .pro__content{
        width: calc(100% - 6rem);
    }
}

@media (min-width: 768px){
    .event-description__section::before{
        width: 25%;
        right: -12.5%;
        top: 30%;
    }

    .event-description__section .container{
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
        -webkit-box-pack: justify;
            -ms-flex-pack: justify;
                justify-content: space-between;
    }

    .event-description__section .event-description__title{
        margin-bottom: 4rem;
    }

    .event-description__section .event-description__images{
        margin-bottom: 4rem;
    }
    
    .event-description__section .event-description__images .image-container{
        width: 23%;
        aspect-ratio: 10 / 14;
        margin-bottom: 0;
    }

    .event-description__section .event-description__content{
        margin-bottom: 0;
        width: 48%;
    }
    
    .event-description__section .event-description__pros{
        width: 48%;
    }

    .event-description__section .event-description__pros .event-description__pro .pro__icon{
        height: 4rem;
        width: 4rem;
    }
}

@media (min-width: 992px){
    .event-description__section .event-description__title{
        width: 60%;
    }

    .event-description__section .event-description__pros{
        padding: 0 3rem;
    }
}

@media (min-width: 1200px){
    .event-description__section::before{
        width: 25%;
        right: -15%;
        top: unset;
        bottom: 10%;
    }

    .event-description__section .event-description__title{
        width: 55%;
        margin-bottom: 5rem;
    }

    .event-description__section .event-description__images{
        margin-bottom: 5rem;
    }
    
    .event-description__section .event-description__images .image-container{
        aspect-ratio: 10 / 13;
    }
    
    .event-description__section .event-description__pros{
        padding: 0 3rem;
    }
}