@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;400;500;600;700;800;600&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Passion+One:wght@400;700;900&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'poppins', sans-serif;
}

body {
  background-color: #111111;
  overflow-x: hidden;
}

.logo {
  width: 80px;
  color: #C91B28;
}

.nav {
  display: flex;
  justify-content: space-around;
  align-items: center;
  margin-top: 40px;
  color: #fff;
}

nav ul {
  display: flex;
  list-style: none;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 600;
}

nav ul li {
  margin-left: 60px;
}

.menu-item {
  display: none;
  color: #fff;
  font-size: 2rem;
}

.drop::after {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f0d7";
  margin-left: 5px;
  font-style: 20px;
}

.about {
  height: 500px;
  margin-top: 20px;
  width: 100vw;
  display: flex;
  flex-direction: row;
  align-items: center;
}

.arthur-img {
  width: 500px;
  margin-left: 100px;
}

.content {
  margin-top: 150px;
}

.content .name {
  color: #C91B28 !important;
  text-transform: capitalize;
  font-weight: 600;
  font-size: 2rem;
}

.post {
  text-transform: capitalize;
  color: #fff;
  font-size: 4rem;
}

.content p.description {
  color: #fff;
  font-weight: 200;
  margin-top: 10px;
  font-family: 'open sans';
  width: 60%;
}

.btn {
  margin-top: 20px;

}

.btn-group {
  color: #fff;
  background-color: #C91B28;
  border: #C91B28;
  padding: 10px 30px;
  text-transform: uppercase;
  cursor: pointer;
}

.grey-backbox {
  background-color: #151515;
  width: 50%;
  height: 800px;
  position: absolute;
  top: 570px;
  z-index: -1;
}

.skills {
  color: #fff;
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: center;
  margin: 90px 30px;
  gap: 20px;
}

.skill {
  background-color: #212121;
  padding: 40px;
}

.skill img {
  height: 50px;
}

.skill:nth-child(2) {
  background-color: #C91B28;
  color: #fff;
}

.skill h2 {
  text-transform: capitalize;
  margin-top: 20px;
}

.skill p {
  margin: 15px 0;
  line-height: 1.2;
  font-weight: 200;
  /* font-family: 'open sans'; */
}

.skill a {
  color: #C91B28;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 600;
}

.skill:nth-child(2) a {
  color: #fff;
}

.skill:hover {
  opacity: 0.7;
}

.experience {
  margin: 0 150px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 100px;
  align-items: center;
  text-align: center;
}

.experience h1 {
  color: #C91B28;
}

.exp-count {
  /* margin-left: 100px; */
  /* margin: 0 100px; */
}

.exp-count h1 {
  font-size: 80px;
  font-weight: 900;
}

.exp-count h4 {
  color: #fff;
  text-transform: capitalize;
  font-size: 20px;
}

.experience p {
  color: #fff;
  text-transform: capitalize;
}

.exp-details div {
  background-color: #212121;
  padding: 25px 80px;
}

.exp-details div h1 {
  font-size: 40px;
}

.exp-details div p {
  font-size: 14px;
  font-family: 'open sans';
  font-weight: 200;
  margin-top: 10px;
}

.exp-details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  row-gap: 20px;
  column-gap: 20px;
}

.feature {
  color: #fff;
  margin: 0 150px 0 200px;
}

.feature-head {
  margin-top: 100px;
  margin-left: 50px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  /* height: 120px; */
}

.feature-head h1 {
  text-transform: uppercase;
  font-size: 3rem;
  font-family: 'Passion One', sans-serif;
  font-weight: 500;
}

.feature-head .btn-view {
  margin-right: 70px;
}

.feature-head p {
  margin: 10px 0;
}

.projects {
  display: flex;
  flex-wrap: wrap;
  margin-left: 50px;
}

.projects div img {
  background-color: #212121;
  padding: 60px 20px;
  width: 430px;
  margin-top: 20px;
  margin-right: 30px;
}

.projects div:nth-child(3) img {
  padding: 40px 20px;
}

.projects img:hover {
  box-shadow: #212121 0px 2px 10px;
}

.projects div:hover {
  opacity: 0.7;
}

.projects div h4 {
  text-transform: capitalize;
  margin: 10px 0;
  font-size: 1.5rem;
}

.projects div a {
  color: #C91B28;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 600;
}

.work {
  background-color: #212121;
  color: #fff;
  margin: 80px 200px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 50px;
}

.w-head h1 {
  font-size: 3rem;
}

.w-head p {
  font-size: 14px;
  font-weight: 200;
  margin-top: 30px;
}

.bottom-nav pre {
  color: #fff;
  text-transform: uppercase;
  font-size: 10px;
  margin-left: 40%;
  padding: 20px;
}

.footer {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  align-items: center;
  background-color: #212121;
  padding: 20px 0px;
}

.fa-brands {
  color: #fff;
  margin-right: 30px;
}

.social-icons {
  display: flex;
  flex-direction: row;
}

@media (max-width:480px) {
  .nav-items {
    display: none;
  }

  .nav {
    justify-content: space-between;
  }

  .logo {
    width: 120px;
    margin-left: 50px;
  }

  .menu-item {
    display: inline;
  }

  .profile img {
    width: 50%;
  }

  .about {
    flex-direction: column;
    align-items: center;
    padding-top: 50px;
    margin: 0;
  }

  .about .content {
    margin: 30px;
    text-align: center;
  }

  .post {
    font-size: 2.5rem;
  }

  .content p.description {
    width: 100%;
  }

  .skills {
    flex-direction: column;
    gap: 20px;
    align-items: center;
  }

  .skill {
    width: 100%;
    /* text-align: center; */
  }

  .experience {
    flex-direction: column;
    gap: 20px;
  }

  .exp-details {
    display: flex;
    flex-direction: column;
  }

  .feature {
    margin: 0;
  }

  .feature-head {
    flex-direction: column;
    margin-bottom: 50px;
  }

  .projects div {
    margin-bottom: 50px;
  }

  .work {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    margin: 0 50px;
    margin-bottom: 50px;
  }

  .w-head h1 {
    font-size: 2rem;
  }

  .projects div img {
    width: 300px;
  }

  .bottom-nav pre {
    margin: 0;
  }

  .social-icons {
    display: flex;
    flex-direction: row;
  }

}