.open-sans-normal {
  font-family: "Raleway", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
}
/* Shared style------------------------*/
.secondry-bg {
  background-color: #fff8f3;
}
.text-primary {
  color: #fd6e0a;
}
.dark-2 {
  color: #474747;
}
.btn-primary {
  color: #ffffff;
  background-color: #fd6e0a;
  font-size: 20px;
  font-weight: bold;
  padding: 14px 35px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

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

.section-description {
  font-size: 18px;
  color: #757575;
}
.text-center {
  text-align: center;
}
/* main style -----------------------*/
main {
  max-width: 1140px;
  margin: 0 auto;
}
main section {
  margin: 24px;
}
/* Nav style--------------------------*/
nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0px 230px;
}
.nav-title {
  font-size: 45px;
  font-weight: bold;
}

nav ul li {
  list-style: none;
  margin-left: 51px;
  cursor: pointer;
}
nav ul {
  display: flex;
  align-items: center;
}
nav li a {
  text-decoration: none;
}
/* header ---------------------------*/
.header {
  background-image: url(../images/developer.png), url(../images/header_bg.png);
  background-repeat: no-repeat;
  background-position: top left, bottom right;
}

/* banner  --------------------------*/
.banner {
  display: flex;
  justify-content: space-between;
  margin: 0 35px 0 226px;
}

.banner-greeting {
  font-size: 45px;
  font-weight: 400;
}
.banner-title {
  color: #181818;
  font-size: 52px;
  font-weight: bold;
}
.banner-description {
  font-size: 18px;
}

.banner-profile-pic {
  max-width: 584px;
  height: 676px;
}

/*  About style-----------------------*/
.about {
  border-radius: 10px;
  margin: 100px 20px;
  padding: 57px 101px;
  text-align: center;
}
.about-items {
  display: flex;
  justify-content: space-between;
}
.item-description {
  color: #474747;
  font-weight: bold;
  font-size: 16px;
  margin: -10px 0px;
}

/* skills----------------------------*/
.skill {
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0px 6px 70px 3px rgba(0, 0, 0, 0.06);
  margin-top: 20px;
}
.skills-container {
  display: flex;
  gap: 14px;
}

/* A summary of My Resume */
.resume-container {
  display: flex;
  gap: 71px;
}
.resume hr {
  margin: 20px 0px;
}
.experience-description,
.experience-sub-title {
  color: rgba(117, 117, 117, 1);
  font-size: 16px;
  margin-top: 0 0;
}

.experience-sub-title {
  margin: 9px 0px;
}
.download-cv {
  margin: 40px 0px;
}

/* Footer section----------- */
footer {
  display: flex;
  gap: 130px;
  padding: 130px 280px;
  margin-top: 90px;
}
.footer-coloum {
  width: 60%;
}

.footer-socila-title {
  margin-top: 30px;
}
footer input[type="text"],
footer input[type="email"],
footer textarea {
  height: 36px;
  width: 100%;
  border: none;
  border-radius: 10px;
  background-color: rgba(255, 255, 255, 1);
  color: rgba(117, 117, 117, 1);
  display: block;
  padding: 5px 20px;
  margin: 24px 0px;
}

/* Resposive media query all device------------------*/
.hide {
  display: none;
}

@media screen and (max-width: 576px) {
  /* skills--------------------------------------*/
  .skills-container,
  .resume-container,
  .about-items,
  .banner,
  nav,
  nav > ul,
  footer {
    flex-direction: column;
    gap: 14px;
  }
  footer,
  .about {
    padding: 20px;
  }
  .footer-coloum {
    width: 100%;
  }
  footer input[type="text"],
  footer input[type="email"],
  footer textarea {
    width: calc(100% - 40px);
  }
  /* about---------------------*/
  .about {
    margin: 20px;
  }
  /* banner-------------------*/
  .banner {
    margin: 0 auto;
  }
  .banner-content {
    text-align: center;
  }
  /* header-------------------*/
  .header {
    background-image: none;
    background-color: #ffffff;
  }
  nav ul {
    text-align: center;
    margin: 20px, auto;
    padding: 0%;
    gap: 10px;
  }
  nav ul li {
    margin-left: 0px;
  }
  nav {
    justify-content: center;
    align-items: center;
    margin: 0px;
  }
  .btn-primary {
    margin-top: 10px;
  }
  .banner-description {
    margin: 36px 111px;
  }
  .banner-greeting {
    margin: 11px;
    color: gray;
    font-weight: 400;
    font-size: 40px;
  }
  .banner-profile-pic {
    max-width: 400px;
    max-height: 400px;
  }
}
/* Medium device responsive desing--------------------------------- */
@media screen and (min-width: 576px) and (max-width: 992px) {
  .about-items,
  .banner,
  nav,
  nav > ul,
  footer {
    flex-direction: column;
    gap: 14px;
  }
  .skills-container,
  .resume-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
  footer,
  .about {
    padding: 20px;
  }
  footer p {
    text-align: center;
    margin: 30px 88px;
  }
  .footer-coloum {
    width: 100%;
    text-align: center;
  }
  footer input[type="text"],
  footer input[type="email"],
  footer textarea {
    width: calc(100% - 60px);
  }
  /* about---------------------*/
  .about {
    margin: 0px;
    padding: 50px;
  }
  /* banner-------------------*/
  .banner {
    margin: 0 auto;
  }
  .banner-profile-pic {
    max-width: 800px;
    max-height: 700px;
  }
  .banner-content {
    text-align: center;
  }
  /* header-------------------*/
  .header {
    background-color: #ffffff;
  }
  nav ul {
    text-align: center;
    margin: 20px, auto;
    padding: 0%;
    gap: 10px;
  }
  nav ul li {
    margin-left: 0px;
  }
  nav {
    justify-content: center;
    align-items: center;
    margin: 0px;
  }
  .btn-primary {
    margin-top: 10px;
  }
  .banner-description {
    margin: 36px 111px;
  }
  .banner-greeting {
    margin: 11px;
    color: gray;
    font-weight: 400;
    font-size: 40px;
  }
}
