.font-400{
    font-weight: 400 !important;
}

.event-modal .hide{
    display: none !important;
}

.event-modal{
    -webkit-backdrop-filter: blur(50px) opacity(30) brightness(.5);
    backdrop-filter: blur(50px) opacity(30) brightness(.5);
    min-height: 100vh;
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10000;
    overflow-y: scroll;
    height: 100%;
    animation: show-modal .5s forwards;
    color: #494949;
}

@keyframes show-modal {
    from{
        opacity: 0;
    }
    to{
        opacity: 1;
    }
}

body.modal-active{
    overflow: hidden;
}


.event-modal .m-container + .et-l.et-l--body{
    display: none;
}

.event-modal .m-container{
    background-color: #fff;
    margin: 40px auto;
    max-width: 1040px;
}

.event-modal .row-one{
    display: grid;
    grid-template-columns: 1fr 1fr;
    position: relative;
}

.event-modal .row-one .col1{
    position: relative;
}

.event-modal .row-one .col1 img{
    height: 100%;
    object-fit: cover;
    object-position: center;
    width: 100%;
}

.event-modal .row-one .col1 img.default{
    object-fit: contain;
}

.event-modal .row-one .col2{
    background-color: #DCAB5F;
    padding: 50px;
    display: flex;
    flex-direction: column;
}

.event-modal .row-one .close{
    position: absolute;
    top: 35px;
    right: 35px;
    cursor: pointer;

}

@media screen and (max-width: 767px){
    .event-modal .row-one .close{
        top: -40px;
        right: 0;
    }
}

.event-modal .row-one .col2 .category a{
    display: inline-block;
    font-size: 14px;
    line-height: 19px;
    color: #494949;
    padding: 10px 30px;
    border: 1px solid #494949;
    text-transform: uppercase;
    border-radius: 35px;
}

.event-modal .row-one .col2 .category{
    margin-bottom: 35px;
}

.event-modal .row-one .col2 .info img{
    max-width: 25px;
    height: auto;
}

.event-modal .row-one .col2 .info p{
    font-weight: 600;
    font-size: 20px;
    color: #ffffff;
    line-height: 27px;
    margin-bottom: 0;
    margin-top: 0;
}

.event-modal .row-one .col2 .event,
.event-modal .row-one .col2 .time,
.event-modal .row-one .col2 .address{
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.event-modal .row-two .col1{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    padding: 120px 150px 0 70px;
}

.event-modal .row-two .title{
    font-size: 26px;
    font-weight: 700;
    line-height: 35px;
    margin-bottom: 20px;
}
.event-modal .row-two .content{
    margin: 0 0 40px 0;
    font-size: 20px;
}

.event-modal .row-two .map{
    height: 360px;
}

.event-modal .map-link{
    position: relative;
}

.event-modal .map-link img{
    width: 100%;
}

.event-modal .row-two .ticket{
    margin-bottom: 70px;
}

.event-modal .row-two .ticket a{
    background-color: #494949;
    padding: 15px 40px;
    display: inline-flex;
    gap: 15px;
    align-items: center;
}

.event-modal .row-two .ticket a span{
    color: #ffffff;
    text-transform: uppercase;
}

.event-modal .row-two .links{
    display: flex;
    align-items: center;
    justify-content: end;
    margin-bottom: 20px;
    position: absolute;
    top: 0;
    right: 0;
}

.event-modal .row-two .links a{
    width: 85px;
    height: 85px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.event-modal .row-two .links a.link{
    background-color: #49494999;
}

.event-modal .row-two .links a.whatsapp{
    background-color: #494949CC;
}

.event-modal .row-two .links a.mail{
    background-color: #494949;
}

@media screen and (max-width: 767px){
    .event-modal .row-one{
        grid-template-columns: 1fr;
    }

    .event-modal .row-one .col2{
        padding: 25px;
    }

    .event-modal .row-two .links a{
        width: 65px;
        height: 65px;
    }

    .event-modal .row-two .col1{
        padding: 100px 25px 50px;
    }

    .event-modal .row-one .close{
        display: flex;
        background-color: rgba(255,255,255,.2);
        box-shadow: rgba(0, 0, 0, 0.16) 0px 10px 36px 0px, rgba(0, 0, 0, 0.06) 0px 0px 0px 1px;
        padding: 10px;
        border-radius: 5px;
    }
}