/* GOOGLE FONT*/


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

body {
    margin: 0;
    padding: 0;
}

/* header style */
.header{
    background-image: url(../images/developer.png),url(../images/header_bg.png);
    background-repeat: no-repeat;
    background-position: top left, bottom right;
}

/* shared styles */
.dark-2{
    color: #474747;
}

.bg-color{
    background-color: #FFF8F3;
}

.dark-1{
    color: #181818;
}

.dark-3{
    color: #757575;
}

.r{
    color: #FD6E0A;
}

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

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


/* Nav Styles */

nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    /* margin: 30px 200px; */
    margin-inline: 200px;
}

.nav-title{
    font-size: 45px;
    font-weight: extra-bold;
}



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

nav ul li a{
    text-decoration: none;
    font-size: 20px;
    font-weight: 400;
    margin-right: 30px;
}

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


/* banner styles */

.banner {
    display: flex;
    justify-content: space-between;
    margin: 0 30px 0 200px;
}

.banner-content{
    max-width: 580px;
}
.banner-greetings{
    font-size: 45px;
    font-weight: 600;
}

.banner-heading{
    font-size: 60px;
    font-weight: 700;
}

/* .banner-description{
    font-size: 10px;
    font-weight: regular;
} */

.banner-photo{
    width: 584px;
    height: 676px;
}

/* About Styles */

.section-title{
    font-weight: bold;
    font-size: 35px;
    color:#181818
}

.section-description{
    font-size: 20px;
    color: #757575;
}

.about{
    border-radius: 10px;
    padding: 130px 150px;
    text-align: center;
}

.about-items{
    display: flex;
    justify-content: space-between;
}

.item-description{
    font-size: 20px;
    font-weight: 600;
    color: #474747;
}

/* Main Styles */
main{
    max-width: 1140px;
    margin: 0 auto;
}

main section{
    margin-top: 130px;
}

/* Skills Section Style */
.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 Styles */
 .resume-container{
    display: flex;
    gap: 24px;
 }

 .experience-sub-title{
    font-size: 20px;
    font-weight: semi-bold;
    color: #757575;
    margin-bottom: 20px;
 }

 .experience-description{
    color: #757575;
 }

 .experience-title{
    font-size: 25px;
    font-weight: bold;
 }

 .resume hr{
    margin: 30px 5px;
 }

 .resume-download-cv{
    margin-top: 50px;
    text-align: center;
 }

 /* Footer Styles */

 .footer{
    padding: 130px 230px;
    display: flex;
    gap: 100px;
    margin-top: 130px;
 }

 .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;
 }