@import url("https://fonts.googleapis.com/css2?family=Dancing+Script:wght@400;500;600;700&family=Fredoka+One&family=Inter:wght@100;200;300;400;500;600;700;800;900&family=Lilita+One&family=Lobster&family=Source+Sans+Pro:ital,wght@0,200;0,300;0,400;0,600;0,700;0,900;1,200;1,300;1,400;1,600;1,700;1,900&display=swap");
* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-family: 'Source Sans Pro', sans-serif;
}

fonts {
  font-family: 'Dancing Script', cursive;
  font-family: 'Fredoka One', cursive;
  font-family: 'Inter', sans-serif;
  font-family: 'Lilita One', cursive;
  font-family: 'Lobster', cursive;
  font-family: 'Source Sans Pro', sans-serif;
}

:root {
  --primary-color: #fff;
  --secondary-color: #1d1d1d;
  --tertiary: #357edd;
  --quaternary: #101010;
  --quinary: #aaaaaa;
  --shadow-color: #00000057 0px 2px 8px;
}

/* width */
::-webkit-scrollbar {
  width: 0px;
  height: 0;
}

/* Track */
::-webkit-scrollbar-track {
  background: var(--secondary-color);
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: #363636;
}

::-webkit-scrollbar-thumb:hover {
  background: #555;
}

html {
  height: 100%;
  scrollbar-color: #6969dd #e0e0e0;
  scrollbar-width: thin;
  overflow-y: scroll;
}

body {
  height: 100%;
  background-color: var(--quaternary);
}

@-webkit-keyframes gradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

@keyframes gradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

.header-mobile {
  width: 100%;
  -webkit-box-shadow: 0px 0px 50px 50px #00000080;
          box-shadow: 0px 0px 50px 50px #00000080;
  position: fixed;
  z-index: 100;
}

@media (min-width: 769px) {
  .header-mobile {
    display: none;
  }
}

.header-mobile .logo {
  font-size: 72px;
  font-weight: 900;
  margin: .5rem 2rem;
  position: absolute;
  font-family: 'Source Sans Pro', sans-serif;
  color: var(--primary-color);
  text-decoration: none;
}

.header-mobile .menu-toggler {
  position: fixed;
  top: 2rem;
  right: 2rem;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  z-index: 100;
  outline: none;
  border-radius: 100px;
}

.header-mobile .menu-toggler i {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #fff;
  color: var(--secondary-color);
  width: 50px;
  height: 50px;
  font-size: 2rem;
  margin: auto;
  border-radius: 1rem;
}

.header-mobile .menu-toggler i:hover {
  color: var(--quinary);
  background-color: var(--secondary-color);
}

.header-mobile .menu-toggler:focus + .main-nav {
  right: 0;
}

.header-mobile .main-nav {
  width: 320px;
  height: 100%;
  position: fixed;
  background-color: var(--quaternary);
  -webkit-box-shadow: 0px 0px 50px 50px #00000000;
          box-shadow: 0px 0px 50px 50px #00000000;
  right: -100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-transition: all 500ms;
  transition: all 500ms;
  -webkit-transition-timing-function: ease-in-out;
          transition-timing-function: ease-in-out;
}

@media (max-width: 300px) {
  .header-mobile .main-nav {
    width: 100%;
  }
}

.header-mobile .main-nav ul {
  width: 100%;
  list-style: none;
  margin-top: 5rem;
}

.header-mobile .main-nav ul .nav-item {
  padding: 1rem 2rem 0 2rem;
}

.header-mobile .main-nav ul .nav-item .nav-link {
  width: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 24px;
  text-decoration: none;
  font-family: 'Source Sans Pro', sans-serif;
  font-weight: 500;
  color: var(--quinary);
  padding-bottom: 5px;
}

.header-desktop {
  width: 100px;
  position: fixed;
  z-index: 2000;
}

@media (max-width: 768px) {
  .header-desktop {
    display: none;
  }
}

.header-desktop .con-header .logo {
  left: 1.5rem;
  font-size: 50px;
  font-weight: 900;
  margin: 1rem 2rem;
  position: absolute;
  font-family: 'Source Sans Pro', sans-serif;
  color: var(--primary-color);
  text-decoration: none;
}

.header-desktop .con-header .nav-bar {
  position: fixed;
  top: 10px;
  right: 1.5rem;
}

.header-desktop .con-header .nav-bar ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.header-desktop .con-header .nav-bar ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
  list-style: none;
}

