.headerBody {
    height: 70vh;
    background: var(--bg);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding-top: 50px;
}

.headerTextBox {
    margin-top: 100px;
    width: 80%;
    color: var(--text-color);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
}

.headerTextBox h1 {
    font-size: 3em;
    font-weight: 900;
}

.headerTextBox p {
    line-height: 2em;
    font-size: 1.3em;
}

.searchBody {
    margin-top: 30px;
    width: 35%;
    min-width: 400px;
    max-width: 500px;
    height: 100%;
    max-height: 80px;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
}

.inputForm {
    width: 70%;
    height: 70%;
    margin-right: 10px;
    /* overflow: hidden; */
}

.inputForm input {
    width: 100%;
    height: 100%;
    border-radius: 10px;
    outline: none;
    border: none;
    margin: 0;
    padding: 0 10px 0 10px;
    font-size: 16px;
    border: 2px solid #ccc;
}

.inputForm input:focus {
    border: 2px solid var(--kuning);
}

.iconSearch {
    width: 25%;
    height: 70%;
    border-radius: 10px;
    background: #ffae0c;
    cursor: pointer;
}

.iconSearch button {
    position: relative;
    top: 2px;
    width: 100%;
    height: 100%;
    outline: none;
    border: none;
    background: transparent;
    cursor: pointer;
    color: var(--putih);
    transition: .3s;
    -webkit-transition: .3s;
    -moz-transition: .3s;
    -ms-transition: .3s;
    -o-transition: .3s;
    font-size: 1.5em;
}

.iconSearch button:hover {
    transform: scale(1.5) rotate(2deg);
    color: var(--putih);
    -webkit-transform: scale(1.5) rotate(2deg);
    -moz-transform: scale(1.5) rotate(2deg);
    -ms-transform: scale(1.5) rotate(2deg);
    -o-transform: scale(1.5) rotate(2deg);
}

.iconSearch input:hover {
    color: var(--putih);
}

/*  */
.kegiatanBody {
    height: auto;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--bg);
    color: var(--text-color);
    margin-top: 80px;
}

.kegiatanCardBody {
    background: #e6e6e6;
    width: 90vw;
    border-radius: 20px;
    height: auto;
    border-radius: 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    align-items: start;
    padding: 20px;
}

.kegiatanCardBody a {
    text-decoration: none;
    display: flex;
    justify-content: center;
    align-items: center;
}

.kegiatanCardBody a .boxCard {
    max-width: 300px;
    height: 400px;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    transition: .5s;
    border: 3px solid #fff;
    margin: 5px;
}

.kegiatanCardBody a .boxCard:hover {
    transform: translateY(-5px);
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    border: 3px solid #ffae0c;
}

.kegiatanCardBody a .boxCard .imgBoxCard {
    width: 100%;
    height: calc(100% - 35%);
}

.kegiatanCardBody a .boxCard .imgBoxCard img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.kegiatanCardBody a .boxCard .teksBoxCard {
    width: 100%;
    height: calc(100% - 65%);
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: start;
    flex-direction: column;
    gap: 10px;

}

.kegiatanCardBody a .boxCard .teksBoxCard span:nth-child(1) {
    font-weight: 600;
    color: #333;
}

.kegiatanCardBody a .boxCard .teksBoxCard span:nth-child(2) {
    font-style: italic;
    color: #219855;
    font-weight: 500;
}

.kegiatanCardBody a .boxCard .teksBoxCard span:nth-child(3) {
    color: #333;
}
