*, *::after, *::before {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

a {
  text-decoration: none;
}

body {
  width: 100%;
  height: 100%;
  color: #2d2d2d;
  font-size: 2rem;
  font-family: "Source Sans Pro", sans-serif;
}

.section__intro {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 5rem;
  width: 50%;
  padding: 4rem 0;
}

.section__title {
  font-size: 200%;
  position: relative;
}
.section__title::after {
  content: "";
  position: absolute;
  top: calc(100% + 1.5rem);
  height: 5px;
  width: 3rem;
  background: #00bf8f;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 5px;
}

a {
  cursor: pointer;
  color: black;
}

strong {
  color: #00bf8f;
}

.link__button {
  border: #00bf8f 0.4rem solid;
  width: max-content;
  padding: 1rem 2rem;
  background: none;
  border-radius: 0.5rem;
  font-size: 125%;
  color: #00bf8f;
  cursor: pointer;
}

body::-webkit-scrollbar {
  width: 0.75rem;
}

body::-webkit-scrollbar-track {
  background: none;
}

body::-webkit-scrollbar-thumb {
  background: #00bf8f;
}

.header {
  width: 100%;
  height: 100vh;
  background-image: url("../../img/background.webp");
  background-size: cover;
  background-repeat: no-repeat;
  color: #2d2d2d;
}
.header__logo {
  display: flex;
  align-items: center;
  justify-content: center;
}
.header__nav {
  width: 100%;
  height: 10rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0rem 4rem;
  border-bottom: solid 0.1rem;
  background: white;
  position: fixed;
  z-index: 10;
}
.header__wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  gap: 3rem;
  cursor: pointer;
}
.header__img {
  width: 7.5rem;
}
.header__text {
  font-size: 150%;
}
.header__list {
  list-style: none;
  display: flex;
  gap: 3rem;
}
.header__listItem {
  font-size: 100%;
  transition: all 20s;
  cursor: pointer;
}
.header__listItem:hover {
  color: #00bf8f;
}
.header__active {
  border-bottom: solid 0.3rem #00bf8f;
  padding-bottom: 1rem;
}

.intro {
  width: 100%;
  height: 100%;
  padding: 4rem;
  padding-top: 12rem;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 20rem;
  color: #2d2d2d;
}
.intro__wrapper {
  width: 75%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 2rem;
}
.intro__title {
  font-size: 300%;
  text-align: center;
}
.intro__introduction {
  font-size: 150%;
  text-align: center;
}
.intro__Img {
  width: 50%;
}
.intro__button {
  width: 20rem;
  height: 5rem;
  background: #00bf8f;
  border-radius: 1rem;
  border: none;
  box-shadow: 0.5rem 0.5rem 1rem #2d2d2d;
  cursor: pointer;
  color: white;
  font-size: 120%;
  font-weight: 400;
}

