/* Font Name Open Sans */
.open-sans-normal{
  font-family: "Open Sans", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-variation-settings:
    "wdth" 100;
}

/* shared styles */
.secondary-bg{
    background-color: #FFF8F3;
}
.text-primary{
    color: #FD6E0A;
}

.dark-2{
    color: #474747;
}

.btn-primary{
    background-color: #FD6E0A;
    font-weight: bold;
    font-size: 20px;
    color: white;
    border-radius: 5px;
    padding: 18px 36px;
    border: none;
    gap: 30px;
}

.section-title{
    font-size: 35px;
    font-weight: bold;
    color: #181818;
}
.section-description{
    font-size: 18px;
    color: #757575;
}
.text-center{
    text-align: center;
}
/* header */
.header{
    background-image: url("../images/developer.png"), url("../images/header_bg.png");
    background-repeat:no-repeat;
    background-position: top left, bottom right;
}
/* Nav Styles */
nav{
    display: flex;
    justify-content: space-between;
    margin: 0 230px;
}
.nav-title{
    font-weight: 800;
    font-size: 45px;
}

nav ul{
    display: flex;
    align-items: center;
    
}


nav ul li{
    list-style: none;
    margin-right: 51px ;
}

nav li a{
    text-decoration: none;
    font-size: 20px;
}

/* Banner Styles */
.banner{
    display: flex;
    justify-content: space-between;
    margin: 0 38px 0 230px;
    align-items: center;
}
.banner-content{
    max-width: 580px;
}
.banner-greetings{
    font-weight: 600;
    font-size: 45px;
    margin-bottom: 5px;


}
.banner-title{
    font-weight: 800;
    font-size: 85px;
    margin-top: 5px;
    margin-bottom: 20px;

}
.banner-description{
    font-size: 18px;
    color: #757575;
    margin-top: 20px;
    margin-bottom: 30px;

}
.banner-profile-pic{
    width: 585px;
}
.banner button{
    margin-right: 30px;
}
/* main styles */
main{
    max-width: 1140px;
    margin: 0 auto;
}
main section{
    margin-top: 130px;
    margin-bottom: 130px;
}
/* About Styles */
.about{
    border-radius: 10px;
    padding: 130px 155px;
    text-align: center;
   
    
}
.about-items{
    display: flex;
    justify-content: space-around;
    margin-top: 10px;
}
.item-title{
    font-size: 20px;
}
.item-description{
    font-weight: bold;
    font-size: 20px;
}


/* Skill styles */
.skills-container{
    display: flex;
    gap: 24px;

}
.skill{
    padding: 30px;
    box-shadow: 0px 6px 50px 0px rgba(0, 0, 0, 0.06);
    border-radius: 5px;
    
}


/* resume section styles */
.resume-container{
    display: flex;
    gap: 24px;
}
.experience-sub-title{
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
}
.experience-description, .experience-sub-title{
    color: #757575;
}
.resume hr{
    margin: 30px 6px;
}
.resume-download-cv{
    margin-top: 50px;
}

/* footer section styles */
footer{
    padding: 130px 230px;
    display: flex;
    gap: 117px;

}
.footer-column{
    width: 50%;
}

footer input[type="text"], footer input[type="email"], footer textarea{
    height: 64px;
    border-radius: 5px;
    background-color: white;
    display: block;
    width: 100%;
    padding: 10px 20px;
    margin-bottom: 24px;
    border: none;
}