/* Imports */
@import url('https://fonts.googleapis.com/css2?family=Nunito&family=Roboto+Slab&display=swap');

/* General */
* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Nunito', sans-serif;
    color: #fff;
}

img {
    display: block;
}

li figure {
    width: 100%;
}

li figure img {
    width: 50%;
    height: auto;
    margin: 0 auto;
}

li iframe {
    width: 100%;
    height: 100%;
    margin: 0 auto;
}

figcaption {
    text-align: center;
}

/* Semantic */
header {
    height: 85vh;
    background-image: url(gmb/lobby_background.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: bottom;
    color: aliceblue;
    text-align: center;
}

header figure {
    display: grid;
    place-content: center;
    height: 100%;
    background-color: hsla(0, 0%, 100%, 0.429);
}

header figure img {
    height: 400px;
    width: 400px;
}

main nav {
    height: 15vh;
    position: sticky;
    top: 0;
}

main nav ul {
    height: 100%;
    list-style-type: none;
    display: grid;
    grid-auto-flow: column;
}

main nav a {
    display: grid;
    height: 100%;
    place-content: center;
    font-family: 'Roboto Slab', serif;
    font-size: 2rem;
    font-weight: bold;
    text-decoration: none;
    color: #fff;
    background: hsl(47, 98%, 52%);
}

main nav a:hover,
main nav a:focus {
    background: hsl(50, 100%, 50%);
}

main nav a:active {
    background: hsl(36, 98%, 52%);
    color: #fff;
}

main section {
    padding-top: 15vh;
    margin-top: -15vh;
    padding-bottom: 20vh;
    overflow-wrap: break-word;
}

main section p,
main section h2 {
    padding: 2em 2em 0.1em;
    font-size: 2.5rem;
}

main section ul {
    min-height: 50vh;
    list-style-type: none;
    padding: 1em 0;
    display: flex;
    justify-content: center;
    align-content: space-evenly;
    gap: 2em;
    flex-wrap: wrap;
}

main section li {
    width: 400px;
    font-size: 1.5rem;
}

/* Class */

.align-right {
    text-align: right;
}

.align-center {
    text-align: center;
}

.img-circled img {
    border: #fff solid 3px;
    border-radius: 50%;
}

.png-background img {
    background-color: hsl(50, 100%, 50%);
}

.map {
    border: 3px solid #fff;
}

.company-profile {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: wrap;
}

.company-profile figcaption p {
    padding: 0 0 0 0.5em;
    font-size: 2rem;
    text-align: left;
}

.company-profile img {
    margin: 0;
}

.kick {
    color: #02016F;
    font-family: Arial;
    font-weight: bold;
    -webkit-text-stroke: 0.5px #fff;
}

.pest {
    color: #F40910;
    font-family: Arial;
    font-weight: bold;
    -webkit-text-stroke: 0.5px #fff;
}

/* ID  */

#layanan {
    background-color: #fd3636;
}

#solusi {
    background-color: #6ec51d;
}

#kontak {
    background-color: #3657fd;
}