.Social {
  background: white;
  color: #2d2d2d;
  height: min-content;
  padding: 1rem 0;
  width: 7.5rem;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  top: 50%;
  left: 0;
  border-top-right-radius: 1rem;
  border-bottom-right-radius: 1rem;
  box-shadow: 0.5rem 0.5rem 1rem #2d2d2d;
}
.Social__items {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
.Social__item {
  font-size: 4rem;
  cursor: pointer;
  color: #2d2d2d;
}
.Social__item:hover {
  color: #00bf8f;
}

.main {
  width: 100%;
  height: 100%;
}

.about {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  background: #eee;
  padding: 0 4rem;
  scroll-margin-top: 10rem;
}
.about__wrapper {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  flex-direction: row;
  gap: 5rem;
}
.about__article {
  padding: 5rem;
  display: flex;
  gap: 4rem;
  flex-direction: column;
}
.about__article--right {
  width: 30%;
  padding: 5rem 0rem;
}
.about__article--left {
  width: 70%;
}
.about__title {
  font-size: 145%;
}
.about__text {
  display: flex;
  flex-direction: column;
}
.about__p {
  line-height: 1.7;
  margin: 1rem;
  margin-left: 0;
}
.about__button {
  width: 20rem;
  height: 5rem;
  background: #00bf8f;
  border-radius: 1rem;
  border: none;
  box-shadow: 0.5rem 0.5rem 1rem #2d2d2d;
  cursor: pointer;
  color: white;
  font-size: 120%;
  font-weight: 400;
}
.about__skills {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.about__skill {
  background: #00bf8f;
  color: white;
  width: max-content;
  padding: 1rem 2rem;
  border-radius: 0.5rem;
  border: none;
  font-size: 125%;
}

.projects {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 0 4rem;
  scroll-margin-top: 10rem;
  gap: 5rem;
  margin-bottom: 4rem;
}
.projects__wrapper {
  width: 80%;
  height: 100%;
  display: flex;
  justify-content: center;
  flex-direction: row;
  gap: 5rem;
}
.projects__article {
  width: 50%;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
}
.projects__article--right {
  padding: 5rem;
  gap: 1.5rem;
}
.projects__article--left {
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
.projects__img {
  width: 100%;
  max-height: 100%;
}
.projects__img--right {
  display: none;
}
.projects__text {
  width: 100%;
  line-height: 1.7;
}
.projects__button {
  width: 20rem;
  height: 5rem;
  background: #00bf8f;
  border-radius: 1rem;
  border: none;
  box-shadow: 0.5rem 0.5rem 1rem #2d2d2d;
  cursor: pointer;
  color: white;
  font-size: 120%;
  font-weight: 400;
  left: 5rem;
  bottom: 10rem;
}

.contact {
  width: 100%;
  padding: 5rem 0rem;
  scroll-margin: 10rem;
  display: flex;
  align-items: center;
  flex-direction: column;
  background-image: url(../../../../img/background.webp);
  background-size: cover;
}
.contact__container {
  width: 100%;
  height: 90vh;
  max-width: 90rem;
  display: flex;
  flex-direction: row;
  box-shadow: 0.5rem 0.5rem 1rem #2d2d2d;
  border-radius: 1rem;
  background: linear-gradient(to right, #00bf8f, #74e8cb);
}
.contact__article {
  border-radius: 1rem;
}
.contact__article--left {
  width: 40%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  align-items: center;
  color: white;
}
.contact__article--right {
  width: 60%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.contact__info {
  display: flex;
  gap: 2rem;
  flex-direction: column;
}
.contact__h4 {
  font-weight: 100;
  font-size: medium;
  display: flex;
  gap: 2rem;
}
.contact__h4--icon {
  font-size: larger;
}
.contact__socials {
  list-style: none;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  gap: 3rem;
}
.contact__social {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 5rem;
  height: 5rem;
  border-radius: 50rem;
}
.contact__social:hover {
  background: #17755d;
}
.contact__icon {
  color: white;
  font-size: 3rem;
}
.contact__form {
  width: 60%;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 2rem;
}
.contact__title {
  font-weight: 600;
  width: 100%;
  color: white;
}
.contact__input {
  padding: 2rem;
  outline: none;
  background: #f5f5f5;
  border: none;
  width: 100%;
}
.contact__textarea {
  width: 100%;
  border: 0;
  margin: 1rem 0;
  padding: 2rem;
  outline: none;
  background: #f5f5f5;
  font-size: 1.6rem;
  font-weight: 500;
  font-family: "Source Sans Pro", sans-serif;
  resize: none;
}
.contact__btn {
  width: 20rem;
  height: 5rem;
  background: #00bf8f;
  border-radius: 1rem;
  border: none;
  box-shadow: 0.5rem 0.5rem 1rem #2d2d2d;
  cursor: pointer;
  color: white;
  font-size: 120%;
  font-weight: 400;
}

.info {
  height: 100%;
  width: 100%;
  padding: 6rem 4rem;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.info__img {
  max-width: 75%;
}
.info__article {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}
.info__description {
  width: 75%;
  display: flex;
  justify-content: center;
  flex-direction: column;
  gap: 5rem;
}
.info__heading {
  font-size: 150%;
}
.info__skills {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.info__skill {
  background: #00bf8f;
  color: white;
  width: max-content;
  padding: 1rem 2rem;
  border-radius: 0.5rem;
  border: none;
  font-size: 125%;
}
.info__buttonwrapp {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}
.info__button {
  background: none;
  border: #00bf8f 0.2rem solid;
  padding: 1.5rem 3rem;
  border-radius: 0.5rem;
}
.info__button--left {
  background: #00bf8f;
  color: white;
}
.info__button--right {
  color: #00bf8f;
}

.footer {
  height: max-content;
  width: 100%;
  background: #eee;
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
  border-top: solid 0.1rem;
}
.footer__article {
  width: max-content;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3rem;
}
.footer__article--small {
  display: none;
}
.footer__h3 {
  font-size: 70%;
}
.footer__img {
  width: 10rem;
}
.footer__social {
  font-size: 3rem;
}

@media screen and (max-width: 62.5rem) {
  .projects__article--right {
    padding: 0;
    gap: 1rem;
  }
}
@media screen and (max-width: 60rem) {
  .header {
    height: 100%;
    gap: 10rem;
  }
}
@media screen and (max-width: 50rem) {
  .about__skills {
    gap: 1rem;
  }
  .about__skill {
    font-size: 100%;
  }
  .about__article--right {
    padding: 5rem;
  }
  .header__listItem--gone {
    display: none;
  }
  .footer {
    flex-direction: column;
    gap: 2rem;
  }
  .footer__social {
    font-size: 5rem;
  }
  .footer__article {
    width: 100%;
  }
  .footer__article--gone {
    display: none;
  }
  .footer__article--small {
    display: flex;
    flex-direction: column;
  }
  .footer__h3 {
    display: inline-block;
  }
}
@media screen and (max-width: 59.375rem) {
  .about__article--right {
    width: 40%;
  }
  .about__article--left {
    width: 60%;
  }
}
@media screen and (max-width: 43.75rem) {
  .about__article {
    width: 100%;
  }
  .projects__wrapper {
    padding-bottom: 7.5rem;
  }
  .projects {
    gap: 2rem;
    padding: 0;
  }
  .projects__article--left {
    display: none;
  }
  .projects__article--right {
    width: 100%;
    align-items: center;
  }
  .projects__title {
    font-size: 150%;
  }
  .projects__img--right {
    display: block;
    width: 100%;
  }
}
@media screen and (max-width: 41.25rem) {
  .about__wrapper {
    flex-direction: column;
  }
  .Social {
    width: 5rem;
  }
  .Social__item {
    font-size: 3rem;
  }
}
@media screen and (max-width: 34.375rem) {
  .footer {
    flex-direction: column;
    height: 100%;
    gap: 2rem;
    justify-content: center;
    align-items: center;
  }
  .footer__article {
    width: max-content;
  }
  .footer__h3, .footer__link, .footer__h5 {
    display: inline;
  }
}
@media screen and (max-width: 30rem) {
  .header__nav {
    justify-content: flex-start;
    padding: 0;
    gap: 7rem;
  }
  .header__text {
    font-size: 125%;
  }
  .about {
    padding: 0;
  }
  .section__intro {
    width: 100%;
  }
  .contact__form {
    width: fit-content;
  }
}
@media screen and (max-width: 45.3125rem) {
  .contact {
    background-image: none;
    padding: 0rem;
  }
  .contact__container {
    flex-direction: column;
    border-radius: 0;
    height: 100%;
    padding-bottom: 2rem;
    width: 100%;
    background: #74e8cb;
    box-shadow: none;
  }
  .contact__article {
    width: 100%;
    border-radius: 0;
  }
  .contact__article--left {
    height: 100%;
    padding: 5rem 0;
    background: linear-gradient(to bottom, #00bf8f, 90%, #74e8cb);
    gap: 5rem;
  }
  .contact__article--right {
    height: 100%;
  }
  .contact__form {
    justify-content: center;
    align-items: center;
  }
  .contact__input {
    width: 80%;
  }
  .contact__textarea {
    width: 80%;
  }
  .contact__title {
    width: max-content;
  }
}
@media screen and (max-width: 25rem) {
  .header {
    height: 100%;
    display: flex;
    flex-direction: column;
  }
  .intro {
    gap: 5rem;
  }
}

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