*, body{
    margin: 0;
    padding: 0;
}


body{
    background-color: #f7f9fc;
}

/* buat css button */
.menu-mobile{
    position: relative;
    float: right;
    display: none;
}

.menu-mobile a{
    color : #888;
    font-size: 14px;
    text-transform: uppercase;
    text-decoration: none;
    padding: 5px 10px 5px 10px;
    border: 1px solid #888; 
}

/* color */
.bg-blue{
    background-color: blue;
    color: #ffffff;
    box-shadow: 0 0 7px 0px blue;
    border: 1px solid blue;
}

.bg-green{
    background-color: green;
    color: white;
    box-shadow: 0 0 7px 0px green;
    border: 1px solid green;
}

.border-green{
    color: green;
    border: 1px solid green;
}

/* component */
.text-black{
    color: black;
}

.text-gray{
    color: #888888;
}

.button{
    position: relative;
    padding: 15px 30px 15px 30px;
    text-decoration: none;
    display: inline-block;
    margin-right: 15px;
    border-radius: 3px;
}


/* navbar */

nav{
    position: relative;
    width: 100%;
    height: 60px;
    background-color: #ffffff;
    box-shadow: -1px -7px 20px 0px #888888;
}

nav ul{
    position: relative;
    top: 20px;
    margin: 0;
    float: right;
    right: 10%;
}

nav ul li{
    float: left;
    display: block;
    margin: 0px 15px 0px 15px;
}

nav ul li a{
    text-decoration: none;
    color: #888888;
    font-family: sans-serif;
    font-size: 14px;
}

nav ul li a:hover{
    color: orange;
}

/* section profile */

section#box-profile{
    position: relative;
    width: 80%;
    min-height: 250px;
    margin-left: 10%;
    margin-right: 10%;
    margin-top: 60px;
    border-radius: 6px;
    background-color: #ffffff;
    box-shadow: 0 0 7px 0px rgba(136, 136, 136, 0.2);
}

#box-profile .img-profile{
    position: relative;
    display: inline-block;
    width: 200px;
    height: 200px;
    border-radius: 300px;
    float: left;
    top: 25px;
    margin-left: 40px;
}

.img-profile .photo{
    height: 100%;
    background-size: 100%;
    background-repeat: no-repeat;
    background-position: 0px -20px;
   
}

.description{
    position: relative;
    width: 400px;
    display: inline-block;
    float: left;
    top: 50px;
    margin-left: 30px;
    font-family: 'Helvetica', sans-serif;
    border-right: 1px solid #efefef;
}

.description h1{
    font-size: 32px;
    margin-bottom: 14px;
}

.description p{
    color: #888888;
}

.description .button{
    margin-top: 40px;
}

.information{
    position: relative;
    display: inline-block;
    float: left;
    font-family: 'Helvetica', sans-serif;
    top: 45px;
    margin-left: 30px;
}

.information .data{
    display: block;
    width: 100%;
    height: 36px;
}

.information p.field{
    font-weight: 600;
    width: 150px;
    color: #333;
}

.information .data p{
    float: left;
}


/* section form */

section#input-form{
    position: relative;
    max-width: 80%;
    margin-left: 10%;
    margin-right: 10%;
    margin-top: 60px;
    border-radius: 6px;
    background-color: white;
    box-shadow: 0 0 7px 0 rgba(136, 146, 146, 0.2);
    padding: 30px;
}


/* CTO */
#input-form .form{
    width: 100%;
    display: grid;
    margin-top: 15px;
    margin-bottom: 15px;
}

label{
    font-family: 'Helvetica', sans-serif;
    font-size: 16px;
    color: black;
    font-weight: 600;
}

input{
    font-family: 'Helvetica', 'sans-serif';
    padding: 10px 20px 10px 20px;
    outline: none;
    border-radius: 3px;
    border: 1px solid #888888;
    margin-top: 5px;
    margin-bottom: 5px;
    font-size: 14px;
}

@media(min-width:321px) and (max-width: 400px){
    section#box-profile{
        width: 90%;
        height: 630px;
        margin-left: 5%;
        margin-right: 5%;
        margin-top: 30px;
    }
    .menu-mobile{
        top: 20px;
        right: 10%;
        display: inline-block;
    }
    nav ul{
        display: none;
        right: 0;
        width: 100%;
        text-align: center;
        top: 43px;
        z-index: 99;
        background: #fff;
    }
    nav ul li{
        float: unset;
        margin: 0;
        padding-top: 10px;
        padding-bottom: 10px;
    }
    .description{
        padding-left: 0px;
        width: 100%;
        text-align: center;
        margin-left: 0;
        border: none;
    }
    .description .button{
        margin-right: 10px;
        margin-left: 10px;
    }
    .img-profile .photo{
        left: 35px;
        position: relative;
    }
    .information{
        top: 75px;
        margin-left: 25px;
        font-size: 14px;
    }
}

@media (min-width: 576px) and (max-width: 768px) {
    section#box-profile {
        width: 90%;
        margin-left: 5%;
        margin-right: 5%;
        margin-top: 30px;
    }

    .description {
        width: 100%;
        margin-left: 0;
        border: none;
        text-align: center;
    }

    .img-profile {
        width: 150px;
        height: 150px;
        margin-left: auto;
        margin-right: auto;
        top: 20px;
    }

    .img-profile .photo {
        background-size: contain;
    }

    .information {
        margin-left: 0;
        text-align: center;
        top: 20px;
    }

    .information .data {
        display: flex;
        justify-content: center;
    }

    nav ul {
        display: none;
        right: 0;
        width: 100%;
        text-align: center;
        top: 60px;
        background: #fff;
    }

    .menu-mobile {
        display: block;
        float: none;
        text-align: center;
    }
}

@media (max-width: 576px) {
    section#box-profile {
        width: 90%;
        height: auto;
        margin-left: 5%;
        margin-right: 5%;
        margin-top: 30px;
    }

    .description {
        padding-left: 0;
        width: 100%;
        text-align: center;
        margin-left: 0;
        border: none;
    }

    .description .button {
        margin: 10px;
    }

    .img-profile {
        width: 120px;
        height: 120px;
        margin-left: auto;
        margin-right: auto;
        top: 20px;
    }

    .img-profile .photo {
        background-size: cover;
    }

    .information {
        margin-left: 0;
        text-align: center;
        top: 20px;
    }

    .information .data {
        display: flex;
        justify-content: center;
    }

    nav ul {
        display: none;
        right: 0;
        width: 100%;
        text-align: center;
        top: 60px;
        background: #fff;
    }

    .menu-mobile {
        display: block;
        float: none;
        text-align: center;
    }
}
