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

.color-change-gray {
  font-size: 1.1rem;
  font-weight: 500;
  color: #756f69;
}

.size {
  font-size: 1.3rem;
  padding: 1rem 0;
}

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

.bold {
  font-weight: bold;
  font-size: 1.7rem;
}

.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 {
    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 p {
  font-size: 1.5rem;
}
.intro__title h1 {
  font-size: 2.1rem;
}

.project__detail {
  width: 65%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 7rem 0;
}
.project__detail-title {
  font-family: "Mukta", sans-serif;
  font-size: 3.5rem;
}
@media screen and (min-width: 500px) and (max-width: 767px) {
  .project__detail {
    width: 85vw;
  }
}
@media screen and (max-width: 499px) {
  .project__detail {
    width: 85vw;
  }
}
.project__detail img {
  width: 100%;
  height: auto;
  padding: 4rem 0;
}
.project__detail-des {
  width: 70%;
  text-align: center;
  font-size: 3rem;
  padding: 10rem 0 3rem 0;
}
@media screen and (min-width: 500px) and (max-width: 767px) {
  .project__detail-des {
    width: 80vw;
  }
}
@media screen and (max-width: 499px) {
  .project__detail-des {
    width: 80vw;
  }
}
.project__detail-btn {
  position: relative;
  width: 150px;
  height: 40px;
  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.5rem;
  font-weight: 500;
  cursor: pointer;
}
.project__detail-btn span {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
}
.project__detail-btn:before, .project__detail-btn:after {
  position: absolute;
  content: "";
  right: 0;
  top: 0;
  background: #027efb;
  transition: all 0.4s ease;
}
.project__detail-btn:before {
  height: 0%;
  width: 2px;
}
.project__detail-btn:after {
  width: 0%;
  height: 2px;
}
.project__detail-btn:hover {
  background: transparent;
  box-shadow: none;
}
.project__detail-btn:hover:before {
  height: 100%;
}
.project__detail-btn:hover:after {
  width: 100%;
}
.project__detail-btn span:hover {
  font-weight: 500;
  color: #027efb;
}
.project__detail-btn span:before, .project__detail-btn span:after {
  position: absolute;
  content: "";
  left: 0;
  bottom: 0;
  background: #027efb;
  transition: all 0.7s ease;
}
.project__detail-btn span:before {
  width: 2px;
  height: 0%;
}
.project__detail-btn span:after {
  width: 0%;
  height: 2px;
}
.project__detail-btn span:hover:before {
  height: 100%;
}
.project__detail-btn span:hover:after {
  width: 100%;
}
@media screen and (min-width: 768px) and (max-width: 1279px) {
  .project__detail-btn {
    font-size: 3rem;
    width: 20rem;
  }
}
@media screen and (min-width: 500px) and (max-width: 767px) {
  .project__detail-btn {
    font-size: 2.7rem;
    width: 15rem;
  }
}
@media screen and (max-width: 499px) {
  .project__detail-btn {
    font-size: 2.7rem;
    width: 15rem;
  }
}
.project__img {
  opacity: 0;
  transform: translate(0, 2%);
  transition: all 0.5s ease-in-out;
}
.project__skills {
  display: flex;
  justify-content: center;
  flex-direction: column;
  padding: 5rem 0;
  margin: auto;
}
.project__skills-title {
  font-family: "Mukta", sans-serif;
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
  font-style: italic;
}
.project__skills-wrapper {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  align-items: stretch;
  padding: 4rem 0;
  width: 100%;
  height: auto;
  gap: 5vw;
}
@media screen and (max-width: 499px) {
  .project__skills-wrapper {
    grid-template-columns: repeat(3, 1fr);
  }
}
.project__skills-item {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-direction: column;
  width: 100%;
  height: auto;
  box-sizing: border-box;
  opacity: 0;
  transform: translate(0, 15%);
  transition: all 0.5s ease-in-out;
}
.project__skills-item img {
  width: 5rem;
  height: 5vw;
  padding: 0;
}
.project__skills-item h4 {
  font-size: 1.7rem;
}/*# sourceMappingURL=project_detail.css.map */