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

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

.font-open-sans {
    font-family: "Open Sans", sans-serif;
    font-optical-sizing: auto;

}

/* .logo h2 {
    font-size: 45px;
    font-weight: 900;
} */
.logo img{
    width: 100px;
}

.color-orange {
    color: green;
}

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

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

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

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

/* ------------------------------------- */

nav {
    width: 70%;
    max-width: 1140px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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


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

nav .menu a:hover{
    color: green;
}
#banner {

    /* border: 1px solid red; */
    margin: 0px 38px 0 230px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

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

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

}

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

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

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

#about .about-container {
    width: 71%;
    max-width: 1140px;
    margin: 0 auto;
    text-align: center;
    background-color: #fff8f3;
    padding: 131px 156px;
}

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

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

#skills .skill-container{
    width: 71%;
    max-width: 1140px;
    margin: 0 auto;
}
#skills .skill-container .skill-box{
    display: flex;
    gap: 24px;
}
.skill-box .skill-card{
    padding: 30px;
    /* border: 1px solid red; */
    max-width: 267px;
    box-shadow: 0 6px 50px 0 #00000023;
}
.skill-card img{
    min-width: 44px;
    margin-bottom: 30px;
}
.skill-card h3{
    color: #181818;
    font-size: 20px;
    margin-bottom: 20px;
}
.skill-card p{
    font-size: 16px;
    color: #757575;
    line-height: 28px;
}
#resume .resume-container{
    width: 71%;
    max-width: 1140px;
    margin: 113px auto 0;
    display: flex;
    gap: 24px;
}
.resume-container  .section-title{
    color: #474747;
    font-size: ;
    margin-bottom: 30px;

}
.resume-card{
    max-width: 511px;
    margin-right: 47px;
}
.resume-card .card-title{
    font-size: 25px;
    font-weight: bold;
    margin-bottom: 10px;
    color: #474747;
}
.resume-card .card-info{
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #757575;
}
.resume-card .card-text{
    font-size: 16px;
    line-height: 28px;
    color: #757575;
}
.resume-container hr{
    margin: 30px 0;}
footer{
    margin-top: 130px;
    padding: 130px;
    background-color: #FFF8F3;
}
footer .fotter-container{
    width: 71%;
    max-width: 1140px;
    margin: 0 auto;
    display: flex;
    gap: 116px;
}
.fotter-container .social{
    max-width: 562px;
}
.fotter-container h2{
    color: #181818;
    font-size: 35px;
    margin-bottom: 20px;
}
.fotter-container .social p{
    color: #474747;
    line-height: 28px;
    font-size: 16px;
    margin-bottom: 30px;
}
.fotter-container .icons a{
     margin-right: 24px;
}
.fotter-container .fa-brands{
    color: #fd6e0a;
    font-size: 30px;
}
.fotter-container .fa-brands:hover{
    color: green;
}
.fotter-container form input[type='text'], input[type='email'], .fotter-container form textarea{
    width: 461px;
    padding: 18px 31px;
    margin-bottom: 24px;
    border: none;
    border-radius: 5px;
    color: #757575;

}
