@import url("https://fonts.googleapis.com/css?family=Lato:300,400|Poppins:300,400,800&display=swap");
@import url("https://fonts.googleapis.com/css?family=Roboto:wght@300;400;500&display=swap");

:root {
  --body-color: #fff;
  --font-family--: "Montserrat", Helvetica, sans-serif;
  --text-dark-primary--color: #00294b;
  --text-dark-primary--color: #0f141e;
  --text-light-primary--color: #fff;
  --tex-gray-color: #4a4a4a;
  --primary-blue-color: #0787d9;
  --secondary-blue-color: #00294b;
  --nav-color: #54b3d6;
  --text-primary-dark-color: #00294b;
  --header-height: 8.5rem;
  --footer-height: 5rem;
  --black: #010101;
  --image-shadow: linear-gradient(
    0deg,
    rgba(255, 255, 255, 1) 32%,
    rgba(255, 255, 255, 0) 100%
  );
  --nav-background: #ffffffd5;

  --button-color: #fff;
  --card-bg--: #fff;
  --fotter-bg: var(--secondary-blue-color);

  --form-text: #666;
}
.darked {
  --body-color: url("../images/bg-hero.webp"), hsl(217 18% 14%/1);
  --font-family--: "Montserrat", Helvetica, sans-serif;
  --text-dark-primary--color: rgb(204, 204, 204);
  /* --text-dark-primary--color: #0f141e; */
  --text-light-primary--color: #e6e1e3;
  --tex-gray-color: #e6e1e3;
  --primary-blue-color: #9f86ff;
  --secondary-blue-color: #a1a1ba;
  --nav-color: #9f86ff;
  --text-primary-dark-color: #9b85f1;
  --header-height: 8.5rem;
  --footer-height: 5rem;
  --black: #010101;
  --image-shadow: linear-gradient(0deg, #1d222a 30%, rgba(29, 34, 42, 0) 100%);
  --nav-background: #1d222a67;
  --button-color: #1a0056;

  --card-bg--: #393e46;
  --fotter-bg: var(--body-color);
  --form-text: var(--tex-gray-color);
}

/* base */

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  -webkit-font-smoothing: antialiased;
  font-variant-ligatures: none;
  -webkit-font-variant-ligatures: none;
  transition: all 0.2s linear;
  -moz-osx-font-smoothing: grayscale;
}

html {
  scroll-behavior: smooth;
  font-size: 62.5%;
  height: 100%;
  height: -webkit-fill-available;
  -webkit-text-size-adjust: 100;
  overflow: visible;
}
body {
  font-family: var(--font-family--);
  color: var(--text-dark-primary--color);
  line-height: 1.3;
  background: var(--body-color);
  font-size: 1.6rem;
  min-height: 100%;
  overflow-x: hidden;
  overflow-y: scroll;
  min-height: -webkit-fill-available;
  position: relative;
}
img {
  max-width: 100%;
  max-height: auto;
  object-fit: cover;
}
.container {
  width: 96%;
  margin: 0 auto;
}
ul {
  list-style: none;
}

a {
  text-decoration: none;
}
i {
  font-style: normal;
}
.wrapper {
  background: var(--body-color);
  position: relative;
  min-width: 300px;
  max-width: 140rem;
  margin: auto;
  width: 92%;
}
section {
  margin-top: 10rem;
  /* padding: 0 25px; */
}
section .wrapper {
  position: relative;
}
section .wrapper:after {
  position: absolute;
  top: -15px;
  left: 17px;
  width: 13px;
  content: "";
  height: 2px;
  background-color: var(--primary-blue-color);
}
section .wrapper:before {
  position: absolute;
  top: -15px;
  left: 0;
  width: 13px;
  content: "";
  height: 2px;
  background-color: var(--primary-blue-color);
}
section .wrapper h4 {
  font-size: 1.8rem;
  line-height: 1.3;
  text-transform: capitalize;
  padding-top: 5px;
  padding-bottom: 30px;
  color: var(--primary-blue-color);
  font-weight: 600;
  letter-spacing: 0.3rem;
}
section .wrapper h4 a {
  color: var(--secondary-blue-color);
  position: relative;
}
/* section .wrapper h4 a:hover {
  text-decoration: underline;
} */
.offer-link::before {
  content: "";
  background: var(--secondary-blue-color);
  display: block;
  position: absolute;
  bottom: -5px;
  left: 1%;
  width: 0;
  height: 3px;
  transition: all 0.3s ease-in-out;
}
section .wrapper h4 a:hover::before {
  width: 98%;
}
/* nav */
header .wrapper {
  background: transparent;
}
.navbar {
  height: var(--header-height);
  background: var(--nav-background);
  position: fixed;
  width: 100%;
  min-width: 320px;
  top: 0;
  left: 0;
  z-index: 20;
  transition: padding 0.4s cubic-bezier(0.3, 0, 0.5, 1);
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
  position: relative;
}
.logo {
  font-weight: 900;
  font-size: 1.8rem;
  width: 157px;
}
.menu ul {
  display: flex;
  justify-content: space-around;

  padding: 1rem;
}

