body {
    overflow-x: hidden;
    font-family: 'Gill Sans', 'Gill Sans MT', 'Calibri', 'Trebuchet MS', sans-serif;
    background-color: #D7FBE8;
    background-attachment: fixed;
}

.header {
    height: 80px;
    background: #1FAB98;
    width: 100%;
    position: fixed;
    z-index: 2;
}

nav ul {
    display: flex;
}

.menu {
    float: right;
    margin-top: 25px;
}

.menu ul li {
    list-style: none;
    float: right;
}

.menu ul li a {
    margin-right: 20px;
    color: white;
    font-size: 20px;
    text-decoration: none;
}

.menu-toggle {
    padding-top: 5px;
    display: none;
    flex-direction: column;
    height: 20px;
    justify-content: space-between;
    position: relative;
    margin-right: 30px;
}

.menu-toggle input {
    position: absolute;
    width: 40px;
    height: 30px;
    opacity: 0;
    cursor: pointer;
    z-index: 2;
}

.menu-toggle span {
    display: block;
    width: 28px;
    height: 3px;
    background-color: white;
    border-radius: 3px;
    transition: all 0.5s;
}


/*animasi toggle*/

.menu-toggle span:nth-child(2) {
    transform-origin: 0 0;
}

.menu-toggle span:nth-child(4) {
    transform-origin: 0 100%;
}

.menu-toggle input:checked~span:nth-child(2) {
    transform: rotate(45deg) translate(-1px, -1px);
}

.menu-toggle input:checked~span:nth-child(4) {
    transform: rotate(-45deg) translate(-1px, 0);
}

.menu-toggle input:checked~span:nth-child(3) {
    opacity: 0;
    transform: scale(0);
}

.menu ul li a:hover {
    color: #9DF3C4;
}

.brand {
    float: left;
    margin-top: 5px;
    margin-left: 30px;
}

.img-brand {
    height: 70px;
    width: 240px;
}

input {
    width: 100%;
    text-align: left;
    background: transparent;
    border: none;
    border-bottom: 1px solid #62D2A2;
    font-family: sans-serif;
    font-size: 16px;
    font-weight: 200px;
    padding: 10px 0;
    transition: border 0.5s;
    outline: none;
    color: #62D2A2;
}

input[type=button] {
    border: none;
    width: 190px;
    background: #1FAB98;
    color: #fff;
    font-size: 16px;
    line-height: 25px;
    padding: 10px 0;
    border-radius: 15px;
    cursor: pointer;
    text-align: center;
}
input[type=submit] {
    border: none;
    width: 190px;
    background: #1FAB98;
    color: #fff;
    font-size: 16px;
    line-height: 25px;
    padding: 10px 0;
    border-radius: 15px;
    cursor: pointer;
    text-align: center;
}

input[type=button]:hover {
    color: #1FAB98;
    background-color: #62D2A2;
}
input[type=submit]:hover {
    color: #1FAB98;
    background-color: #62D2A2;
}

h2 {
    color: white;
}

a {
    color: white;
    padding: 7px;
}

a:hover {
    color: yellow;
}

.container {
    display: flex;
    flex-direction: row;
    width: 100%;
}

::placeholder {
    color: #62D2A2;
    opacity: 0.8;
}

.footer {
    position: relative;
    left: 0;
    bottom: 0;
    width: 100%;
    background-color: #1FAB98;
    color: white;
    text-align: center;
}

* {
    margin: 0px auto;
    padding: 0px auto;
}

.complain {
    text-align: center;
    background: #fff;
    padding: 40px;
    padding-top: 30px;
    width: 65%;
    margin-top: 50px;
    margin-bottom: 30px;
    border-radius: 20px;
    color: #62D2A2;
}
.complain:hover {
    box-shadow: 0px 0px 4px 4px #1FAB98;
}

textarea,
label,
select {
    width: 100%;
    height: auto;
    border: none;
    border-bottom: 1px solid #62D2A2;
    font-family: sans-serif;
    font-size: 16px;
    font-weight: 200px;
    color: #62D2A2;
}

h1 {
    color: #1FAB98;
    padding-top: 25px;
    font-family: sans-serif;
    text-align: center;
}

.fileUpload {
    position: relative;
    overflow: hidden;
    margin: 10px;
}

.fileUpload input.upload {
    position: absolute;
    top: 0;
    right: 0;
    margin: 0;
    padding: 0;
    font-size: 20px;
    cursor: pointer;
    opacity: 0;
    filter: alpha(opacity=0);
}

@media screen and (max-width: 765px) {
    .menu-toggle {
        display: flex;
    }
    nav ul {
        position: absolute;
        right: 0;
        top: 0;
        width: 40%;
        height: 100vh;
        justify-content: space-evenly;
        flex-direction: column;
        background-color: #1FAB98;
        transform: translateX(100%);
        transition: all 1s;
        opacity: 0
    }
    nav ul.slide {
        opacity: 1;
        transform: translateX(0);
    }
    .title {
        font-size: 14px;
    }
    .complain {
        margin-top: 25px;
    }
}

@media screen and (max-width: 430px) {
    .menu-toggle {
        margin-right: 10px;
    }
    .brand {
        margin-left: 5px;
    }
}

.judul {
    background: url('../img/bg-title.png');
    width: 70%;
    background-size: cover;
    padding: 25px 0px;
    height: 200px;
}
.title {
    font-size: 20px;
    font-family: 'Lucida Sans';
    text-align: center;
    color: #1FAB98;
    margin-right: 5px;
    margin-left: 5px;
}