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

  font-style: normal;
  font-variation-settings:
    "wdth" 100;
}

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

.dark-2{
    color: #474747;
}

.btn-primary{
    background-color: #FD6E0A;
    color: #fff;
    font-weight: bold;
    padding: 18px 35px;
    font-size: 20px;
    border-radius: 5px;
    border-style: none;
    margin-right: 30px;
}
.btn-contact{
    border-radius: 5px;
    border: 1px solid #FD6E0A;
    color: #FD6E0A;
    padding: 18px 35px;
    font-size: 20px;
    font-weight: bold;
}
.text-center{
    text-align: center;
}
.section-title{
    font-weight: bold;
    font-size: 35px;
    color: #181818;
}
.section-description{
    font-weight: 400;
    font-size: 18px;
    color: #757575;
}
.header{
    background-image: url(../images/developer.png), url(../images/header_bg.png);
    background-repeat: no-repeat;
    height: 800px;
    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;
}

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

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

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

/* banner style */

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

.banner-content{
    max-width: 600px;
    margin-top: 65px;
}

.banner-greetings{
    font-weight: 600;
    font-size: 45px;
    margin-bottom: -40px;
}

.banner-title{
    font-weight: bold;
    font-size: 85px;
    margin-bottom: 30px;
}

.banner-description{
    font-size: 18px;
    font-weight: 500;
}

.banner-profile-pic{
    width: 600px;
    height: 650px;
}

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

/* about style */

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

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

.item-description{
    font-weight: 600;
}

/* skills container styles */
.skills{
    margin-top: 130px;
}
.skills-p{
    padding: 0 110px;
    margin-bottom: 50px;
}
.skills-container{
    display: flex;
    gap: 24px;
}

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

/* resume section */

.resume{
    margin-top: 130px;
}
.resume-container{
    display: flex;
    gap: 24px;
    padding-left: 20px;
}

.resume-column-title{
    font-weight: bold;
    font-size: 30px;
    color:#474747;
}

.experience-title{
    font-weight: bold;
    font-size: 25px;
    color: #474747;
    margin-bottom: -20px;
}

.experience-sub-title{
    font-weight: 500px;
    font-size: 20px;
    color: #757575;
}

.experience-description{
    font-size: 16px;
    color: #757575;
    margin-top: -15px;
}

.resume hr{
    margin-top: 30px;
}

.experience-description{
    padding-right: 70px;
}

.resume-section-cv{
    margin-top: 50px;
    margin-bottom: 100px;
}

/* footer styles */

footer{
    display: flex;
    padding: 130px 230px;
    gap: 120px;
}
.footer-column{
    width: 50%;
}

footer input[type="text"], footer input[type="email"]{
    display: block;
    width: 100%;
    background-color: white;
    color: #757575;
    height: 65px;
    padding: 0px 20px;
    font-size: 20px;
    margin-bottom: 24px;
    border-radius: 5px;
    border-style: none;
}

footer textarea{
    display: block;
    width: 100%;
    background-color: white;
    color: #757575;
    padding: 0px 20px;
    font-size: 20px;
    margin-bottom: 24px;
    border-radius: 5px;
    border-style: none;
}

.footer-icon{
    margin-top: 30px;
}

.footer-icon a{
    padding-right: 24px;
}

/* responsive design part */

@media screen and (max-width:576px){
    .header{
        background-image: none;
        height: auto;
    }
    nav, nav>ul{
        flex-direction: column;
    }
    nav ul{
        gap: 10px;
        margin-top: -20px;
    }
    nav{
        margin: 0 10px;
        
    }
    nav ul li{
        margin-right: 30px;
    }
    nav ul li button{
        margin-left: 20px;
    }
    .banner{
        flex-direction: column;
        padding:20px;
        margin-bottom: 50px;
        width: calc(100% - 40px);
    }
    .banner-profile-pic{
        width: 100%;
        height: 500px;
        margin-top: 20px;
    }
    .banner-content{
        
        margin-top: 0px;
    }
    .skills-container{
        flex-direction: column;
    }
    .skills-p{
        padding: 0 10px;
        margin-bottom: 50px;
    }
    .resume-container{
        flex-direction: column;
        padding-left: 20px;
        margin-right: 15px;
    }
    .experience-description{
        padding-right: 20px;
    }
    .resume-section-cv{
        margin-top: 50px;
        margin-bottom: 100px;
        margin-left: 25px;
    }
    footer{ 
        padding: 0;
        flex-direction: column;
        gap: 60px;
        
    }
    .footer-column{
        width: 100%;
    }
    footer input[type="text"], footer input[type="email"],footer textarea{
        width: calc(100% - 40px);
    }

    .about{
        padding: 20px;
       margin-top: 30px;
    }
    .about-items{
        flex-direction: column;
    }

}

