@import url("https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap");
html {
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
}
html body {
  margin: 0;
}

* {
  font-family: "Inter", sans-serif;
}

.primaryButton {
  background-color: #FFF;
  border-radius: 10px;
  box-shadow: -15px 15px 23px -11px rgba(0, 0, 0, 0.25);
  color: #212430;
  text-decoration: none;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 700;
  height: 46px;
  display: flex;
  justify-content: space-around;
  align-items: center;
  margin: 0;
  padding: 0 20px;
}
.primaryButton img {
  height: 24px;
  right: 10%;
}

.secondaryButton {
  background-color: transparent;
  border-radius: 10px;
  border: 2px solid #fff;
  box-shadow: -15px 15px 23px -11px rgba(0, 0, 0, 0.25);
  color: #fff;
  text-decoration: none;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 700;
  height: 46px;
  display: flex;
  justify-content: space-around;
  align-items: center;
  margin: 0;
  padding: 0 20px;
}
.secondaryButton img {
  height: 24px !important;
  width: 24px !important;
  right: 10%;
}

body {
  background: #212430;
  padding: 110px 24px 24px 24px;
}

header {
  display: flex;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  align-items: center;
  justify-content: space-between;
  padding: 10px 24px;
  z-index: 1;
  background: rgba(33, 36, 48, 0.9);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(16.6px);
  -webkit-backdrop-filter: blur(16.6px);
}
header .icon {
  color: #7A7FF4;
  font-size: 50px;
  font-weight: 700;
  margin: 0;
}
header nav {
  position: absolute;
  right: 0;
  left: 0;
  top: 80px;
  background-color: #4b516c;
  flex-direction: column;
  gap: 20px;
  padding: 20px;
  display: none;
}
header nav a {
  color: #fff;
  text-decoration: none;
  padding: 10px;
  text-align: center;
  font-size: 16px;
  font-weight: 700;
  transition-duration: 400ms;
}
header nav .primaryButton {
  background-color: #7A7FF4;
  color: #fff;
  width: 110px;
  margin: 0 auto;
}
header nav .primaryButton path {
  transition-duration: 400ms;
}
header .open {
  display: flex;
  animation: openMenu 400ms ease-in-out;
}
header .menuBtn {
  display: flex;
  background: none;
  border: none;
}

