@import url("https://fonts.googleapis.com/css2?family=Caveat:wght@400..700&family=Edu+AU+VIC+WA+NT+Guides:wght@400..700&family=Mukta:wght@200;300;400;500;600;700;800&family=Lobster&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
@keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes btn_loop {
  0% {
    transform: translateX(0) rotate(0);
  }
  30% {
    transform: translateX(16rem) rotate(0);
  }
  50% {
    transform: translateX(16rem) rotate(180deg);
  }
  80% {
    transform: translateX(0) rotate(180deg);
  }
  100% {
    transform: translateX(0) rotate(360deg);
  }
}
@keyframes m_btn_loop {
  0% {
    transform: translateX(0) rotate(0);
  }
  30% {
    transform: translateX(13rem) rotate(0);
  }
  50% {
    transform: translateX(13rem) rotate(180deg);
  }
  80% {
    transform: translateX(0) rotate(180deg);
  }
  100% {
    transform: translateX(0) rotate(360deg);
  }
}
@keyframes light_bursting {
  0% {
    opacity: 0;
    transform: scale(1);
  }
  1% {
    opacity: 0.5;
  }
  100% {
    opacity: 0;
    transform: scale(1.4);
  }
}
@keyframes colorChange {
  0% {
    background-position: 0 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0 50%;
  }
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "poppins", sans-serif;
  font-size: 62.5%;
}
@media screen and (min-width: 768px) and (max-width: 1279px) {
  * {
    font-size: 55%;
  }
}
@media screen and (min-width: 500px) and (max-width: 767px) {
  * {
    font-size: 60%;
  }
}
@media screen and (max-width: 499px) {
  * {
    font-size: 55%;
  }
}

html {
  height: 100%;
  width: 100%;
}

body {
  min-height: 100vh;
  overflow-x: hidden;
}

a {
  text-decoration-line: none;
  color: rgb(61, 61, 61);
}

ol,
li,
ul {
  list-style-type: none;
}

/* Nav bar */
.nav {
  width: 100%;
  display: flex;
  justify-content: center;
}
.nav__wrap {
  position: absolute;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-sizing: border-box;
  z-index: 100;
  width: 80vw;
  height: 12rem;
}
@media screen and (min-width: 500px) and (max-width: 767px) {
  .nav__wrap {
    height: 12rem;
    width: 92vw;
  }
}
@media screen and (max-width: 499px) {
  .nav__wrap {
    height: 12rem;
    width: 92vw;
  }
}
.nav__logo {
  display: flex;
  justify-content: center;
}
.nav__logo-title {
  font-size: 3.2rem;
  font-family: "Lobster";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}
.nav__menu {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  width: 40vw;
  margin-left: 40%;
}
@media screen and (min-width: 768px) and (max-width: 1279px) {
  .nav__menu {
    width: 50vw;
    margin-left: 40%;
  }
}
@media screen and (min-width: 500px) and (max-width: 767px) {
  .nav__menu {
    width: auto;
    margin: 1.5rem 0 0 0;
  }
}
@media screen and (max-width: 499px) {
  .nav__menu {
    width: auto;
    margin: 1.5rem 0 0 0;
  }
}
.nav__menu-list {
  display: flex;
  justify-content: space-between;
  flex-direction: row;
  width: 40vw;
  list-style: none;
  text-align: center;
}
@media screen and (min-width: 500px) and (max-width: 767px) {
  .nav__menu-list {
    flex-direction: column;
    visibility: hidden;
  }
  .nav__menu-list.active {
    visibility: visible;
    width: auto;
    height: auto;
  }
}
@media screen and (max-width: 499px) {
  .nav__menu-list {
    flex-direction: column;
    visibility: hidden;
  }
  .nav__menu-list.active {
    visibility: visible;
    width: auto;
    height: auto;
  }
}
@media screen and (min-width: 500px) and (max-width: 767px) {
  .nav__menu-item {
    width: 11rem;
  }
}
@media screen and (max-width: 499px) {
  .nav__menu-item {
    width: 11rem;
  }
}
.nav__menu-link {
  font-weight: 600;
  font-size: 1.7rem;
  padding: 0.7rem 1.2rem;
  text-align: center;
}
.nav__toggle-icon {
  width: 3rem;
  height: 3rem;
  margin-top: 1.5rem;
  display: none;
}
@media screen and (min-width: 500px) and (max-width: 767px) {
  .nav__toggle-icon {
    display: block;
  }
}
@media screen and (max-width: 499px) {
  .nav__toggle-icon {
    display: block;
  }
}

.footer {
  width: 100%;
  height: 16rem;
  color: white;
  background: black;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.footer__container {
  width: 65%;
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 4rem;
}
@media screen and (min-width: 500px) and (max-width: 767px) {
  .footer__container {
    width: 92vw;
  }
}
@media screen and (max-width: 499px) {
  .footer__container {
    width: 92vw;
  }
}
.footer__copy {
  text-align: center;
  font-size: 1.5rem;
  color: #cfcfcf;
}
.footer__menu {
  width: 70%;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (min-width: 500px) and (max-width: 767px) {
  .footer__menu {
    width: 100%;
    justify-content: space-between;
    gap: 0;
  }
}
@media screen and (max-width: 499px) {
  .footer__menu {
    width: 100%;
    justify-content: space-between;
    gap: 0;
  }
}
.footer__menu-list {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  list-style: none;
  gap: 4rem;
  color: white;
  font-weight: 500;
  text-align: center;
  width: 70%;
}
@media screen and (min-width: 500px) and (max-width: 767px) {
  .footer__menu-list {
    width: 100%;
    justify-content: space-between;
    gap: 0;
  }
}
@media screen and (max-width: 499px) {
  .footer__menu-list {
    width: 100%;
    justify-content: space-between;
    gap: 0;
  }
}
.footer__menu-list a {
  color: #cfcfcf;
  font-size: 2rem;
}
@media screen and (min-width: 500px) and (max-width: 767px) {
  .footer__menu-list a {
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 499px) {
  .footer__menu-list a {
    font-size: 1.3rem;
  }
}
.footer__menu-list a:hover {
  color: white;
}

::-webkit-scrollbar {
  display: none;
}

.nav__menulink {
  color: black;
}
.nav__menu-list a:hover {
  background-color: #027efb;
  color: white;
  transition: background-color 0.2s, color 0.2s;
  border-radius: 30px;
}
@media screen and (min-width: 500px) and (max-width: 767px) {
  .nav__menu-list a:hover {
    background: none;
    color: black;
  }
}
@media screen and (max-width: 499px) {
  .nav__menu-list a:hover {
    background: none;
    color: black;
  }
}
.nav__logo-title {
  color: #027efb;
}

main {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.hero {
  position: relative;
  display: flex;
  justify-content: space-around;
  flex-direction: column;
  align-items: center;
  width: 90%;
  height: auto;
  margin: auto;
  background-color: #faf7ff;
  border-radius: 0 0 3rem 3rem;
  padding: 2.5rem 0;
}
@media screen and (min-width: 768px) and (max-width: 1279px) {
  .hero {
    width: 100vw;
  }
}
@media screen and (min-width: 500px) and (max-width: 767px) {
  .hero {
    width: 100vw;
    border-radius: 0;
  }
}
@media screen and (max-width: 499px) {
  .hero {
    width: 100vw;
    border-radius: 0;
  }
}
.hero__container {
  margin-top: 15rem;
  display: flex;
  justify-content: space-around;
  align-items: center;
  width: 80%;
}
@media screen and (min-width: 768px) and (max-width: 1279px) {
  .hero__container {
    width: 88%;
  }
}
@media screen and (min-width: 500px) and (max-width: 767px) {
  .hero__container {
    width: 92vw;
  }
}
@media screen and (max-width: 499px) {
  .hero__container {
    width: 92vw;
  }
}
.hero__copy {
  display: flex;
  justify-content: space-around;
  flex-direction: column;
  height: 35rem;
  width: 50%;
}
@media screen and (min-width: 500px) and (max-width: 767px) {
  .hero__copy {
    width: 85vw;
    height: auto;
    gap: 5rem;
  }
}
@media screen and (max-width: 499px) {
  .hero__copy {
    width: 85vw;
    height: auto;
    gap: 5rem;
    padding: 4rem 0;
  }
}
.hero__copy .highlight {
  font-size: 3rem;
  color: #027efb;
  font-weight: 500;
  visibility: hidden;
  font-family: "Edu AU VIC WA NT Guides", cursive;
}
@media screen and (min-width: 500px) and (max-width: 767px) {
  .hero__copy .highlight {
    font-size: 2.5rem;
  }
}
@media screen and (max-width: 499px) {
  .hero__copy .highlight {
    font-size: 2.5rem;
  }
}
.hero__copy-title {
  font-size: 3rem;
  font-family: "Edu AU VIC WA NT Guides", cursive;
}
@media screen and (min-width: 500px) and (max-width: 767px) {
  .hero__copy-title {
    font-size: 2.5rem;
  }
}
@media screen and (max-width: 499px) {
  .hero__copy-title {
    font-size: 2.5rem;
  }
}
.hero__copy-description {
  font-size: 2rem;
}
@media screen and (min-width: 500px) and (max-width: 767px) {
  .hero__copy-description {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 499px) {
  .hero__copy-description {
    font-size: 1.8rem;
  }
}
.hero__btn {
  position: relative;
  width: 16rem;
  height: 4rem;
  border-radius: 5px;
  padding: 10px 25px;
  background: linear-gradient(0deg, #4995ff 0%, #027efb 100%);
  line-height: 40px;
  padding: 0;
  border: none;
  color: white;
  font-size: 2.2rem;
  font-weight: 500;
  cursor: pointer;
}
.hero__btn span {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
}
.hero__btn:before, .hero__btn:after {
  position: absolute;
  content: "";
  right: 0;
  top: 0;
  background: #027efb;
  transition: all 0.4s ease;
}
.hero__btn:before {
  height: 0%;
  width: 2px;
}
.hero__btn:after {
  width: 0%;
  height: 2px;
}
.hero__btn:hover {
  background: transparent;
  box-shadow: none;
}
.hero__btn:hover:before {
  height: 100%;
}
.hero__btn:hover:after {
  width: 100%;
}
.hero__btn span:hover {
  font-weight: 500;
  color: #027efb;
}
.hero__btn span:before, .hero__btn span:after {
  position: absolute;
  content: "";
  left: 0;
  bottom: 0;
  background: #027efb;
  transition: all 0.7s ease;
}
.hero__btn span:before {
  width: 2px;
  height: 0%;
}
.hero__btn span:after {
  width: 0%;
  height: 2px;
}
.hero__btn span:hover:before {
  height: 100%;
}
.hero__btn span:hover:after {
  width: 100%;
}
@media screen and (min-width: 500px) and (max-width: 767px) {
  .hero__btn {
    font-size: 2rem;
  }
}
@media screen and (max-width: 499px) {
  .hero__btn {
    font-size: 2rem;
  }
}
.hero__img {
  width: 40vw;
  height: auto;
}
@media screen and (min-width: 768px) and (max-width: 870px) {
  .hero__img {
    padding-left: 2rem;
  }
}
@media screen and (min-width: 500px) and (max-width: 767px) {
  .hero__img {
    display: none;
  }
}
@media screen and (max-width: 499px) {
  .hero__img {
    display: none;
  }
}
.hero__links {
  width: 90%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 499px) {
  .hero__links {
    justify-content: center;
  }
}
.hero__links-hr {
  width: 88%;
  height: 1px;
  background-color: lightgray;
  margin: 0 0 0 2rem;
}
@media screen and (max-width: 499px) {
  .hero__links-hr {
    display: none;
  }
}
@media screen and (min-width: 500px) and (max-width: 767px) {
  .hero__links {
    width: 100%;
  }
  .hero__links-hr {
    width: 92vw;
  }
}
@media screen and (max-width: 499px) {
  .hero__links {
    width: 100%;
  }
  .hero__links-hr {
    width: 92vw;
  }
}
.hero__icons {
  position: relative;
  display: flex;
  justify-content: flex-end;
  list-style-type: none;
  width: auto;
  margin-left: 10px;
}
.hero__icons img {
  width: 3rem;
  height: 3.5rem;
  margin: 0 0.5rem;
}
.hero__icons img:hover {
  filter: invert(44%) sepia(65%) saturate(628%) hue-rotate(177deg) brightness(104%) contrast(98%);
}
.hero #hero_text-typing {
  display: inline-block;
  color: #756f69;
  text-align: left;
  position: relative;
  width: 100%;
  height: auto;
}
.hero #hero__text-typing::after {
  content: "";
  display: inline-block;
  position: relative;
  top: 0;
  right: 0;
  left: 5px;
  width: 0.2rem;
  height: 90%;
  background-color: #413f3d;
  animation: blink 0.4s infinite;
}
@media screen and (min-width: 768px) and (max-width: 1279px) {
  .hero {
    width: 92vw;
  }
}

.about {
  position: relative;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  width: 100%;
  height: auto;
  background: none;
  padding: 8rem 0;
  margin: auto;
}
.about__container {
  display: flex;
  justify-content: space-between;
  width: 70vw;
  height: auto;
}
@media screen and (min-width: 500px) and (max-width: 767px) {
  .about__container {
    width: 92vw;
    gap: 4rem;
  }
}
@media screen and (max-width: 499px) {
  .about__container {
    width: 92vw;
    gap: 4rem;
  }
}
.about__title {
  width: 50%;
  text-align: center;
  margin-bottom: 7rem;
}
@media screen and (min-width: 500px) and (max-width: 767px) {
  .about__title {
    width: 92vw;
  }
}
@media screen and (max-width: 499px) {
  .about__title {
    width: 92vw;
  }
}
.about__title h1 {
  font-weight: 500;
  font-size: 4rem;
  letter-spacing: 5px;
}
.about__title span {
  font-size: 1.5rem;
  background-color: #027efb;
  color: white;
  padding: 0 10px;
  letter-spacing: 2px;
}
.about__intro {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 30%;
  height: 100%;
  opacity: 0;
  transform: translate(0, -10%);
  transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
}
@media screen and (min-width: 768px) and (max-width: 870px) {
  .about__intro {
    width: 92vw;
    padding-right: 2rem;
  }
}
@media screen and (min-width: 500px) and (max-width: 767px) {
  .about__intro {
    width: 92vw;
  }
}
@media screen and (max-width: 499px) {
  .about__intro {
    width: 92vw;
  }
}
.about__intro h1 {
  margin: 0 0 2rem 0;
  font-family: "Edu AU VIC WA NT Guides", cursive;
  font-size: 2.5rem;
  font-weight: 500;
}
.about__intro p {
  font-size: 1.7rem;
  line-height: 1.7;
  margin-bottom: 4rem;
  color: #756f69;
}
.about__btn {
  position: relative;
  width: 13.5rem;
  height: 4.5rem;
  border-radius: 5px;
  padding: 10px 25px;
  background: linear-gradient(0deg, #4995ff 0%, #027efb 100%);
  line-height: 40px;
  padding: 0;
  border: none;
  color: white;
  font-size: 2.1rem;
  font-weight: 500;
  cursor: pointer;
}
.about__btn span {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
}
.about__btn:before, .about__btn:after {
  position: absolute;
  content: "";
  right: 0;
  top: 0;
  background: #027efb;
  transition: all 0.4s ease;
}
.about__btn:before {
  height: 0%;
  width: 2px;
}
.about__btn:after {
  width: 0%;
  height: 2px;
}
.about__btn:hover {
  background: transparent;
  box-shadow: none;
}
.about__btn:hover:before {
  height: 100%;
}
.about__btn:hover:after {
  width: 100%;
}
.about__btn span:hover {
  font-weight: 500;
  color: #027efb;
}
.about__btn span:before, .about__btn span:after {
  position: absolute;
  content: "";
  left: 0;
  bottom: 0;
  background: #027efb;
  transition: all 0.7s ease;
}
.about__btn span:before {
  width: 2px;
  height: 0%;
}
.about__btn span:after {
  width: 0%;
  height: 2px;
}
.about__btn span:hover:before {
  height: 100%;
}
.about__btn span:hover:after {
  width: 100%;
}
@media screen and (min-width: 500px) and (max-width: 767px) {
  .about__btn {
    font-size: 2rem;
  }
}
@media screen and (max-width: 499px) {
  .about__btn {
    font-size: 2rem;
  }
}
.about__photo {
  width: 33%;
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  -o-object-fit: cover;
     object-fit: cover;
  opacity: 0;
  transform: translate(0, -10%);
  transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out;
}
@media screen and (min-width: 768px) and (max-width: 870px) {
  .about__photo {
    display: none;
  }
}
@media screen and (min-width: 500px) and (max-width: 767px) {
  .about__photo {
    display: none;
  }
}
@media screen and (max-width: 499px) {
  .about__photo {
    display: none;
  }
}
.about__photo img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border: white solid 15px;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.25), 0 10px 10px rgba(0, 0, 0, 0.22);
}
.about__degree {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  line-height: 1.5;
  width: 30%;
  opacity: 0;
  transform: translate(0, -10%);
  transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out;
  padding-left: 2rem;
}
.about__degree h1 {
  font-size: 2rem;
}
@media screen and (min-width: 768px) and (max-width: 870px) {
  .about__degree {
    width: 92vw;
    padding: 0;
    gap: 3rem;
  }
}
@media screen and (min-width: 500px) and (max-width: 767px) {
  .about__degree {
    width: 92vw;
    padding: 0;
    gap: 3rem;
  }
}
@media screen and (max-width: 499px) {
  .about__degree {
    width: 92vw;
    padding: 0;
    gap: 3rem;
  }
}
.about__degree-edu {
  width: 100%;
}
.about__degree-wrap {
  display: flex;
  flex-direction: row;
  align-items: flex-end;
}
.about__degree-wrap img {
  margin-right: 1rem;
}
.about__degree img {
  width: 3.2rem;
}
.about__degree-title {
  letter-spacing: 3px;
  font-size: 2rem;
}
.about__degree-institution {
  margin-top: 1.3rem;
  font-size: 1.6rem;
  font-weight: 500;
}
.about__degree-date {
  font-size: 1.2rem;
  color: #756f69;
}
.about__degree-description {
  letter-spacing: 1px;
  font-size: 1.4rem;
}
.about__cert-title {
  letter-spacing: 3px;
  font-size: 2rem;
}
.about__cert-institution {
  margin-top: 1.3rem;
  font-size: 1.6rem;
  font-weight: 500;
}
.about__cert-date {
  font-size: 1.2rem;
  color: #756f69;
}
@media screen and (min-width: 768px) and (max-width: 1279px) {
  .about__container {
    width: 92vw;
  }
}
@media screen and (min-width: 500px) and (max-width: 767px) {
  .about__container {
    flex-direction: column;
    width: 92vw;
  }
}
@media screen and (max-width: 499px) {
  .about__container {
    flex-direction: column;
    width: 92vw;
  }
}

.project {
  position: relative;
  width: 100%;
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #faf7ff;
}
.project__container {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 80vw;
  height: auto;
  padding: 10rem 0;
  margin: auto;
}
@media screen and (min-width: 768px) and (max-width: 1279px) {
  .project__container {
    width: 92vw;
  }
}
@media screen and (min-width: 500px) and (max-width: 767px) {
  .project__container {
    width: 92vw;
  }
}
@media screen and (max-width: 499px) {
  .project__container {
    width: 92vw;
  }
}
.project__title {
  display: flex;
  align-items: flex-start;
  flex-direction: row;
  flex-basis: 100%;
  width: 100%;
}
.project__title-letter {
  width: 100%;
  background: none;
}
.project__title-letter h3 {
  color: black;
  font-size: 2.8rem;
  font-weight: 500;
  z-index: 3;
}
.project__btn {
  position: relative;
  margin: 1rem;
  border: none;
  transition: 0.3s;
  background: transparent;
  width: 80px;
  height: 32px;
  font-size: 2.2rem;
  font-weight: 500;
  font-style: italic;
  cursor: pointer;
}
.project__btn::before {
  top: 0;
}
.project__btn::after {
  bottom: 0;
}
.project__btn:hover {
  letter-spacing: 6px;
  color: black;
  background: transparent;
}
.project__btn:hover::before, .project__btn:hover::after {
  opacity: 1;
  transform: scaleX(1.2);
}
.project__list {
  width: 100%;
  grid-template-columns: repeat(3, 1fr);
  align-items: stretch;
  display: grid;
  justify-content: center;
}
@media screen and (min-width: 500px) and (max-width: 767px) {
  .project__list {
    display: flex;
    flex-direction: column;
  }
}
@media screen and (max-width: 499px) {
  .project__list {
    display: flex;
    flex-direction: column;
  }
}
.project__list-item {
  margin: 2rem 2rem 9rem 2rem;
  width: auto;
  height: 15vw;
  opacity: 0;
  transform: translate(0, 5%);
  transition: all 0.5s ease-in-out;
}
@media screen and (min-width: 500px) and (max-width: 767px) {
  .project__list-item {
    height: 45vw;
  }
}
@media screen and (max-width: 499px) {
  .project__list-item {
    height: 45vw;
  }
}
.project__item-img {
  position: relative;
  width: 100%;
  height: 100%;
}
.project__item-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.project__item-img:hover {
  opacity: 1;
}
.project__item-description {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: rgba(75, 75, 75, 0.5);
  color: white;
  opacity: 0;
  transition: opacity 0.3s;
}
.project__item-description:hover {
  opacity: 1;
}
.project__item-description-sign {
  margin: 0 2rem;
  text-align: center;
  font-size: 5rem;
}
.project__item-description-text {
  font-size: 2rem;
  text-align: center;
}
.project__item-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 1rem;
}
.project__item-title {
  font-weight: 400;
  font-size: 2rem;
}
.project__item-date {
  font-size: 1.5rem;
  font-weight: 300;
  text-align: end;
}
.project__item-skills {
  font-size: 1.2rem;
  color: gray;
  font-style: italic;
}

.skills {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 10rem 0;
  margin: auto;
}
.skills__container {
  width: 80vw;
}
@media screen and (min-width: 768px) and (max-width: 1279px) {
  .skills__container {
    width: 92vw;
  }
}
@media screen and (min-width: 500px) and (max-width: 767px) {
  .skills__container {
    width: 92vw;
  }
}
@media screen and (max-width: 499px) {
  .skills__container {
    width: 92vw;
  }
}
.skills__title {
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  background: none;
  margin-top: 0;
}
.skills__title-copy1 {
  position: relative;
  color: black;
  font-size: 3rem;
  font-weight: 500;
}
.skills__description {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: auto;
}
@media screen and (min-width: 500px) and (max-width: 767px) {
  .skills__description {
    flex-direction: column;
    align-items: center;
    gap: 2rem;
  }
}
@media screen and (max-width: 499px) {
  .skills__description {
    flex-direction: column;
    align-items: center;
    gap: 2rem;
  }
}
.skills__copy2 {
  font-size: 2rem;
}
@media screen and (min-width: 500px) and (max-width: 767px) {
  .skills__copy2 {
    font-size: 1.8rem;
  }
}
.skills__hovering {
  display: flex;
  justify-content: space-between;
  width: 30rem;
  height: auto;
  gap: 15px;
  font-size: 3rem;
}
@media screen and (min-width: 500px) and (max-width: 767px) {
  .skills__hovering {
    width: 70vw;
  }
}
@media screen and (max-width: 499px) {
  .skills__hovering {
    width: 90vw;
  }
}
.skills__hovering-iconset {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  width: 10rem;
  height: auto;
  margin: 0;
  padding: 0;
}
.skills__hovering-iconset img {
  width: 5rem;
  height: 5rem;
}
.skills__list {
  display: flex;
  justify-content: center;
}
.skills__list-wrapper {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  align-items: stretch;
  margin-top: 3rem;
  width: 100%;
  height: 55rem;
}
@media screen and (min-width: 768px) and (max-width: 1279px) {
  .skills__list-wrapper {
    grid-template-columns: repeat(5, 1fr);
  }
}
@media screen and (min-width: 500px) and (max-width: 767px) {
  .skills__list-wrapper {
    grid-template-columns: repeat(3, 1fr);
    height: auto;
  }
}
@media screen and (max-width: 499px) {
  .skills__list-wrapper {
    grid-template-columns: repeat(2, 1fr);
    height: auto;
  }
}
.skills__list-container {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  height: 6rem;
  padding: 1rem 0;
  gap: 10px;
  box-sizing: border-box;
  opacity: 0;
  transform: translate(0, 30%);
  transition: all 0.3s ease-in-out;
}
.skills__list-container img {
  width: 5rem;
  height: 5vw;
}
.skills__list-container h4 {
  font-size: 1.7rem;
}
.skills__list-container p {
  color: #756f69;
  font-size: 1.4rem;
  font-weight: 300;
}
.skills__divider {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 100%;
  gap: 10px;
  padding: 2rem 0;
  margin: auto;
  text-align: center;
}
.skills__divider-line {
  width: 1px;
  height: 8rem;
  background-color: #756f69;
}
.skills__divider-copyset {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
}
.skills__divider p {
  font-size: 3rem;
  font-weight: 600;
  text-align: end;
}
.skills__divider span {
  font-size: 3rem;
  font-weight: 600;
  color: #027efb;
  text-align: start;
}
.skills__tech-img {
  display: flex;
  justify-content: center;
  opacity: 0;
  transform: translate(0, 0);
  transition: all 1s ease-in-out;
}
.skills__tech-img img {
  width: 80%;
  height: auto;
}
@media screen and (min-width: 500px) and (max-width: 767px) {
  .skills__tech-img img {
    width: 100%;
  }
}

.contact {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: center;
  background-color: #faf7ff;
  padding: 5rem 0;
  margin: auto;
}
.contact__container {
  width: 80vw;
  height: auto;
}
@media screen and (min-width: 768px) and (max-width: 1279px) {
  .contact__container {
    width: 92vw;
  }
}
@media screen and (min-width: 500px) and (max-width: 767px) {
  .contact__container {
    width: 92vw;
  }
}
@media screen and (max-width: 499px) {
  .contact__container {
    width: 92vw;
  }
}
.contact__title {
  width: 100%;
  margin-bottom: 1rem;
  color: black;
  font-size: 2.8rem;
  font-weight: 500;
}
.contact__content {
  display: flex;
  justify-content: space-around;
  align-items: center;
  width: 100%;
  height: auto;
}
.contact__image {
  width: 30vw;
  height: 25vw;
  display: block;
}
@media screen and (min-width: 768px) and (max-width: 1279px) {
  .contact__image {
    width: 40vw;
    height: 30vw;
  }
}
@media screen and (min-width: 500px) and (max-width: 767px) {
  .contact__image {
    display: none;
  }
}
@media screen and (max-width: 499px) {
  .contact__image {
    display: none;
  }
}
.contact__info {
  display: flex;
  flex-direction: column;
  width: auto;
  height: auto;
  padding-bottom: 2rem;
}
.contact__info-name {
  width: auto;
  font-family: "Edu AU VIC WA NT Guides", cursive;
  font-size: 3rem;
  font-weight: 600;
  letter-spacing: 2px;
  margin-bottom: 4rem;
}
.contact__info-name .color_change {
  font-family: "Edu AU VIC WA NT Guides", cursive;
  font-size: 3rem;
  font-weight: 600;
  color: #027efb;
}
@media screen and (min-width: 500px) and (max-width: 767px) {
  .contact__info-name .color_change {
    font-size: 2.2rem;
  }
}
@media screen and (max-width: 499px) {
  .contact__info-name .color_change {
    font-size: 1.9rem;
  }
}
@media screen and (min-width: 500px) and (max-width: 767px) {
  .contact__info-name {
    font-size: 2.2rem;
    margin-bottom: 2rem;
  }
}
@media screen and (max-width: 499px) {
  .contact__info-name {
    font-size: 1.9rem;
    margin-bottom: 2rem;
  }
}
.contact__info-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  width: auto;
  gap: 2rem;
  padding: 1rem 0;
}
.contact__info-item .highlight {
  color: #027efb;
  font-weight: 600;
  font-size: 1.8rem;
}
@media screen and (min-width: 768px) and (max-width: 1279px) {
  .contact__info-item .highlight {
    font-size: 1.8rem;
  }
}
@media screen and (min-width: 500px) and (max-width: 767px) {
  .contact__info-item .highlight {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 499px) {
  .contact__info-item .highlight {
    font-size: 1.5rem;
  }
}
.contact__info-item img {
  margin-left: 2rem;
  width: 4rem;
  height: 4rem;
}
.contact__info-item a {
  width: auto;
  font-size: 2rem;
}
@media screen and (min-width: 500px) and (max-width: 767px) {
  .contact__info-item a {
    font-size: 1.7rem;
  }
}
@media screen and (max-width: 499px) {
  .contact__info-item a {
    font-size: 1.5rem;
  }
}/*# sourceMappingURL=reality.css.map */