@import url("https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap");

* {
  /* padding: 0;
    margin: 0; */
  font-family: "Open Sans", serif;
}
/* shared style  */
.secondary-bg {
  background-color: #fff8f3;
}
.text-primary {
  color: #fd6e0a;
}
.dark-2 {
  color: #474747;
}
.btn-primary {
  background: #fd6e0a;
  font-weight: bold;
  font-size: 20px;
  color: white;
  border: none;
  padding: 18px 35px;
  border-radius: 5px;
}
.section-title {
  color: rgb(24, 24, 24);
  font-size: 35px;
  font-weight: 700;
  line-height: 48px;
  letter-spacing: 0%;
  text-align: center;
}
.section-desc {
  color: rgb(117, 117, 117);
  font-size: 18px;
  font-weight: 400;
  line-height: 30px;
  letter-spacing: 0%;
  text-align: center;
  padding: 30px auto;
}
.text-center {
  text-align: center;
}
.item-description {
  color: rgb(117, 117, 117);
  font-size: 20px;
  font-weight: 700;
  line-height: 30px;
  letter-spacing: 0%;
  text-align: center;
}
.item-title {
  color: rgb(117, 117, 117);
  font-size: 19px;
  font-weight: 400;
  line-height: 30px;
  letter-spacing: 0%;
  text-align: center;
}
/* Header style   */
.header {
  background-image: url(../images/developer.png), url(../images/header_bg.png);
  background-repeat: no-repeat;
  background-position: top left, bottom right;
}

/* nav style  */
nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 200px;
}
.nav-title {
  font-weight: 800;
  font-size: 45px;
  line-height: 61px;
  letter-spacing: 0%;
  text-align: left;
}
nav ul {
  display: flex;
  align-items: center;
}
nav ul li {
  list-style: none;
  margin-right: 50px;
}
nav li a {
  text-decoration: none;
  font-size: 20px;
}

/* Banner style  */
.banner {
  display: flex;
  justify-content: space-between;
  margin: 0 35px 0 200px;
}
.banner-content {
  max-width: 580px;
}
.banner-greetings {
  font-size: 45px;
  font-weight: 600;
  line-height: 61px;
  letter-spacing: 0%;
  text-align: left;
}
.banner-title {
  font-size: 85px;
  font-weight: 600;
  line-height: 116px;
  letter-spacing: 0%;
  text-align: left;
  padding-top: 0px;
}
.banner-profile {
  width: 580px;
}
.banner-description {
  color: rgb(117, 117, 117);
  font-size: 18px;
  font-weight: 400;
  line-height: 30px;
  letter-spacing: 0%;
  text-align: left;
  padding-top: 0px;
}
/* main style  */
main {
  max-width: 1140px;
  margin: 0 auto;
}
main section {
  margin-top: 130px;
  margin-bottom: 130px;
}
/* About section  */
.about {
  border-radius: 10px;
  padding: 130px 150px;
  text-align: center;
}
.item-description {
  font-weight: 600;
}
.about-items {
  display: flex;
  justify-content: space-around;
}

/* skills section  */
.skills-container {
  display: flex;
  gap: 24px;
  padding-top: 50px;
}
.skill {
  padding: 30px;
  border-radius: 5px;
  box-shadow: 0px 6px 50px 0px rgba(0, 0, 0, 0.06);
}

.skill-title {
  color: rgb(24, 24, 24);
  font-size: 20px;
  font-weight: 700;
  line-height: 27px;
  letter-spacing: 0%;
  text-align: left;
}
.skill-description {
  color: rgb(117, 117, 117);
  font-size: 16px;
  font-weight: 400;
  line-height: 28px;
  letter-spacing: 0%;
  text-align: left;
}
/* Resume Section  */
.resume-container {
  display: flex;
  gap: 24px;
}
.experience-title {
  color: rgb(71, 71, 71);
  font-size: 25px;
  font-weight: 700;
  line-height: 34px;
  letter-spacing: 0%;
  text-align: left;
}
.experience-sub-title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 20px;
  color: rgb(117, 117, 117);
  letter-spacing: 0%;
  text-align: left;
}
.experience-description {
  color: rgb(117, 117, 117);
  font-size: 16px;
  font-weight: 400;
  line-height: 28px;
  letter-spacing: 0%;
  text-align: left;
}
.resume hr {
  margin: 30px 5px;
}
.resume-download-cv {
  margin-top: 50px;
}

/* footer section  */
footer {
  padding: 130px 230px;
  display: flex;
  gap: 100px;
}
.footer-column,
.footer-row {
  width: 50%;
  display: block;
}
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;
}
.foot {
  color: rgb(71, 71, 71);
  font-size: 16px;
  font-weight: 400;
  line-height: 28px;
  letter-spacing: 0%;
  text-align: left;
}

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