@keyframes openMenu {
  0% {
    transform: translateY(-100%);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes closeMenu {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@media screen and (min-width: 768px) {
  header {
    padding: 0 15%;
  }
  header .menuBtn {
    display: none;
  }
  header nav {
    display: flex;
    background: none;
    position: initial;
    flex-direction: row;
  }
  header nav a:hover {
    color: #7A7FF4;
  }
  header nav .primaryButton:hover {
    background-color: #fff;
    color: #7A7FF4;
  }
  header nav .primaryButton:hover path {
    stroke: #7A7FF4;
  }
}
@media screen and (min-width: 1500px) {
  header {
    padding: 0 25%;
  }
}
.hero {
  display: flex;
  flex-direction: column;
}
.hero img {
  width: -webkit-fill-available;
  border-radius: 80px;
  max-height: 400px;
  box-shadow: -15px 15px 23px -11px rgba(0, 0, 0, 0.25);
  object-fit: cover;
  object-position: center;
}
.hero .heroText {
  color: #fff;
}
.hero .heroText h1 {
  font-size: 25px;
  font-weight: 700;
  margin-top: 54px;
}
.hero .heroText h1 span {
  color: #7A7FF4;
}
.hero .heroText p {
  font-size: 14px;
  font-weight: 400;
  margin-top: 24px;
}
.hero .heroText a {
  margin-top: 30px;
  width: 260px;
  display: flex;
  align-items: center;
  flex-direction: row;
  justify-content: center;
  grid-row-gap: 10px;
  grid-column-gap: 16px;
}
.hero .heroText a img {
  width: 24px;
}

@media screen and (min-width: 768px) {
  .hero {
    flex-direction: row-reverse;
    width: 70%;
    margin: 80px auto 0 auto;
    gap: 20px;
    align-items: center;
    justify-content: space-between;
  }
  .hero img {
    width: 470px;
    max-height: 560px !important;
    border-radius: 160px;
  }
  .hero .heroText h1 {
    font-size: 35px;
    margin-top: 0;
  }
  .hero .heroText p {
    font-size: 16px;
    margin-top: 0;
    max-width: 410px;
  }
  .hero .heroText a {
    width: 260px;
    display: flex;
    align-items: center;
    flex-direction: row;
    justify-content: center;
    grid-row-gap: 10px;
    grid-column-gap: 16px;
  }
  .hero .heroText a img {
    position: initial;
  }
}
@media screen and (min-width: 1500px) {
  .hero {
    width: 50%;
  }
}
.projects {
  margin-top: 120px;
}
.projects h2 {
  font-size: 25px;
  font-weight: 700;
  color: #fff;
  margin-right: 24px;
}
.projects h2 span {
  color: #7A7FF4;
}
.projects p {
  font-size: 14px;
  font-weight: 400;
  color: #fff;
  margin-top: 24px;
  margin-right: 80px;
}
.projects .projects-container {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-top: 80px;
}
.projects .projects-container .project {
  background: linear-gradient(292deg, #2C303F 10.7%, #383E54 64.29%), #C7C7C7;
  display: flex;
  flex-direction: column;
  box-shadow: -15px 15px 23px -11px rgba(0, 0, 0, 0.25);
  border-radius: 25px;
  padding: 24px;
}
.projects .projects-container .project img {
  width: -webkit-fill-available;
  border-radius: 14px;
  height: 260px;
  object-fit: cover;
}
.projects .projects-container .project h3 {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  margin-top: 24px;
}
.projects .projects-container .project p {
  font-size: 14px;
  font-weight: 400;
  color: #fff;
  margin: 24px 0;
  line-height: normal;
  margin-right: 0;
}
.projects .projects-container .project a img {
  position: absolute;
  right: 15%;
}

@media screen and (min-width: 768px) {
  .projects {
    width: 70%;
    margin: 150px auto 50px auto;
  }
  .projects h2 {
    font-size: 35px;
    margin-bottom: 10px;
  }
  .projects p {
    margin-top: 0;
    font-size: 16px;
  }
  .projects .projects-container {
    margin-top: 40px;
  }
  .projects .projects-container .project {
    flex-direction: row;
    align-items: center;
  }
  .projects .projects-container .project .project-img {
    width: 45%;
    min-width: 45%;
    min-height: 376px;
  }
  .projects .projects-container .project .project-texts {
    margin: 70px;
  }
  .projects .projects-container .project .project-texts h3 {
    font-size: 35px;
    margin-top: 0;
    font-weight: 600;
  }
  .projects .projects-container .project .project-texts p {
    font-size: 16px;
    margin: 0;
  }
  .projects .projects-container .project .project-texts a {
    margin-top: 24px;
    width: 120px;
    padding: 0 10px;
  }
  .projects .projects-container .project .project-texts a img {
    position: initial;
  }
}
@media screen and (min-width: 1500px) {
  .projects {
    width: 50%;
  }
}
.about {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-top: 30px;
}
.about .about-title h2 {
  font-size: 25px;
  font-weight: 700;
  color: #fff;
  margin-right: 24px;
  margin-bottom: 0;
}
.about .about-title h2 span {
  color: #7A7FF4;
}
.about .about-title p {
  font-size: 14px;
  font-weight: 400;
  color: #fff;
  margin-top: 10px;
  margin-right: 80px;
}
.about .about-container {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.about .about-container .soft-skills, .about .about-container .hard-skills, .about .about-container .socials {
  display: flex;
  flex-direction: column;
  gap: 30px;
  background: linear-gradient(292deg, #2C303F 10.7%, #383E54 64.29%), #C7C7C7;
  padding: 24px;
  border-radius: 25px;
}
.about .about-container .soft-skills h3, .about .about-container .hard-skills h3, .about .about-container .socials h3 {
  font-size: 25px;
  font-weight: 700;
  color: #fff;
  margin: 0;
}
.about .about-container .soft-skills p, .about .about-container .hard-skills p, .about .about-container .socials p {
  font-size: 14px;
  font-weight: 400;
  color: #fff;
  margin: 0;
}
.about .about-container .soft-skills .socials-container, .about .about-container .hard-skills .socials-container, .about .about-container .socials .socials-container {
  padding: 20px;
  display: flex;
  gap: 20px;
  justify-content: space-around;
}
.about .about-container .soft-skills .socials-container a, .about .about-container .hard-skills .socials-container a, .about .about-container .socials .socials-container a {
  transition-duration: 400ms;
}
.about .about-container .soft-skills .socials-container a:hover, .about .about-container .hard-skills .socials-container a:hover, .about .about-container .socials .socials-container a:hover {
  transform: scale(1.1);
}
.about .about-container .soft-skills .progress-bar-container, .about .about-container .hard-skills .progress-bar-container, .about .about-container .socials .progress-bar-container {
  display: flex;
  width: -webkit-fill-available;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.about .about-container .soft-skills .progress-bar-container .progress-bar, .about .about-container .hard-skills .progress-bar-container .progress-bar, .about .about-container .socials .progress-bar-container .progress-bar {
  display: flex;
  width: -webkit-fill-available;
  justify-content: space-between;
  align-items: center;
}
.about .about-container .soft-skills .progress-bar-container .progress-bar p, .about .about-container .hard-skills .progress-bar-container .progress-bar p, .about .about-container .socials .progress-bar-container .progress-bar p {
  font-size: 10px;
  margin-right: 20px;
}
.about .about-container .soft-skills .progress-bar-container .progress-bar progress[value], .about .about-container .hard-skills .progress-bar-container .progress-bar progress[value], .about .about-container .socials .progress-bar-container .progress-bar progress[value] {
  height: 18px;
  max-width: 235px;
  width: -webkit-fill-available;
  appearance: none;
  -webkit-appearance: none;
  border-radius: 7px;
  background-color: #D9D9D9;
  accent-color: #7A7FF4;
}
.about .about-container .soft-skills .progress-bar-container .progress-bar progress[value]::-webkit-progress-bar, .about .about-container .hard-skills .progress-bar-container .progress-bar progress[value]::-webkit-progress-bar, .about .about-container .socials .progress-bar-container .progress-bar progress[value]::-webkit-progress-bar {
  background-color: #D9D9D9;
  border-radius: 7px;
  accent-color: #7A7FF4;
}
.about .about-container .soft-skills .progress-bar-container .progress-bar ::-webkit-progress-value, .about .about-container .hard-skills .progress-bar-container .progress-bar ::-webkit-progress-value, .about .about-container .socials .progress-bar-container .progress-bar ::-webkit-progress-value {
  background-color: #7A7FF4;
  border-radius: 7px;
  accent-color: #7A7FF4;
}

@media screen and (min-width: 768px) {
  .about {
    width: 70%;
    margin: 80px auto;
  }
  .about .about-title h2 {
    font-size: 35px;
    margin-right: 0;
  }
  .about .about-title h2 span {
    color: #7A7FF4;
  }
  .about .about-title p {
    font-size: 16px;
    margin-right: 0;
  }
  .about .about-container {
    display: flex;
    flex-direction: row;
    gap: 30px;
    height: 350px;
  }
  .about .about-container .soft-skills, .about .about-container .socials {
    min-width: 150px;
  }
  .about .about-container .soft-skills h3, .about .about-container .socials h3 {
    white-space: nowrap;
  }
  .about .about-container .socials {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .about .about-container .socials .socials-container {
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
    width: -webkit-fill-available;
    height: -webkit-fill-available;
  }
  .about .about-container .socials .socials-container a img {
    width: 110px;
  }
  .about .about-container .hard-skills {
    width: -webkit-fill-available;
  }
  .about .about-container .hard-skills .progress-bar-container {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    height: 250px;
  }
  .about .about-container .hard-skills .progress-bar-container .progress-bar {
    justify-content: space-around;
    width: 45%;
    height: 30px;
  }
  .about .about-container .hard-skills .progress-bar-container .progress-bar p {
    font-size: 8px;
    margin-right: 0;
  }
  .about .about-container .hard-skills .progress-bar-container .progress-bar progress[value] {
    height: 11px;
    max-width: 150px;
  }
}
@media screen and (min-width: 1500px) {
  .about {
    width: 50%;
  }
}

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