nav {
    z-index: 1000 !important;
    position: relative;
    background-color: var(--boxBG) !important;
}
.events {
    display: flex;
    flex-wrap: wrap;
    background-color: var(--hColor);
    width: 100vw;
    height: max-content;
}
.events .eventName {
    width: 28vw;
    height: 80vh;
    background-color: var(--boxBG);
    display: flex;
    align-items: center;
    z-index: 2;
    
}
.lineBarBox {
    display: flex;
    align-items: center;
}
.events .eventName .lineBar {
    width: 60px;
    height: 5px;
    background-color: var(--hColor);
}
.events .eventName .title {
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: flex;
    align-items: center;
}
.events .eventName .title h1 {
    font-size: 32px;
    /* margin: 0; */
    font-family: 'Akira';
}
.events .eventCont {
    width: 72vw;
    height: 80vh;
    background-color: var(--hColor);
    color: var(--boxBG);
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 1rem;
    padding: 15px;
    z-index: 1;
}
.eventCont img {
    height: 450px;
    width: auto;
    border-radius: 10px;
}


/* RESPONSIVE */
@media screen and (max-width: 600px) {
    .events .eventName .title h1 {
        font-size: 28px;
        
    }
  }
  @media screen and (max-width: 426px) {
    .eventCont img {
        height: auto;
        width: 300px;
    }
  }

  @media screen and (max-width: 390px) {
    .eventCont img {
        height: auto;
        width: 250px;
    }
  }
@media screen and (max-width: 1180px) { 
    .events .eventName {
        width: 20vw;
        flex-direction: column; /* stack line and text vertically */
        justify-content: center;
    }

    .events .eventName .title {
        writing-mode: vertical-rl;
        height: auto;
        width: auto;
    }

    .events .eventName .lineBarBox .lineBar {
        visibility: hidden;
        position: absolute;
    }
    .events .eventCont {
        width: 80vw;
    }
}