.about_section {
    position: relative;
    display: flex;
    margin-top: 30px;
}

.about_section .cities {
    text-align: center;
    background-image: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.2)), url("https://images.pexels.com/photos/2654902/pexels-photo-2654902.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=2");
    background-position: top;
    background-size: cover;
    background-repeat: no-repeat;
    width: 100%;
    height: 58vh;
    margin-top: -2rem;
    color: white;
}

.about_section .event_banner {
    text-align: center;
    background-image: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.2)), url("https://images.pexels.com/photos/2461977/pexels-photo-2461977.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=2");
    background-position: top;
    background-size: cover;
    background-repeat: no-repeat;
    width: 100%;
    height: 50vh;
    margin-top: 5rem;
    color: white;
}


.about_section .cities .city {
    padding: 0 100px;
}



.about_section .cities h1 {
    font-size: 60px;
    font-weight: 700;
    margin-top: 12rem;
    transition: all 0.5s;
    cursor: pointer;
    text-transform: uppercase;
}

.about_section .cities h1:hover,
.about_section .cities p:hover {
    transform: scale(0.9);
    color: #e4a433;
}

.about_section .cities p {
    font-size: 18px;
    font-weight: 200;
    transition: all 0.5s;
    cursor: pointer;
}





@media(max-width:992px) {
    .about_section {
        position: relative;
        display: flex;
        margin-top: 112px;
    }

    .about_section .cities {
        width: 100%;
        height: 30vh;
    }

    .about_section .cities h1 {
        font-size: 30px;
        font-weight: 700;
        margin-top: 3rem;
        transition: all 0.5s;
        cursor: pointer;
        text-transform: uppercase;
    }

    .about_section .cities .city {
        padding: 0px;
    }
}