@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;
}

.highlight {
  color: #027efb;
  font-weight: 400;
}

.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;
    width: 85vw;
  }
}
.nav__logo-title {
  color: #027efb;
}

main {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  height: auto;
  margin-top: 20rem;
}

.intro {
  width: 65%;
}
@media screen and (min-width: 768px) and (max-width: 1279px) {
  .intro {
    width: 75vw;
  }
}
@media screen and (min-width: 500px) and (max-width: 767px) {
  .intro {
    width: 85vw;
  }
}
@media screen and (max-width: 499px) {
  .intro {
    width: 85vw;
  }
}
.intro__title-list {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: flex-start;
  text-align: start;
  width: auto;
}
.intro__title-list p {
  font-size: 1.5rem;
}
.intro__title-copy {
  width: 100%;
  padding: 2rem 0;
  font-size: 1.6rem;
}
.intro__project-wrapper {
  display: flex;
  justify-content: space-between;
  width: 100%;
}
@media screen and (max-width: 499px) {
  .intro__project-wrapper {
    flex-direction: column;
    gap: 2rem;
  }
}
.intro__project-wrapper h1 {
  font-size: 3rem;
}
.intro__btn {
  position: relative;
  margin-right: 2rem;
  width: 20rem;
  color: #027efb;
  background-color: white;
  border: 2px solid rgba(2, 126, 251, 0.5);
  border-radius: 2.5rem;
  text-transform: uppercase;
  text-align: center;
  font-weight: 500;
  font-size: 2.5rem;
  line-height: 2rem;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
}
@media screen and (max-width: 499px) {
  .intro__btn {
    line-height: 3rem;
    width: 17rem;
  }
}
.intro__btn:hover {
  letter-spacing: 1px;
}
.intro__btn--dot {
  content: "";
  position: absolute;
  top: 0;
  width: 4rem;
  height: 100%;
  border-radius: 100%;
  transition: all 300ms ease;
  display: none;
}
.intro__btn--dot:after {
  content: "";
  position: absolute;
  left: calc(50% - 0.4rem);
  top: -0.4rem;
  height: 0.2rem;
  width: 0.2rem;
  background: #027efb;
  border-radius: 0.8rem;
  border: 0.25rem solid #027efb;
  box-shadow: 0 0 0.7rem #027efb, 0 0 2rem #fff;
}

.intro__btn:hover .intro__btn--dot,
.intro__btn:focus .intro__btn--dot {
  animation: btn_loop 1.6s infinite linear;
  display: block;
}
@media screen and (max-width: 499px) {
  .intro__btn:hover .intro__btn--dot,
  .intro__btn:focus .intro__btn--dot {
    animation: m_btn_loop 1.6s infinite linear;
  }
}

.project {
  position: relative;
  width: 100%;
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
}
.project__container {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 65vw;
  height: auto;
  padding: 5rem 0;
  margin: auto;
}
@media screen and (min-width: 768px) and (max-width: 1279px) {
  .project__container {
    width: 75vw;
  }
}
@media screen and (min-width: 500px) and (max-width: 767px) {
  .project__container {
    width: 85vw;
  }
}
@media screen and (max-width: 499px) {
  .project__container {
    width: 85vw;
  }
}
.project__list {
  width: 100%;
  grid-template-columns: repeat(3, 1fr);
  align-items: stretch;
  display: grid;
  justify-content: center;
}
@media screen and (min-width: 768px) and (max-width: 1279px) {
  .project__list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@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: 12vw;
  opacity: 0;
  transform: translate(0, 15%);
  transition: all 0.5s ease-in-out;
}
@media screen and (min-width: 768px) and (max-width: 1279px) {
  .project__list-item {
    height: 20vw;
  }
}
@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: 1.8rem;
}
.project__item-date {
  font-size: 1.3rem;
  font-weight: 300;
  text-align: end;
}
.project__item-skills {
  font-size: 1.2rem;
  color: gray;
  font-style: italic;
}
.project__btn {
  position: relative;
  width: 20rem;
  height: 5rem;
  border-radius: 5px;
  background: linear-gradient(0deg, #4995ff 0%, #027efb 100%);
  line-height: 5rem;
  padding: 0;
  margin: 5rem 0;
  border: none;
  color: white;
  font-size: 2.5rem;
  font-weight: 500;
  cursor: pointer;
}
.project__btn span {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
}
.project__btn:before, .project__btn:after {
  position: absolute;
  content: "";
  right: 0;
  top: 0;
  background: #027efb;
  transition: all 0.4s ease;
}
.project__btn:before {
  height: 0%;
  width: 2px;
}
.project__btn:after {
  width: 0%;
  height: 2px;
}
.project__btn:hover {
  background: transparent;
  box-shadow: none;
}
.project__btn:hover:before {
  height: 100%;
}
.project__btn:hover:after {
  width: 100%;
}
.project__btn span:hover {
  font-weight: 500;
  color: #027efb;
}
.project__btn span:before, .project__btn span:after {
  position: absolute;
  content: "";
  left: 0;
  bottom: 0;
  background: #027efb;
  transition: all 0.7s ease;
}
.project__btn span:before {
  width: 2px;
  height: 0%;
}
.project__btn span:after {
  width: 0%;
  height: 2px;
}
.project__btn span:hover:before {
  height: 100%;
}
.project__btn span:hover:after {
  width: 100%;
}/*# sourceMappingURL=project-more.css.map */