.menu ul li {
  padding: 2.6rem 1.6rem;
}
.nav-link {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  font-size: 1.8rem;
  color: var(--secondary-blue-color);
  font-weight: 600;
  background-image: linear-gradient(
    to right,
    var(--primary-blue-color),
    var(--primary-blue-color) 50%,
    var(--secondary-blue-color) 50%
  );
  background-size: 200% 100%;
  background-position: -100%;
  padding-bottom: 5px;
  position: relative;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: all 0.3s ease-in-out;
}
.menu ul li i {
  display: none;
}

.nav-link::before {
  content: "";
  background: var(--primary-blue-color);
  display: block;
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 3px;
  transition: all 0.3s ease-in-out;
}
.nav-link:hover {
  background-position: 0;
}

.nav-link.active {
  background-position: 0;
}
.nav-link.active::before {
  width: 100%;
}

.nav-img {
  width: 40px;
}
.nav-img img {
  border-radius: 50%;
}
header {
  position: relative;
}
.header-container::after {
  content: "";
  position: absolute;
  bottom: -2rem;
  left: 0;
  right: 0;
  background: rgb(255, 255, 255);
  background: var(--image-shadow);
  height: 30%;
  width: 100%;
  z-index: 1;
  display: none !important;
}

.banner {
  height: 100%;
  min-width: 200px;
  min-height: 400px;
  background-image: url(/assets/images/me41.png);
  background-repeat: no-repeat;
  margin-top: var(--header-height);
  background-size: auto 100%;
  background-position: top 0 right -60vw;
  position: absolute;
  display: block;
  width: 100%;
  max-height: 500px;
  top: 0;
  left: 0;
  z-index: 1;
  display: none;
  animation-delay: 3.5s;
}

.banner-text {
  position: relative;
  z-index: 2;
  padding-top: 130px;
  max-width: 400px;
  margin-bottom: 20px;
  text-align: center;
}
/* .text-box {
  backdrop-filter: blur(20px);
} */
.banner-text h5 {
  font-size: 1.6rem;
  line-height: 1.2;
  font-weight: 600;
  letter-spacing: 0.6rem;
  color: var(--primary-blue-color);
}

h2 {
  font-family: "Helvetica Now Display DW", sans-serif;
  font-weight: 800;
  letter-spacing: 0.3rem;
  color: var(--tex-gray-color);
  line-height: 1.3;
  margin: 0.8rem 0;
}
/* .job-title {
  font-weight: 600;
  display: block;
  font-size: 4.5rem;
  line-height: 5.7rem;
  color: var(--black);
  text-transform: uppercase;
  font-family: Made, Helvetica, Arial, sans-serif;
  opacity: 1;
} */
.banner-text h4 {
  letter-spacing: 0.2rem;

  color: var(--text-dark-primary--color);

  line-height: 1.8;
  text-transform: capitalize;
  font-weight: 600px;
  font-size: 1.8rem;

  animation-delay: 4.68s;
}
.banner-text a:first-of-type {
  animation-delay: 5s;
}
.banner-text a:last-of-type {
  animation-delay: 5.1s;
}
.me-img {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin: auto;
  box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.24);
}
.me-img img {
  max-width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 5px;
  animation-delay: 3.5s;
}
.thm-btn {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  -webkit-appearance: none;
  outline: none !important;
  background-color: var(--primary-blue-color);
  color: var(--button-color);
  font-size: 14px;
  font-weight: 700;
  text-transform: capitalize;
  padding: 15px 20px;
  transition: all 0.3s linear;
  overflow: hidden;
  letter-spacing: 0.1em;
  z-index: 1;
  border: none;
  border-radius: 5px;
  margin-top: 20px;
}

