.banner {
    margin-top: 45px;
    width: 100%;
    height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(0, 0, 0, 0.524);
    overflow: hidden;
}
.banner::before {
    content: "";
    position: absolute;
    top: 120px;
    left: 0;
    right: 0;
    bottom: calc(30vh - 115px);
    background: url("../asset/bengkel_background.jpg");
    background-position: center top;
    background-size: cover;
    background-repeat: no-repeat;
    image-rendering: optimizeSpeed;
    z-index: -1;
}
.banner h1 {
    width: 100%;
    text-align: center;
    color: var(--secondary);
}

.vwrap {
    margin: 10vh auto;
    width: 70%;
    display: flex;
    flex-wrap: wrap;
}

.contact {
    margin: auto 10px auto auto;
    padding: 10px 10px 10px 0;
    width: 40%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: left;
    gap: 10px;
}
.contact .title {
    padding: 10px 10px 16px 0;
    width: 100%;
    font-size: 26px;
    text-align: left;
    color: var(--secondary);
    font-weight: 600;
    border-bottom: 2px solid black;
}
.contact .messages {
    margin: 0 auto 30px auto;
    padding: 0 10px 22px 0;
    width: 100%;
    font-size: 16px;
    text-align: left;
    color: var(--secondary);
    font-weight: 600;
}
.contacts {
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: left;
    gap: 10px;
}
.contacts ion-icon {
    width: 20px;
    height: 20px;
    color: var(--secondary);
}
.contacts .info {
    font-size: 14px;
}

.maps {
    margin: auto auto auto 10px;
    padding: 5vh 10px;
    width: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
}
.maps .title {
    margin: 15px 0;
    width: 100%;
    text-align: center;
    color: var(--secondary);
    font-weight: 600;
}
.maps iframe {
    width: 50%;
    aspect-ratio: 1/1;
    border: 1px solid var(--secondary);
}

@media only screen and (orientation: portrait) {
    .contacts ion-icon {
        width: 3.5vw;
        height: 3.5vw;
    }
    .contacts {
        max-width: 80vw;
        justify-content: start;
    }
    .contacts .info {
        text-align: justify;
        max-width: 65vw;
    }
}