/* *{
    margin: 0;
    padding: 0;
} */
.open-sans-normal {
    font-family: "Open Sans", serif;
    font-optical-sizing: auto;

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

/* shared style */
.text-center {
    text-align: center;
}

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

.text-primary {
    color: #FD6E0A;
}

.dark-2 {
    color: #474747;
}

.btn-primary {

    background-color: #FD6E0A;
    font-weight: bold;
    color: white;
    font-size: 20px;
    padding: 18px 35px;
    border-radius: 5px;
    border: none;
}

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

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

nav {

    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 50px 200px;
}

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

nav ul {
    display: flex;
}

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

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

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

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

}

/* banner-styles */
.banner-content {
    max-width: 580px;
}

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

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

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

.banner-img-profile {
    width: 580px;

}

.banner {
    display: flex;

    justify-content: space-between;
    margin: 0 45px 0 200px;
}

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

main section {
    margin: 130px 0;
}

/* about styles*/

.about {
    border-radius: 10px;

    padding: 130px 150px;
    text-align: center;
    /* display: flex;
    flex-direction: column;
    align-items: center; */
}

.about-items {
    display: flex;
    /* gap:20px;
    align-items: center; */
    justify-content: space-around;
}

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


/* skills styles */
.skills {

    padding: 100px;
}

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

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

}

.section-description {
    margin-bottom: 30px;
}

/* resume styles */

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

.experience-sub-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20;
}

.experience-description,
.experience-sub-title {
    color: #757575;
}

.resume hr {
    margin: 30px;
}



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

/* footer styles */

footer {
    padding: 130px 230px;
    display: flex;
    gap: 100px;
}

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

/* responsive media */

@media screen and (max-width:576px){
    .skill-container{
        flex-direction: column;
    }
    .resume-container{
        flex-direction: column;
        padding: 40px;
    }
    footer,.about{
        flex-direction: column;
        padding: 20px;
    }
    .banner{
        margin: 20px;
    }
    .footer-column{
        width: 100%;
    }
    footer input[type="text"], footer input[type="email"], footer textarea{
        width:calc(100% - 40px);
    }
    .about-items{
        flex-direction: column;
    }
    .banner{
        flex-direction: column;
    }
    .header{
        background-image: none;
    }
    .banner-img-profile{
        width: 100%;
    }
    nav,nav>ul{
        flex-direction: column;
        gap: 20px;
    }
}