.thm-btn:after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  right: -2px;
  bottom: 0;
  background-color: var(--secondary-blue-color);
  transition: transform 500ms ease;
  transform: scale(0, 1);
  transform-origin: left center;
  z-index: -1;
}

.thm-btn:hover:after {
  transform: scale(1, 1);
  transform-origin: right center;
}

/* ABOUT */
#about {
  margin-top: 10rem;
  /* background-color: rgba(255, 255, 255, 0.322); */
  z-index: 15;
  position: relative;
}
#about .wrapper {
  background-color: transparent;
}
.about-con {
  display: grid;
  grid-gap: 10rem;
}
#about h2 {
  font-size: 3.4rem;
  padding-top: 2px;
  padding-bottom: 3px;
  font-family: "Helvetica Now Display DW", sans-serif;
  font-weight: 700;
  letter-spacing: 0.2rem;
  /* color: var(--text-dark-primary--color); */
}
#about h4 {
  font-size: 1.8rem;
  line-height: 1.3;
  text-transform: capitalize;
  padding-top: 5px;
  padding-bottom: 15px;
  font-weight: 400;
  letter-spacing: 0.8rem;
  color: var(--primary-blue-color);
  font-weight: 600;
}
#about p {
  font-size: 1.6rem;
  line-height: 34px;
  color: var(--text-dark-primary--color);

  font-weight: 400;
  letter-spacing: normal;
}

.about-skills h3 {
  font-weight: 700;
  font-size: 2.8rem;
  margin-bottom: 3rem;
  color: var(--text-dark-primary--color);
  margin-top: 10px;
}
.skill-con {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.skill {
  margin: 0;
  text-align: center;
}

/* offer */
#services h2 {
  margin-bottom: 3rem;
}
.offer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 100%));
  place-items: center;
  place-content: center;
  gap: 3rem;
}

.card {
  height: 200px;
  background-color: var(--card-bg--);
  border-radius: 10px;
  box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.24);
  border: 2px solid rgba(7, 7, 7, 0.12);
  font-size: 16px;
  transition: all 0.3s ease;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  overflow: hidden;
  transition: all 0.3s ease;
}

.icon {
  margin: 0 auto;
  width: 100%;
  height: 80px;
  max-width: 80px;
  background: linear-gradient(
    90deg,
    var(--primary-blue-color) 0%,
    var(--secondary-blue-color) 40%,
    var(--secondary-blue-color) 60%
  );
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--text-light-primary--color);
  transition: all 0.8s ease;
  background-position: 0px;
  background-size: 200px;
}

.f18 {
  font-size: 18px;
}

.f24 {
  font-size: 24px;
}

.f36 {
  font-size: 36px;
}

.f48 {
  font-size: 48px;
}

.card .title {
  width: 100%;
  margin: 0;
  text-align: center;
  margin-top: 15px;
  color: var(--text-dark-primary--color);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.card .text {
  width: 80%;
  /* margin: 0 auto; */
  font-size: 16px;
  text-align: center;
  margin-top: 10px;
  color: var(--tex-gray-color);
  font-weight: 400;
  letter-spacing: 0;
  opacity: 0;
  max-height: 0;
  transition: all 0.3s ease;
  font-family: Lato;
  /* text-transform: capitalize; */
}

.card:hover {
  height: 270px;
  justify-content: flex-start;
  padding-top: 20px;
}

.card:hover .info {
  height: 100%;
}

.card:hover .text {
  transition: all 0.3s ease;
  opacity: 1;
  max-height: 100px;
}

.card:hover .icon {
  background-position: -120px;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
}

.card:hover .icon i {
  background: linear-gradient(
    90deg,
    var(--primary-blue-color),
    var(--text-light-primary--color)
  );
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  opacity: 1;
  transition: all 0.3s linear;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
}

/* contact forms */
#contact h4 {
  font-size: 1.8rem;
  line-height: 1.7;
  text-transform: capitalize;
  padding-top: 5px;
  padding-bottom: 15px;
  font-weight: 400;
  color: var(--primary-blue-color);
  font-weight: 600;
}

