@import url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.about-bgImg-container {
  height: 50vh;
  width: 100%;
  background: linear-gradient(to right, rgba(39, 39, 39, 0.9), rgba(39, 39, 39, 0.3)), url("../assets/about-me-bg-img.jpeg");
  background-size: cover;
  background-position: center;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.about-bgImg-container .about__bio-image {
  text-align: center;
}
.about-bgImg-container .about__bio-image h2 {
  font-size: 3rem;
  color: #ff652f;
}
.about-bgImg-container .about__bio-image p {
  font-size: 1.2rem;
  margin: 1.5rem;
  line-height: 1.5rem;
}

.about__container {
  width: 70%;
  margin: 2rem auto;
}
.about__job {
  margin: 1rem;
  background-color: #414141;
  padding: 1rem;
  border-bottom: 5px solid #ff652f;
}
.about__job h2,
.about__job h3 {
  margin: 0.5rem 0;
}
.about__job h6 {
  margin: 0.3rem 0;
}

.contact-bgImg-container {
  height: 100vh;
  width: 100%;
  background: linear-gradient(to right, rgba(39, 39, 39, 0.9), rgba(39, 39, 39, 0.3)), url("../assets/contact-bg-img.avif");
  background-size: cover;
  background-position: center;
  background-position: top;
}
.contact-bgImg-container nav {
  height: 40vh;
}

.contact {
  height: 40vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.contact h2 {
  font-size: 3rem;
  margin-bottom: 2rem;
}
.contact__list {
  display: flex;
  flex-wrap: wrap;
  font-size: 1.5rem;
  margin-top: 5rem;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}
.contact__list i {
  margin-bottom: 1rem;
}
.contact .text-secondary {
  color: #ddc61c;
}

.home-bgImg-container {
  height: 100vh;
  width: 100%;
  background: linear-gradient(to right, rgba(39, 39, 39, 0.9), rgba(39, 39, 39, 0.3)), url("../assets/model-1.jpg");
  background-size: cover;
  background-position: center;
}

.home {
  height: 80vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}
.home__name {
  font-size: 4rem;
  text-align: left;
  padding: 1rem;
  margin-bottom: 1rem;
  border-bottom: 2px solid white;
  width: 100%;
}
.home__name--last {
  color: red;
  font-weight: 700;
}
.home .hi {
  text-align: left;
  padding-left: 10rem;
}
.home .job {
  text-align: right;
  padding: 1rem;
}

.project-bgImg-container {
  height: 40vh;
  width: 100%;
  background: linear-gradient(to right, rgba(39, 39, 39, 0.9), rgba(39, 39, 39, 0.3)), url("../assets/my-projects-bg-img.jpg");
  background-size: cover;
  background-position: center;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.project-bgImg-container .projects__bio-image {
  text-align: center;
  margin-bottom: 1rem;
}

.projects__items {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding: 2rem 5rem;
  gap: 1rem 1rem;
}
.projects__item {
  width: 100%;
  cursor: pointer;
  border-bottom: 5px solid #ff652f;
  overflow: hidden;
  position: relative;
}
.projects__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.projects__item::after {
  content: "";
  width: 100%;
  height: 100%;
  background-color: #ff652f;
  position: absolute;
  left: 0;
  opacity: 0;
  transition: all 0.5s;
}
.projects__item:hover::after {
  opacity: 0.3;
}
.projects__item__info {
  position: absolute;
  width: 100%;
  bottom: 1rem;
  left: 0;
  text-align: center;
  transform: translateY(150%);
  transition: all 1s;
  font-size: 3rem;
}
.projects__item:hover .projects__item__info {
  transform: translateY(0);
}

.link-style a, footer.middle a, footer.vertical .social-icons a, footer.horizontal a {
  padding: 0.4rem;
  transition: all 1s;
}
.link-style a:hover, footer.middle a:hover, footer.vertical .social-icons a:hover, footer.horizontal a:hover {
  color: #ddc61c;
}

footer.horizontal {
  height: 10vh;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding: 1rem;
}

footer.vertical {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding: 2rem;
}
footer.vertical .social-icons {
  writing-mode: vertical-lr;
  position: fixed;
  bottom: 1rem;
  left: 1rem;
}
footer.vertical .copyright {
  writing-mode: vertical-lr;
  position: fixed;
  bottom: 1rem;
  right: 1rem;
}

footer.middle {
  height: 20vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  margin-top: 3rem;
  padding: 1rem;
  gap: 1rem;
}

.nav {
  height: 10vh;
  padding: 1rem;
}
.nav__list {
  text-align: right;
}
.nav__item {
  display: inline;
  padding: 1rem;
}
.nav__link {
  text-decoration: none;
  text-transform: uppercase;
  font-size: 1rem;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  font-weight: 500;
  transition: all 1s;
}
.nav__link:hover {
  color: #ddc61c;
  transition-duration: 0.5s;
}
.nav__link--active {
  color: #ff652f;
}

@media screen and (min-width: 0px) {
  .nav {
    padding: 0.5rem 0;
  }
  .nav__list {
    text-align: center;
  }
  .nav__item {
    padding-right: 0.3rem;
  }
  .nav .nav__link {
    font-size: 0.8rem;
  }
  .contact h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
  }
  .contact__list {
    gap: 2rem 1.2rem;
    font-size: 1.2rem;
  }
}
@media screen and (min-width: 576px) {
  .nav {
    padding: 0.7rem;
  }
  .nav__list {
    text-align: right;
  }
  .nav__item {
    padding-right: 1rem;
  }
  .nav .nav__link {
    font-size: 1rem;
  }
  .contact h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
  }
  .contact__list {
    gap: 2.5rem 2rem;
    font-size: 1.5rem;
  }
}
@media screen and (min-width: 768px) {
  .nav__item {
    padding-right: 1.3rem;
  }
  .nav .nav__link {
    font-size: 1.3rem;
  }
  .projects__item {
    width: 100%;
  }
}
@media screen and (min-width: 1024px) {
  .nav__item {
    padding-right: 1.5rem;
  }
  .nav .nav__link {
    font-size: 1.5rem;
  }
  .projects__item {
    width: 45%;
  }
  .contact__list {
    flex-direction: row;
  }
}
@media screen and (min-width: 1600px) {
  .projects__item {
    width: 33%;
  }
}
body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  color: white;
  background-color: #272727;
  height: 100vh;
  line-height: 1;
}

a {
  color: white;
  text-decoration: none;
}

h1,
h2,
h3 {
  font-weight: 400;
}

/*# sourceMappingURL=main.css.map */
