@import url("https://fonts.googleapis.com/css2?family=Rubik:ital,wght@0,300..900;1,300..900&display=swap");
* {
  margin: 0;
  padding: 0;
  font-family: "Rubik", sans-serif;
}

.wrapper {
  width: 85vw;
  max-width: 1250px;
}

body {
  overflow-x: hidden;
}

nav {
  z-index: 150;
  position: fixed;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 100%;
  height: 80px;
  background-color: #fff;
}
nav .wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
}
nav .logo {
  text-decoration: none;
  color: #000;
  font-size: 18px;
}
nav .burger {
  position: relative;
  width: 30px;
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  cursor: pointer;
}
nav .burger span {
  position: absolute;
  height: 2px;
  width: 35px;
  background-color: #000;
  transition: transform 0.3s;
}
nav .burger span:first-child {
  transform: translateY(-5px);
}
nav .burger span:last-child {
  transform: translateY(5px);
}
nav .burger.active span:first-child {
  transform: rotate(-45deg);
}
nav .burger.active span:last-child {
  transform: rotate(45deg);
}
@media (min-width: 1000px) {
  nav {
    height: 120px;
  }
}

.nav-space {
  height: 80px;
}

menu {
  z-index: 100;
  position: fixed;
  top: 0;
  right: 0;
  background-color: #fff;
  height: 100vh;
  width: 100vw;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  transition: transform 0.3s;
  transform: translateX(100%);
  box-shadow: 0px 0px 25px 0px rgba(0, 0, 0, 0.1);
}
menu .primary {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
  gap: 50px;
}
menu .primary a {
  color: #555;
  text-decoration: none;
  font-size: 35px;
  position: relative;
  transition: color 0.3s;
}
menu .primary a::after {
  display: flex;
  content: "";
  bottom: 0;
  width: 10%;
  height: 2px;
  background-color: #555;
  transition: width 0.3s, background-color 0.3s;
}
menu .primary a:hover {
  color: #000;
}
menu .primary a:hover::after {
  background-color: #000;
  width: 100%;
}
@media (min-width: 1000px) {
  menu {
    max-width: 850px;
  }
  menu .primary {
    gap: 75px;
  }
  menu .primary a {
    font-size: 50px;
  }
}
menu.active {
  transform: translateX(0);
}

.socials {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  gap: 15px;
}
.socials .social {
  background-color: #5175FD;
  border-radius: 10px;
  padding: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  cursor: pointer;
}
.socials img {
  height: 30px;
  filter: brightness(0) invert(1);
}
@media (min-width: 1000px) {
  .socials {
    gap: 25px;
  }
}
.socials.dark .social {
  background-color: #fff;
}
.socials.dark img {
  filter: invert(46%) sepia(57%) saturate(4884%) hue-rotate(215deg) brightness(102%) contrast(98%);
}

h2 {
  font-weight: 400;
  font-size: 40px;
  padding: 0.5em 0 0.5em;
}

h3 {
  font-weight: 400;
  font-size: 20px;
  padding: 0.5em 0 0.5em;
}

p {
  font-size: 20px;
  line-height: 1.5em;
}

header {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 30px 0;
}
header .wrapper {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: row;
}
header .wrapper .side {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
  gap: 30px;
}
header .primary-teaser {
  font-size: 40px;
  font-weight: 600;
  color: #333;
}
header .secondary-teaser {
  font-size: 22px;
  font-weight: 500;
  color: #333;
}
header .profile-image {
  width: 600px;
  max-width: calc(100% - 10px);
  aspect-ratio: 6.5/8;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center top;
     object-position: center top;
  border-radius: 30px;
  box-shadow: #5175FD 10px 10px 0px 0px;
}
@media (min-width: 1000px) {
  header {
    padding: 150px 0 0;
  }
  header .wrapper {
    gap: 150px;
  }
  header .primary-teaser {
    font-size: 60px;
  }
  header .secondary-teaser {
    font-size: 25px;
    max-width: 500px;
  }
}

section {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 75px 0;
}