button,
input,
textarea {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  letter-spacing: 1px;
}
textarea {
  resize: vertical;
}
.background {
  display: flex;
  min-height: 100vh;
}

.container {
  flex: 0 1 700px;
  margin: auto;
  padding: 10px;
}

.screen {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
  background: var(--card-bg--);
  border-radius: 15px;
  box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.24);
}

.screen-body {
  display: flex;
}

.screen-body-item {
  flex: 2;
  padding: 50px;
}

.screen-body-item.left {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.app-title {
  display: flex;
  flex-direction: column;
  position: relative;
  color: var(--primary-blue-color);
  font-size: 26px;
}

.app-title:after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 25px;
  height: 4px;
  background: var(--nav-color);
}

.contact-icon {
  margin-top: auto;
  font-size: 8px;
  display: flex;
  gap: 1rem;
  align-items: center;
}
.contact-icon i {
  font-style: normal;
}
.contact-icon .thm-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 30px;
  width: 30px;
  padding: 0;
  margin-top: 10px;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  letter-spacing: 0;
  line-height: 0;
  background-color: var(--secondary-blue-color);
}
.contact-icon .thm-btn:after {
  border-radius: 50%;
  background-color: var(--primary-blue-color);
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}
.app-form-group {
  margin-bottom: 15px;
}

.app-form-group.message {
  margin-top: 0;
  padding: 0;
}
.app-form-group.message textarea {
  margin-top: 0;
  padding: 0;
}

.app-form-group.buttons {
  margin-bottom: 0;
  text-align: right;
}

.app-form-control {
  width: 100%;
  padding: 10px 0;
  background: none;
  border: none;
  border-bottom: 1px solid var(--text-dark-primary--color);
  color: var(--text-dark-primary--color);
  font-size: 14px;
  outline: none;
  transition: border-color 0.2s;
}

.app-form-control::placeholder {
  color: var(--form-text);
}

.app-form-control:focus {
  border-bottom-color: #ddd;
}

.app-form-button {
  margin: 0;
  cursor: pointer;
  outline: none;
}
/* footer  */
footer {
  background-color: var(--fotter-bg);
  margin-top: 8rem;
  padding-bottom: 50px;
}

