@import url('https://fonts.googleapis.com/css2?family=Poppins&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

body {
    margin: 0;
    padding: 0;
    background: #f2e1c7;
    min-height: 100vh;
    overflow-x: hidden;
}

.container {
    width: 100%;
    margin: 0;
    padding: 0;
}

.posterSlider {
    position: relative;
    width: 100vw;
    height: 300px;
    margin: 0 auto;
    overflow: hidden;
    margin-top: 0;
    padding-top: 0;
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
    z-index: 1;
}

.posterSlider .slide {
  position: absolute;
  width: 100%;
  height: 100%;
  /* clip-path: circle(0% at 0 50%); */
  z-index: 0;
}

.posterSlider .slide.slider-active {
    /* clip-path: circle(100% at 50% 50%); */
    z-index: 1;
    /* transition: 2.5s;
    transition-property: clip-path; */
}

.posterSlider .slide img {
    width: 100vw;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    border-radius: 0;
}

.posterSlider .info {
    position: absolute;
    top: 20px;
    left: 20px;
    padding: 15px 30px;
    color: #fff;
}

.posterSlider .slide .info h2 {
    font-size: 48px;
    font-weight: 900;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.posterSlider .slide .info p {
    background: rgba(0, 0, 0, 0.25);
    padding: 12px 20px;
    border-radius: 20px;
    font-size: 16px;
    max-width: 600px;
    margin-top: 1em;
}

.posterSlider .navigation {
        position: absolute;
        bottom: 10px;
        left: 50%;
        transform: translateX(-50%);
        display: flex;
        gap: 5px;
        justify-content: center;
        align-items: center;
  /* transform: translateX(-50%); */
        z-index: 10;
}

.posterSlider .navigation .btn {
    background: rgba(255, 0, 0, 0.5);
    width: 12px;
    height: 12px;
    margin: 0 5px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 1001;
    position: relative;
    margin-top: 10px;
}

.posterSlider .navigation .btn.slider-active {
    background: #333;
}

@media (max-width: 620px) {
  .posterSlider {
        width: 100vw;
        height: 300px;
        margin: 0px;
  }

     .posterSlider .slide .info {
        top: 10px;
        left: 10px;
        padding: 10px 15px;
    }

    .posterSlider .slide .info h2 {
        font-size: 24px;
    }

    .posterSlider .slide .info p {
        font-size: 14px;
        max-width: 90%;
        padding: 8px 14px;
    }

    .posterSlider .navigation {
        position: absolute;
        bottom: 10px;
        left: 50%;
        transform: translateX(-50%);
        display: flex;
        gap: 5px;
        justify-content: center;
        align-items: center;
    }


    .navbar {
        width: 100%;
        margin-bottom: 0 !important;
        padding-bottom: 0 !important;
        border-bottom: none !important;
        box-shadow: none !important;
    }

    .navbar-container {
        padding: 0 0px;
        margin-bottom: 0;
    }
}
