@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800&display=swap");

/* ===== Scrollbar CSS ===== */
/* Firefox */
* {
  scrollbar-width: auto;
  scroll-behavior: smooth;
  scrollbar-color: #aac4d5 #ffffff;
}

/* Chrome, Edge, and Safari */
*::-webkit-scrollbar {
  width: 8px;
}

*::-webkit-scrollbar-track {
  background: #ffffff;
}

*::-webkit-scrollbar-thumb {
  background-color: #aac4d5;
  border-radius: 10px;
  border: 0px solid #ffffff;
}

body {
  font-family: "Montserrat";
}

header > div.scrolling {
  box-shadow: 0px 3px 20px rgba(17, 52, 82, 0.08);
}

.show-nav > div > div:nth-child(2) > div:nth-child(2) {
  left: 100%;
  opacity: 0;
  transition: opacity 0.05s;
}

.show-nav > div > div:nth-child(2) > div:nth-child(1) {
  transform: rotate(135deg) translateY(-15px);
}

.show-nav > div > div:nth-child(2) > div:nth-child(3) {
  transform: rotate(45deg) translateY(-15px);
}

@media only screen and (max-width: 1280px) {
  header > div > div:nth-child(3) {
    width: 100vw;
    height: 100vh;
    background: white;
    position: fixed;
    left: 100%;
    top: 0;
    padding-top: 80px;
    display: flex;
    flex-direction: column;
  }

  header.show-nav > div > div:nth-child(3) {
    left: 0;
  }

  header > div > div:nth-child(3) > div {
    flex-direction: column;
    align-items: center;
  }

  header > div > div:nth-child(3) > div > a {
    margin: 20px 0;
  }

  header > div > div:nth-child(3) > div:last-child {
    width: 80%;
    margin-top: 45px;
    padding-top: 30px;
    border-top: solid 2px rgb(230, 224, 224);
  }
}