footer .wrapper {
  background-color: var(--fotter-bg);
}
.footer-top {
  padding-top: 50px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

footer h4 {
  color: var(--text-light-primary--color);
  font-size: 20px;
  font-weight: 700;
  line-height: 30px;
  margin-bottom: 15px;
  text-transform: capitalize;
}
.projects ul {
  display: flex;
  flex-direction: column;
}

.projects ul li a,
.contact-link a,
.contact-link {
  position: relative;
  display: inline-block;
  font-size: 1.6rem;
  color: #9aadbd;
  font-weight: 500;
  transition: all 0.5s ease;
  font-style: normal;
  line-height: 34px;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
}
.projects ul li a:hover,
.contact-link a:hover {
  color: var(--text-light-primary--color);
}
.projects ul li a::before {
  position: absolute;
  bottom: 8px;
  left: 0;
  right: 0;
  content: "";
  height: 1px;
  background-color: var(--text-light-primary--color);
  transform: scale(0, 1);
  transform-origin: left center;
  transition: transform 0.5s ease;
  -webkit-transition: transform 0.5s ease;
  -moz-transition: transform 0.5s ease;
  -ms-transition: transform 0.5s ease;
  -o-transition: transform 0.5s ease;
  -webkit-transform: scale(0, 1);
  -moz-transform: scale(0, 1);
  -ms-transform: scale(0, 1);
  -o-transform: scale(0, 1);
}
.projects ul li a:hover:before {
  transform: scale(1, 1);
  transform-origin: right center;
  -webkit-transform: scale(1, 1);
  -moz-transform: scale(1, 1);
  -ms-transform: scale(1, 1);
  -o-transform: scale(1, 1);
}
.footer-project {
  position: relative;
  display: inline-block;
  font-size: 16px;
  color: #9aadbd;
  font-weight: 500;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}
.footer-contact {
  margin: 20px 0;
}
.footer-contact ul {
  display: flex;
  flex-direction: column;
}

.footer-top-socials {
  position: relative;
  display: flex;
  flex-direction: column;

  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 40px;
  margin-top: 20px;
}
.socials ul {
  display: flex;
}
.socials ul li a {
  color: var(--secondary-blue-color);
  z-index: 3;
  transition: all 0.5s ease-in;
  -webkit-transition: all 0.5s ease-in;
  -moz-transition: all 0.5s ease-in;
  -ms-transition: all 0.5s ease-in;
  -o-transition: all 0.5s ease-in;
}
.socials ul li:hover a {
  color: var(--text-light-primary--color);
}
.socials ul li + li {
  margin-left: 15px;
}
.socials ul li {
  position: relative;
  height: 47px;
  width: 47px;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  justify-content: center;
  text-align: center;
  color: var(--secondary-blue-color);
  font-size: 1.6rem;
  background-color: var(--body-color);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  border-radius: 3px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  -o-border-radius: 3px;
  cursor: pointer;
  overflow: hidden;
}

.socials ul li::before {
  position: absolute;
  content: "";
  left: 0;
  bottom: 0;
  right: 0;
  top: 0;

  background-color: var(--primary-blue-color);
  transition: transform 0.3s ease-in;
  -webkit-transition: transform 0.3s ease-in;
  -moz-transition: transform 0.3s ease-in;
  -ms-transition: transform 0.3s ease-in;
  -o-transition: transform 0.3s ease-in;
  transform: scale(0, 1);
  -webkit-transform: scale(0, 1);
  -moz-transform: scale(0, 1);
  -ms-transform: scale(0, 1);
  -o-transform: scale(0, 1);
  transform-origin: right center;
}
.socials ul li:hover::before {
  transform: scale(1, 1);
  -webkit-transform: scale(1, 1);
  -moz-transform: scale(1, 1);
  -ms-transform: scale(1, 1);
  -o-transform: scale(1, 1);
  transform-origin: left center;
}
.contact-num {
  margin-top: 26px;
}
.contact-num-text {
  margin: 0;
  color: #9aadbd;
  font-weight: 500;
  line-height: 31px;
  font-size: 1.8rem;
}
.contact-num a {
  font-size: 26px;
  font-weight: 700;
  color: var(--text-light-primary--color);
  -webkit-transition: color 500ms ease;
  transition: color 500ms ease;
  -moz-transition: color 500ms ease;
  -ms-transition: color 500ms ease;
  -o-transition: color 500ms ease;
}
.contact-num a:hover {
  color: #9aadbd;
}

.footer-bottom {
  position: relative;
  display: block;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.1);

  padding: 32px 0;
  margin-top: 30px;
}

.footer-copywrite {
  font-size: 16px;
  color: #9baebd;
  font-weight: 500;
  line-height: 30px;
  margin: 0;
}

.formResponse {
  position: absolute;
  top: 5px;
  color: #4caf50;
  z-index: 9999;
  text-transform: capitalize;
  width: 100%;
  text-align: center;
  letter-spacing: 0.2rem;
  font-weight: 600;
  font-size: 1.4rem;
}
.errorMsg {
  color: #ff4cac;
}
/* scroll to top */
.top-link {
  font-size: 2.5rem;
  position: fixed;
  bottom: 7rem;
  right: 4.6rem;
  background-color: var(--primary-blue-color);
  width: 3.2rem;
  height: 3.2rem;
  display: none;
  place-items: center;
  border-radius: 50%;
  color: var(--text-light-primary--color);
  animation: bounce 2s ease-in-out infinite;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  transition: all 0.3s linear;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  letter-spacing: 0;
  -webkit-animation: bounce 2s ease-in-out infinite;
  z-index: 99999;
}
.show-toplink {
  display: grid;
}
.top-link:hover {
  background-color: var(--secondary-blue-color);
  animation-play-state: paused;
}
@keyframes bounce {
  0% {
    transform: scale(1);
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
  }
  50% {
    transform: scale(1.3);
    -webkit-transform: scale(1.3);
    -moz-transform: scale(1.3);
    -ms-transform: scale(1.3);
    -o-transform: scale(1.3);
  }
  100% {
    transform: scale(1);
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
  }
}

