* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    color: teal;
}

.container-hero {
    background-image: url(../gambar/ejlabel.jpg);
    height: 100vh;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    flex-direction: column;justify-content: center;
    background-attachment: fixed;
}

.text {
    text-align: center;
    font-size: 30px;
    color: white;
}

.container-info-panel {
    width: 100%;
    display: flex;
    justify-content: space-evenly;
    flex-wrap: nowrap;
}

.info-panel {
    margin-top: 50px;
    text-align: center;
}

.judul-info-panel {
    font-size: 25px;
    font-weight: bold;
    color: #2C2416;
}

.info-panel p {
    font-size: 18px;
    padding-top: 10px;
    color: #756B5A;
}

.info-panel .fas,.fab,.far {
    font-size: 45px;
    color: goldenrod;
    margin-top: 20px;
    margin-bottom: 20px;
}

.container-paket-kelas {
    background-color: azure;
    margin-top: 50px;
}

.header h2 {
    padding-top: 50px;
    text-align: center;
}

.header hr {
    width: 20%;
    margin: auto;
    border: 2px solid salmon;
    margin-top: 5px;
    border-radius: 10px;
}

.container-card-flex {
    width: 100%;
    display: flex;
    margin-top: 30px;
    flex-wrap: wrap;
    justify-content: space-evenly;
    padding-top: 40px;
}

.carid-items {
    width: 400px;
    background-color: azure;
    padding: 20px;
    margin-top: 30px;
    box-shadow: 0px 0px 20px -5px;
    border-radius: 10px;
}

.carid-items img {
    width: 100%;
    border-radius: 10px;
    height: 240px;
    object-fit: cover;
    border-radius: 10px;
}

.carid-items img:hover {
    transform: scale(1.1);
    transition: 1s;
}

.carid-items h3 {
    margin-top: 40px;
    font-size: 30px;
    font-weight: bold;
    padding-bottom: 10px;
    color: #075985;
}

.carid-items p {
    font-weight: bold;
    margin-top: 5px;
    color: #0F766E;
}


.carid-items a {
    color: white;
    background-color: green;
    text-decoration: none;
    text-align: center;
    display: block;
    margin-top: 45px;
    border: 5px solid green;
    border-radius: 10px;
    padding: 5px
}

.carid-items a:hover {
    color: goldenrod;
}

.container-galeri {
    margin-top: 50px;
    background-color: azure;
}

.container-galeri h2 {
    padding-top: 50px;
    text-align: center;
}

.container-galeri hr {
    width: 20%;
    margin: auto;
    border: solid salmon;
    margin-top: 5px;
    border-radius: 10px;
}

.galeri-flex {
    width: 100%;
    margin-top: 30px;
    display: flex;
    justify-content: space-evenly;
    flex-wrap: wrap;
    padding-bottom: 40px;
}

.galeri-items {
    width: 400px;
}

.galeri-items img {
    width: 100%;
    margin-top: 30px;
    border-radius: 10px;
}

.galeri-items img:hover {
    transform: scale(1.1);
    transition: 1s;
}

.container-testimoni {
    margin-top: 50px;
    width: 100%;
}

.testimoni-flex {
    width: 100%;
    margin-top: 30px;
    display: flex;
    justify-content: space-evenly;
    flex-wrap: wrap;
    padding-bottom: 40px;
}

.testimoni-items {
    width: 250px;
    text-align: center;
    box-shadow: 0px 0px 20px -10px;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 10px;
    background-color: azure;
}

.testimoni-items img {
    width: 100%;
    margin-top: 30px;
    border-radius: 10px;
    margin-bottom: 10px;
}

.testimoni-items q {
    font-size: 14px;
    margin-top: 50px;
}


.container-footer {
    margin-top: 50px;
    background-color: teal;
}

.footer-flex {
    width: 100%;
    display: flex;
    justify-content: space-evenly;
    padding: 20px;
}

.footer-items-logo {
    width: 400px;
}

.footer-items-logo img {
    width: 100px;
    border-radius: 50%;
}

.footer-items-text {
    width: 600px;
    text-align: right;
}

.footer-items-text p {
    color: white;
    font-size: 16px;
    line-height: 20px;
    font-weight: bold;
}

.footer-items-text .fab {
    color: white;
    font-size: 26px;
    margin-top: 20px;
}