@font-face {
  font-family: "Dana";
  src: url("../Fonts/Dana/DanaFaNum-Medium.ttf") format("truetype"), url("../Fonts/Dana/DanaFaNum-Medium.woff") format("woff"), url("../Fonts/Dana/DanaFaNum-Medium.woff2") format("woff2");
}
:root {
  --hue: 3;
  --sat: 99%;
  --primary-color: hsl(var(--hue), var(--sat), 28%);
  --primary-color-light: hsl(var(--hue), var(--sat), 85%);
  --primary-color-lighten: hsl(var(--hue), var(--sat), 80%);
  --secondary-color: hsl(var(--hue), var(--sat), 29%);
  --title-color: hsl(var(--hue), 4%, 15%);
  --text-color: hsl(var(--hue), 4%, 35%);
  --text-color-light: hsl(var(--hue), 4%, 65%);
  --body-color: hsl(var(--hue), 0%, 100%);
  --container-color: #fff;
  --ff-primary: "Dana", sans-serif;
  --transition: 0.5s ease-in;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--ff-primary);
  background: var(--body-color);
  line-height: 2;
  font-size: 1rem;
  text-align: right;
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  width: 100%;
  display: block;
}

h1,
h2,
h3,
h4 {
  color: var(--title-color);
  line-height: 2;
}

p {
  color: var(--text-color);
  line-height: 2;
}

h1 {
  font-size: 3rem;
}

h2 {
  font-size: 2.5rem;
}

h3 {
  font-size: 1.75rem;
}

h4 {
  font-size: 1rem;
}

.container {
  max-width: 1170px;
  padding: 0 1rem;
  margin: 0 auto;
  display: grid;
  gap: 1.5rem;
}

.section {
  padding: 4rem 0 1rem 0;
}
.section__title, .section__title-center {
  font-size: 1.25rem;
  color: var(--title-color);
  margin-bottom: 1rem;
}
.section__title span, .section__title-center span {
  display: block;
  color: var(--primary-color);
}
.section__title-center {
  text-align: center;
}

.svg__img {
  width: 100%;
}

.button {
  display: inline-block;
  background: var(--primary-color);
  color: #fff;
  padding: 0.5rem 1.5rem;
  border-radius: 3rem;
  outline: none;
  border: none;
  transition: var(--transition);
  font-family: inherit;
  cursor: pointer;
}
.button:hover {
  background: var(--container-color);
  outline: 1px solid var(--primary-color);
  color: var(--primary-color);
}
.button__nav {
  padding: 0.3rem 1.5rem;
}
.button__services {
  background: var(--container-color);
  outline: 1px solid var(--primary-color);
  color: var(--primary-color);
}
.button__services:hover {
  background: var(--primary-color);
  color: #fff;
}
.button__apple, .button__google {
  width: 10rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}
.button__apple i,
.button__apple iconify-icon, .button__google i,
.button__google iconify-icon {
  font-size: 1.5rem;
}

