@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');
/* font-family: "Open Sans", sans-serif; */
body{
    font-family: "Open Sans", sans-serif;
}
/* header Style */

header{
    background-image: url(../images/developer.png), url(../images/header_bg.png);
    background-repeat: no-repeat;
    background-position: top left, bottom right;
    background-color: #FFF8F3;
}
nav{
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0px 200px;
}
.nav-title{
    font-weight: 800;
    font-size: 45px;
}
.text-primary{
    color: #FD6E0A;
}
nav ul{
    display: flex;
    align-items: center;
}
nav ul li{
    list-style: none;
    margin-right: 50px;
}
nav ul li a{
    text-decoration: none;
    color: #474747;
    font-size: 20px;
}
.btn-primary{
    background-color: #FD6E0A;
    font-weight: 700;
    font-size: 20px;
    color: white;
    padding: 20px 35px;
    border-radius: 5px;
    border: none;
}
/* banner Styles */

.banner{
    display: flex;
    justify-content: space-between;
    margin: 0 38px 0 230px;
}
.banner-greetings{
    color: #474747;
    font-size: 45px;
    font-weight: 600px;
}
.banner-title{
    font-weight: bold;
    font-size: 85px;
}
.banner-discription{
    font-size: 18px;
}
.banner-profile{
    width: 580px;
}
.banner-content{
    max-width: 580px;
}
main{
    max-width: 1140px;
    margin: 0 auto;
    
}
main section{
    margin-top: 130px;
    margin-bottom: 130px;
}
/* About Style */
.about{
    background-color: #FFF8F3;
    border-radius: 10px;
    padding: 130px 150px;
    text-align: center;
    
}
.section-title{
    font-size: 35px;
    font-weight: bold;
    color: #181818;
    text-align: center;
}
.section-description{
    font-size: 18px;
    color: #757575;
    text-align: center;
    max-width: 909px;
    margin: 30px auto 50px;
}
.about-items{
    display: flex;
    justify-content: space-around;
}
.about-title{
    color: #181818;
    margin-bottom: 5px;
}
.about-description{
    font-weight: bold;
    color: #474747;
    margin-top: 5px;
}
/* skills Style */
    
.skill{
    box-shadow: 0px 6px 50px 0px rgba(0, 0, 0, 0.06);
    padding: 30px;
    border-radius: 5px;
}
.skills-container{
    display: flex;
    gap: 24px;
}
.skill-title{
    color: #181818;

}
.skill-description{
    color: #757575;
    font-size: 16;
}
/* resume style */

.resume-container{
    display: flex;
    gap: 24px;
}
.experience-description{
    color: #757575;
}
.experience-sub-title{
    color: #757575;
    font-size: 20px;
    font-weight: 600px;
    margin-bottom: 20px;
}
.resume hr{
    margin: 30px 5px;
}
.download-cv{
    display: flex;
    justify-content: center;
    margin-top: 50px;
}
/* footer style */
.footer{
    display: flex;
    padding: 130px 230px;
    background-color: #FFF8F3;
    gap: 100px;
}
.footer-icone{
    display: flex;
    gap: 30px;
    margin-top: 30px;
}
.footer-column{
    width: 50%;
}
.footer input[type="text"],.footer input[type="email"]{
    
    width: 250px;
    height: 10px;
    background-color: white;
    color: #757575;
    display: block;
    border-radius: 5px;
    margin: 24px 24px 24px 0px;
    padding: 18px 30px;
    
}
.footer .text-area{
    height: 50px;
    width: 250px;
    background-color: white;
    color: #757575;
    display: block;
    border-radius: 5px;
    margin: 24px 24px 24px 0px;
    padding: 18px 30px;
}
