*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

 /* Shared Style */
.font-open-sans{
  font-family: "Open Sans", sans-serif;
  font-optical-sizing: auto;
}

.logo h2{
    font-size: 45px;
    font-weight: 900;
}
.color-orange{
    color: #FD6E0A;
}

.btn{
    background-color:#FD6E0A;
    border: none;
    border-radius: 5px;
    padding: 18px 35px;
    font-size: 20px;
    font-weight: bold;
    color:white ;
    cursor: pointer;
}

.btn-group{
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.section-heading{
    max-width: 827px;
    text-align: center;
    margin: 0 auto;
}

.section-heading h2{
    font-size: 35px;
    color: #181818;
    margin-bottom: 30px;
}

.section-heading p{
    font-size: 18px;
    color: #757575;
    line-height: 30px;
    margin-bottom: 30px;
}

.text-center{
    text-align: center;
}

.container {
    width: 71%;
    max-width: 1140px;
    margin: 0px auto;
}

/* Main Style */
header{
    padding-top: 50px;
    background: url(../images/developer.png), url(../images/header_bg.png);
    background-position: 23px  38px, bottom right;
    background-repeat: no-repeat;
    background-color: #FFF8F3;
}

nav{
    display: flex;
    justify-content: space-between;
    align-items: center;
}

nav .menu{
    display: flex;
    list-style-type: none;
    gap: 51px;
    align-items: center;
}

nav .menu a{
    font-size: 20px;
    color: #474747;
    text-decoration: none;
}

#banner{
    margin: 47px 38px 0 230px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.banner-content{
    max-width: 585px;
}

.banner-content h2{
    font-size: 45px;
    font-weight: 600;
    color:#474747;
    margin-bottom: 5px;
}

.banner-content h1{
    font-size: 85px;
    font-weight: bold;
    color:#181818;
    margin-bottom: 20px;
}

.banner-content p{
    font-size: 18px;
    font-weight:normal;
    color:#757575;
    line-height: 30px;
    margin-bottom: 30px;
}

.banner-image img{
    max-width: 584px;
    vertical-align: middle;
}

#about, #skills, #resume{
    padding-top: 130px;
}

.about-container{
    padding: 131px 156px;
    text-align: center;
    background-color:#FFF8F3;
}

.about-container .about-info{
    display: flex;
    justify-content: space-around;
}

.about-info p{
    font-size: 20px;
    color: #757575;
    line-height: 30px;
}

.about-info h4{
    font-size: 20px;
}

.skill-box{
    display: flex;
    gap: 24px;
}

.skill-card{
    padding: 30px;
    max-width: 267px; 
    border-radius: 10px;
    box-shadow: 0 6px 50px 0 rgba(0, 0, 0, 0.21);
}

.skill-card img{
    max-width: 44px;
    margin-bottom: 30px;
}

.skill-card h3{
    font-size: 20px;
    color: #181818;
    margin-bottom: 20px;
}

.skill-card p{
    font-size: 16px;
    line-height: 28px;
    color: #757575;
    margin-bottom: 30px;
}

.resume-container{
    margin: 113px auto 50px;
    display: flex;
    gap: 24px;
}

.resume-container hr{
    color: #D1D1D1;
    margin: 30px 0;
}

.section-title{
    font-size: 30px;
    color: #474747;
    margin-bottom: 30px;
}

.resume-card{
    max-width: 511px;
    margin-right: 47px;
}
.card-title{
    font-size: 25px;
    font-weight: bold;
    color: #474747;
    margin-bottom: 10px;
}

.card-info{
    font-size: 20px;
    font-weight: 600px;
    color:#757575;
    margin-bottom: 20px;
}

.card-text{
    font-size: 16px;
    line-height: 28px;
    color:#757575;
}

footer{
    margin-top: 113px;
    padding: 130px 0;
    background-color:#FFF8F3;
}

.footer-container{
    display: flex;
    gap: 117px;
}

.footer-container h2{
    color: #181818;
    font-size: 35px;
    margin-bottom: 20px;
}

.sosial{
    max-width: 562px;
}

.footer-container p{
    font-size: 16px;
    line-height: 28px;
    color: #474747;
    margin-bottom: 30px;
}

.footer-container .icons a{
    margin-right: 24px;
}

form input,textarea{
    color: #757575;
    width: 461px;
    border: none;
    border-radius: 5px;
    padding: 18px 30px;
    margin-bottom: 24px;
}

.form input[type="submit"]{
    width: 150px;
}

.hide {
    display: none !important;
}

@media screen and (max-width:576px) {
    .container {
        width: 95%;
    }

    .section-heading h2 {
        font-size: 30px;
    }

.btn-group{
    justify-content: center;
}

header {
    background: url(../images/header_bg.png), #FFF8F3;
    background-position: bottom right;
    background-repeat: no-repeat;
}
    nav{
        gap: 20px;
    }

    nav .menu{
        flex-wrap: wrap;
        justify-content: center;
    }

    #banner{
        margin: 20px;
        gap: 20px;
        text-align: center;
    }

    #banner .banner-image img{
        width: 100%;
    }

    #banner .banner-content h1{
        font-size: 44px;
    }

    #about,
    #skills,
    #resume {
        padding-top: 60px;
    }

    #about .about-container {
        padding: 20px;
    }

    #about .about-container .about-info {
        gap: 30px;
    }

    #skills .skills-container .skill-box,
    #about .about-container .about-info,
    footer .footer-container,
    #resume .resume-container, nav, #banner{
        flex-direction: column;
    }

    .skill-box .skill-card {
        max-width: 100%;
    }

    #resume .resume-container {
        margin-top: 60px;
    }

    .resume-card {
        margin-right: 10px;
    }

    .footer-container form input,
    .footer-container form textarea {
        width: 100%;
    }

}



@media screen and (min-width:576px) and (max-width:992px){
    #skills .skills-container .skill-box,
    #about .about-container .about-info,
    footer .footer-container,
    #resume .resume-container, nav, #banner{
        flex-direction: column;
    }
    
}