
.open-sans-normal {
  font-family: "Open Sans", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-variation-settings:
    "wdth" 100;
}
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;
}
.btn-primary{
    background-color: #FD6E0A;
    font-weight: bold;
    font-size: 20px;
    color: white;
    padding:18px 35px;
    border-radius: 5px;
    border: none;

}

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

}
nav ul a{
    text-decoration: none;
    font-size: 20px;
}
.dark-2{
    color: #474747;

}
nav ul{
    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;
   
}
/* sheard style */
.section-title{
    font-size: 35px;
    font-weight: bold;
}
.secondary-bg{
    background-color: #FFF8F3;
}
.text-center{
    text-align: center;

}


/* banner style */
.banner-gettings{
    font-size: 45px;
    font-weight: 600px;

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

}
.banner-profilr-pic{
    height: 676px;
    width: 584px;
}
.banner{
    display: flex;
    justify-content: space-between;
    margin: 0 35px 0 200px;
}
.banner-content{
     max-width: 585px;
}
.section-description{
    font-size: 18px;
    color: #757575;
}

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

main section{
    margin-top: 130px;
    margin-bottom:130px ;
}
.about{
    border-radius: 10px;
    padding: 130px 150px;
    text-align: center;
    background-color: rgba(255, 248, 243, 1);
    
}
.about-items{
    display: flex;
    justify-content: space-around;
    
}
/* skills section style */
.skills-conteiner{
    display: flex;
    gap: 24px;
}
.skill{
    padding: 30px;
    border-radius: 5px;
    box-shadow: 0px 6px 50px 0px rgba(0, 0, 0, 0.06) ;
    

}
/* resume section style */
.section-title{
    text-align: center;
    
}
.resume-conteiner{
    display: flex;
    gap: 24px;
}
.experience-title{
    font-size: 25px;
    font-weight: 600;
    margin-bottom: 20px;
}
.experience-sub-title{
    font-size: 20px;
}
.experience-description, .experience-sub-title{
    color: #757575;
}
.resume hr{
    margin: 30px 5px;
}
.experiencce{
    width: 511px;
    height: 175px;
}
.resume-column-title{
    font-size: 30px;
}
.resume-download-cv{
    margin-top: 50px;
}
/* footers style */
footer{
    padding: 130px 230px ;
    display: flex;
    gap: 100px;
}
.futter-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 qurey */

@media screen and (max-width:576px) {
    .skills-conteiner,
     .resume-conteiner,
      footer,
    .about-items,
     .banner,
     nav,
      nav > ul{
        flex-direction: column; 
    }
    nav > ul{
        gap: 20px;
    }
    .btn-primary{
        margin-bottom: 20px;
    }
    .banner{
        margin: 20px;

    }
    .banner-profilr-pic{
        width: 100%;
    }
    .header{
        background-image: none;
    }
    footer, .about{
        padding: 20px;
    }
    .futter-column{
        width: 100%;
    }
    footer input[type="text"], footer input[type="email"], footer textarea{
        width: calc(100% - 40px);
    }
}