@import url("https://fonts.googleapis.com/css?family=Outfit:400,500,600,700&display=swap");
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.navbar {
    font-family: Outfit;
}

body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #101820;
}

.jumbotron {
    background-image: url(img/wawang4.jpg);
    background-size: cover;
    position: center;
    height: 600px;
    text-align: start;
    font-family: "Outfit", sans-serif;
}


/* email maps */

.contact-container {
    justify-content: center;
    color: #fff;
    max-width: 100%;
    margin: auto;
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
    background: white;
    box-shadow: 0 0 1rem hsla(0 0 0 / 16%);
    border-radius: 2rem;
    overflow: hidden;
    position: relative;
    height: 600px;
}

.form-container {
    padding: 20px;
}

.form-container h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.contact-form {
    display: grid;
    row-gap: 1rem;
}

.contact-form input {
    width: 100%;
    font-size: 1rem;
}

.contact-form textarea {
    resize: none;
    height: 200px;
}

.contact-form .send-button {
    border: none;
    outline: none;
    font-size: 1rem;
    font-weight: 500;
    text-transform: uppercase;
    cursor: pointer;
}

.contact-form .send-button:hover {
    transition: 0.3s all linear;
}

.map iframe {
    width: 100%;
    height: 100vh;
}

@media (max-width: 964px) {
    .body {
        margin: 0 auto;
        width: 90%;
    }
}

@media (max-width: 700px) {
    .map iframe {
        height: 400px;
    }
}


/* icon */

.icon {
    display: grid;
    height: 100%;
    width: 100%;
    place-items: center;
}

.wrapper {
    display: flex;
    justify-content: center;
}

.wrapper .icon {
    margin: 0 20px;
    text-align: center;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    position: relative;
    z-index: 2;
    transition: 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.wrapper .icon span {
    display: block;
    height: 60px;
    width: 60px;
    background: #fff;
    border-radius: 50%;
    position: relative;
    z-index: 2;
    box-shadow: 0px 10px 10px rgba(0, 0, 0, 0.1);
    transition: 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.wrapper .icon span i {
    line-height: 60px;
    font-size: 25px;
}

.wrapper .icon .tooltip {
    position: absolute;
    top: 0;
    z-index: 1;
    background: #fff;
    color: #000;
    font-size: 20px;
    font-weight: 500;
    padding: 10px 18px;
    border-radius: 25px;
    opacity: 0;
    pointer-events: none;
    box-shadow: 0px 10px 10px rgba(0, 0, 0, 0.1);
    transition: 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.wrapper .icon:hover .tooltip {
    top: -70px;
    opacity: 1;
    pointer-events: auto;
}

.icon .tooltip::before {
    position: absolute;
    content: "";
    height: 15px;
    width: 15px;
    background: #fff;
    left: 50%;
    bottom: -6px;
    transform: translateX(-50%) rotate(45deg);
    transition: 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.wrapper .icon:hover span {
    color: #fff;
}

.wrapper .icon:hover span,
.wrapper .icon:hover .tooltip {
    text-shadow: 0px -1px 0px rgba(0, 0, 0, 0.4);
}

.wrapper .facebook:hover span,
.wrapper .facebook:hover .tooltip,
.wrapper .facebook:hover .tooltip::before {
    background: #2980b9;
}

.wrapper .whatsapp:hover span,
.wrapper .whatsapp:hover .tooltip,
.wrapper .whatsapp:hover .tooltip::before {
    background: #27ae60;
}

.wrapper .instagram:hover span,
.wrapper .instagram:hover .tooltip,
.wrapper .instagram:hover .tooltip::before {
    background: #e74c3c;
}

@media (max-width: 768px) {
    /* Aturan CSS untuk perangkat seluler */
}

@media (min-width: 768px) and (max-width: 992px) {
    /* Aturan CSS untuk tablet */
}

@media (min-width: 992px) {
    /* Aturan CSS untuk perangkat dengan lebar lebih besar */
}


/* Tombol naik */

#myBtn {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 30px;
    z-index: 99;
    background-color: red;
    color: white;
    cursor: pointer;
    border-radius: 200px;
}

#myBtn:hover {
    background-color: #555;
}


/* ----------------------------------------Animasi-------------------------------------------- */

.naik {
    position: relative;
    transform: translateY(50px);
    opacity: 0;
    transition: all 0.7s ease;
}

.tampil {
    position: relative;
    transform: translateY(0px);
    opacity: 1;
}