@import url("https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-decoration: none;
  color: #2c2c2c;
}
.green_dot {
  width: 15px;
  height: 15px;
  margin-left: 6px;
  background-color: chartreuse;
  border-radius: 50%;
  display: inline-block;
}
.section-title {
  font-size: 70px;
  font-family: "Inter", sans-serif;
  font-weight: 800;
  margin-bottom: 1rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.9);
}
html {
  overflow-x: hidden;
}
.page-body {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  overflow-x: hidden;
}
.main-section {
  margin-bottom: 8rem;
}
li {
  list-style: none;
}
.page-header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #fff;
}
.page-header--navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.5rem;
}
.hamburger {
  display: none;
}
.bar {
  display: block;
  width: 40px;
  height: 4px;
  margin: 0.5rem auto;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  background-color: #101010;
}
.page-header--navbar_link-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.link-container_list-items {
  width: 95%;
  margin: 0.5rem;
}
.nav-link {
  font-family: "Inter", sans-serif;
  text-transform: uppercase;
  color: #2c2c2c;
  font-size: 20px;
  font-weight: bold;
}
.nav-link:hover {
  color: #7fff00;
}
@media (max-width: 40rem) {
  .page-header--navbar_link-container {
    position: fixed;
    left: -100%;
    top: 5rem;
    flex-direction: column;
    background-color: #7fff00;
    width: 100%;
    height: 70vh;
    justify-content: center;
    align-items: flex-start;
    gap: 1.5rem;
    transition: 0.3s;
    padding-bottom: 8rem;
    z-index: 10;
  }
  .nav-link {
    color: #2c2c2c;
    margin-bottom: 1rem;
    font-size: 2.5rem;
    font-weight: 900;
  }
  .link-container_list-items {
    width: 95%;
    margin: 0.5rem;
    border-bottom: #2c2c2c 0.5px solid;
  }
  .page-header--navbar_link-container.active {
    left: 0;
  }
  .dot {
    width: 15px;
    height: 15px;
    margin-left: 6px;
    background-color: #2c2c2c;
    border-radius: 50%;
    display: inline-block;
  }
  .hamburger {
    display: block;
    cursor: pointer;
  }
  .bar {
    background-color: #7fff00;
    border-radius: 2px;
  }
  .hamburger.active .bar:nth-child(2) {
    opacity: 0;
  }
  .hamburger.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  .hamburger.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
}
.page-header--image {
  width: 170px;
  height: 80px;
}
.page-header_mobile--hamburger {
  margin-right: 2rem;
  width: 48px;
  height: 48px;
}
.page-body--main {
  width: 95vw;
  margin: 0 auto;
  margin-top: 112px;
  font-family: "Inter", sans-serif;
  color: #2c2c2c;
  font-size: 14px;
}
@media (min-width: 40rem) {
  .page-body--main {
    font-size: 16px;
  }
}
.about-section--title {
  text-align: right;
}
.about-section-text--name {
  font-size: 24px;
}
.about-section-text-container {
  padding: 1.5rem;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 50px 1fr;
}
.about-section-text--objective {
  font-family: "Inter", sans-serif;
  font-size: 40px;
  font-weight: 600;
  line-height: 1.1;
}
@media (min-width: 40rem) {
  .about-section-text-container {
    grid-template-columns: 0.7fr 1.2fr;
    grid-template-rows: 1fr;
  }
  .about-section-text--objective {
    font-family: "Inter", sans-serif;
    max-width: 85%;
    font-size: 60px;
    font-weight: 800;
  }
}
.education-content-container {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.education-level-card {
  margin-left: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  width: 85vw;
  padding-left: 0.8rem;
  border-left: 4px solid #7fff00;
}
.education-icon-container {
  width: 32px;
  height: 32px;
  background-color: #7fff00;
  display: flex;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
}
.education-icon {
  width: 24px;
  height: 24px;
}
.degree {
  font-size: 40px;
  text-decoration: underline 2px dotted #7fff00;
}
.course {
  font-size: 30px;
  font-weight: 500;
}
.university {
  font-size: 28px;
  font-weight: 500;
}
.year {
  font-size: 16px;
  font-weight: 200;
}
@media (max-width: 40rem) {
  .degree {
    font-size: 27px;
  }
  .course {
    font-size: 23px;
  }
  .university {
    font-size: 18px;
  }
  .year {
    font-size: 16px;
  }
} /* Skills Section CODE:  */
.skills-section--wrapper {
  display: grid;
  gap: 1rem;
}
.skills-section--title {
  text-align: right;
}
.skills-section--skills__card {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 0.5rem;
}
.skills-section--skills__card:hover {
  box-shadow: 0 0 8px #2c2c2c1a;
  border-color: #ffffff00;
}
.skills-icon--container {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 32px;
  height: 32px;
  background-color: chartreuse;
  border-radius: 50%;
}
.skill-title {
  font-size: 20px;
  text-transform: capitalize;
  border-bottom: 0.5px solid #2c2c2c;
}
.skill-description {
  padding-left: 1rem;
  width: 90%;
  font-size: 16px;
  line-height: 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  align-items: center;
}
.skill-description li {
  list-style: disc;
}
.skill-description li::marker {
  color: #7fff00;
}
.autocad-link {
  font-weight: 500;
}
.autocad-link:hover {
  color: #7fff00;
}
@media (min-width: 40rem) {
  .skills-section--wrapper {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr;
  }
}
@media (min-width: 70rem) {
  .page-body {
    font-size: 1rem;
  }
  .section-title {
    font-size: 112px;
    font-weight: 800;
  }
  .skills-section--wrapper {
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: 1fr;
  }
  .skill-title {
    font-size: 30px;
    text-transform: capitalize;
  }
}
.scroll-text-container {
  overflow-x: hidden;
  position: static;
  padding: 12px 0;
  color: #2c2c2c;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 700;
  border-bottom: 1px solid rgba(0, 0, 0, 0.9);
  margin-bottom: 1rem;
  white-space: nowrap;
}
.scroll-text--content {
  text-transform: uppercase;
  display: inline-block;
  animation: move 15s linear infinite;
}
@keyframes move {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}
.contact-section--title {
  margin-bottom: 0;
}
.contact-section--subtitle {
  font-size: 24px;
}
.contact-section--subtitle-second {
  font-weight: 500;
  font-size: 18px;
  margin-top: 0.5rem;
}
.contact-card {
  margin-top: 0.7rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.contact-card--link {
  display: flex;
  flex-direction: column;
}
.contact-card-svg-container {
  height: 30px;
  width: 30px;
  background-color: #7fff00;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-card--link-svg {
  height: 24px;
  width: 24px;
}
.contact-card--link-name {
  font-size: 14px;
  font-weight: 500;
}
@media (min-width: 40rem) {
  .contact-section--subtitle {
    font-size: 40px;
  }
  .contact-section--subtitle-second {
    font-size: 22px;
    font-weight: 500;
    margin-top: 0.4rem;
  }
  .contact-card {
    margin-top: 1.2rem;
  }
  .contact-card-svg-container {
    height: 40px;
    width: 40px;
    background-color: #7fff00;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .contact-card--link-svg {
    height: 32px;
    width: 32px;
  }
  .contact-card--link-name {
    font-size: 18px;
  }
  .contact-card--link-name-span:hover {
    color: #7fff00;
  }
}
.page-footer {
  padding: 1.5rem;
  border-top: 1px solid rgba(0, 0, 0, 0.9);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  border-bottom: 4px solid #7fff00;
}
.footer-contact-link__container {
  display: flex;
  gap: 1rem;
}
