  /* beranda */
  #beranda{
    width: 100%;
    height: 900px;
    background-image: url('/img/background-beranda.jpg');
    background-size:cover;
    background-repeat: no-repeat;
    position: relative;
    display: flex;
    flex-direction: column;
    /* z-index: 0; */
    z-index: 1;
    clip-path: polygon(0 0, 100% 0, 100% 85%, 50% 100%, 0 85%);
  }


.overlay-beranda {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 1;
}

.purify {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    z-index: 1;
}


.banner {
    /* height: 412px; */
    padding: 4em 1em;
    /* background-color: green;     */
    display: flex;
    justify-content: start;
    flex-direction: column;
    align-items: center;
    gap: 1em;
    margin-top: 120px;
}

.banner p {
    margin: 0;
    display: inline-block;
    width: 600px;
    font-size: 70px;
    text-align: center;
    padding: 0.5em;
    color: white;
    /* background-color: red; */
}

.banner button {
    width: 200px;
    /* flex: none; */
    height: 50px;
    font-size: 20px;
    /* margin-top: -50px; */
    color: white;
    border: none;
    border-radius: 100px;
    background-color: #F99D1E;
    /* position: absolute; */
}