

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    
    
}




html,
body {
    height: 100%;
    width: 100%;
}

.lg{
    position: sticky;
}

#main {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

#back {
    width: 100%;
    height: 100vh;
}

#top {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    pointer-events: none;
}

.workingArea {
    position: relative;
    width: 80%;
    max-width: 1920px;
    height: 100vh;
    margin: 0 auto;
}


.workingArea main {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translate(0, -50%);
    display: flex;
    justify-content: space-between;
    width: 100%;
}

.m-left {
    position: relative;
    min-width: 100%;
}

.m-left .elem {
    position: relative;
    height: 9vw;
    margin-bottom: 10px;
    overflow: hidden;
}

.m-left h1:nth-child(1) {
    top: 0;
}

.m-left h1 {
    position: absolute;
    top: 100%;
    left: 0;
    line-height: .9;
    font-family: kajiro;
    color: white;
    font-weight: 100;
    font-size: 11vw;
}

.m-left button {
    border: none;
    outline: none;
    border-radius: 0;
    padding: .5vw 2vw;
    margin-top: 2vw;
    cursor: pointer;
    pointer-events: all;
    
    a {
        font-family: kajiro;
        color: black;
        text-decoration: none;
        font-size: 2.2vw;
        font-weight: -900;
        letter-spacing: .3vw;

    }
}

.ql a {
    display: block;
    color: rgb(255, 255, 255);
    text-decoration: none;
    font-size: 17px;
}


.slide1{
    height: 50%;
    width: 100%;
}


.event-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  .event-card:hover {
    transform: scale(1.03);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  }

  .card-title {
    font-weight: 600;
  }

  .btn-danger {
    transition: all 0.3s ease-in-out;
  }

  .btn-danger:hover {
    background-color: #c0392b;
    transform: scale(1.02);
  }