* {
    font-family: 'poppins';
}

html {
    scroll-behavior: smooth;
}

body {
    /* min-height: 1000vh; */
    background: ghostwhite;
}

header {
    width: 100%;
    top: 0;
    position: fixed;
    display: flex;
    z-index: 10000;
}

header.sticky {
    background: white;
    transition: 1s;
}


.navbar {
    /* position: relative; */
    width: 100%;
    padding: 10px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-sizing: border-box;
    color: blue;
}

.navbar .logo {
    letter-spacing: 2px;
}

.isi {
    display: flex;
    list-style: none;
}

.isi li {
    margin: 0 20px;
    letter-spacing: 2px;
}

.isi li a {
    text-decoration: none;
    color: blue;
}

.toggle {
    display: none;
}

.banner img {
    width: 100%;
    /* background-size: cover */
}

.banner figcaption {
    font-size: 12px;
    text-align: right;
    margin-top: -25px;
    color: white;
}

.sec {
    position: relative;
    padding: 20px;
    text-align: center;
}

.sec h2 {
    padding: 10px;
}

.sec p {
    padding: 10px;
    /* text-align: justify; */
}

.container {
    position: relative;
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    width: auto
}

.container .card {
    width: 220px;
    margin: 20px;
    padding: 40px 30px;
    border-radius: 30px;
    background: #dfe6e9;
    box-shadow: -6px -6px 10px rgba(255, 255, 255, 1),
        6px 6px 20px rgba(0, 0, 0, 1);
    z-index: 2;
}

.container .card:hover {
    box-shadow: inset -6px -6px 20px rgba(255, 255, 255, 0.5),
        inset 6px 6px 20px rgba(0, 0, 0, 0.5);
}

.container .card .imageBox {
    position: relative;
    text-align: center;
}

.container .card .imageBox i {
    /* max-width: 120px; */
    font-size: 80px;

}

.container .card .contentBox {
    position: relative;
    margin-top: 20px;
    text-align: center;
}

.container .card .contentBox h2 {
    color: #32a3b1;
    font-weight: 700;
    font-size: 1.4em;
    letter-spacing: 2px;
}

.container .card .contentBox p {
    color: #32a3b1;
}

/* .container .card .contentBox a {
    display: inline-block;
    padding: 10px 20px;
    margin-top: 15px;
    border-radius: 40px;
    color: #32a3b1;
    font-size: 16px;
    text-decoration: none;
    box-shadow: -4px -4px 15px rgba(255, 255, 255, 1),
        4px 4px 15px rgba(0, 0, 0, 1);
} */

.container .card .contentBox a:hover {
    box-shadow: inset -4px -4px 15px rgba(255, 255, 255, 0.5),
        inset 4px 4px 15px rgba(0, 0, 0, 0.5);
}

.container .card a:hover span {
    display: block;
    transform: scale(0.98);
}

.container .card:hover {
    transform: scale(0.98);
}

.middle {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-40%);
    width: 100%;
    background: #95a5a6;
    color: white;
    height: 100vh;
    background-size: cover;
    z-index: 1;
}

.contentFeature {
    padding: 250px 10px;
    text-align: center;
}

.btn {
    display: inline-block;
    width: 60px;
    height: 60px;
    background: #f1f1f1;
    margin: 10px;
    border-radius: 30%;
    box-shadow: 0 5px 15px -5px #00000070;
    color: #3498db;
    overflow: hidden;
    position: relative;
    z-index: 1000;
}

.btn i {
    line-height: 60px;
    font-size: 24px;
    transition: 0.2s linear;
}

.btn:hover i {
    transform: scale(1.3);
    color: #f1f1f1;
}

.btn::before {
    content: "";
    position: absolute;
    width: 120%;
    height: 120%;
    background: #3498db;
    transform: rotate(45deg);
    left: -110%;
    top: 90%;
}


.btn:hover::before {
    animation: aaa 0.7s 1;
    top: -10%;
    left: -10%;
}

.sec.contact {
    padding-top: 250px;
    background: #000;
}

.contact h3 {
    font-size: 40px;
    font-weight: 200;
    margin-bottom: 10px;
}

.contact h3,
.contact p {
    color: #fff;
}

.contactForm {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    display: flex;
}

.contactForm form {
    width: 100%;
}

.contactForm .row100 {
    display: flex;
    width: 100%;
}

.contactForm .row100 .inputBox50 {
    width: 50%;
    margin: 0 20px;
}

.contactForm .row100 .inputBox100 {
    width: 100%;
    margin: 0 20px;
}

.contactForm .row100 input,
.contactForm .row100 textarea {
    position: relative;
    border: none;
    border-bottom: 1px solid #fff;
    color: #fff;
    background: transparent;
    width: 100%;
    padding-top: 10px 0;
    outline: none;
    font-size: 18px;
    font-weight: 300;
    margin: 20px 0;
    resize: none;
}

.contactForm .row100 textarea {
    height: 100px;
}

.contactForm .row100 input::placeholder,
.contactForm .row100 textarea::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.contactForm .row100 input[type="submit"] {
    background: #fff;
    color: #000;
    max-width: 100px;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    font-weight: 500;
}

.copyright a {
    color: #fff;
}

.copyright {
    padding: 20px;
}


@keyframes aaa {
    0% {
        left: -110%;
        top: 90%;
    }

    50% {
        left: 10%;
        top: -30%;
    }

    100% {
        left: 10%;
        top: -10%;
    }

}


@media (max-width:992px) {
    .toggle {
        display: block;
        position: relative;
        width: 30px;
        height: 30px;
        cursor: pointer;
    }

    .toggle::before {
        content: '';
        position: absolute;
        top: 4px;
        width: 100%;
        height: 2px;
        background: blue;
        z-index: 1;
        box-shadow: 0 10px 0 blue;
        transition: 0.5s;
    }

    .toggle::after {
        content: '';
        position: absolute;
        bottom: 4px;
        width: 100%;
        height: 2px;
        background: blue;
        z-index: 1;
        transition: 0.5s;
    }

    header ul {
        position: absolute;
        top: 60px;
        left: -30px;
        width: 100%;
        height: 100vh;
        text-align: center;
        overflow: auto;
        background: #fff;
        visibility: hidden;
        opacity: 0;
    }

    header.active ul li a {
        display: inline-block;
        margin: 10px 0;
        font-size: 15px;
    }

    header.active ul {
        visibility: visible;
        opacity: 1;
        display: block;
        padding-top: 20px;
    }

    .middle {
        top: 0;
        transform: translateY(-35%);
    }

    .sec.contact {
        padding: 250px 10px;
    }

    .row100 {
        flex-direction: column;
    }

    .contactForm .row100 .inputBox50,
    .contactForm .row100 .inputBox100 {
        width: 100%;
        margin: 0;
        left: 25px;
        right: 25px;
    }

    .sci {
        margin: 20px;
    }

    .sci ul li a img {
        font-size: 24px;
    }

    h3 {
        font-size: 36px;
    }
}