@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;800&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Urbanist:wght@500&display=swap");
*,
::before,
::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

ul {
  list-style: none;
}
@media (max-width: 800px) {
.menu a:-webkit-any-link {
  color: #fff;
  cursor: pointer;
  text-decoration: none;
}
}

@media (max-width: 800px) {
  .nav{
    display: block!important;
  }
}
.nav {
  width: 100%;
  height: 100px;
  position: relative;
  z-index: 1000;
  display: none;
}
.nav .trigger {
  position: absolute;
  top: 50%;
  right: 24px;
  transform: translate(0, -50%);
  cursor: pointer;
  display: inline-block;
  width: 48px;
  height: 30px;
}
.nav .trigger span {
  position: relative;
  width: 100%;
  height: 6px;
  transform: translateY(12px);
  background-color: #292d34;
  display: block;
  border-radius: 9px;
}
.nav .trigger span::before, .nav .trigger span::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 6px;
  background-color: #292d34;
  display: block;
  border-radius: 9px;
}
.nav .trigger span::before {
  transform: translateY(-12px);
}
.nav .trigger span::after {
  transform: translateY(12px);
}

.trigger span {
  transition: all 0.3s linear;
}

.trigger.active span {
  background-color: transparent;
}

.trigger span:before {
  animation: downAndTurnReverse 0.5s linear both;
}

.trigger.active span:before {
  animation: downAndTurn 0.5s linear both;
  background-color: #fff;
}

.trigger span:after {
  animation: upAndTurnReverse 0.5s linear both;
  
}

.trigger.active span:after {
  animation: upAndTurn 0.5s linear both;
  background-color: #fff;
}

@keyframes downAndTurn {
  0% {
    transform: translateY(-12px) rotate(0deg);
  }
  50% {
    transform: translateY(0px) rotate(0deg);
  }
  100% {
    transform: translateY(0px) rotate(45deg);
  }
}
@keyframes downAndTurnReverse {
  0% {
    transform: translateY(0) rotate(45deg);
  }
  50% {
    transform: translateY(0px) rotate(0deg);
  }
  100% {
    transform: translateY(-12px) rotate(0deg);
  }
}
@keyframes upAndTurn {
  0% {
    transform: translateY(12px) rotate(0deg);
  }
  50% {
    transform: translateY(0px) rotate(0deg);
  }
  100% {
    transform: translateY(0px) rotate(-45deg);
  }
}
@keyframes upAndTurnReverse {
  0% {
    transform: translateY(0px) rotate(-45deg);
  }
  50% {
    transform: translateY(0px) rotate(0deg);
  }
  100% {
    transform: translateY(12px) rotate(0deg);
  }
}
.sidebar2 {
  position: fixed;
  top: 0;
  right: 0;
  width: 320px;
  max-width: 90%;
  height: 100%;
  color: #fff;
  z-index: 500;
  background: linear-gradient(45deg, #155577 0%, #155577 100%);
  transition: transform 0.5s;
  transform: translateX(100%);
  overflow-y: auto;
  padding: 32px;
  overflow-x: hidden;
}
@media (max-width: 320px) {
  .sidebar2 {
    padding: 24px;
  }
}
.sidebar2 .logo {
  font-size: 32px;
  display: block;
  margin-bottom: 48px;
  position: relative;
  top: -2px;
  transition: all 1s ease-out;
  transform: translateX(150px);
}
.sidebar2 .logo img {
  max-width: 160px;
  user-select: none;
}
@media (max-width: 320px) {
  .sidebar2 .logo img {
    max-width: 120px;
  }
}
.sidebar2 .menu li {
  font-size: 24px;
  color: #fff;
  cursor: pointer;
  transform: translateX(150px);
}
@media (max-width: 320px) {
  .sidebar2 .menu li {
    font-size: 20px;
  }
}
.sidebar2 .menu li:nth-of-type(1) {
  transition: all 1.1s ease-out;
}
.sidebar2 .menu li:nth-of-type(2) {
  transition: all 1.2s ease-out;
}
.sidebar2 .menu li:nth-of-type(3) {
  transition: all 1.3s ease-out;
}
.sidebar2 .menu li:nth-of-type(4) {
  transition: all 1.4s ease-out;
}
.sidebar2.show {
  transform: translateX(0);
  box-shadow: -10px 0px 35px rgba(124, 130, 141, 0.3);
}
.sidebar2.show .logo {
  transform: translateX(0);
}
.sidebar2.show .menu li {
  transform: translateX(0);
}

.jssecrets {
  font-weight: 500;
  text-decoration: none !important;
  font-family: "Urbanist";
  padding: 16px;
  background: #ffc805;
  color: #000000;
  font-size: 1.2em;
  letter-spacing: 0.2px;
  border-radius: 8px;
  box-shadow: 0px 4px 12px rgba(184, 144, 0, 0.1882352941), 0px 8px 24px rgba(184, 144, 0, 0.3764705882);
  position: absolute;
  bottom: 24px;
  left: 24px;
  transition: all 0.3s;
}
.jssecrets:hover {
  transform: translateY(-4px);
}