.light-mode {
  --font-color: #0f3057;
  --background-color: #ffffff;
}

html{
  scroll-behavior: smooth;
}

.dark-mode {
  --font-color: #f5f5f5;
  --background-color: #0f3057;
}

@font-face {
  font-family: GothamBook;
  src: url(/fonts/Gotham_Book.otf);
}

@font-face {
  font-family: GothamBlack;
  src: url(/fonts/Gotham_Black.otf);
}

@font-face {
  font-family: GothamBold;
  src: url(/fonts/Gotham_Bold.otf);
}
body {
  background-color: var(--background-color) !important;
  color: var(--font-color);
}

/* .switch__background,
.switch__background:before,
.switch__background:after {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
}
.switch {
  width: 75px;
  height: 35px;
  display: block;
  position: relative;
  margin: 12.5px auto;
}
.switch__background {
  border-radius: 17.5px;
  -webkit-box-shadow: 0 8.75px 17.5px -4px rgba(32, 15, 55, 0.3);
  box-shadow: 0 8.75px 17.5px -4px rgba(32, 15, 55, 0.3);
  -webkit-transition: box-shadow 0.8s;
  -moz-transition: box-shadow 0.8s;
  -o-transition: box-shadow 0.8s;
  -ms-transition: box-shadow 0.8s;
  transition: box-shadow 0.8s;
  overflow: hidden;
}
.switch__background:before {
  content: "";
  background: -webkit-linear-gradient(#200f37, #272065);
  background: -moz-linear-gradient(#200f37, #272065);
  background: -o-linear-gradient(#200f37, #272065);
  background: -ms-linear-gradient(#200f37, #272065);
  background: linear-gradient(#200f37, #272065);
  border-radius: 17.5px;
  -webkit-transition: opacity 0.8s;
  -moz-transition: opacity 0.8s;
  -o-transition: opacity 0.8s;
  -ms-transition: opacity 0.8s;
  transition: opacity 0.8s;
  overflow: hidden;
  z-index: -2;
}
.switch__background:after {
  content: "";
  opacity: 0;
  background: -webkit-linear-gradient(left, #21d2f2, #b0fff8);
  background: -moz-linear-gradient(left, #21d2f2, #b0fff8);
  background: -o-linear-gradient(left, #21d2f2, #b0fff8);
  background: -ms-linear-gradient(left, #21d2f2, #b0fff8);
  background: linear-gradient(to right, #21d2f2, #b0fff8);
  border-radius: 17.5px;
  -webkit-transition: opacity 0.8s;
  -moz-transition: opacity 0.8s;
  -o-transition: opacity 0.8s;
  -ms-transition: opacity 0.8s;
  transition: opacity 0.8s;
  z-index: -2;
}
.switch__toggle {
  content: "";
  height: 31px;
  width: 31px;
  position: relative;
  display: block;
  top: 2px;
  left: 2px;
  background: #fff;
  border-radius: 100%;
  -webkit-box-shadow: inset 2px -2px 0 #f8e3ef, 0 0 23.333333333333332px rgba(255, 255, 255, 0.65);
  box-shadow: inset 2px -2px 0 #f8e3ef, 0 0 23.333333333333332px rgba(255, 255, 255, 0.65);
  -webkit-transition: left 0.8s, box-shadow 0.8s;
  -moz-transition: left 0.8s, box-shadow 0.8s;
  -o-transition: left 0.8s, box-shadow 0.8s;
  -ms-transition: left 0.8s, box-shadow 0.8s;
  transition: left 0.8s, box-shadow 0.8s;
  overflow: hidden;
  cursor: pointer;
}
.switch__toggle:before,
.switch__toggle:after {
  content: "";
  height: 90%;
  width: 90%;
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: -1;
  opacity: 0;
  -webkit-transition: transition 0.8s, opacity 0.8s;
  -moz-transition: transition 0.8s, opacity 0.8s;
  -o-transition: transition 0.8s, opacity 0.8s;
  -ms-transition: transition 0.8s, opacity 0.8s;
  transition: transition 0.8s, opacity 0.8s;
  background: rgba(255, 255, 255, 0.65);
  filter: blur(2px);
}
.switch__toggle:before {
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
  -moz-transform: translate(-50%, -50%) rotate(45deg);
  -o-transform: translate(-50%, -50%) rotate(45deg);
  -ms-transform: translate(-50%, -50%) rotate(45deg);
  transform: translate(-50%, -50%) rotate(45deg);
}
.switch__toggle:after {
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.switch__moon {
  width: 7px;
  height: 7px;
  display: block;
  position: absolute;
  left: 40%;
  top: 35%;
  background: -webkit-linear-gradient(top right, #f8e3ef, rgba(248, 227, 239, 0));
  background: -moz-linear-gradient(top right, #f8e3ef, rgba(248, 227, 239, 0));
  background: -o-linear-gradient(top right, #f8e3ef, rgba(248, 227, 239, 0));
  background: -ms-linear-gradient(top right, #f8e3ef, rgba(248, 227, 239, 0));
  background: linear-gradient(to bottom left, #f8e3ef, rgba(248, 227, 239, 0));
  -webkit-box-shadow: 7px -7px 0 -2px rgba(248, 227, 239, 0.5);
  box-shadow: 7px -7px 0 -2px rgba(248, 227, 239, 0.5);
  border-radius: 100%;
  -webkit-transition: -webkit-transform 0.8s, opacity 0.8s;
  -moz-transition: -moz-transform 0.8s, opacity 0.8s;
  -o-transition: -o-transform 0.8s, opacity 0.8s;
  -ms-transition: -ms-transform 0.8s, opacity 0.8s;
  transition: transform 0.8s, opacity 0.8s;
}
.switch__moon:before {
  content: "";
  width: 5px;
  height: 5px;
  display: block;
  position: absolute;
  left: -70%;
  top: 195%;
  background: -webkit-linear-gradient(top right, #f8e3ef, rgba(248, 227, 239, 0));
  background: -moz-linear-gradient(top right, #f8e3ef, rgba(248, 227, 239, 0));
  background: -o-linear-gradient(top right, #f8e3ef, rgba(248, 227, 239, 0));
  background: -ms-linear-gradient(top right, #f8e3ef, rgba(248, 227, 239, 0));
  background: linear-gradient(to bottom left, #f8e3ef, rgba(248, 227, 239, 0));
  -webkit-box-shadow: 5px -5px 0 -2px rgba(248, 227, 239, 0.5);
  box-shadow: 5px -5px 0 -2px rgba(248, 227, 239, 0.5);
  border-radius: 100%;
  -webkit-transform: rotate(-60deg);
  -moz-transform: rotate(-60deg);
  -o-transform: rotate(-60deg);
  -ms-transform: rotate(-60deg);
  transform: rotate(-60deg);
}
.switch__moon:after {
  content: "";
  width: 8px;
  height: 8px;
  display: block;
  position: absolute;
  left: 190%;
  top: 55%;
  background: -webkit-linear-gradient(top right, #f8e3ef, rgba(248, 227, 239, 0));
  background: -moz-linear-gradient(top right, #f8e3ef, rgba(248, 227, 239, 0));
  background: -o-linear-gradient(top right, #f8e3ef, rgba(248, 227, 239, 0));
  background: -ms-linear-gradient(top right, #f8e3ef, rgba(248, 227, 239, 0));
  background: linear-gradient(to bottom left, #f8e3ef, rgba(248, 227, 239, 0));
  -webkit-box-shadow: 8px -8px 0 -2px rgba(248, 227, 239, 0.5);
  box-shadow: 8px -8px 0 -2px rgba(248, 227, 239, 0.5);
  border-radius: 100%;
}
.switch__stars {
  width: 2px;
  height: 2px;
  display: block;
  position: absolute;
  left: 60%;
  top: 35%;
  background: #fff;
  -webkit-box-shadow: 6px -6px 0 -1.5px #fff;
  box-shadow: 6px -6px 0 -1.5px #fff;
  filter: blur(0.25px);
  border-radius: 100%;
  -webkit-transition: -webkit-transform 0.8s, opacity 0.8s;
  -moz-transition: -moz-transform 0.8s, opacity 0.8s;
  -o-transition: -o-transform 0.8s, opacity 0.8s;
  -ms-transition: -ms-transform 0.8s, opacity 0.8s;
  transition: transform 0.8s, opacity 0.8s;
}
.switch__stars:before {
  content: "";
  width: 1px;
  height: 1px;
  display: block;
  position: absolute;
  left: 700%;
  top: 560%;
  background: #fff;
  -webkit-box-shadow: 3px -3px 0 -1.5px #fff;
  box-shadow: 3px -3px 0 -1.5px #fff;
  filter: blur(0.25px);
  border-radius: 100%;
  -webkit-transform: rotate(-75deg);
  -moz-transform: rotate(-75deg);
  -o-transform: rotate(-75deg);
  -ms-transform: rotate(-75deg);
  transform: rotate(-75deg);
  -webkit-transition: -webkit-transform 0.8s, opacity 0.8s;
  -moz-transition: -moz-transform 0.8s, opacity 0.8s;
  -o-transition: -o-transform 0.8s, opacity 0.8s;
  -ms-transition: -ms-transform 0.8s, opacity 0.8s;
  transition: transform 0.8s, opacity 0.8s;
}
.switch__stars:after {
  content: "";
  height: 1.25px;
  width: 1.25px;
  position: absolute;
  left: 200%;
  top: 260%;
  opacity: 0;
  background: -webkit-linear-gradient(left, #fff, rgba(255, 255, 255, 0));
  background: -moz-linear-gradient(left, #fff, rgba(255, 255, 255, 0));
  background: -o-linear-gradient(left, #fff, rgba(255, 255, 255, 0));
  background: -ms-linear-gradient(left, #fff, rgba(255, 255, 255, 0));
  background: linear-gradient(to right, #fff, rgba(255, 255, 255, 0));
  filter: blur(0.125px);
  border-radius: 100%;
  -webkit-animation: falling-stars 6.4s cubic-bezier(0.165, 0.84, 0.44, 1) infinite;
  -moz-animation: falling-stars 6.4s cubic-bezier(0.165, 0.84, 0.44, 1) infinite;
  -o-animation: falling-stars 6.4s cubic-bezier(0.165, 0.84, 0.44, 1) infinite;
  -ms-animation: falling-stars 6.4s cubic-bezier(0.165, 0.84, 0.44, 1) infinite;
  animation: falling-stars 6.4s cubic-bezier(0.165, 0.84, 0.44, 1) infinite;
  -webkit-animation-delay: 3.2s;
  -moz-animation-delay: 3.2s;
  -o-animation-delay: 3.2s;
  -ms-animation-delay: 3.2s;
  animation-delay: 3.2s;
}
.switch__clouds {
  height: 7px;
  width: 7px;
  background: #fff;
  position: absolute;
  top: 50%;
  left: -21px;
  display: block;
  -webkit-transition: 1.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  -moz-transition: 1.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  -o-transition: 1.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  -ms-transition: 1.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transition: 1.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border-radius: 50% 50% 0 50%;
}
.switch__clouds:before,
.switch__clouds:after {
  content: "";
  height: 5px;
  width: 5px;
  background: #fff;
  position: absolute;
  border-radius: 50% 50% 0 50%;
  left: -33%;
  bottom: 0;
  -webkit-box-shadow: inset 1px -0.5px 0 #f6f8f8;
  box-shadow: inset 1px -0.5px 0 #f6f8f8;
}
.switch__clouds:after {
  height: 5px;
  width: 5px;
  left: auto;
  right: -30%;
  border-radius: 100%;
}
.switch__input {
  display: none;
}
.switch__input:checked + .switch__background {
  -webkit-box-shadow: 0 8.75px 17.5px -4px rgba(33, 210, 242, 0.3);
  box-shadow: 0 8.75px 17.5px -4px rgba(33, 210, 242, 0.3);
}
.switch__input:checked + .switch__background:before {
  opacity: 0;
}
.switch__input:checked + .switch__background:after {
  opacity: 1;
}
.switch__input:checked + .switch__background .switch__toggle {
  left: 42px;
  -webkit-box-shadow: inset 0 0 0.025px #fff, 0 0 8px #fff;
  box-shadow: inset 0 0 0.025px #fff, 0 0 8px #fff;
  -webkit-animation: overlay 0s forwards;
  -moz-animation: overlay 0s forwards;
  -o-animation: overlay 0s forwards;
  -ms-animation: overlay 0s forwards;
  animation: overlay 0s forwards;
  -webkit-animation-delay: 0.4s;
  -moz-animation-delay: 0.4s;
  -o-animation-delay: 0.4s;
  -ms-animation-delay: 0.4s;
  animation-delay: 0.4s;
}
.switch__input:checked + .switch__background .switch__toggle:before,
.switch__input:checked + .switch__background .switch__toggle:after {
  opacity: 1;
  -webkit-transition-delay: 0.4s;
  -moz-transition-delay: 0.4s;
  -o-transition-delay: 0.4s;
  -ms-transition-delay: 0.4s;
  transition-delay: 0.4s;
}
.switch__input:checked + .switch__background .switch__toggle:before {
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
  -moz-transform: translate(-50%, -50%) rotate(45deg);
  -o-transform: translate(-50%, -50%) rotate(45deg);
  -ms-transform: translate(-50%, -50%) rotate(45deg);
  transform: translate(-50%, -50%) rotate(45deg);
  -webkit-animation: spin-before 12.8s linear infinite;
  -moz-animation: spin-before 12.8s linear infinite;
  -o-animation: spin-before 12.8s linear infinite;
  -ms-animation: spin-before 12.8s linear infinite;
  animation: spin-before 12.8s linear infinite;
}
.switch__input:checked + .switch__background .switch__toggle:after {
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-animation: spin-after 12.8s linear infinite;
  -moz-animation: spin-after 12.8s linear infinite;
  -o-animation: spin-after 12.8s linear infinite;
  -ms-animation: spin-after 12.8s linear infinite;
  animation: spin-after 12.8s linear infinite;
}
.switch__input:checked + .switch__background .switch__moon {
  opacity: 0;
  -webkit-transform: translate(-50%, 100%) rotate(30deg);
  -moz-transform: translate(-50%, 100%) rotate(30deg);
  -o-transform: translate(-50%, 100%) rotate(30deg);
  -ms-transform: translate(-50%, 100%) rotate(30deg);
  transform: translate(-50%, 100%) rotate(30deg);
}
.switch__input:checked + .switch__background .switch__stars {
  opacity: 0;
  -webkit-transform: translateX(-12px);
  -moz-transform: translateX(-12px);
  -o-transform: translateX(-12px);
  -ms-transform: translateX(-12px);
  transform: translateX(-12px);
}
.switch__input:checked + .switch__background .switch__stars:before {
  opacity: 0;
  -webkit-transform: translateX(-9px);
  -moz-transform: translateX(-9px);
  -o-transform: translateX(-9px);
  -ms-transform: translateX(-9px);
  transform: translateX(-9px);
}
.switch__input:checked + .switch__background .switch__stars:after {
  -webkit-animation: none;
  -moz-animation: none;
  -o-animation: none;
  -ms-animation: none;
  animation: none;
}
.switch__input:checked + .switch__background .switch__clouds {
  -webkit-transform: translateX(37.5px);
  -moz-transform: translateX(37.5px);
  -o-transform: translateX(37.5px);
  -ms-transform: translateX(37.5px);
  transform: translateX(37.5px);
  -webkit-transition-delay: 0.2s;
  -moz-transition-delay: 0.2s;
  -o-transition-delay: 0.2s;
  -ms-transition-delay: 0.2s;
  transition-delay: 0.2s;
  -webkit-animation: cloud-move 8s linear infinite;
  -moz-animation: cloud-move 8s linear infinite;
  -o-animation: cloud-move 8s linear infinite;
  -ms-animation: cloud-move 8s linear infinite;
  animation: cloud-move 8s linear infinite;
  -webkit-animation-delay: 1.6s;
  -moz-animation-delay: 1.6s;
  -o-animation-delay: 1.6s;
  -ms-animation-delay: 1.6s;
  animation-delay: 1.6s;
}
.switch__input:checked + .switch__background .switch__clouds:before,
.switch__input:checked + .switch__background .switch__clouds:after {
  -webkit-animation: cloud-move 8s linear infinite;
  -moz-animation: cloud-move 8s linear infinite;
  -o-animation: cloud-move 8s linear infinite;
  -ms-animation: cloud-move 8s linear infinite;
  animation: cloud-move 8s linear infinite;
  -webkit-animation-delay: 1.6s;
  -moz-animation-delay: 1.6s;
  -o-animation-delay: 1.6s;
  -ms-animation-delay: 1.6s;
  animation-delay: 1.6s;
}
@-moz-keyframes overlay {
  0% {
    overflow: hidden;
  }
  100% {
    overflow: visible;
  }
}
@-webkit-keyframes overlay {
  0% {
    overflow: hidden;
  }
  100% {
    overflow: visible;
  }
}
@-o-keyframes overlay {
  0% {
    overflow: hidden;
  }
  100% {
    overflow: visible;
  }
}
@keyframes overlay {
  0% {
    overflow: hidden;
  }
  100% {
    overflow: visible;
  }
}
@-moz-keyframes spin-before {
  0% {
    -webkit-transform: translate(-50%, -50%) rotate(45deg);
    -moz-transform: translate(-50%, -50%) rotate(45deg);
    -o-transform: translate(-50%, -50%) rotate(45deg);
    -ms-transform: translate(-50%, -50%) rotate(45deg);
    transform: translate(-50%, -50%) rotate(45deg);
  }
  100% {
    -webkit-transform: translate(-50%, -50%) rotate(405deg);
    -moz-transform: translate(-50%, -50%) rotate(405deg);
    -o-transform: translate(-50%, -50%) rotate(405deg);
    -ms-transform: translate(-50%, -50%) rotate(405deg);
    transform: translate(-50%, -50%) rotate(405deg);
  }
}
@-webkit-keyframes spin-before {
  0% {
    -webkit-transform: translate(-50%, -50%) rotate(45deg);
    -moz-transform: translate(-50%, -50%) rotate(45deg);
    -o-transform: translate(-50%, -50%) rotate(45deg);
    -ms-transform: translate(-50%, -50%) rotate(45deg);
    transform: translate(-50%, -50%) rotate(45deg);
  }
  100% {
    -webkit-transform: translate(-50%, -50%) rotate(405deg);
    -moz-transform: translate(-50%, -50%) rotate(405deg);
    -o-transform: translate(-50%, -50%) rotate(405deg);
    -ms-transform: translate(-50%, -50%) rotate(405deg);
    transform: translate(-50%, -50%) rotate(405deg);
  }
}
@-o-keyframes spin-before {
  0% {
    -webkit-transform: translate(-50%, -50%) rotate(45deg);
    -moz-transform: translate(-50%, -50%) rotate(45deg);
    -o-transform: translate(-50%, -50%) rotate(45deg);
    -ms-transform: translate(-50%, -50%) rotate(45deg);
    transform: translate(-50%, -50%) rotate(45deg);
  }
  100% {
    -webkit-transform: translate(-50%, -50%) rotate(405deg);
    -moz-transform: translate(-50%, -50%) rotate(405deg);
    -o-transform: translate(-50%, -50%) rotate(405deg);
    -ms-transform: translate(-50%, -50%) rotate(405deg);
    transform: translate(-50%, -50%) rotate(405deg);
  }
}
@keyframes spin-before {
  0% {
    -webkit-transform: translate(-50%, -50%) rotate(45deg);
    -moz-transform: translate(-50%, -50%) rotate(45deg);
    -o-transform: translate(-50%, -50%) rotate(45deg);
    -ms-transform: translate(-50%, -50%) rotate(45deg);
    transform: translate(-50%, -50%) rotate(45deg);
  }
  100% {
    -webkit-transform: translate(-50%, -50%) rotate(405deg);
    -moz-transform: translate(-50%, -50%) rotate(405deg);
    -o-transform: translate(-50%, -50%) rotate(405deg);
    -ms-transform: translate(-50%, -50%) rotate(405deg);
    transform: translate(-50%, -50%) rotate(405deg);
  }
}
@-moz-keyframes spin-after {
  0% {
    -webkit-transform: translate(-50%, -50%) rotate(0);
    -moz-transform: translate(-50%, -50%) rotate(0);
    -o-transform: translate(-50%, -50%) rotate(0);
    -ms-transform: translate(-50%, -50%) rotate(0);
    transform: translate(-50%, -50%) rotate(0);
  }
  100% {
    -webkit-transform: translate(-50%, -50%) rotate(360deg);
    -moz-transform: translate(-50%, -50%) rotate(360deg);
    -o-transform: translate(-50%, -50%) rotate(360deg);
    -ms-transform: translate(-50%, -50%) rotate(360deg);
    transform: translate(-50%, -50%) rotate(360deg);
  }
}
@-webkit-keyframes spin-after {
  0% {
    -webkit-transform: translate(-50%, -50%) rotate(0);
    -moz-transform: translate(-50%, -50%) rotate(0);
    -o-transform: translate(-50%, -50%) rotate(0);
    -ms-transform: translate(-50%, -50%) rotate(0);
    transform: translate(-50%, -50%) rotate(0);
  }
  100% {
    -webkit-transform: translate(-50%, -50%) rotate(360deg);
    -moz-transform: translate(-50%, -50%) rotate(360deg);
    -o-transform: translate(-50%, -50%) rotate(360deg);
    -ms-transform: translate(-50%, -50%) rotate(360deg);
    transform: translate(-50%, -50%) rotate(360deg);
  }
}
@-o-keyframes spin-after {
  0% {
    -webkit-transform: translate(-50%, -50%) rotate(0);
    -moz-transform: translate(-50%, -50%) rotate(0);
    -o-transform: translate(-50%, -50%) rotate(0);
    -ms-transform: translate(-50%, -50%) rotate(0);
    transform: translate(-50%, -50%) rotate(0);
  }
  100% {
    -webkit-transform: translate(-50%, -50%) rotate(360deg);
    -moz-transform: translate(-50%, -50%) rotate(360deg);
    -o-transform: translate(-50%, -50%) rotate(360deg);
    -ms-transform: translate(-50%, -50%) rotate(360deg);
    transform: translate(-50%, -50%) rotate(360deg);
  }
}
@keyframes spin-after {
  0% {
    -webkit-transform: translate(-50%, -50%) rotate(0);
    -moz-transform: translate(-50%, -50%) rotate(0);
    -o-transform: translate(-50%, -50%) rotate(0);
    -ms-transform: translate(-50%, -50%) rotate(0);
    transform: translate(-50%, -50%) rotate(0);
  }
  100% {
    -webkit-transform: translate(-50%, -50%) rotate(360deg);
    -moz-transform: translate(-50%, -50%) rotate(360deg);
    -o-transform: translate(-50%, -50%) rotate(360deg);
    -ms-transform: translate(-50%, -50%) rotate(360deg);
    transform: translate(-50%, -50%) rotate(360deg);
  }
}
@-moz-keyframes falling-stars {
  0% {
    width: 50%;
    opacity: 1;
    -webkit-transform: translate(17.5px, -17.5px) rotate(-45deg);
    -moz-transform: translate(17.5px, -17.5px) rotate(-45deg);
    -o-transform: translate(17.5px, -17.5px) rotate(-45deg);
    -ms-transform: translate(17.5px, -17.5px) rotate(-45deg);
    transform: translate(17.5px, -17.5px) rotate(-45deg);
  }
  5% {
    width: 400%;
    opacity: 1;
  }
  15% {
    -webkit-box-shadow: -25px -7.5px 0 -0.75px #fff;
    box-shadow: -25px -7.5px 0 -0.75px #fff;
  }
  25%,
  100% {
    -webkit-box-shadow: -25px -7.5px 0 -1.5px #fff;
    box-shadow: -25px -7.5px 0 -1.5px #fff;
    width: 400%;
    opacity: 0;
    -webkit-transform: translate(-17.5px, 17.5px) rotate(-45deg);
    -moz-transform: translate(-17.5px, 17.5px) rotate(-45deg);
    -o-transform: translate(-17.5px, 17.5px) rotate(-45deg);
    -ms-transform: translate(-17.5px, 17.5px) rotate(-45deg);
    transform: translate(-17.5px, 17.5px) rotate(-45deg);
  }
}
@-webkit-keyframes falling-stars {
  0% {
    width: 50%;
    opacity: 1;
    -webkit-transform: translate(17.5px, -17.5px) rotate(-45deg);
    -moz-transform: translate(17.5px, -17.5px) rotate(-45deg);
    -o-transform: translate(17.5px, -17.5px) rotate(-45deg);
    -ms-transform: translate(17.5px, -17.5px) rotate(-45deg);
    transform: translate(17.5px, -17.5px) rotate(-45deg);
  }
  5% {
    width: 400%;
    opacity: 1;
  }
  15% {
    -webkit-box-shadow: -25px -7.5px 0 -0.75px #fff;
    box-shadow: -25px -7.5px 0 -0.75px #fff;
  }
  25%,
  100% {
    -webkit-box-shadow: -25px -7.5px 0 -1.5px #fff;
    box-shadow: -25px -7.5px 0 -1.5px #fff;
    width: 400%;
    opacity: 0;
    -webkit-transform: translate(-17.5px, 17.5px) rotate(-45deg);
    -moz-transform: translate(-17.5px, 17.5px) rotate(-45deg);
    -o-transform: translate(-17.5px, 17.5px) rotate(-45deg);
    -ms-transform: translate(-17.5px, 17.5px) rotate(-45deg);
    transform: translate(-17.5px, 17.5px) rotate(-45deg);
  }
}
@-o-keyframes falling-stars {
  0% {
    width: 50%;
    opacity: 1;
    -webkit-transform: translate(17.5px, -17.5px) rotate(-45deg);
    -moz-transform: translate(17.5px, -17.5px) rotate(-45deg);
    -o-transform: translate(17.5px, -17.5px) rotate(-45deg);
    -ms-transform: translate(17.5px, -17.5px) rotate(-45deg);
    transform: translate(17.5px, -17.5px) rotate(-45deg);
  }
  5% {
    width: 400%;
    opacity: 1;
  }
  15% {
    -webkit-box-shadow: -25px -7.5px 0 -0.75px #fff;
    box-shadow: -25px -7.5px 0 -0.75px #fff;
  }
  25%,
  100% {
    -webkit-box-shadow: -25px -7.5px 0 -1.5px #fff;
    box-shadow: -25px -7.5px 0 -1.5px #fff;
    width: 400%;
    opacity: 0;
    -webkit-transform: translate(-17.5px, 17.5px) rotate(-45deg);
    -moz-transform: translate(-17.5px, 17.5px) rotate(-45deg);
    -o-transform: translate(-17.5px, 17.5px) rotate(-45deg);
    -ms-transform: translate(-17.5px, 17.5px) rotate(-45deg);
    transform: translate(-17.5px, 17.5px) rotate(-45deg);
  }
}
@keyframes falling-stars {
  0% {
    width: 50%;
    opacity: 1;
    -webkit-transform: translate(17.5px, -17.5px) rotate(-45deg);
    -moz-transform: translate(17.5px, -17.5px) rotate(-45deg);
    -o-transform: translate(17.5px, -17.5px) rotate(-45deg);
    -ms-transform: translate(17.5px, -17.5px) rotate(-45deg);
    transform: translate(17.5px, -17.5px) rotate(-45deg);
  }
  5% {
    width: 400%;
    opacity: 1;
  }
  15% {
    -webkit-box-shadow: -25px -7.5px 0 -0.75px #fff;
    box-shadow: -25px -7.5px 0 -0.75px #fff;
  }
  25%,
  100% {
    -webkit-box-shadow: -25px -7.5px 0 -1.5px #fff;
    box-shadow: -25px -7.5px 0 -1.5px #fff;
    width: 400%;
    opacity: 0;
    -webkit-transform: translate(-17.5px, 17.5px) rotate(-45deg);
    -moz-transform: translate(-17.5px, 17.5px) rotate(-45deg);
    -o-transform: translate(-17.5px, 17.5px) rotate(-45deg);
    -ms-transform: translate(-17.5px, 17.5px) rotate(-45deg);
    transform: translate(-17.5px, 17.5px) rotate(-45deg);
  }
}
@-moz-keyframes cloud-move {
  0% {
    -webkit-box-shadow: inset 1px -0.5px 0 #f6f8f8, -25px -12px 1.25px -0.5px rgba(33, 210, 242, 0);
    box-shadow: inset 1px -0.5px 0 #f6f8f8, -25px -12px 1.25px -0.5px rgba(33, 210, 242, 0);
  }
  50% {
    -webkit-box-shadow: inset 1px -0.5px 0 #f6f8f8, -8px -12px 1.5px -0.5px #90e8f8;
    box-shadow: inset 1px -0.5px 0 #f6f8f8, -8px -12px 1.5px -0.5px #90e8f8;
  }
  90%,
  100% {
    -webkit-box-shadow: inset 1px -0.5px 0 #f6f8f8, -1px -12px 3.5px 0.5px rgba(33, 210, 242, 0);
    box-shadow: inset 1px -0.5px 0 #f6f8f8, -1px -12px 3.5px 0.5px rgba(33, 210, 242, 0);
  }
}
@-webkit-keyframes cloud-move {
  0% {
    -webkit-box-shadow: inset 1px -0.5px 0 #f6f8f8, -25px -12px 1.25px -0.5px rgba(33, 210, 242, 0);
    box-shadow: inset 1px -0.5px 0 #f6f8f8, -25px -12px 1.25px -0.5px rgba(33, 210, 242, 0);
  }
  50% {
    -webkit-box-shadow: inset 1px -0.5px 0 #f6f8f8, -8px -12px 1.5px -0.5px #90e8f8;
    box-shadow: inset 1px -0.5px 0 #f6f8f8, -8px -12px 1.5px -0.5px #90e8f8;
  }
  90%,
  100% {
    -webkit-box-shadow: inset 1px -0.5px 0 #f6f8f8, -1px -12px 3.5px 0.5px rgba(33, 210, 242, 0);
    box-shadow: inset 1px -0.5px 0 #f6f8f8, -1px -12px 3.5px 0.5px rgba(33, 210, 242, 0);
  }
}
@-o-keyframes cloud-move {
  0% {
    -webkit-box-shadow: inset 1px -0.5px 0 #f6f8f8, -25px -12px 1.25px -0.5px rgba(33, 210, 242, 0);
    box-shadow: inset 1px -0.5px 0 #f6f8f8, -25px -12px 1.25px -0.5px rgba(33, 210, 242, 0);
  }
  50% {
    -webkit-box-shadow: inset 1px -0.5px 0 #f6f8f8, -8px -12px 1.5px -0.5px #90e8f8;
    box-shadow: inset 1px -0.5px 0 #f6f8f8, -8px -12px 1.5px -0.5px #90e8f8;
  }
  90%,
  100% {
    -webkit-box-shadow: inset 1px -0.5px 0 #f6f8f8, -1px -12px 3.5px 0.5px rgba(33, 210, 242, 0);
    box-shadow: inset 1px -0.5px 0 #f6f8f8, -1px -12px 3.5px 0.5px rgba(33, 210, 242, 0);
  }
}
@keyframes cloud-move {
  0% {
    -webkit-box-shadow: inset 1px -0.5px 0 #f6f8f8, -25px -12px 1.25px -0.5px rgba(33, 210, 242, 0);
    box-shadow: inset 1px -0.5px 0 #f6f8f8, -25px -12px 1.25px -0.5px rgba(33, 210, 242, 0);
  }
  50% {
    -webkit-box-shadow: inset 1px -0.5px 0 #f6f8f8, -8px -12px 1.5px -0.5px #90e8f8;
    box-shadow: inset 1px -0.5px 0 #f6f8f8, -8px -12px 1.5px -0.5px #90e8f8;
  }
  90%,
  100% {
    -webkit-box-shadow: inset 1px -0.5px 0 #f6f8f8, -1px -12px 3.5px 0.5px rgba(33, 210, 242, 0);
    box-shadow: inset 1px -0.5px 0 #f6f8f8, -1px -12px 3.5px 0.5px rgba(33, 210, 242, 0);
  }
} */
