.section {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 100%;
  min-width: 100%;
  min-height: 91vh;
  transition: all 0.7s;
}
.about-section {
  /* height: -moz-max-content; */
  /* height: max-content; */
  flex-direction: row;
  justify-content: space-evenly;
  background-color: transparent;
  background-image: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0.95),
    rgb(255, 255, 255),
    rgb(255, 255, 255),
    #f9f9f9,
    #f7f7f7
  );
}
.about-section .about-ill {
  width: 30%;
}
.about-section .about-ill img {
  width: 100%;
  height: 100%;
}
.about-section .aboutMe {
  width: 50%;
  margin: 1rem;
  padding: 2rem;
}
.about-section .professionContainer {
  display: flex;
  gap: 0.7rem;
}
.about-section .professionContainer p {
  font-size: 0.8rem;
  font-weight: 500;
  width: -moz-max-content;
  width: max-content;
  padding: 0.1rem 0.5rem;
  border-radius: 0.2rem;
  color: #18181b;
  background-color: #e2e8f0;
}

.resume-button {
  border: 2px solid green;
  text-decoration: none;
  color: green;
  padding: 5px 15px;
  border-radius: 100px;
}
.resume-button:hover {
  background-color: green;
  color: #ffffff;
  transition: 0.6s;
}

/* SOCIAL ICONS STYLING */
.social-menu {
  display: flex;
  gap: 20px;
  flex-direction: column;
  padding: 0;
}
.social-menu li {
  list-style: none;
}
.social-menu a {
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  padding: 0.7rem;
  transition: 0.6s;
  -webkit-transition: all 0.6s;
  border-radius: 8px;
}
.social-menu a i {
  font-size: 20px;
  color: #fff;
}

.social-menu .linkedin {
  background-color: #0077b5;
  color: #fff;
}
.social-menu .github {
  background-color: #252525;
}
.social-menu .instagram {
  background: radial-gradient(
    circle at 30% 110%,
    #ffdb8b 0%,
    #ee653d 25%,
    #d42e81 50%,
    #a237b6 75%,
    #3e5fbc 100%
  );
}

.social-menu .facebook {
  background-color: #3b5998;
}

@media screen and (max-width: 1000px) {
  .section {
    flex-direction: column;
    padding: 5rem 8rem;
  }
  .section .title {
    margin-bottom: 0rem;
    align-items: center;
  }
  .section .title p {
    margin: 0 0 2rem 0;
    text-align: center;
  }

  .about-section {
    flex-direction: column;
    text-align: center;
  }
  .about-section .aboutMe {
    width: 100%;
    border-radius: 1rem;
    background-color: #f7f7f7;
  }
  .about-section .aboutMe a {
    margin: auto;
  }
  .about-section .about-ill {
    width: 40%;
    margin: 1rem;
  }
  .about-section .professionContainer {
    justify-content: center;
  }
  .about-section .social-menu {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
  }
  .about-section .social-menu a {
    display: flex;
    flex-direction: row;
  }
  .about-section .social-menu a i {
    font-size: 25px;
  }

  /* .social-menu {
    padding: 15px;
    transform: translateY(33px);
    border: 2px solid #8e8a8a;
    border-radius: 25px;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    border-bottom: 0;
  } */
}
@media (max-width: 900px) {
  .section {
    padding: 2rem;
  }

  .about-section .about-ill {
    width: 70%;
  }
}
