.work-sans-normal {
  font-family: "Work Sans", serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

/* Shared Style */
.text-primary {
    color: #FD6E0A;
}
.dark-2 {
  color: #474747;
}
.btn {
  color: #FFF;
  font-size: 20px;
  font-weight: 700;
  border-radius: 5px;
  background: #FD6E0A;
  border: 0;
  padding: 18px 36px;
}
.section-title {
  color: #181818;
  text-align: center;
  font-size: 35px;
  font-weight: 700;
}
.section-description {
  color: #757575;
  text-align: center;
  font-size: 18px;
  font-weight: 400;
  line-height: 30px;
}

/* header styles */
header {
  background: url(../images/developer.png), url(../images/header_bg.png);
  background-repeat: no-repeat;
  background-position: top left, bottom right;
}
/* Nav Styles */
nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 50px 200px;
}
.nav-title {
  color: #181818;
  font-size: 45px;
  font-weight: 800;
}
nav ul {
  display: flex;
  align-items: center;
}
nav ul li {
  list-style: none;
  margin-right: 50px;
}
nav ul li a {
  font-size: 20px;
  font-weight: 400;
  text-decoration: none;
}

/* Banner Styles */
.banner {
  display: flex;
  justify-content: space-between;
  margin: 0 35px 0 200px;
}
.banner-text {
  max-width: 580px;
}
.banner-greetings {
  color: #474747;
  font-size: 45px;
  font-weight: 600;
}
.banner-title {
  color: #181818;
  font-size: 85px;
  font-weight: 700;
}
.banner-description {
  color: #757575;
  font-size: 18px;
  font-weight: 400;
  line-height: 30px;
}
.banner-content > .btn {
  margin-right: 10px;
}

/* Main Styles */
main, footer {
  max-width: 1140px;
  margin: 0 auto;
}

/* About Styles */
.about {
  padding: 130px 150px;
  border-radius: 10px;
}
.about-bg {
  border-radius: 10px;
  background: #FFF8F3;
}
.about-items {
  display: flex;
  justify-content: space-around;
  text-align: center;
}
.item-title {
  color: #757575;
  text-align: center;
  font-size: 20px;
  font-weight: 400;
  line-height: 30px;
}
.item-description {
  color: #474747;
  font-size: 20px;
  font-weight: 700;
  line-height: 30px;
  font-weight: 600;
}

/* What I do Styles */

.skills-container {
  display: flex;
  gap: 24px;
}
.skill{
  padding: 30px;
  border-radius: 5px;
  background: #FFF;
  box-shadow: 0px 6px 50px 0px rgba(0, 0, 0, 0.2);
}
.skill-title {
  color: #181818;
  font-size: 20px;
  font-weight: 700;
}
.skill-description {
  color: #757575;
  font-size: 16px;
  line-height: 28px;
}

/* Resume Styles */
.resume-area {
  padding: 130px 0;
}

.resume-content {
  display: flex;
  gap: 70px;
  padding: 50px 0 0;
}
.education, .experience {
  padding: 22px 0;
}
hr {
  border: 1px solid #d1d1d1;
}
.education-title, .experience-title {
  color: #474747;
  font-size: 30px;
  font-weight: 700;
  margin: 0 0 30px;
}
.info-title {
  color: #474747;
  font-size: 25px;
  font-weight: 700;
  margin: 0;
}
.info-subtitle {
  color: #757575;
  font-size: 20px;
  font-weight: 600;
  margin: 0;
  padding-top: 10px;
}
.info-description {
  color:#757575;
  font-size: 16px;
  line-height: 28px;
  padding-top: 4px;
}
/* Footer Styles */
footer {
  display: flex;
  gap: 100px;
}
.social-description {
  color:#474747;
  font-size: 16px;
  font-weight: 400;
  line-height: 28px;
}
.social-icons {
  display: flex;
  gap: 20px;
}
.contact-title {
  color: #181818;
  font-size: 35px;
  font-weight: 700;
}
.contact-form {
  display: flex;
  flex-direction: column;
  padding-top: 20px;
}
input,textarea {
  padding: 18px 30px;
  border: 0;
  color: #757575;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px;
  background: #f0f0f0;
  margin-bottom: 30px;
}

input[type="submit"] {
  width: 150px;
}

/* Responsive media query*/
.hide {
  display: none;
}
@media screen and (max-width: 576px) {
  nav,
  nav > ul,
  .banner, 
  .about-items, 
  .skills-container, 
  .resume-content, 
  footer {
    flex-direction: column;
  }
  header {
    background-image: none;
  }
  nav > ul {
    gap: 20px;
  }
  .btn {
    margin-bottom: 20px;
  }
  .banner {
    margin: 20px;
  }
  .banner-img img {
    width: 100%;
  }
  .about {
    padding: 0 20px;
  }
  footer {
    gap: 0;
  }
}

/* @media screen and (min-width: 576px) and (max-width: 992px) {
  .skills-container {
    flex-wrap: wrap;
  }
} */