.header-desktop .con-header .nav-bar ul li a {
  padding: 0 30px;
  height: 70px;
  text-transform: uppercase;
  color: var(--primary-color);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-decoration: none;
  font-family: 'Source Sans Pro', sans-serif;
  font-weight: 600;
  font-size: 16px;
  -webkit-transition: 300ms;
  transition: 300ms;
}

.header-desktop .con-header .nav-bar ul li a:hover {
  color: var(--quinary);
}

.links {
  left: 1rem;
  bottom: 2rem;
  position: absolute;
  z-index: 50;
}

@media (max-width: 768px) {
  .links {
    left: auto;
  }
}

@media (max-width: 768px) {
  .links .social {
    width: 100vw;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

@media (max-width: 768px) {
  .links .social ul {
    width: 300px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: space-evenly;
        -ms-flex-pack: space-evenly;
            justify-content: space-evenly;
  }
}

.links .social ul li {
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 1.8rem;
}

@media (max-width: 768px) {
  .links .social ul li {
    margin: auto;
  }
}

.links .social ul li a {
  -webkit-transition: all 500ms;
  transition: all 500ms;
  color: var(--primary-color);
  text-decoration: none;
  border: 2px solid transparent;
}

.links .social ul li a:hover {
  color: var(--quaternary);
  border: 2px solid var(--primary-color);
}

.links .social ul li a:hover i {
  background-color: #fff;
  color: #000;
}

.links .social ul li a:hover span {
  visibility: visible;
  color: #fff;
}

.links .social ul li a i {
  -webkit-transition: all 500ms;
  transition: all 500ms;
  margin: 4px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 50px;
  height: 50px;
  border: 2px solid var(--primary-color);
  font-size: 25px;
  color: #fff;
}

.links .social ul li a span {
  padding: 0 2px;
  margin-left: -22px;
  font-size: 25px;
  font-weight: 500;
  position: absolute;
  visibility: hidden;
}

@media (max-width: 768px) {
  .links .social ul li a span {
    display: none;
  }
}

.link {
  right: 1rem;
  bottom: 2rem;
  position: absolute;
  z-index: 50;
}

@media (max-width: 768px) {
  .link {
    width: 100vw;
    right: auto;
    bottom: 6.5rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.link .txt ul li {
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 1.8rem;
}

@media (max-width: 768px) {
  .link .txt ul li {
    margin: auto;
  }
}

.link .txt ul li a {
  -webkit-transition: all 500ms;
  transition: all 500ms;
  color: var(--primary-color);
  text-decoration: none;
  border: 2px solid transparent;
}

.link .txt ul li a:hover {
  color: var(--quaternary);
  border: 2px solid var(--primary-color);
}

.link .txt ul li a:hover div {
  background-color: #fff;
  color: #000;
}

.link .txt ul li a:hover div i {
  color: #000;
}

.link .txt ul li a div {
  -webkit-transition: all 500ms;
  transition: all 500ms;
  margin: 4px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 275px;
  height: 50px;
  border: 2px solid var(--primary-color);
  font-size: 25px;
  color: #fff;
}

.link .txt ul li a div i {
  -webkit-transition: all 500ms;
  transition: all 500ms;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 50px;
  font-size: 25px;
  color: #fff;
  padding-right: 1rem;
}

.link .txt ul li a div p {
  font-family: 'Source Sans Pro', sans-serif;
  font-size: 32px;
  font-weight: 600;
}

section {
  width: 100%;
  height: 100%;
  scroll-snap-align: start;
}

.home {
  height: 100%;
  background-image: url('https://w.wallhaven.cc/full/p8/wallhaven-p826d9.png');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.home .container {
  width: 100%;
  height: 100%;
  -webkit-backdrop-filter: blur(7px) brightness(0.4);
          backdrop-filter: blur(7px) brightness(0.4);
  padding: 5%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.home .container .txt h1 {
  font-family: 'Lilita One', cursive;
  margin-bottom: 10px;
  text-align: center;
  font-weight: 900;
  font-size: 72px;
  color: gold;
}

@media (max-width: 768px) {
  .home .container .txt h1 {
    font-size: 50px;
  }
}

.home .container .txt p {
  color: #fff;
  text-align: center;
  font-size: 30px;
  font-weight: 500;
  font-family: 'Fredoka One', cursive;
}

/*# sourceMappingURL=style.css.map */
