/* Common shared style */
body {
    font-family: 'Lato', sans-serif;
    font-family: 'Open Sans', sans-serif;
}

.text-primary {
    color: #FD6E0A;
}

.btn-primary {
    border-radius: 5px;
    background-color: #FD6E0A;
    border: 0;
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    padding: 15px 35px;
    cursor: pointer;

}

/* Nav related style */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0 200px;

}

.nav-title {
    color: #181818;
    font-family: open sans;
    font-size: 45px;
    font-style: normal;
    font-weight: 800;
    line-height: normal;
}

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

}

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

}

nav a {
    text-decoration: none;
    color: #474747;
}
.section-title{
    color: #181818;
    text-align: center;
    font-size: 35px;
    font-weight: 700;
}
.section-des{
    color: #757575;
    text-align: center;
    font-size: 18px;

}

/* Header related style */
.header {
    background-color: #FFF8F3;
    background-image: url('./Images/header_bg.png'), url('./Images/developer.png');

    background-repeat: no-repeat;
    background-position: bottom right, top left;
}

.banner {
    padding: 30px 30px 0px 150px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.banner-content{
    max-width: 500px;
}

.banner .profile-pic {
    width: 500px;
}

.banner-gretting {
    font-size: 45px;
    color: #474747;
    margin-bottom: 0;
}

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

/* main section  */

main{
    max-width: 1140px;
    margin: 0 auto;


}
main section{
    margin-top: 130px;
}

 
/* About section */
.about{
    padding: 130px;
    border-radius: 10px;
    background-color:#FFF8F3;
    margin: 130px 0 ;
}

.about-info-container{
    display: flex;
    justify-content: space-around;
}
.about-info{
    text-align: center;

}


/* skill realated style */


#what-i-do-description{
    padding: 30PX 150PX;
}

.skill-container{
    display: flex;
    gap: 24px;
}

.skil{
    padding: 30px;
    border-radius: 5px;
    background-color: #fff;
    box-shadow: 0px 6px 50px 0px rgba(0, 0, 0, 0.06);
}
.skill-description{
    color: #757575;
}

/* resume section */
.resume-colum-title{
    color: #474747;
    font-size: 30px;
    font-weight: 700;
    line-height: normal;
}
.resume-container {
    display: flex;
    gap: 65px;
}
.resume-item-institude{
    margin-bottom: 20px;
    margin-top: 0px;

}

.resume-item-institude, .resume-item-description{
    color: #757575;
    
}
.resume-item-title {
    color: #474747;
    font-size: 25px;
    font-weight: 700;  
}
.resume-container hr{
    margin: 30px;
}
.dowload-CV{
    text-align: center;
    margin-top: 50px;
}

/* footer style */
footer{
    display: flex;
    gap: 100px;
    background-color: #FFF8F3;
    padding: 130px 200px;
    margin-top: 100px;
}
.footer-column{
    width: 50%;

}
.contact input[type="text"], .contact input[type="email"], textarea {
    display: block;
    margin-bottom: 25px;
    padding: 18px 35px;
    color: #757575;
    border-radius: 5px;
    background: #fff;
    border: 0;
    width: 100%;
    outline: none;

}
.social-link a{
    margin-right: 25px;
}

/* Small device responsive */

@media screen and (max-width:576px) {
    .header{
        background-image: none;
    }
    .banner .profile-pic{
        width: 100%;
    }
    nav>ul{
        flex-direction: column;
        gap: 20px;
    }
    nav{
        flex-direction: column;
    }
    .skill-container{
    flex-direction: column;
   } 
   #what-i-do-description{
    padding: 20px;
   }
   .resume-container{
    flex-direction: column;
   }
   footer{
    flex-direction: column;
    padding: 10px;
   }
   .footer-column{
    width: 100%;

}
.contact input[type="text"], .contact input[type="email"], textarea {
    width: 80%;
    outline: none;
}
.about{
    padding: 10px;
}
.about-info-container{
    flex-direction: column;
}
.banner{
    flex-direction: column;
    padding: 20px;
}
.btn-primary{
    margin-bottom: 20px;
}




}

/* medium device  */

@media screen and (min-width:576px) and (max-width:992px) {
    footer{
        
        padding: 30px;
       }
       .btn-primary{
        margin-bottom: 20px;
    }
}