#skillset .categories {
  display: flex;
  justify-content: space-evenly;
  align-items: flex-start;
  flex-direction: column;
  gap: 30px;
}
#skillset .categories .category {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
  gap: 10px;
}
#skillset .skill {
  background-color: #5175FD;
  padding: 0 25px;
  color: #fff;
  border-radius: 10px;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
}
#skillset .skill .skill-heading {
  position: relative;
  width: 100%;
  padding: 15px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
#skillset .skill .skill-heading::after {
  content: "";
  display: inline-block;
  width: 24px;
  height: 25px;
  background-image: url("../image/dropdown-arrow.svg");
  background-repeat: no-repeat;
  background-size: contain;
  transition: transform 0.3s;
}
#skillset .skill .content {
  overflow: hidden;
  height: 100%;
  padding-bottom: 0;
  transition: height 0.75s, padding-bottom 0.5s;
  padding-bottom: 0;
  height: 0;
}
#skillset .skill.active .content {
  padding-bottom: 15px;
}
#skillset .skill.active .skill-heading::after {
  transform: rotate(180deg);
}
@media (min-width: 1000px) {
  #skillset {
    padding: 100px 0;
  }
  #skillset .categories {
    flex-direction: row;
  }
}

u.continue-reading-button {
  color: #fff;
  cursor: pointer;
}

.continue-reading-content {
  height: 0;
  overflow: hidden;
  transition: height 0.6s;
}
.continue-reading-content .collapsed-content {
  color: #fff;
  font-size: 20px;
}

#about {
  background-color: #5175FD;
}
#about h2 {
  color: #fff;
}
#about p {
  color: #fff;
}
@media (min-width: 1000px) {
  #about {
    padding: 150px 0;
  }
}

#career .timeline {
  position: relative;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: row;
  margin: 25px 0;
  padding-left: 15px;
}
#career .timeline::before {
  display: flex;
  content: "";
  left: 0px;
  position: absolute;
  width: 5px;
  height: 90%;
  top: 0;
  background-color: #5175FD;
}
#career .timeline::after {
  display: flex;
  content: "";
  left: 0px;
  position: absolute;
  width: 5px;
  height: 10%;
  bottom: 0;
  background-color: rgba(81, 117, 253, 0.25);
}
#career .timeline span {
  color: #aaa;
}
@media (min-width: 1000px) {
  #career {
    padding: 150px 0;
  }
}

#recommendations {
  background-color: #5175FD;
}
#recommendations h2 {
  color: #fff;
}
#recommendations p {
  color: #fff;
}
#recommendations .recommendation {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
}
#recommendations .recommendation .user {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  gap: 15px;
  margin-bottom: 25px;
}
#recommendations .recommendation .user img {
  width: 75px;
  border-radius: 100%;
}
#recommendations .recommendation .user h3 {
  color: #fff;
  font-size: 25px;
}
#recommendations .recommendation .user p {
  font-size: 16px;
}
@media (min-width: 1000px) {
  #recommendations {
    padding: 150px 0;
  }
}

#contact .buttons {
  padding: 20px 0;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
  gap: 40px;
}
#contact .buttons button {
  background-color: #5175FD;
  border: none;
  color: #fff;
  font-size: 25px;
  padding: 25px 50px;
  border-radius: 25px;
  cursor: pointer;
}
@media (min-width: 1000px) {
  #contact {
    padding: 75px 0;
  }
  #contact .buttons {
    justify-content: flex-start;
    flex-direction: row;
    gap: 75px;
  }
}

footer {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 50px 0;
}
footer .wrapper {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
  gap: 25px;
}
footer .segment {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
  gap: 25px;
}
@media (min-width: 1000px) {
  footer .wrapper {
    justify-content: space-between;
    flex-direction: row;
  }
  footer .segment {
    align-items: center;
    flex-direction: row;
    gap: 50px;
  }
}

.space {
  height: 50vh;
}

.mobile-only {
  display: flex;
}
@media (min-width: 1000px) {
  .mobile-only {
    display: none;
  }
}

.desktop-only {
  display: none;
}
@media (min-width: 1000px) {
  .desktop-only {
    display: flex;
  }
}/*# sourceMappingURL=main.css.map */