/* body {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
} */
.toggle-checkbox {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.toggle-slot {
  position: relative;
  height: 2em;
  width: 5em;
  border: 5px solid #e4e7ec;
  border-radius: 10em;
  background-color: white;
  box-shadow: 0px 10px 25px #e4e7ec;
  transition: background-color 250ms;
  cursor: pointer;
}

.toggle-checkbox:checked ~ .toggle-slot {
  background-color: #374151;
}

.toggle-button {
  transform: translate(-0.2em, 0.1em);
  position: absolute;
  height: 1.2em;
  width: 1.2em;
  border-radius: 50%;
  background-color: #ffeccf;
  box-shadow: inset 0px 0px 0px 5px #ffbb52;
  transition: background-color 250ms, border-color 250ms, transform 500ms cubic-bezier(0.26, 2, 0.46, 0.71);
  -webkit-transform: translate(-0.1em, 0.1em);
  -moz-transform: translate(3.3em, 0.2em);
  -ms-transform: translate(3.3em, 0.2em);
  -o-transform: translate(3.3em, 0.2em);
}

.toggle-checkbox:checked ~ .toggle-slot .toggle-button {
  background-color: #485367;
  box-shadow: inset 0px 0px 0px 5px white;
  transform: translate(-3.1em, 0.1em);
  -webkit-transform: translate(-3.1em, 0.1em);
  -moz-transform: translate(-3.1em, 0.1em);
  -ms-transform: translate(-3.1em, 0.1em);
  -o-transform: translate(-3.1em, 0.1em);
}

.sun-icon {
  position: absolute;
  height: 1.35em;
  width: 1.35em;
  color: #ffbb52;
  font-size: 1.35rem;
}

.sun-icon-wrapper {
  position: absolute;
  height: 1.35em;
  width: 1.35em;
  opacity: 1;
  transform: translate(-2.8em, 0em) rotate(15deg);
  transform-origin: 50% 50%;
  transition: opacity 150ms, transform 500ms cubic-bezier(0.26, 2, 0.46, 0.71);
  -webkit-transform: translate(-2.8em, 0em) rotate(15deg);
  -moz-transform: translate(-2.8em, 0em) rotate(15deg);
  -ms-transform: translate(-2.8em, 0em) rotate(15deg);
  -o-transform: translate(-2.8em, 0em) rotate(15deg);
  top: 1px;
  left: 50px;
}

.toggle-checkbox:checked ~ .toggle-slot .sun-icon-wrapper {
  opacity: 0;
  transform: translate(-5.7em, 0) rotate(0deg);
  -webkit-transform: translate(-2.7em, 0) rotate(0deg);
  -moz-transform: translate(-2.7em, 0) rotate(0deg);
  -ms-transform: translate(-2.7em, 0) rotate(0deg);
  -o-transform: translate(-5.7em, 0) rotate(0deg);
}

.moon-icon {
  position: absolute;
  height: 1.35em;
  width: 1.35em;
  color: white;
  font-size: 1.35rem;
}

.moon-icon-wrapper {
  position: absolute;
  height: 1.35em;
  width: 1.35em;
  opacity: 0;
  transform: translate(0em, 0em) rotate(0deg);
  transform-origin: 50% 50%;
  transition: opacity 150ms, transform 500ms cubic-bezier(0.26, 2.5, 0.46, 0.71);
  -webkit-transform: translate(0em, 0em) rotate(0deg);
  -moz-transform: translate(0em, 0em) rotate(0deg);
  -ms-transform: translate(0em, 0em) rotate(0deg);
  -o-transform: translate(0em, 0em) rotate(0deg);
  top: -1px;
  right: -4px;
}

.toggle-checkbox:checked ~ .toggle-slot .moon-icon-wrapper {
  opacity: 1;
  transform: translate(0em, 0em) rotate(-15deg);
  -webkit-transform: translate(0em, 0em) rotate(-15deg);
  -moz-transform: translate(0em, 0em) rotate(-15deg);
  -ms-transform: translate(0em, 0em) rotate(-15deg);
  -o-transform: translate(0em, 0em) rotate(-15deg);
}

.header {
  position: fixed;
  width: 100%;
  background: rgb(250, 250, 250);
  top: 0;
  left: 0;
  padding: 0.75rem 0;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.nav__Menu {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}
.nav__logo {
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--title-color);
}

.wrapper {
  display: none;
}

.scroll-header {
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
}

.nav__Menu .nav__bar {
  position: relative;
  display: flex;
  width: 420px;
}

.nav__Menu .nav__bar li {
  position: relative;
  width: 70px;
  height: 60px;
  z-index: 1;
  display: flex;
}

.nav__Menu .nav__bar li a {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.nav__Menu .nav__bar li a i,
.nav__Menu .nav__bar li a iconify-icon {
  position: relative;
  display: block;
  line-height: 60px;
  font-size: 22px;
  color: #222;
  text-align: center;
  transition: 0.5s;
}

.nav__Menu .nav__bar li.active a i,
.nav__Menu .nav__bar li.active a iconify-icon {
  transform: translateY(40px);
  color: var(--primary-color);
}

.else-icon {
  font-size: 25px !important;
}

.nav__Menu .nav__bar li a span {
  position: absolute;
  font-size: 10px;
  letter-spacing: 0.5px;
  background: var(--primary-color);
  color: #fff;
  padding: 2px 8px;
  border-radius: 50px;
  transition: 0.5s;
  transform: translateY(-10px);
  opacity: 0;
}

.nav__Menu .nav__bar li.active a span {
  opacity: 1;
  transform: translateY(0px);
}

.nav__Menu .nav__bar .indicator {
  position: absolute;
  height: 70px;
  width: 70px;
  background: rgb(250, 250, 250);
  border-radius: 50%;
  bottom: -42px;
  transition: transform 0.5s cubic-bezier(0.18, -0.55, 0.265, 1.3);
}

.nav__Menu .nav__bar .indicator::before,
.nav__Menu .nav__bar .indicator::after {
  position: absolute;
  content: "";
  width: 25px;
  height: 25px;
  top: 0%;
  background: transparent;
  border-radius: 50%;
}

.nav__Menu .nav__bar .indicator::before {
  left: -24px;
  box-shadow: 10px 15px rgb(250, 250, 250);
}

.nav__Menu .nav__bar .indicator::after {
  right: -24px;
  box-shadow: -10px 15px rgb(250, 250, 250);
}

.nav__Menu .nav__bar li:nth-child(1).active ~ .indicator {
  transform: translateX(0px);
}

.nav__Menu .nav__bar li:nth-child(2).active ~ .indicator {
  transform: translateX(-70px);
}

.nav__Menu .nav__bar li:nth-child(3).active ~ .indicator {
  transform: translateX(-140px);
}

.nav__Menu .nav__bar li:nth-child(4).active ~ .indicator {
  transform: translateX(-210px);
}

.nav__Menu .nav__bar li:nth-child(5).active ~ .indicator {
  transform: translateX(-280px);
}

.nav__Menu .nav__bar li:nth-child(6).active ~ .indicator {
  transform: translateX(-350px);
}

@media screen and (max-width: 768px) {
  :root {
    --background: #4285f4;
    --icon-color: #344955;
    --width: 45px;
    --height: 45px;
    --border-radius: 100%;
  }
  .wrapper {
    width: var(--width);
    height: var(--height);
    position: relative;
    border-radius: var(--border-radius);
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .wrapper .fab {
    background: var(--primary-color);
    width: var(--width);
    height: var(--height);
    position: relative;
    z-index: 3;
    border-radius: 20px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fab-animation-reverse 0.4s ease-out forwards;
  }
  .wrapper .fab::before, .wrapper .fab::after {
    content: "";
    display: block;
    position: absolute;
    border-radius: 4px;
    background: #fff;
  }
  .wrapper .fab::before {
    width: 4px;
    height: 18px;
  }
  .wrapper .fab::after {
    width: 18px;
    height: 4px;
  }
  .wrapper .fac .navbar {
    position: absolute;
    width: 70px;
    height: 328px;
    z-index: 2;
    opacity: 0;
    visibility: hidden;
    top: 0;
    left: -10px;
    background: var(--container-color);
    border-radius: 10px;
    padding: 1rem 0;
    place-items: center;
    box-shadow: 0 0 40px rgba(0, 0, 0, 0.03);
    transition: all 0.2s ease-in;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
  }
  .wrapper .fac .navbar__link {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 3.5rem;
    width: 5.5rem;
    color: #6a778e;
    transition: 250ms ease all;
  }
  .wrapper .fac .navbar__link span {
    position: absolute;
    left: 80%;
    transform: translate(-3rem);
    margin-left: 1rem;
    opacity: 0;
    pointer-events: none;
    color: var(--primary-color);
    background: var(--container-color);
    padding: 0.75rem;
    transition: 250ms ease all;
    border-radius: 17.5px;
    width: max-content;
  }
  .wrapper .fac .navbar__link:hover {
    color: #fff;
  }
  .navbar:not(:hover) .wrapper .fac .navbar__link:focus span, .wrapper .fac .navbar__link:hover span {
    opacity: 1;
    transform: translate(0);
  }
  .wrapper .fac .navbar__menu {
    position: relative;
  }
  .wrapper .fac .navbar__item:last-child:before {
    content: "";
    position: absolute;
    opacity: 0;
    z-index: -1;
    top: 0;
    left: 1rem;
    width: 3.5rem;
    height: 3.5rem;
    background: var(--primary-color);
    border-radius: 17.5px;
    transition: 250ms cubic-bezier(1, 0.2, 0.1, 1.2) all;
  }
  .wrapper .fac .navbar__item:first-child:nth-last-child(1):hover ~ li:last-child:before, .wrapper .fac .navbar__item:first-child:nth-last-child(1) ~ li:hover ~ li:last-child:before {
    opacity: 1;
  }
  .wrapper .fac .navbar__item:first-child:nth-last-child(1):last-child:hover:before, .wrapper .fac .navbar__item:first-child:nth-last-child(1) ~ li:last-child:hover:before {
    opacity: 1;
  }
  .wrapper .fac .navbar__item:first-child:nth-last-child(1):last-child:hover:before, .wrapper .fac .navbar__item:first-child:nth-last-child(1) ~ li:last-child:hover:before {
    top: 0%;
    animation: gooeyEffect-1 250ms 1;
  }
  @keyframes gooeyEffect-1 {
    0% {
      transform: scale(1, 1);
      -webkit-transform: scale(1, 1);
      -moz-transform: scale(1, 1);
      -ms-transform: scale(1, 1);
      -o-transform: scale(1, 1);
    }
    50% {
      transform: scale(0.5, 1.5);
    }
    100% {
      transform: scale(1, 1);
    }
  }
  .wrapper .fac .navbar__item:first-child:nth-last-child(2):hover ~ li:last-child:before, .wrapper .fac .navbar__item:first-child:nth-last-child(2) ~ li:hover ~ li:last-child:before {
    opacity: 1;
  }
  .wrapper .fac .navbar__item:first-child:nth-last-child(2):last-child:hover:before, .wrapper .fac .navbar__item:first-child:nth-last-child(2) ~ li:last-child:hover:before {
    opacity: 1;
  }
  .wrapper .fac .navbar__item:first-child:nth-last-child(2):nth-child(1):hover ~ li:last-child:before, .wrapper .fac .navbar__item:first-child:nth-last-child(2) ~ li:nth-child(1):hover ~ li:last-child:before {
    top: 0%;
    animation: gooeyEffect-1 250ms 1;
  }
  @keyframes gooeyEffect-1 {
    0% {
      transform: scale(1, 1);
      -webkit-transform: scale(1, 1);
      -moz-transform: scale(1, 1);
      -ms-transform: scale(1, 1);
      -o-transform: scale(1, 1);
    }
    50% {
      transform: scale(0.5, 1.5);
    }
    100% {
      transform: scale(1, 1);
    }
  }
  .wrapper .fac .navbar__item:first-child:nth-last-child(2):last-child:hover:before, .wrapper .fac .navbar__item:first-child:nth-last-child(2) ~ li:last-child:hover:before {
    top: 50%;
    animation: gooeyEffect-2 250ms 1;
  }
  @keyframes gooeyEffect-2 {
    0% {
      transform: scale(1, 1);
      -webkit-transform: scale(1, 1);
      -moz-transform: scale(1, 1);
      -ms-transform: scale(1, 1);
      -o-transform: scale(1, 1);
    }
    50% {
      transform: scale(0.5, 1.5);
    }
    100% {
      transform: scale(1, 1);
    }
  }
  .wrapper .fac .navbar__item:first-child:nth-last-child(3):hover ~ li:last-child:before, .wrapper .fac .navbar__item:first-child:nth-last-child(3) ~ li:hover ~ li:last-child:before {
    opacity: 1;
  }
  .wrapper .fac .navbar__item:first-child:nth-last-child(3):last-child:hover:before, .wrapper .fac .navbar__item:first-child:nth-last-child(3) ~ li:last-child:hover:before {
    opacity: 1;
  }
  .wrapper .fac .navbar__item:first-child:nth-last-child(3):nth-child(1):hover ~ li:last-child:before, .wrapper .fac .navbar__item:first-child:nth-last-child(3) ~ li:nth-child(1):hover ~ li:last-child:before {
    top: 0%;
    animation: gooeyEffect-1 250ms 1;
  }
  @keyframes gooeyEffect-1 {
    0% {
      transform: scale(1, 1);
      -webkit-transform: scale(1, 1);
      -moz-transform: scale(1, 1);
      -ms-transform: scale(1, 1);
      -o-transform: scale(1, 1);
    }
    50% {
      transform: scale(0.5, 1.5);
    }
    100% {
      transform: scale(1, 1);
    }
  }
  .wrapper .fac .navbar__item:first-child:nth-last-child(3):nth-child(2):hover ~ li:last-child:before, .wrapper .fac .navbar__item:first-child:nth-last-child(3) ~ li:nth-child(2):hover ~ li:last-child:before {
    top: 33.3333333333%;
    animation: gooeyEffect-2 250ms 1;
  }
  @keyframes gooeyEffect-2 {
    0% {
      transform: scale(1, 1);
      -webkit-transform: scale(1, 1);
      -moz-transform: scale(1, 1);
      -ms-transform: scale(1, 1);
      -o-transform: scale(1, 1);
    }
    50% {
      transform: scale(0.5, 1.5);
    }
    100% {
      transform: scale(1, 1);
    }
  }
  .wrapper .fac .navbar__item:first-child:nth-last-child(3):last-child:hover:before, .wrapper .fac .navbar__item:first-child:nth-last-child(3) ~ li:last-child:hover:before {
    top: 66.6666666667%;
    animation: gooeyEffect-3 250ms 1;
  }
  @keyframes gooeyEffect-3 {
    0% {
      transform: scale(1, 1);
      -webkit-transform: scale(1, 1);
      -moz-transform: scale(1, 1);
      -ms-transform: scale(1, 1);
      -o-transform: scale(1, 1);
    }
    50% {
      transform: scale(0.5, 1.5);
    }
    100% {
      transform: scale(1, 1);
    }
  }
  .wrapper .fac .navbar__item:first-child:nth-last-child(4):hover ~ li:last-child:before, .wrapper .fac .navbar__item:first-child:nth-last-child(4) ~ li:hover ~ li:last-child:before {
    opacity: 1;
  }
  .wrapper .fac .navbar__item:first-child:nth-last-child(4):last-child:hover:before, .wrapper .fac .navbar__item:first-child:nth-last-child(4) ~ li:last-child:hover:before {
    opacity: 1;
  }
  .wrapper .fac .navbar__item:first-child:nth-last-child(4):nth-child(1):hover ~ li:last-child:before, .wrapper .fac .navbar__item:first-child:nth-last-child(4) ~ li:nth-child(1):hover ~ li:last-child:before {
    top: 0%;
    animation: gooeyEffect-1 250ms 1;
  }
  @keyframes gooeyEffect-1 {
    0% {
      transform: scale(1, 1);
      -webkit-transform: scale(1, 1);
      -moz-transform: scale(1, 1);
      -ms-transform: scale(1, 1);
      -o-transform: scale(1, 1);
    }
    50% {
      transform: scale(0.5, 1.5);
    }
    100% {
      transform: scale(1, 1);
    }
  }
  .wrapper .fac .navbar__item:first-child:nth-last-child(4):nth-child(2):hover ~ li:last-child:before, .wrapper .fac .navbar__item:first-child:nth-last-child(4) ~ li:nth-child(2):hover ~ li:last-child:before {
    top: 25%;
    animation: gooeyEffect-2 250ms 1;
  }
  @keyframes gooeyEffect-2 {
    0% {
      transform: scale(1, 1);
      -webkit-transform: scale(1, 1);
      -moz-transform: scale(1, 1);
      -ms-transform: scale(1, 1);
      -o-transform: scale(1, 1);
    }
    50% {
      transform: scale(0.5, 1.5);
    }
    100% {
      transform: scale(1, 1);
    }
  }
  .wrapper .fac .navbar__item:first-child:nth-last-child(4):nth-child(3):hover ~ li:last-child:before, .wrapper .fac .navbar__item:first-child:nth-last-child(4) ~ li:nth-child(3):hover ~ li:last-child:before {
    top: 50%;
    animation: gooeyEffect-3 250ms 1;
  }
  @keyframes gooeyEffect-3 {
    0% {
      transform: scale(1, 1);
      -webkit-transform: scale(1, 1);
      -moz-transform: scale(1, 1);
      -ms-transform: scale(1, 1);
      -o-transform: scale(1, 1);
    }
    50% {
      transform: scale(0.5, 1.5);
    }
    100% {
      transform: scale(1, 1);
    }
  }
  .wrapper .fac .navbar__item:first-child:nth-last-child(4):last-child:hover:before, .wrapper .fac .navbar__item:first-child:nth-last-child(4) ~ li:last-child:hover:before {
    top: 75%;
    animation: gooeyEffect-4 250ms 1;
  }
  @keyframes gooeyEffect-4 {
    0% {
      transform: scale(1, 1);
      -webkit-transform: scale(1, 1);
      -moz-transform: scale(1, 1);
      -ms-transform: scale(1, 1);
      -o-transform: scale(1, 1);
    }
    50% {
      transform: scale(0.5, 1.5);
    }
    100% {
      transform: scale(1, 1);
    }
  }
  .wrapper .fac .navbar__item:first-child:nth-last-child(5):hover ~ li:last-child:before, .wrapper .fac .navbar__item:first-child:nth-last-child(5) ~ li:hover ~ li:last-child:before {
    opacity: 1;
  }
  .wrapper .fac .navbar__item:first-child:nth-last-child(5):last-child:hover:before, .wrapper .fac .navbar__item:first-child:nth-last-child(5) ~ li:last-child:hover:before {
    opacity: 1;
  }
  .wrapper .fac .navbar__item:first-child:nth-last-child(5):nth-child(1):hover ~ li:last-child:before, .wrapper .fac .navbar__item:first-child:nth-last-child(5) ~ li:nth-child(1):hover ~ li:last-child:before {
    top: 0%;
    animation: gooeyEffect-1 250ms 1;
  }
  @keyframes gooeyEffect-1 {
    0% {
      transform: scale(1, 1);
      -webkit-transform: scale(1, 1);
      -moz-transform: scale(1, 1);
      -ms-transform: scale(1, 1);
      -o-transform: scale(1, 1);
    }
    50% {
      transform: scale(0.5, 1.5);
    }
    100% {
      transform: scale(1, 1);
    }
  }
  .wrapper .fac .navbar__item:first-child:nth-last-child(5):nth-child(2):hover ~ li:last-child:before, .wrapper .fac .navbar__item:first-child:nth-last-child(5) ~ li:nth-child(2):hover ~ li:last-child:before {
    top: 20%;
    animation: gooeyEffect-2 250ms 1;
  }
  @keyframes gooeyEffect-2 {
    0% {
      transform: scale(1, 1);
      -webkit-transform: scale(1, 1);
      -moz-transform: scale(1, 1);
      -ms-transform: scale(1, 1);
      -o-transform: scale(1, 1);
    }
    50% {
      transform: scale(0.5, 1.5);
    }
    100% {
      transform: scale(1, 1);
    }
  }
  .wrapper .fac .navbar__item:first-child:nth-last-child(5):nth-child(3):hover ~ li:last-child:before, .wrapper .fac .navbar__item:first-child:nth-last-child(5) ~ li:nth-child(3):hover ~ li:last-child:before {
    top: 40%;
    animation: gooeyEffect-3 250ms 1;
  }
  @keyframes gooeyEffect-3 {
    0% {
      transform: scale(1, 1);
      -webkit-transform: scale(1, 1);
      -moz-transform: scale(1, 1);
      -ms-transform: scale(1, 1);
      -o-transform: scale(1, 1);
    }
    50% {
      transform: scale(0.5, 1.5);
    }
    100% {
      transform: scale(1, 1);
    }
  }
  .wrapper .fac .navbar__item:first-child:nth-last-child(5):nth-child(4):hover ~ li:last-child:before, .wrapper .fac .navbar__item:first-child:nth-last-child(5) ~ li:nth-child(4):hover ~ li:last-child:before {
    top: 60%;
    animation: gooeyEffect-4 250ms 1;
  }
  @keyframes gooeyEffect-4 {
    0% {
      transform: scale(1, 1);
      -webkit-transform: scale(1, 1);
      -moz-transform: scale(1, 1);
      -ms-transform: scale(1, 1);
      -o-transform: scale(1, 1);
    }
    50% {
      transform: scale(0.5, 1.5);
    }
    100% {
      transform: scale(1, 1);
    }
  }
  .wrapper .fac .navbar__item:first-child:nth-last-child(5):last-child:hover:before, .wrapper .fac .navbar__item:first-child:nth-last-child(5) ~ li:last-child:hover:before {
    top: 80%;
    animation: gooeyEffect-5 250ms 1;
  }
  @keyframes gooeyEffect-5 {
    0% {
      transform: scale(1, 1);
      -webkit-transform: scale(1, 1);
      -moz-transform: scale(1, 1);
      -ms-transform: scale(1, 1);
      -o-transform: scale(1, 1);
    }
    50% {
      transform: scale(0.5, 1.5);
    }
    100% {
      transform: scale(1, 1);
    }
  }
  .wrapper .fac .navbar__item:first-child:nth-last-child(6):hover ~ li:last-child:before, .wrapper .fac .navbar__item:first-child:nth-last-child(6) ~ li:hover ~ li:last-child:before {
    opacity: 1;
  }
  .wrapper .fac .navbar__item:first-child:nth-last-child(6):last-child:hover:before, .wrapper .fac .navbar__item:first-child:nth-last-child(6) ~ li:last-child:hover:before {
    opacity: 1;
  }
  .wrapper .fac .navbar__item:first-child:nth-last-child(6):nth-child(1):hover ~ li:last-child:before, .wrapper .fac .navbar__item:first-child:nth-last-child(6) ~ li:nth-child(1):hover ~ li:last-child:before {
    top: 0%;
    animation: gooeyEffect-1 250ms 1;
  }
  @keyframes gooeyEffect-1 {
    0% {
      transform: scale(1, 1);
      -webkit-transform: scale(1, 1);
      -moz-transform: scale(1, 1);
      -ms-transform: scale(1, 1);
      -o-transform: scale(1, 1);
    }
    50% {
      transform: scale(0.5, 1.5);
    }
    100% {
      transform: scale(1, 1);
    }
  }
  .wrapper .fac .navbar__item:first-child:nth-last-child(6):nth-child(2):hover ~ li:last-child:before, .wrapper .fac .navbar__item:first-child:nth-last-child(6) ~ li:nth-child(2):hover ~ li:last-child:before {
    top: 16.6666666667%;
    animation: gooeyEffect-2 250ms 1;
  }
  @keyframes gooeyEffect-2 {
    0% {
      transform: scale(1, 1);
      -webkit-transform: scale(1, 1);
      -moz-transform: scale(1, 1);
      -ms-transform: scale(1, 1);
      -o-transform: scale(1, 1);
    }
    50% {
      transform: scale(0.5, 1.5);
    }
    100% {
      transform: scale(1, 1);
    }
  }
  .wrapper .fac .navbar__item:first-child:nth-last-child(6):nth-child(3):hover ~ li:last-child:before, .wrapper .fac .navbar__item:first-child:nth-last-child(6) ~ li:nth-child(3):hover ~ li:last-child:before {
    top: 33.3333333333%;
    animation: gooeyEffect-3 250ms 1;
  }
  @keyframes gooeyEffect-3 {
    0% {
      transform: scale(1, 1);
      -webkit-transform: scale(1, 1);
      -moz-transform: scale(1, 1);
      -ms-transform: scale(1, 1);
      -o-transform: scale(1, 1);
    }
    50% {
      transform: scale(0.5, 1.5);
    }
    100% {
      transform: scale(1, 1);
    }
  }
  .wrapper .fac .navbar__item:first-child:nth-last-child(6):nth-child(4):hover ~ li:last-child:before, .wrapper .fac .navbar__item:first-child:nth-last-child(6) ~ li:nth-child(4):hover ~ li:last-child:before {
    top: 50%;
    animation: gooeyEffect-4 250ms 1;
  }
  @keyframes gooeyEffect-4 {
    0% {
      transform: scale(1, 1);
      -webkit-transform: scale(1, 1);
      -moz-transform: scale(1, 1);
      -ms-transform: scale(1, 1);
      -o-transform: scale(1, 1);
    }
    50% {
      transform: scale(0.5, 1.5);
    }
    100% {
      transform: scale(1, 1);
    }
  }
  .wrapper .fac .navbar__item:first-child:nth-last-child(6):nth-child(5):hover ~ li:last-child:before, .wrapper .fac .navbar__item:first-child:nth-last-child(6) ~ li:nth-child(5):hover ~ li:last-child:before {
    top: 66.6666666667%;
    animation: gooeyEffect-5 250ms 1;
  }
  @keyframes gooeyEffect-5 {
    0% {
      transform: scale(1, 1);
      -webkit-transform: scale(1, 1);
      -moz-transform: scale(1, 1);
      -ms-transform: scale(1, 1);
      -o-transform: scale(1, 1);
    }
    50% {
      transform: scale(0.5, 1.5);
    }
    100% {
      transform: scale(1, 1);
    }
  }
  .wrapper .fac .navbar__item:first-child:nth-last-child(6):last-child:hover:before, .wrapper .fac .navbar__item:first-child:nth-last-child(6) ~ li:last-child:hover:before {
    top: 83.3333333333%;
    animation: gooeyEffect-6 250ms 1;
  }
  @keyframes gooeyEffect-6 {
    0% {
      transform: scale(1, 1);
      -webkit-transform: scale(1, 1);
      -moz-transform: scale(1, 1);
      -ms-transform: scale(1, 1);
      -o-transform: scale(1, 1);
    }
    50% {
      transform: scale(0.5, 1.5);
    }
    100% {
      transform: scale(1, 1);
    }
  }
  .wrapper .fac .navbar__item:first-child:nth-last-child(7):hover ~ li:last-child:before, .wrapper .fac .navbar__item:first-child:nth-last-child(7) ~ li:hover ~ li:last-child:before {
    opacity: 1;
  }
  .wrapper .fac .navbar__item:first-child:nth-last-child(7):last-child:hover:before, .wrapper .fac .navbar__item:first-child:nth-last-child(7) ~ li:last-child:hover:before {
    opacity: 1;
  }
  .wrapper .fac .navbar__item:first-child:nth-last-child(7):nth-child(1):hover ~ li:last-child:before, .wrapper .fac .navbar__item:first-child:nth-last-child(7) ~ li:nth-child(1):hover ~ li:last-child:before {
    top: 0%;
    animation: gooeyEffect-1 250ms 1;
  }
  @keyframes gooeyEffect-1 {
    0% {
      transform: scale(1, 1);
      -webkit-transform: scale(1, 1);
      -moz-transform: scale(1, 1);
      -ms-transform: scale(1, 1);
      -o-transform: scale(1, 1);
    }
    50% {
      transform: scale(0.5, 1.5);
    }
    100% {
      transform: scale(1, 1);
    }
  }
  .wrapper .fac .navbar__item:first-child:nth-last-child(7):nth-child(2):hover ~ li:last-child:before, .wrapper .fac .navbar__item:first-child:nth-last-child(7) ~ li:nth-child(2):hover ~ li:last-child:before {
    top: 14.2857142857%;
    animation: gooeyEffect-2 250ms 1;
  }
  @keyframes gooeyEffect-2 {
    0% {
      transform: scale(1, 1);
      -webkit-transform: scale(1, 1);
      -moz-transform: scale(1, 1);
      -ms-transform: scale(1, 1);
      -o-transform: scale(1, 1);
    }
    50% {
      transform: scale(0.5, 1.5);
    }
    100% {
      transform: scale(1, 1);
    }
  }
  .wrapper .fac .navbar__item:first-child:nth-last-child(7):nth-child(3):hover ~ li:last-child:before, .wrapper .fac .navbar__item:first-child:nth-last-child(7) ~ li:nth-child(3):hover ~ li:last-child:before {
    top: 28.5714285714%;
    animation: gooeyEffect-3 250ms 1;
  }
  @keyframes gooeyEffect-3 {
    0% {
      transform: scale(1, 1);
      -webkit-transform: scale(1, 1);
      -moz-transform: scale(1, 1);
      -ms-transform: scale(1, 1);
      -o-transform: scale(1, 1);
    }
    50% {
      transform: scale(0.5, 1.5);
    }
    100% {
      transform: scale(1, 1);
    }
  }
  .wrapper .fac .navbar__item:first-child:nth-last-child(7):nth-child(4):hover ~ li:last-child:before, .wrapper .fac .navbar__item:first-child:nth-last-child(7) ~ li:nth-child(4):hover ~ li:last-child:before {
    top: 42.8571428571%;
    animation: gooeyEffect-4 250ms 1;
  }
  @keyframes gooeyEffect-4 {
    0% {
      transform: scale(1, 1);
      -webkit-transform: scale(1, 1);
      -moz-transform: scale(1, 1);
      -ms-transform: scale(1, 1);
      -o-transform: scale(1, 1);
    }
    50% {
      transform: scale(0.5, 1.5);
    }
    100% {
      transform: scale(1, 1);
    }
  }
  .wrapper .fac .navbar__item:first-child:nth-last-child(7):nth-child(5):hover ~ li:last-child:before, .wrapper .fac .navbar__item:first-child:nth-last-child(7) ~ li:nth-child(5):hover ~ li:last-child:before {
    top: 57.1428571429%;
    animation: gooeyEffect-5 250ms 1;
  }
  @keyframes gooeyEffect-5 {
    0% {
      transform: scale(1, 1);
      -webkit-transform: scale(1, 1);
      -moz-transform: scale(1, 1);
      -ms-transform: scale(1, 1);
      -o-transform: scale(1, 1);
    }
    50% {
      transform: scale(0.5, 1.5);
    }
    100% {
      transform: scale(1, 1);
    }
  }
  .wrapper .fac .navbar__item:first-child:nth-last-child(7):nth-child(6):hover ~ li:last-child:before, .wrapper .fac .navbar__item:first-child:nth-last-child(7) ~ li:nth-child(6):hover ~ li:last-child:before {
    top: 71.4285714286%;
    animation: gooeyEffect-6 250ms 1;
  }
  @keyframes gooeyEffect-6 {
    0% {
      transform: scale(1, 1);
      -webkit-transform: scale(1, 1);
      -moz-transform: scale(1, 1);
      -ms-transform: scale(1, 1);
      -o-transform: scale(1, 1);
    }
    50% {
      transform: scale(0.5, 1.5);
    }
    100% {
      transform: scale(1, 1);
    }
  }
  .wrapper .fac .navbar__item:first-child:nth-last-child(7):last-child:hover:before, .wrapper .fac .navbar__item:first-child:nth-last-child(7) ~ li:last-child:hover:before {
    top: 85.7142857143%;
    animation: gooeyEffect-7 250ms 1;
  }
  @keyframes gooeyEffect-7 {
    0% {
      transform: scale(1, 1);
      -webkit-transform: scale(1, 1);
      -moz-transform: scale(1, 1);
      -ms-transform: scale(1, 1);
      -o-transform: scale(1, 1);
    }
    50% {
      transform: scale(0.5, 1.5);
    }
    100% {
      transform: scale(1, 1);
    }
  }
  .wrapper .fac .navbar__item:first-child:nth-last-child(8):hover ~ li:last-child:before, .wrapper .fac .navbar__item:first-child:nth-last-child(8) ~ li:hover ~ li:last-child:before {
    opacity: 1;
  }
  .wrapper .fac .navbar__item:first-child:nth-last-child(8):last-child:hover:before, .wrapper .fac .navbar__item:first-child:nth-last-child(8) ~ li:last-child:hover:before {
    opacity: 1;
  }
  .wrapper .fac .navbar__item:first-child:nth-last-child(8):nth-child(1):hover ~ li:last-child:before, .wrapper .fac .navbar__item:first-child:nth-last-child(8) ~ li:nth-child(1):hover ~ li:last-child:before {
    top: 0%;
    animation: gooeyEffect-1 250ms 1;
  }
  @keyframes gooeyEffect-1 {
    0% {
      transform: scale(1, 1);
      -webkit-transform: scale(1, 1);
      -moz-transform: scale(1, 1);
      -ms-transform: scale(1, 1);
      -o-transform: scale(1, 1);
    }
    50% {
      transform: scale(0.5, 1.5);
    }
    100% {
      transform: scale(1, 1);
    }
  }
  .wrapper .fac .navbar__item:first-child:nth-last-child(8):nth-child(2):hover ~ li:last-child:before, .wrapper .fac .navbar__item:first-child:nth-last-child(8) ~ li:nth-child(2):hover ~ li:last-child:before {
    top: 12.5%;
    animation: gooeyEffect-2 250ms 1;
  }
  @keyframes gooeyEffect-2 {
    0% {
      transform: scale(1, 1);
      -webkit-transform: scale(1, 1);
      -moz-transform: scale(1, 1);
      -ms-transform: scale(1, 1);
      -o-transform: scale(1, 1);
    }
    50% {
      transform: scale(0.5, 1.5);
    }
    100% {
      transform: scale(1, 1);
    }
  }
  .wrapper .fac .navbar__item:first-child:nth-last-child(8):nth-child(3):hover ~ li:last-child:before, .wrapper .fac .navbar__item:first-child:nth-last-child(8) ~ li:nth-child(3):hover ~ li:last-child:before {
    top: 25%;
    animation: gooeyEffect-3 250ms 1;
  }
  @keyframes gooeyEffect-3 {
    0% {
      transform: scale(1, 1);
      -webkit-transform: scale(1, 1);
      -moz-transform: scale(1, 1);
      -ms-transform: scale(1, 1);
      -o-transform: scale(1, 1);
    }
    50% {
      transform: scale(0.5, 1.5);
    }
    100% {
      transform: scale(1, 1);
    }
  }
  .wrapper .fac .navbar__item:first-child:nth-last-child(8):nth-child(4):hover ~ li:last-child:before, .wrapper .fac .navbar__item:first-child:nth-last-child(8) ~ li:nth-child(4):hover ~ li:last-child:before {
    top: 37.5%;
    animation: gooeyEffect-4 250ms 1;
  }
  @keyframes gooeyEffect-4 {
    0% {
      transform: scale(1, 1);
      -webkit-transform: scale(1, 1);
      -moz-transform: scale(1, 1);
      -ms-transform: scale(1, 1);
      -o-transform: scale(1, 1);
    }
    50% {
      transform: scale(0.5, 1.5);
    }
    100% {
      transform: scale(1, 1);
    }
  }
  .wrapper .fac .navbar__item:first-child:nth-last-child(8):nth-child(5):hover ~ li:last-child:before, .wrapper .fac .navbar__item:first-child:nth-last-child(8) ~ li:nth-child(5):hover ~ li:last-child:before {
    top: 50%;
    animation: gooeyEffect-5 250ms 1;
  }
  @keyframes gooeyEffect-5 {
    0% {
      transform: scale(1, 1);
      -webkit-transform: scale(1, 1);
      -moz-transform: scale(1, 1);
      -ms-transform: scale(1, 1);
      -o-transform: scale(1, 1);
    }
    50% {
      transform: scale(0.5, 1.5);
    }
    100% {
      transform: scale(1, 1);
    }
  }
  .wrapper .fac .navbar__item:first-child:nth-last-child(8):nth-child(6):hover ~ li:last-child:before, .wrapper .fac .navbar__item:first-child:nth-last-child(8) ~ li:nth-child(6):hover ~ li:last-child:before {
    top: 62.5%;
    animation: gooeyEffect-6 250ms 1;
  }
  @keyframes gooeyEffect-6 {
    0% {
      transform: scale(1, 1);
      -webkit-transform: scale(1, 1);
      -moz-transform: scale(1, 1);
      -ms-transform: scale(1, 1);
      -o-transform: scale(1, 1);
    }
    50% {
      transform: scale(0.5, 1.5);
    }
    100% {
      transform: scale(1, 1);
    }
  }
  .wrapper .fac .navbar__item:first-child:nth-last-child(8):nth-child(7):hover ~ li:last-child:before, .wrapper .fac .navbar__item:first-child:nth-last-child(8) ~ li:nth-child(7):hover ~ li:last-child:before {
    top: 75%;
    animation: gooeyEffect-7 250ms 1;
  }
  @keyframes gooeyEffect-7 {
    0% {
      transform: scale(1, 1);
      -webkit-transform: scale(1, 1);
      -moz-transform: scale(1, 1);
      -ms-transform: scale(1, 1);
      -o-transform: scale(1, 1);
    }
    50% {
      transform: scale(0.5, 1.5);
    }
    100% {
      transform: scale(1, 1);
    }
  }
  .wrapper .fac .navbar__item:first-child:nth-last-child(8):last-child:hover:before, .wrapper .fac .navbar__item:first-child:nth-last-child(8) ~ li:last-child:hover:before {
    top: 87.5%;
    animation: gooeyEffect-8 250ms 1;
  }
  @keyframes gooeyEffect-8 {
    0% {
      transform: scale(1, 1);
      -webkit-transform: scale(1, 1);
      -moz-transform: scale(1, 1);
      -ms-transform: scale(1, 1);
      -o-transform: scale(1, 1);
    }
    50% {
      transform: scale(0.5, 1.5);
    }
    100% {
      transform: scale(1, 1);
    }
  }
  .wrapper .fac .navbar__item:first-child:nth-last-child(9):hover ~ li:last-child:before, .wrapper .fac .navbar__item:first-child:nth-last-child(9) ~ li:hover ~ li:last-child:before {
    opacity: 1;
  }
  .wrapper .fac .navbar__item:first-child:nth-last-child(9):last-child:hover:before, .wrapper .fac .navbar__item:first-child:nth-last-child(9) ~ li:last-child:hover:before {
    opacity: 1;
  }
  .wrapper .fac .navbar__item:first-child:nth-last-child(9):nth-child(1):hover ~ li:last-child:before, .wrapper .fac .navbar__item:first-child:nth-last-child(9) ~ li:nth-child(1):hover ~ li:last-child:before {
    top: 0%;
    animation: gooeyEffect-1 250ms 1;
  }
  @keyframes gooeyEffect-1 {
    0% {
      transform: scale(1, 1);
      -webkit-transform: scale(1, 1);
      -moz-transform: scale(1, 1);
      -ms-transform: scale(1, 1);
      -o-transform: scale(1, 1);
    }
    50% {
      transform: scale(0.5, 1.5);
    }
    100% {
      transform: scale(1, 1);
    }
  }
  .wrapper .fac .navbar__item:first-child:nth-last-child(9):nth-child(2):hover ~ li:last-child:before, .wrapper .fac .navbar__item:first-child:nth-last-child(9) ~ li:nth-child(2):hover ~ li:last-child:before {
    top: 11.1111111111%;
    animation: gooeyEffect-2 250ms 1;
  }
  @keyframes gooeyEffect-2 {
    0% {
      transform: scale(1, 1);
      -webkit-transform: scale(1, 1);
      -moz-transform: scale(1, 1);
      -ms-transform: scale(1, 1);
      -o-transform: scale(1, 1);
    }
    50% {
      transform: scale(0.5, 1.5);
    }
    100% {
      transform: scale(1, 1);
    }
  }
  .wrapper .fac .navbar__item:first-child:nth-last-child(9):nth-child(3):hover ~ li:last-child:before, .wrapper .fac .navbar__item:first-child:nth-last-child(9) ~ li:nth-child(3):hover ~ li:last-child:before {
    top: 22.2222222222%;
    animation: gooeyEffect-3 250ms 1;
  }
  @keyframes gooeyEffect-3 {
    0% {
      transform: scale(1, 1);
      -webkit-transform: scale(1, 1);
      -moz-transform: scale(1, 1);
      -ms-transform: scale(1, 1);
      -o-transform: scale(1, 1);
    }
    50% {
      transform: scale(0.5, 1.5);
    }
    100% {
      transform: scale(1, 1);
    }
  }
  .wrapper .fac .navbar__item:first-child:nth-last-child(9):nth-child(4):hover ~ li:last-child:before, .wrapper .fac .navbar__item:first-child:nth-last-child(9) ~ li:nth-child(4):hover ~ li:last-child:before {
    top: 33.3333333333%;
    animation: gooeyEffect-4 250ms 1;
  }
  @keyframes gooeyEffect-4 {
    0% {
      transform: scale(1, 1);
      -webkit-transform: scale(1, 1);
      -moz-transform: scale(1, 1);
      -ms-transform: scale(1, 1);
      -o-transform: scale(1, 1);
    }
    50% {
      transform: scale(0.5, 1.5);
    }
    100% {
      transform: scale(1, 1);
    }
  }
  .wrapper .fac .navbar__item:first-child:nth-last-child(9):nth-child(5):hover ~ li:last-child:before, .wrapper .fac .navbar__item:first-child:nth-last-child(9) ~ li:nth-child(5):hover ~ li:last-child:before {
    top: 44.4444444444%;
    animation: gooeyEffect-5 250ms 1;
  }
  @keyframes gooeyEffect-5 {
    0% {
      transform: scale(1, 1);
      -webkit-transform: scale(1, 1);
      -moz-transform: scale(1, 1);
      -ms-transform: scale(1, 1);
      -o-transform: scale(1, 1);
    }
    50% {
      transform: scale(0.5, 1.5);
    }
    100% {
      transform: scale(1, 1);
    }
  }
  .wrapper .fac .navbar__item:first-child:nth-last-child(9):nth-child(6):hover ~ li:last-child:before, .wrapper .fac .navbar__item:first-child:nth-last-child(9) ~ li:nth-child(6):hover ~ li:last-child:before {
    top: 55.5555555556%;
    animation: gooeyEffect-6 250ms 1;
  }
  @keyframes gooeyEffect-6 {
    0% {
      transform: scale(1, 1);
      -webkit-transform: scale(1, 1);
      -moz-transform: scale(1, 1);
      -ms-transform: scale(1, 1);
      -o-transform: scale(1, 1);
    }
    50% {
      transform: scale(0.5, 1.5);
    }
    100% {
      transform: scale(1, 1);
    }
  }
  .wrapper .fac .navbar__item:first-child:nth-last-child(9):nth-child(7):hover ~ li:last-child:before, .wrapper .fac .navbar__item:first-child:nth-last-child(9) ~ li:nth-child(7):hover ~ li:last-child:before {
    top: 66.6666666667%;
    animation: gooeyEffect-7 250ms 1;
  }
  @keyframes gooeyEffect-7 {
    0% {
      transform: scale(1, 1);
      -webkit-transform: scale(1, 1);
      -moz-transform: scale(1, 1);
      -ms-transform: scale(1, 1);
      -o-transform: scale(1, 1);
    }
    50% {
      transform: scale(0.5, 1.5);
    }
    100% {
      transform: scale(1, 1);
    }
  }
  .wrapper .fac .navbar__item:first-child:nth-last-child(9):nth-child(8):hover ~ li:last-child:before, .wrapper .fac .navbar__item:first-child:nth-last-child(9) ~ li:nth-child(8):hover ~ li:last-child:before {
    top: 77.7777777778%;
    animation: gooeyEffect-8 250ms 1;
  }
  @keyframes gooeyEffect-8 {
    0% {
      transform: scale(1, 1);
      -webkit-transform: scale(1, 1);
      -moz-transform: scale(1, 1);
      -ms-transform: scale(1, 1);
      -o-transform: scale(1, 1);
    }
    50% {
      transform: scale(0.5, 1.5);
    }
    100% {
      transform: scale(1, 1);
    }
  }
  .wrapper .fac .navbar__item:first-child:nth-last-child(9):last-child:hover:before, .wrapper .fac .navbar__item:first-child:nth-last-child(9) ~ li:last-child:hover:before {
    top: 88.8888888889%;
    animation: gooeyEffect-9 250ms 1;
  }
  @keyframes gooeyEffect-9 {
    0% {
      transform: scale(1, 1);
      -webkit-transform: scale(1, 1);
      -moz-transform: scale(1, 1);
      -ms-transform: scale(1, 1);
      -o-transform: scale(1, 1);
    }
    50% {
      transform: scale(0.5, 1.5);
    }
    100% {
      transform: scale(1, 1);
    }
  }
  .wrapper .fac .navbar__item:first-child:nth-last-child(10):hover ~ li:last-child:before, .wrapper .fac .navbar__item:first-child:nth-last-child(10) ~ li:hover ~ li:last-child:before {
    opacity: 1;
  }
  .wrapper .fac .navbar__item:first-child:nth-last-child(10):last-child:hover:before, .wrapper .fac .navbar__item:first-child:nth-last-child(10) ~ li:last-child:hover:before {
    opacity: 1;
  }
  .wrapper .fac .navbar__item:first-child:nth-last-child(10):nth-child(1):hover ~ li:last-child:before, .wrapper .fac .navbar__item:first-child:nth-last-child(10) ~ li:nth-child(1):hover ~ li:last-child:before {
    top: 0%;
    animation: gooeyEffect-1 250ms 1;
  }
  @keyframes gooeyEffect-1 {
    0% {
      transform: scale(1, 1);
      -webkit-transform: scale(1, 1);
      -moz-transform: scale(1, 1);
      -ms-transform: scale(1, 1);
      -o-transform: scale(1, 1);
    }
    50% {
      transform: scale(0.5, 1.5);
    }
    100% {
      transform: scale(1, 1);
    }
  }
  .wrapper .fac .navbar__item:first-child:nth-last-child(10):nth-child(2):hover ~ li:last-child:before, .wrapper .fac .navbar__item:first-child:nth-last-child(10) ~ li:nth-child(2):hover ~ li:last-child:before {
    top: 10%;
    animation: gooeyEffect-2 250ms 1;
  }
  @keyframes gooeyEffect-2 {
    0% {
      transform: scale(1, 1);
      -webkit-transform: scale(1, 1);
      -moz-transform: scale(1, 1);
      -ms-transform: scale(1, 1);
      -o-transform: scale(1, 1);
    }
    50% {
      transform: scale(0.5, 1.5);
    }
    100% {
      transform: scale(1, 1);
    }
  }
  .wrapper .fac .navbar__item:first-child:nth-last-child(10):nth-child(3):hover ~ li:last-child:before, .wrapper .fac .navbar__item:first-child:nth-last-child(10) ~ li:nth-child(3):hover ~ li:last-child:before {
    top: 20%;
    animation: gooeyEffect-3 250ms 1;
  }
  @keyframes gooeyEffect-3 {
    0% {
      transform: scale(1, 1);
      -webkit-transform: scale(1, 1);
      -moz-transform: scale(1, 1);
      -ms-transform: scale(1, 1);
      -o-transform: scale(1, 1);
    }
    50% {
      transform: scale(0.5, 1.5);
    }
    100% {
      transform: scale(1, 1);
    }
  }
  .wrapper .fac .navbar__item:first-child:nth-last-child(10):nth-child(4):hover ~ li:last-child:before, .wrapper .fac .navbar__item:first-child:nth-last-child(10) ~ li:nth-child(4):hover ~ li:last-child:before {
    top: 30%;
    animation: gooeyEffect-4 250ms 1;
  }
  @keyframes gooeyEffect-4 {
    0% {
      transform: scale(1, 1);
      -webkit-transform: scale(1, 1);
      -moz-transform: scale(1, 1);
      -ms-transform: scale(1, 1);
      -o-transform: scale(1, 1);
    }
    50% {
      transform: scale(0.5, 1.5);
    }
    100% {
      transform: scale(1, 1);
    }
  }
  .wrapper .fac .navbar__item:first-child:nth-last-child(10):nth-child(5):hover ~ li:last-child:before, .wrapper .fac .navbar__item:first-child:nth-last-child(10) ~ li:nth-child(5):hover ~ li:last-child:before {
    top: 40%;
    animation: gooeyEffect-5 250ms 1;
  }
  @keyframes gooeyEffect-5 {
    0% {
      transform: scale(1, 1);
      -webkit-transform: scale(1, 1);
      -moz-transform: scale(1, 1);
      -ms-transform: scale(1, 1);
      -o-transform: scale(1, 1);
    }
    50% {
      transform: scale(0.5, 1.5);
    }
    100% {
      transform: scale(1, 1);
    }
  }
  .wrapper .fac .navbar__item:first-child:nth-last-child(10):nth-child(6):hover ~ li:last-child:before, .wrapper .fac .navbar__item:first-child:nth-last-child(10) ~ li:nth-child(6):hover ~ li:last-child:before {
    top: 50%;
    animation: gooeyEffect-6 250ms 1;
  }
  @keyframes gooeyEffect-6 {
    0% {
      transform: scale(1, 1);
      -webkit-transform: scale(1, 1);
      -moz-transform: scale(1, 1);
      -ms-transform: scale(1, 1);
      -o-transform: scale(1, 1);
    }
    50% {
      transform: scale(0.5, 1.5);
    }
    100% {
      transform: scale(1, 1);
    }
  }
  .wrapper .fac .navbar__item:first-child:nth-last-child(10):nth-child(7):hover ~ li:last-child:before, .wrapper .fac .navbar__item:first-child:nth-last-child(10) ~ li:nth-child(7):hover ~ li:last-child:before {
    top: 60%;
    animation: gooeyEffect-7 250ms 1;
  }
  @keyframes gooeyEffect-7 {
    0% {
      transform: scale(1, 1);
      -webkit-transform: scale(1, 1);
      -moz-transform: scale(1, 1);
      -ms-transform: scale(1, 1);
      -o-transform: scale(1, 1);
    }
    50% {
      transform: scale(0.5, 1.5);
    }
    100% {
      transform: scale(1, 1);
    }
  }
  .wrapper .fac .navbar__item:first-child:nth-last-child(10):nth-child(8):hover ~ li:last-child:before, .wrapper .fac .navbar__item:first-child:nth-last-child(10) ~ li:nth-child(8):hover ~ li:last-child:before {
    top: 70%;
    animation: gooeyEffect-8 250ms 1;
  }
  @keyframes gooeyEffect-8 {
    0% {
      transform: scale(1, 1);
      -webkit-transform: scale(1, 1);
      -moz-transform: scale(1, 1);
      -ms-transform: scale(1, 1);
      -o-transform: scale(1, 1);
    }
    50% {
      transform: scale(0.5, 1.5);
    }
    100% {
      transform: scale(1, 1);
    }
  }
  .wrapper .fac .navbar__item:first-child:nth-last-child(10):nth-child(9):hover ~ li:last-child:before, .wrapper .fac .navbar__item:first-child:nth-last-child(10) ~ li:nth-child(9):hover ~ li:last-child:before {
    top: 80%;
    animation: gooeyEffect-9 250ms 1;
  }
  @keyframes gooeyEffect-9 {
    0% {
      transform: scale(1, 1);
      -webkit-transform: scale(1, 1);
      -moz-transform: scale(1, 1);
      -ms-transform: scale(1, 1);
      -o-transform: scale(1, 1);
    }
    50% {
      transform: scale(0.5, 1.5);
    }
    100% {
      transform: scale(1, 1);
    }
  }
  .wrapper .fac .navbar__item:first-child:nth-last-child(10):last-child:hover:before, .wrapper .fac .navbar__item:first-child:nth-last-child(10) ~ li:last-child:hover:before {
    top: 90%;
    animation: gooeyEffect-10 250ms 1;
  }
  @keyframes gooeyEffect-10 {
    0% {
      transform: scale(1, 1);
      -webkit-transform: scale(1, 1);
      -moz-transform: scale(1, 1);
      -ms-transform: scale(1, 1);
      -o-transform: scale(1, 1);
    }
    50% {
      transform: scale(0.5, 1.5);
    }
    100% {
      transform: scale(1, 1);
    }
  }
  .wrapper .fac .navbar__item:first-child:nth-last-child(11):hover ~ li:last-child:before, .wrapper .fac .navbar__item:first-child:nth-last-child(11) ~ li:hover ~ li:last-child:before {
    opacity: 1;
  }
  .wrapper .fac .navbar__item:first-child:nth-last-child(11):last-child:hover:before, .wrapper .fac .navbar__item:first-child:nth-last-child(11) ~ li:last-child:hover:before {
    opacity: 1;
  }
  .wrapper .fac .navbar__item:first-child:nth-last-child(11):nth-child(1):hover ~ li:last-child:before, .wrapper .fac .navbar__item:first-child:nth-last-child(11) ~ li:nth-child(1):hover ~ li:last-child:before {
    top: 0%;
    animation: gooeyEffect-1 250ms 1;
  }
  @keyframes gooeyEffect-1 {
    0% {
      transform: scale(1, 1);
      -webkit-transform: scale(1, 1);
      -moz-transform: scale(1, 1);
      -ms-transform: scale(1, 1);
      -o-transform: scale(1, 1);
    }
    50% {
      transform: scale(0.5, 1.5);
    }
    100% {
      transform: scale(1, 1);
    }
  }
  .wrapper .fac .navbar__item:first-child:nth-last-child(11):nth-child(2):hover ~ li:last-child:before, .wrapper .fac .navbar__item:first-child:nth-last-child(11) ~ li:nth-child(2):hover ~ li:last-child:before {
    top: 9.0909090909%;
    animation: gooeyEffect-2 250ms 1;
  }
  @keyframes gooeyEffect-2 {
    0% {
      transform: scale(1, 1);
      -webkit-transform: scale(1, 1);
      -moz-transform: scale(1, 1);
      -ms-transform: scale(1, 1);
      -o-transform: scale(1, 1);
    }
    50% {
      transform: scale(0.5, 1.5);
    }
    100% {
      transform: scale(1, 1);
    }
  }
  .wrapper .fac .navbar__item:first-child:nth-last-child(11):nth-child(3):hover ~ li:last-child:before, .wrapper .fac .navbar__item:first-child:nth-last-child(11) ~ li:nth-child(3):hover ~ li:last-child:before {
    top: 18.1818181818%;
    animation: gooeyEffect-3 250ms 1;
  }
  @keyframes gooeyEffect-3 {
    0% {
      transform: scale(1, 1);
      -webkit-transform: scale(1, 1);
      -moz-transform: scale(1, 1);
      -ms-transform: scale(1, 1);
      -o-transform: scale(1, 1);
    }
    50% {
      transform: scale(0.5, 1.5);
    }
    100% {
      transform: scale(1, 1);
    }
  }
  .wrapper .fac .navbar__item:first-child:nth-last-child(11):nth-child(4):hover ~ li:last-child:before, .wrapper .fac .navbar__item:first-child:nth-last-child(11) ~ li:nth-child(4):hover ~ li:last-child:before {
    top: 27.2727272727%;
    animation: gooeyEffect-4 250ms 1;
  }
  @keyframes gooeyEffect-4 {
    0% {
      transform: scale(1, 1);
      -webkit-transform: scale(1, 1);
      -moz-transform: scale(1, 1);
      -ms-transform: scale(1, 1);
      -o-transform: scale(1, 1);
    }
    50% {
      transform: scale(0.5, 1.5);
    }
    100% {
      transform: scale(1, 1);
    }
  }
  .wrapper .fac .navbar__item:first-child:nth-last-child(11):nth-child(5):hover ~ li:last-child:before, .wrapper .fac .navbar__item:first-child:nth-last-child(11) ~ li:nth-child(5):hover ~ li:last-child:before {
    top: 36.3636363636%;
    animation: gooeyEffect-5 250ms 1;
  }
  @keyframes gooeyEffect-5 {
    0% {
      transform: scale(1, 1);
      -webkit-transform: scale(1, 1);
      -moz-transform: scale(1, 1);
      -ms-transform: scale(1, 1);
      -o-transform: scale(1, 1);
    }
    50% {
      transform: scale(0.5, 1.5);
    }
    100% {
      transform: scale(1, 1);
    }
  }
  .wrapper .fac .navbar__item:first-child:nth-last-child(11):nth-child(6):hover ~ li:last-child:before, .wrapper .fac .navbar__item:first-child:nth-last-child(11) ~ li:nth-child(6):hover ~ li:last-child:before {
    top: 45.4545454545%;
    animation: gooeyEffect-6 250ms 1;
  }
  @keyframes gooeyEffect-6 {
    0% {
      transform: scale(1, 1);
      -webkit-transform: scale(1, 1);
      -moz-transform: scale(1, 1);
      -ms-transform: scale(1, 1);
      -o-transform: scale(1, 1);
    }
    50% {
      transform: scale(0.5, 1.5);
    }
    100% {
      transform: scale(1, 1);
    }
  }
  .wrapper .fac .navbar__item:first-child:nth-last-child(11):nth-child(7):hover ~ li:last-child:before, .wrapper .fac .navbar__item:first-child:nth-last-child(11) ~ li:nth-child(7):hover ~ li:last-child:before {
    top: 54.5454545455%;
    animation: gooeyEffect-7 250ms 1;
  }
  @keyframes gooeyEffect-7 {
    0% {
      transform: scale(1, 1);
      -webkit-transform: scale(1, 1);
      -moz-transform: scale(1, 1);
      -ms-transform: scale(1, 1);
      -o-transform: scale(1, 1);
    }
    50% {
      transform: scale(0.5, 1.5);
    }
    100% {
      transform: scale(1, 1);
    }
  }
  .wrapper .fac .navbar__item:first-child:nth-last-child(11):nth-child(8):hover ~ li:last-child:before, .wrapper .fac .navbar__item:first-child:nth-last-child(11) ~ li:nth-child(8):hover ~ li:last-child:before {
    top: 63.6363636364%;
    animation: gooeyEffect-8 250ms 1;
  }
  @keyframes gooeyEffect-8 {
    0% {
      transform: scale(1, 1);
      -webkit-transform: scale(1, 1);
      -moz-transform: scale(1, 1);
      -ms-transform: scale(1, 1);
      -o-transform: scale(1, 1);
    }
    50% {
      transform: scale(0.5, 1.5);
    }
    100% {
      transform: scale(1, 1);
    }
  }
  .wrapper .fac .navbar__item:first-child:nth-last-child(11):nth-child(9):hover ~ li:last-child:before, .wrapper .fac .navbar__item:first-child:nth-last-child(11) ~ li:nth-child(9):hover ~ li:last-child:before {
    top: 72.7272727273%;
    animation: gooeyEffect-9 250ms 1;
  }
  @keyframes gooeyEffect-9 {
    0% {
      transform: scale(1, 1);
      -webkit-transform: scale(1, 1);
      -moz-transform: scale(1, 1);
      -ms-transform: scale(1, 1);
      -o-transform: scale(1, 1);
    }
    50% {
      transform: scale(0.5, 1.5);
    }
    100% {
      transform: scale(1, 1);
    }
  }
  .wrapper .fac .navbar__item:first-child:nth-last-child(11):nth-child(10):hover ~ li:last-child:before, .wrapper .fac .navbar__item:first-child:nth-last-child(11) ~ li:nth-child(10):hover ~ li:last-child:before {
    top: 81.8181818182%;
    animation: gooeyEffect-10 250ms 1;
  }
  @keyframes gooeyEffect-10 {
    0% {
      transform: scale(1, 1);
      -webkit-transform: scale(1, 1);
      -moz-transform: scale(1, 1);
      -ms-transform: scale(1, 1);
      -o-transform: scale(1, 1);
    }
    50% {
      transform: scale(0.5, 1.5);
    }
    100% {
      transform: scale(1, 1);
    }
  }
  .wrapper .fac .navbar__item:first-child:nth-last-child(11):last-child:hover:before, .wrapper .fac .navbar__item:first-child:nth-last-child(11) ~ li:last-child:hover:before {
    top: 90.9090909091%;
    animation: gooeyEffect-11 250ms 1;
  }
  @keyframes gooeyEffect-11 {
    0% {
      transform: scale(1, 1);
      -webkit-transform: scale(1, 1);
      -moz-transform: scale(1, 1);
      -ms-transform: scale(1, 1);
      -o-transform: scale(1, 1);
    }
    50% {
      transform: scale(0.5, 1.5);
    }
    100% {
      transform: scale(1, 1);
    }
  }
  .wrapper input {
    height: 100%;
    width: 100%;
    border-radius: var(--border-radius);
    cursor: pointer;
    position: absolute;
    z-index: 5;
    opacity: 0;
  }
  .wrapper input:checked ~ .fab {
    animation: fab-animation 0.4s ease-out forwards;
  }
  .wrapper input:checked ~ .fac .navbar {
    visibility: visible;
    width: 70px;
    height: 375px;
    animation: navbar-animation 0.4s ease-out forwards 0.1s;
    top: 70px;
    opacity: 1;
    -webkit-animation: navbar-animation 0.4s ease-out forwards 0.1s;
  }
  @keyframes fab-animation {
    0% {
      transform: rotate(0) scale(1);
    }
    20% {
      transform: rotate(60deg) scale(0.93);
    }
    55% {
      transform: rotate(35deg) scale(0.97);
    }
    80% {
      transform: rotate(48deg) scale(0.94);
    }
    100% {
      transform: rotate(45deg) scale(0.95);
    }
  }
  @keyframes fab-animation-reverse {
    0% {
      transform: rotate(45deg) scale(0.95);
    }
    20% {
      transform: rotate(-15deg);
    }
    55% {
      transform: rotate(10deg);
    }
    80% {
      transform: rotate(-3deg);
    }
    100% {
      transform: rotate(0) scale(1);
    }
  }
  @keyframes navbar-animation {
    0% {
      transform: scale(1, 1);
    }
    33% {
      transform: scale(0.95, 1.05);
    }
    66% {
      transform: scale(1.05, 0.95);
    }
    100% {
      transform: scale(1, 1);
    }
  }
}
.home {
  padding-top: 7rem;
}
.home__container {
  grid-template-columns: repeat(2, 1fr);
  align-items: center;
  column-gap: 6rem;
}
.home__title {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 1.5rem;
}
.home__title span {
  display: block;
  color: var(--primary-color);
}
.home__desciption {
  margin-bottom: 2rem;
}

.about__container {
  grid-template-columns: repeat(2, 1fr);
  align-items: center;
  column-gap: 6rem;
}

.support__container {
  grid-template-columns: repeat(2, 1fr);
  align-items: center;
  column-gap: 6rem;
}

.services__container {
  padding-top: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}
.services__card {
  display: grid;
  row-gap: 1rem;
  background: var(--container-color);
  box-shadow: 0px 2px 6px hsla(var(--hue), 100%, 15%, 0.15);
  text-align: center;
  padding: 2rem 1.5rem;
  border-radius: 1rem;
  justify-items: center;
}
.services__card__icon {
  font-size: 3rem;
  color: var(--primary-color);
}

.app__info {
  text-align: right;
}
.app__container {
  grid-template-columns: repeat(2, 1fr);
  align-items: center;
  column-gap: 6rem;
}
.app__desciption {
  margin-bottom: 2rem;
}
.app__icon {
  display: flex;
  align-items: center;
  justify-content: start;
  column-gap: 1rem;
}

.contact-us__container {
  padding-bottom: 3rem;
  grid-template-columns: 3fr 1.5fr 1.25fr;
  align-items: center;
}
.contact-us__description {
  text-align: center;
}
.contact-us__info {
  display: grid;
  row-gap: 0.75rem;
}
.contact-us__adress {
  font-size: 1rem;
  font-weight: bold;
  color: var(--title-color);
}
.contact-us__information {
  font-weight: 400;
  color: var(--text-color);
}

.footer {
  background: rgb(189, 189, 189);
  padding-bottom: 1rem;
}
.footer__container {
  row-gap: 2rem;
  grid-template-columns: repeat(5, 1fr);
}
.footer__logo, .footer__title {
  font-size: 1.25rem;
  font-weight: bold;
}
.footer__logo {
  margin-bottom: 0.75rem;
  color: var(--title-color);
}
.footer__description, .footer__link {
  font-size: 0.9rem;
  color: var(--title-color);
}
.footer__links {
  display: grid;
  row-gap: 0.5rem;
}
.footer__social {
  display: flex;
  column-gap: 1.5rem;
  height: max-content;
}
.footer__social a:nth-child(1):hover i {
  color: #0088cc;
}
.footer__social a:nth-child(2):hover i {
  color: #000000;
}
.footer__social a:nth-child(3):hover i {
  color: #e1306c;
}
.footer__social__link {
  font-size: 1.4rem;
  color: var(--title-color);
  display: inline-flex;
}
.footer__social__link i {
  transition: all 0.5s;
}
.footer__copy {
  text-align: center;
  margin-top: 2.5rem;
  font-size: 0.9rem;
  color: var(--text-color);
}

.scrollup {
  position: fixed;
  background: var(--primary-color);
  right: 1rem;
  bottom: -20%;
  border-radius: 0.25rem;
  opacity: 0.75;
  transition: all 0.5s;
  width: 2.5rem;
  height: 2.5rem;
  display: grid;
  place-items: center;
}
.scrollup:hover {
  opacity: 1;
}
.scrollup__icon {
  font-size: 1.25;
  color: var(--container-color);
}

.show-scroll {
  bottom: 3rem;
}

body.dark-theme {
  --primary-color-light: hsl(var(--hue), var(--sat), 75%);
  --title-color: hsl(var(--hue), 4%, 95%);
  --text-color: hsl(var(--hue), 4%, 80%);
  --body-color: hsl(var(--hue), 8%, 13%);
  --container-color: hsl(var(--hue), 8%, 16%);
}

.dark-theme .footer {
  background-color: var(--container-color);
}

.dark-theme .nav__Menu .nav__bar li a iconify-icon {
  color: #FFF;
}

.dark-theme .header {
  background-color: var(--container-color);
}

.dark-theme .nav__Menu .nav__bar .indicator {
  background-color: var(--container-color);
}
.dark-theme .nav__Menu .nav__bar .indicator::after, .dark-theme .nav__Menu .nav__bar .indicator::before {
  box-shadow: 10px 15px var(--container-color);
}

.dark-theme .toggle-slot {
  box-shadow: 0px 10px 25px rgb(55, 55, 55);
}

@media screen and (max-width: 768px) {
  h1 {
    font-size: 2rem;
  }
  h2 {
    font-size: 1.5rem;
  }
  h3 {
    font-size: 1.25rem;
  }
  h4 {
    font-size: 0.875rem;
  }
  .nav__bar {
    display: none !important;
  }
  .button__nav {
    display: none;
  }
  .button__contact {
    justify-self: center;
  }
  .svg__img {
    justify-self: center;
  }
  .home__container {
    row-gap: 2.5rem;
    grid-template-columns: auto;
  }
  .about__container,
  .support__container,
  .services__container,
  .app__container {
    row-gap: 2rem;
    grid-template-columns: auto;
  }
  .about__img {
    order: -1;
  }
  .about__info {
    text-align: center;
  }
  .support__info {
    order: 1;
  }
  .support__info {
    text-align: center;
  }
  .app__info {
    order: -1;
  }
  .app__info {
    text-align: center;
  }
  .app__icon {
    justify-content: center;
  }
  .contact-us__container {
    grid-template-columns: repeat(2, 1fr);
    justify-items: center;
  }
  .contact_btn {
    grid-column: 1/3;
    justify-self: center;
  }
  .footer__container {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 576px) {
  .button__apple, .button__google {
    width: 7.5rem;
    height: 2.5rem;
    padding: 0;
  }
  .button__contact {
    justify-self: center;
  }
  .contact-us__container {
    grid-template-columns: auto;
    justify-items: normal;
  }
  .contact_btn {
    grid-column: auto;
  }
  .footer__container {
    grid-template-columns: auto;
  }
}
@media screen and (min-width: 769px) {
  .home__img {
    order: 1;
  }
}

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