header .wrapper {
  max-width: 180rem;
}

/* Animations */

.animate {
  visibility: hidden;
  opacity: 0;
}
.animate.appear {
  visibility: visible;
  -webkit-animation-name: appear;
  animation-name: appear;
  -webkit-animation-duration: 0.7s;
  animation-duration: 0.7s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-timing-function: cubic-bezier(0.3, 0, 0.5, 1);
  animation-timing-function: cubic-bezier(0.3, 0, 0.5, 1);
}
@keyframes appear {
  0% {
    -webkit-transform: translate3d(0, 30px, 0);
    transform: translate3d(0, 30px, 0);
    opacity: 0;
  }

  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
/* power btn */
/* a clone from joshwcomeau.com 
 * but this version runs on pure CSS
 */
.theme {
  position: fixed;
  top: 10rem;
  font-size: 2rem;
  color: white;
  cursor: pointer;
  z-index: 9999;

  background-color: #010101;
  display: flex;
  border-radius: 0px 10px 10px 0px;
}
.themeToggle {
  border-radius: 0px 10px 10px 0px;
  padding: 5px;
  background-color: #010101;
  color: #bbb;
  height: 50px;
  width: 25px;
}

.st-sunMoonThemeToggleBtn {
  position: relative;
  cursor: pointer;
}

.st-sunMoonThemeToggleBtn .themeToggleInput {
  opacity: 0;
  width: 100%;
  aspect-ratio: 1;
}

.st-sunMoonThemeToggleBtn svg {
  position: absolute;
  left: 0;
  width: 94%;
  height: 74%;
  transition: transform 0.4s ease;
  transform: rotate(40deg);
}

.st-sunMoonThemeToggleBtn svg .sunMoon {
  transform-origin: center center;
  transition: inherit;
  transform: scale(1);
}

.st-sunMoonThemeToggleBtn svg .sunRay {
  transform-origin: center center;
  transform: scale(0);
}

.st-sunMoonThemeToggleBtn svg mask > circle {
  transition: transform 0.64s cubic-bezier(0.41, 0.64, 0.32, 1.575);
  transform: translate(0px, 0px);
}

.st-sunMoonThemeToggleBtn svg .sunRay2 {
  animation-delay: 0.05s !important;
}
.st-sunMoonThemeToggleBtn svg .sunRay3 {
  animation-delay: 0.1s !important;
}
.st-sunMoonThemeToggleBtn svg .sunRay4 {
  animation-delay: 0.17s !important;
}
.st-sunMoonThemeToggleBtn svg .sunRay5 {
  animation-delay: 0.25s !important;
}
.st-sunMoonThemeToggleBtn svg .sunRay5 {
  animation-delay: 0.29s !important;
}

.st-sunMoonThemeToggleBtn .themeToggleInput:checked + svg {
  transform: rotate(90deg);
}
.st-sunMoonThemeToggleBtn .themeToggleInput:checked + svg mask > circle {
  transform: translate(16px, -3px);
}
.st-sunMoonThemeToggleBtn .themeToggleInput:checked + svg .sunMoon {
  transform: scale(0.55);
}
.st-sunMoonThemeToggleBtn .themeToggleInput:checked + svg .sunRay {
  animation: showRay1832 0.4s ease 0s 1 forwards;
}

@keyframes showRay1832 {
  0% {
    transform: scale(0);
  }
  100% {
    transform: scale(1);
  }
}
.fadeInUp {
  animation: fadeInUp 1s ease backwards;
}
@keyframes fadeInUp {
  0% {
    transform: translate(0px, 100px);
    opacity: 0;
  }
  100% {
    transform: translate(0px, 0);
    opacity: 1;
  }
}
