@import url("https://fonts.cdnfonts.com/css/sf-pro-display");
:root {
  --primaryLight: ;
  --primaryInverse: ;
  --magic: #5865f2;
  --gradient: linear-gradient(to right top, #5948ff, #6153ff, #695eff, #7168ff, #7972ff);
  --bodyBg: #FFFFFF;
  --navBg: #FFFFFF;
  --sufraceBg: #FFFFFF;
  --inputBg: #FFFFFF;
  --btnBg: var(--magic);
  --iphoneBg: -webkit-linear-gradient(var(--magic),var(--magic),var(--pink));
  --iphoneSide: #FAE1E5;
  --primaryTxt: #000000;
  --whiteTxt: #FFFFFF;
  --h1Txt: #000000;
  --h5Txt: var(--magic);
  --pTxt: #000000;
  --aTxt: #000000;
  --aTxtHover: var(--magic);
  --inputTxt: #000000;
  --btnTxt: #FFFFFF;
  --finePrintTxt: #43414E;
  --shadow: 0 30px 30px -25px rgba(65, 51, 183, 0.25);
  --shadow: 0 10px 40px 0 rgba(47,47,47,.1);
  --rounded: 1rem;
  --outline: var(--magic);
  --sun: #FFF;
  --pink: #f48fb1;
  --violet: #7972ff;
  --purple: var(--magic);
  --green: #11B981;
}

.dark:root {
  --primaryLight: ;
  --primaryInverse: ;
  --magic: #5865f2;
  --gradient: linear-gradient(to right top, #5948ff, #6153ff, #695eff, #7168ff, #7972ff);
  --bodyBg: #000000;
  --navBg: #000000;
  --surfaceBg: #222538;
  --inputBg: #2F3349;
  --btnBg: var(--magic);
  --iphoneBg: -webkit-linear-gradient(var(--magic),var(--magic),var(--pink));
  --iphoneSide: #000;
  --primaryTxt: #FFFFFF;
  --whiteTxt: #FFFFFF;
  --h1Txt: #FFFFFF;
  --h5Txt: var(--magic);
  --h5Txt: var(--pink);
  --pTxt: #FFFFFF;
  --aTxt: #FFFFFF;
  --aTxtHover: var(--pink);
  --inputTxt: #FFFFFF;
  --btnTxt: #FFFFFF;
  --finePrintTxt: #b9b9b9;
  --shadow: 0 30px 30px -25px rgba(65, 51, 183, 0.25);
  --shadow: 0 10px 40px 0 rgba(47,47,47,.1);
  --rounded: 1rem;
  --outline: var(--magic);
  --sun: #5E789C;
  --pink: #f48fb1;
  --violet: #7972ff;
  --purple: var(--magic);
  --green: #2ECC71;
}

#dark-mode {
  z-index: 99;
  max-height: 75px;
  max-width: 42px;
  min-height: 75px;
  min-width: 42px;
  background-color: var(--bodyBg);
  border: 1px solid #d7def4;
  border-radius: 100px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  grid-gap: 5px;
  margin-top: auto;
  margin-bottom: auto;
  padding: 6px;
  position: fixed;
  top: 50%;
  bottom: auto;
  left: auto;
  right: 2%;
}

#dark-mode .icon {
  color: var(--txt);
}

#dark-mode #sun {
  color: var(--sun);
}

#dark-mode .active {
  background-color: var(--magic);
  border-radius: 100%;
  color: white;
  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;
  max-height: 28px;
  max-width: 28px;
  min-height: 28px;
  min-width: 28px;
  padding: 5px;
  -webkit-transition: .2s;
  transition: .2s;
}

.violet-bg {
  z-index: -1;
  max-height: 300px;
  max-width: 300px;
  min-height: 300px;
  min-width: 300px;
  -webkit-filter: blur(230px);
          filter: blur(230px);
  -webkit-filter: blur(200px);
          filter: blur(200px);
  background-color: #5257ff;
  border-radius: 100%;
  position: absolute;
  right: 0;
  display: none;
}

.blue-bg {
  z-index: -1;
  max-height: 500px;
  max-width: 390px;
  min-height: 360px;
  min-width: 360px;
  -webkit-filter: blur(300px);
          filter: blur(300px);
  -webkit-filter: blur(260px);
          filter: blur(260px);
  background-color: #2563eb;
  border-radius: 100%;
  position: absolute;
  display: none;
}

.hidden {
  display: block;
}

.show {
  display: block;
}

@-webkit-keyframes rotate {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@keyframes rotate {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

.gradient {
  --size: 500px;
  --speed: 50s;
  --easing: cubic-bezier(0.8, 0.2, 0.2, 0.8);
  width: var(--size);
  height: var(--size);
  -webkit-filter: blur(calc(var(--size) / 5));
          filter: blur(calc(var(--size) / 5));
  background-image: -webkit-gradient(linear, left top, left bottom, from(#5732F2), to(#2563eb));
  background-image: linear-gradient(#5732F2, #2563eb);
  opacity: .8;
  -webkit-animation: rotate var(--speed) var(--easing) alternate infinite;
          animation: rotate var(--speed) var(--easing) alternate infinite;
  border-radius: 30% 70% 70% 30%/30% 30% 70% 70%;
  position: absolute;
}

@media (min-width: 720px) {
  .gradient {
    --size: 500px;
  }
}

* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-family: 'Montserrat', sans-serif;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  background-color: var(--bodyBg);
  margin: 0;
  overflow-x: hidden;
}

section {
  padding: 5rem 0;
}

@media (min-width: 1200px) {
  .container {
    max-width: 1200px;
  }
}

h1 {
  color: var(--h1Txt);
  font-size: 60px;
  font-weight: 700;
  line-height: 1.3;
  font-weight: bold;
}

.highlighted {
  color: var(--magic);
  background: -webkit-linear-gradient(right, var(--magic), var(--pink));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

h5 {
  color: var(--h5Txt);
  font-size: 24px;
  font-weight: 500;
  line-height: 1.6;
}

p {
  color: var(--pTxt);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.7;
  margin: 1rem 0;
}

.cta-btn {
  background-color: var(--btnBg);
  background-image: var(--gradient);
  border: none;
  border-radius: 100px;
  color: var(--btnTxt);
  cursor: pointer;
  font-size: 18px;
  font-weight: 700;
  margin: 1rem 0;
  min-width: 200px;
  outline: none;
  padding: 1rem 3rem;
  white-space: nowrap;
}

.cta-btn i {
  margin-left: 1rem;
}

#header {
  padding-top: 20px;
  padding-bottom: 0;
  position: fixed;
  top: 0;
  -webkit-transition: top 0.3s;
  transition: top 0.3s;
  width: 100%;
  z-index: 2;
}

#header nav {
  background-color: var(--navBg);
  border-radius: var(--rounded);
  -webkit-box-shadow: var(--shadow);
          box-shadow: var(--shadow);
  padding: 0;
}

#header nav .navbar-logo {
  cursor: pointer;
  padding: 1rem;
  -webkit-transition: all .1s ease-in-out;
  transition: all .1s ease-in-out;
}

#header nav .navbar-logo img {
  cursor: pointer;
}

#header nav .logo:hover {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
  -webkit-transition: all .1s ease-in-out;
  transition: all .1s ease-in-out;
}

#header nav .menu-btn {
  margin: 1rem;
  padding: 1rem;
}

#header nav .menu {
  padding: 1rem;
}

#header nav .menu a {
  color: var(--aTxt);
  cursor: pointer;
  font-size: 18px;
  font-weight: 400;
  padding: 1rem;
  text-decoration: none;
}

#header nav .menu a:hover {
  color: var(--aTxtHover);
}

#header nav .navbar-toggler {
  background-color: var(--magic);
  margin: 1rem;
}

#hero {
  padding-top: 0;
}

#hero .title-wrapper h1 {
  font-size: 72px;
}

@-webkit-keyframes background-pan {
  from {
    background-position: 0% center;
  }
  to {
    background-position: -200% center;
  }
}

@keyframes background-pan {
  from {
    background-position: 0% center;
  }
  to {
    background-position: -200% center;
  }
}

@-webkit-keyframes scale {
  from, to {
    -webkit-transform: scale(0);
            transform: scale(0);
  }
  50% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

@keyframes scale {
  from, to {
    -webkit-transform: scale(0);
            transform: scale(0);
  }
  50% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

@keyframes rotate {
  from {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(180deg);
            transform: rotate(180deg);
  }
}

#hero .title-wrapper h1 > .magic {
  display: inline-block;
  position: relative;
}

#hero .title-wrapper h1 > .magic > .magic-star {
  --size: clamp(20px, 1.5vw, 30px);
  -webkit-animation: scale 700ms ease forwards;
          animation: scale 700ms ease forwards;
  display: block;
  height: var(--size);
  left: var(--star-left);
  position: absolute;
  top: var(--star-top);
  width: var(--size);
}

#hero .title-wrapper h1 > .magic > .magic-star > svg {
  -webkit-animation: rotate 1000ms linear infinite;
          animation: rotate 1000ms linear infinite;
  display: block;
  opacity: 0.7;
}

#hero .title-wrapper h1 > .magic > .magic-star > svg > path {
  fill: var(--violet);
}

#hero .title-wrapper h1 > .magic > .magic-text {
  -webkit-animation: background-pan 3s linear infinite;
          animation: background-pan 3s linear infinite;
  background: -webkit-gradient(linear, left top, right top, from(var(--purple)), color-stop(var(--violet)), color-stop(var(--pink)), to(var(--purple)));
  background: linear-gradient(to right, var(--purple), var(--violet), var(--pink), var(--purple));
  background-size: 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

#hero .title-wrapper button {
  padding: 24px 48px;
}

#hero .wrapper {
  height: 100%;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 75vh;
}

#hero .wrapper .carousel {
  position: relative;
  width: 100%;
  max-width: 500px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

#hero .wrapper .carousel .item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: absolute;
  width: 100%;
  padding: 0 12px;
  opacity: 0;
  -webkit-filter: drop-shadow(0 2px 2px rgba(65, 51, 183, 0.25));
          filter: drop-shadow(0 2px 2px rgba(65, 51, 183, 0.25));
  will-change: transform, opacity;
  -webkit-animation: carousel-animate-vertical 27s linear infinite;
  animation: carousel-animate-vertical 27s linear infinite;
}

#hero .wrapper .carousel .item:nth-child(1) {
  -webkit-animation-delay: calc(3s * -1);
  animation-delay: calc(3s * -1);
}

#hero .wrapper .carousel .item:nth-child(2) {
  -webkit-animation-delay: calc(3s * 0);
  animation-delay: calc(3s * 0);
}

#hero .wrapper .carousel .item:nth-child(3) {
  -webkit-animation-delay: calc(3s * 1);
  animation-delay: calc(3s * 1);
}

#hero .wrapper .carousel .item:nth-child(4) {
  -webkit-animation-delay: calc(3s * 2);
  animation-delay: calc(3s * 2);
}

#hero .wrapper .carousel .item:nth-child(5) {
  -webkit-animation-delay: calc(3s * 3);
  animation-delay: calc(3s * 3);
}

#hero .wrapper .carousel .item:nth-child(6) {
  -webkit-animation-delay: calc(3s * 4);
  animation-delay: calc(3s * 4);
}

#hero .wrapper .carousel .item:nth-child(7) {
  -webkit-animation-delay: calc(3s * 5);
  animation-delay: calc(3s * 5);
}

#hero .wrapper .carousel .item:nth-child(8) {
  -webkit-animation-delay: calc(3s * 6);
  animation-delay: calc(3s * 6);
}

#hero .wrapper .carousel .item:last-child {
  -webkit-animation-delay: calc(-3s * 2);
  animation-delay: calc(-3s * 2);
}

#hero .wrapper .carousel .item .item-head {
  border-radius: 50%;
  background-color: #d7f7fc;
  width: 90px;
  height: 90px;
  padding: 14px;
  position: relative;
  margin-right: -45px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 50px;
}

#hero .wrapper .carousel .item .item-head img {
  width: 96px;
  height: 96px;
  border-radius: 100px;
}

#hero .wrapper .carousel .item .item-body {
  width: 100%;
  background-color: var(--surfaceBg);
  border-radius: var(--rounded);
  -webkit-box-shadow: var(--shadow);
          box-shadow: var(--shadow);
  padding: 16px 20px 16px 70px;
}

#hero .wrapper .carousel .item .item-body .message {
  color: var(--primaryTxt);
  font-size: 20px;
  margin-top: 10px;
  line-height: 1;
}

#hero .wrapper .carousel .item .item-body .message:before {
  content: open-quote;
  margin-right: .125rem;
}

#hero .wrapper .carousel .item .item-body .message:after {
  content: close-quote;
  margin-left: .125rem;
}

#hero .wrapper .carousel .item .item-body .message:before, #hero .wrapper .carousel .item .item-body .message:after {
  color: orange;
  font-size: 1.5rem;
}

#hero .wrapper .carousel .item .item-body .name {
  color: #5c5c7a;
  margin-left: 2rem;
}

@-webkit-keyframes carousel-animate-vertical {
  0% {
    -webkit-transform: translateY(100%) scale(0.5);
            transform: translateY(100%) scale(0.5);
    opacity: 0;
    visibility: hidden;
  }
  3%,
  11.1111111111% {
    -webkit-transform: translateY(100%) scale(0.7);
            transform: translateY(100%) scale(0.7);
    opacity: 0.4;
    visibility: visible;
  }
  14.1111111111%,
  22.2222222222% {
    -webkit-transform: translateY(0) scale(1);
            transform: translateY(0) scale(1);
    opacity: 1;
    visibility: visible;
  }
  25.2222222222%,
  33.3333333333% {
    -webkit-transform: translateY(-100%) scale(0.7);
            transform: translateY(-100%) scale(0.7);
    opacity: 0.4;
    visibility: visible;
  }
  36.3333333333% {
    -webkit-transform: translateY(-100%) scale(0.5);
            transform: translateY(-100%) scale(0.5);
    opacity: 0;
    visibility: visible;
  }
  100% {
    -webkit-transform: translateY(-100%) scale(0.5);
            transform: translateY(-100%) scale(0.5);
    opacity: 0;
    visibility: hidden;
  }
}

@keyframes carousel-animate-vertical {
  0% {
    -webkit-transform: translateY(100%) scale(0.5);
            transform: translateY(100%) scale(0.5);
    opacity: 0;
    visibility: hidden;
  }
  3%,
  11.1111111111% {
    -webkit-transform: translateY(100%) scale(0.7);
            transform: translateY(100%) scale(0.7);
    opacity: 0.4;
    visibility: visible;
  }
  14.1111111111%,
  22.2222222222% {
    -webkit-transform: translateY(0) scale(1);
            transform: translateY(0) scale(1);
    opacity: 1;
    visibility: visible;
  }
  25.2222222222%,
  33.3333333333% {
    -webkit-transform: translateY(-100%) scale(0.7);
            transform: translateY(-100%) scale(0.7);
    opacity: 0.4;
    visibility: visible;
  }
  36.3333333333% {
    -webkit-transform: translateY(-100%) scale(0.5);
            transform: translateY(-100%) scale(0.5);
    opacity: 0;
    visibility: visible;
  }
  100% {
    -webkit-transform: translateY(-100%) scale(0.5);
            transform: translateY(-100%) scale(0.5);
    opacity: 0;
    visibility: hidden;
  }
}

#about-1 {
}

#about-1 .panel {
  padding: 3rem;
  -webkit-box-shadow: var(--shadow);
          box-shadow: var(--shadow);
  border-radius: var(--rounded);
}

#about-1 * {
  font-family: 'SF Pro Display', sans-serif;
}

#about-1 #wrapper {
  height: 520px;
  width: 800px;
  position: relative;
  -webkit-perspective: 6000px;
          perspective: 6000px;
  letter-spacing: 1px;
}

#about-1 #iphone {
  height: 760px;
  width: 372px;
  border-radius: 50px;
  position: relative;
  background: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  left: 206px;
  top: -140px;
  -webkit-transform: rotateX(54deg) rotateZ(-46deg);
          transform: rotateX(54deg) rotateZ(-46deg);
  -webkit-transform-style: preserve-3d;
          transform-style: preserve-3d;
}

@media screen and (max-width: 991px) {
  #about-1 #iphone {
    left: 50px;
  }
}

#about-1 #side {
  background: #000000;
  background: var(--iphoneSide);
  width: 393px;
  height: 780px;
  border-top-left-radius: 77px;
  border-bottom-left-radius: 49px;
  border-bottom-right-radius: 86px;
  border-top-right-radius: 70px;
  position: absolute;
  top: 0px;
  left: -15px;
  -webkit-box-shadow: inset #3D3E42 0 0 15px 9px;
          box-shadow: inset #3D3E42 0 0 15px 9px;
  -webkit-transform: translateZ(-10px);
          transform: translateZ(-10px);
}

#about-1 #front {
  width: 362px;
  height: 750px;
  border-radius: 49px;
  position: absolute;
  background-image: -webkit-linear-gradient(-27deg, #444, #000 10%, #000 42%, #333, #000 57%, #000 91%, #444);
  left: 5px;
  top: 5px;
  -webkit-box-shadow: inset #000 0 0 0 4px, #555 0px 0 3px 0px, #222 -3px 2px, #000 -5px 5px, #595959 -7px 6px 1px, #6D6D6D -7px 6px 9px;
          box-shadow: inset #000 0 0 0 4px, #555 0px 0 3px 0px, #222 -3px 2px, #000 -5px 5px, #595959 -7px 6px 1px, #6D6D6D -7px 6px 9px;
  -webkit-transform: translateZ(1px);
          transform: translateZ(1px);
}

#about-1 #front-cover {
  width: 344px;
  height: 734px;
  background: #000;
  border-radius: 39px;
  position: absolute;
  top: 8px;
  left: 9px;
}

#about-1 #camera {
  width: 11px;
  height: 11px;
  background: #000;
  position: absolute;
  top: 35px;
  left: 124px;
  border-radius: 50%;
  -webkit-box-shadow: inset #666 -5px 2px 9px -2px;
          box-shadow: inset #666 -5px 2px 9px -2px;
}

#about-1 #camera div {
  width: 6px;
  height: 6px;
  background: radial-gradient(#E1E4F5, #0D2B69 33%);
  background-position: -1px -1px;
  position: absolute;
  top: 3px;
  left: 3px;
  border-radius: 50%;
}

#about-1 #speaker {
  width: 50px;
  height: 4px;
  border-radius: 2px;
  background: #555;
  position: absolute;
  top: 39px;
  left: 156px;
  -webkit-box-shadow: inset #222 0 0px 4px;
          box-shadow: inset #222 0 0px 4px;
}

#about-1 #volume {
  height: 128px;
  width: 11px;
  border-radius: 10px;
  position: absolute;
  background: #3D3E42;
  top: 171px;
  left: -20px;
  -webkit-transform: rotateY(95deg);
          transform: rotateY(95deg);
  -webkit-transform-style: preserve-3d;
          transform-style: preserve-3d;
  -webkit-box-shadow: inset #3D3E42 4px 0 8px 1px, #3D3E42 -1px 0px 2px;
          box-shadow: inset #3D3E42 4px 0 8px 1px, #3D3E42 -1px 0px 2px;
}

#about-1 #volume div {
  width: 8px;
  height: 55px;
  background: #000;
  border-radius: 10px;
  position: absolute;
  -webkit-box-shadow: #3D3E42 -1px 1px, #3D3E42 -1px 3px, #000 -3px 3px, inset #3D3E42 -3px 0 3px;
          box-shadow: #3D3E42 -1px 1px, #3D3E42 -1px 3px, #000 -3px 3px, inset #3D3E42 -3px 0 3px;
}

#about-1 #volume div:first-child {
  top: 2px;
  left: 4px;
}

#about-1 #volume div:last-child {
  top: 69px;
  left: 4px;
}

#about-1 #toggler {
  height: 34px;
  width: 8px;
  border-radius: 10px;
  position: absolute;
  background: #ff1a00;
  top: 105px;
  left: -20px;
  -webkit-transform: rotateY(95deg);
          transform: rotateY(95deg);
  -webkit-transform-style: preserve-3d;
          transform-style: preserve-3d;
  -webkit-box-shadow: inset #3D3E42 4px 0 8px 1px, #3D3E42 -1px 0px 2px;
          box-shadow: inset #3D3E42 4px 0 8px 1px, #3D3E42 -1px 0px 2px;
}

#about-1 #toggler div {
  width: 4px;
  height: 31px;
  background: #000;
  border-radius: 10px;
  position: absolute;
  -webkit-box-shadow: #3D3E42 -1px 1px, #3D3E42 -2px 3px, #3D3E42 -3px 3px, inset #000 -3px 0 3px;
          box-shadow: #3D3E42 -1px 1px, #3D3E42 -2px 3px, #3D3E42 -3px 3px, inset #000 -3px 0 3px;
  top: -1px;
  left: 6px;
}

#about-1 #lightning {
  width: 48px;
  height: 12px;
  border-radius: 10px;
  background: #3F3F3F;
  -webkit-transform: rotateX(90deg) translate3d(0px, 1px, 0px);
          transform: rotateX(90deg) translate3d(0px, 1px, 0px);
  top: 771px;
  position: absolute;
  left: 139px;
  -webkit-box-shadow: inset #000 -1px 1px 0px 2px, #515258 0px 0px 0 1px, inset #000 0 -3px 10px, #3D3E42 1px 0 0 1px;
          box-shadow: inset #000 -1px 1px 0px 2px, #515258 0px 0px 0 1px, inset #000 0 -3px 10px, #3D3E42 1px 0 0 1px;
}

#about-1 #bottom-speaker {
  position: absolute;
  -webkit-transform: rotateX(90deg);
          transform: rotateX(90deg);
  top: 781px;
  left: 70px;
}

#about-1 #bottom-speaker div {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #6C6D72;
  position: absolute;
  -webkit-box-shadow: inset #000 1px -1px 4px 1px, #000 1px 0px;
          box-shadow: inset #000 1px -1px 4px 1px, #000 1px 0px;
}

#about-1 #bottom-speaker div:nth-child(2) {
  left: 150px;
}

#about-1 #bottom-speaker div:nth-child(3) {
  left: 162px;
}

#about-1 #bottom-speaker div:nth-child(4) {
  left: 174px;
}

#about-1 #bottom-speaker div:nth-child(5) {
  left: 186px;
}

#about-1 #bottom-speaker div:nth-child(6) {
  left: 198px;
}

#about-1 #bottom-speaker div:nth-child(7) {
  left: 210px;
}

#about-1 #screws {
  position: absolute;
  top: 780px;
  left: 120px;
  -webkit-transform: rotateX(90deg);
          transform: rotateX(90deg);
}

#about-1 #screws div {
  position: absolute;
  width: 8px;
  height: 8px;
  background: #5f5c5c;
  border-radius: 50%;
  top: 0;
  z-index: 4;
  -webkit-box-shadow: inset #000  0 0 0px 2px, #000 1px 0px;
          box-shadow: inset #000  0 0 0px 2px, #000 1px 0px;
}

#about-1 #screws div:last-child {
  left: 70px;
}

#about-1 #lines {
  position: absolute;
  top: 82px;
  left: -32px;
  display: none;
}

#about-1 #lines > div:last-child {
  top: 634px;
}

#about-1 #lines div {
  width: 7px;
  height: 11px;
  position: absolute;
  -webkit-transform-style: preserve-3d;
          transform-style: preserve-3d;
  -webkit-transform-origin: 100% 100%;
          transform-origin: 100% 100%;
}

#about-1 #lines > div {
  background: -webkit-linear-gradient(right, #393A3C, #5A595E);
  -webkit-transform: rotateY(90deg);
          transform: rotateY(90deg);
}

#about-1 #lines > div > div {
  background: -webkit-linear-gradient(right, #5A595E, #87868A);
  -webkit-transform: rotateY(17deg);
          transform: rotateY(17deg);
  left: -6px;
}

#about-1 #lines > div > div > div {
  background: -webkit-linear-gradient(right, #87868A, #A8A6AD);
  -webkit-transform: rotateY(17deg);
          transform: rotateY(17deg);
  left: -6px;
}

#about-1 #shadow {
  width: 350px;
  height: 755px;
  background: black;
  position: absolute;
  top: 5px;
  left: 0;
  -webkit-transform: translateZ(-17px);
          transform: translateZ(-17px);
  -webkit-transform-style: preserve-3d;
          transform-style: preserve-3d;
  -webkit-box-shadow: #000 0 0 10px 15px;
          box-shadow: #000 0 0 10px 15px;
  opacity: 0.4;
  border-top-left-radius: 76px;
  border-top-right-radius: 200px;
  border-bottom-left-radius: 40px;
  border-bottom-right-radius: 56px;
}

#about-1 #screen {
  background: var(--iphoneBg);
  width: 357px;
  height: 745px;
  border-radius: 45px;
  position: relative;
  top: 5px;
  left: 0px;
  font-weight: 300;
  color: #fff;
  background-size: 200% 100%;
  overflow: hidden;
}

#about-1 #time {
  font-size: 86px;
  position: relative;
  text-align: center;
}

#about-1 #date {
  font-size: 20px;
  position: relative;
  text-align: center;
}

#about-1 #bottom {
  width: 125px;
  height: 5px;
  border-radius: 5px;
  background: #F1F1F1;
  position: absolute;
  top: 730px;
  left: 115px;
}

#about-1 #top {
  width: 37px;
  height: 7px;
  border-radius: 5px;
  background: #D7FFFF;
  position: absolute;
  top: 10px;
  left: 149px;
}

#about-1 #signal {
  position: absolute;
  top: 15px;
  left: 30px;
}

#about-1 #signal div {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid #fff;
  position: absolute;
}

#about-1 #signal div:nth-child(2) {
  left: 9px;
}

#about-1 #signal div:nth-child(3) {
  left: 18px;
}

#about-1 #signal div:nth-child(4) {
  left: 27px;
}

#about-1 #signal div:nth-child(5) {
  left: 36px;
  background: none;
}

#about-1 #battery {
  position: absolute;
  top: 3px;
  left: 270px;
  font-size: 13px;
}

#about-1 #battery > div:last-child {
  width: 27px;
  height: 9px;
  border: 1px solid #fff;
  position: absolute;
  top: 4px;
  left: 27px;
  border-radius: 2px;
}

#about-1 #battery div div:first-child {
  width: 21px;
  height: 7px;
  background: #FFF;
  position: absolute;
  top: 1px;
  left: 1px;
}

#about-1 #battery div div:last-child {
  width: 1px;
  height: 6px;
  background: #FFF;
  position: absolute;
  left: 29px;
  top: 2px;
  border-radius: 0 1px 1px 0;
}

#about-1 #circle {
  width: 50px;
  height: 50px;
  background: none;
  border-radius: 50%;
  -webkit-box-shadow: rgba(255, 255, 255, 0.1) 160px 335px, rgba(255, 255, 255, 0.1) 120px 275px 0 12px, rgba(255, 255, 255, 0.1) 60px 355px 0 23px, rgba(255, 255, 255, 0.1) 230px 445px 0 -8px, rgba(255, 255, 255, 0.1) 60px 125px, rgba(255, 255, 255, 0.1) 260px 145px 0 12px, rgba(255, 255, 255, 0.1) 300px 145px 0 23px, rgba(255, 255, 255, 0.1) 100px 85px 0 -8px, rgba(255, 255, 255, 0.1) 50px 155px, rgba(255, 255, 255, 0.1) 150px 273px 0 -2px, rgba(255, 255, 255, 0.1) 50px 555px 0 23px, rgba(255, 255, 255, 0.1) 180px 5px 0 -8px;
          box-shadow: rgba(255, 255, 255, 0.1) 160px 335px, rgba(255, 255, 255, 0.1) 120px 275px 0 12px, rgba(255, 255, 255, 0.1) 60px 355px 0 23px, rgba(255, 255, 255, 0.1) 230px 445px 0 -8px, rgba(255, 255, 255, 0.1) 60px 125px, rgba(255, 255, 255, 0.1) 260px 145px 0 12px, rgba(255, 255, 255, 0.1) 300px 145px 0 23px, rgba(255, 255, 255, 0.1) 100px 85px 0 -8px, rgba(255, 255, 255, 0.1) 50px 155px, rgba(255, 255, 255, 0.1) 150px 273px 0 -2px, rgba(255, 255, 255, 0.1) 50px 555px 0 23px, rgba(255, 255, 255, 0.1) 180px 5px 0 -8px;
  -webkit-animation: circle 30s linear infinite alternate;
          animation: circle 30s linear infinite alternate;
}

@-webkit-keyframes circle {
  0% {
    -webkit-box-shadow: rgba(255, 255, 255, 0.1) 160px 335px, rgba(255, 255, 255, 0.1) 120px 275px 0 12px, rgba(255, 255, 255, 0.1) 60px 355px 0 23px, rgba(255, 255, 255, 0.1) 230px 445px 0 -8px, rgba(255, 255, 255, 0.1) 60px 125px, rgba(255, 255, 255, 0.1) 260px 145px 0 12px, rgba(255, 255, 255, 0.1) 300px 145px 0 23px, rgba(255, 255, 255, 0.1) 100px 85px 0 -8px, rgba(255, 255, 255, 0.1) 350px 555px, rgba(255, 255, 255, 0.1) 350px 273px 0 -2px, rgba(255, 255, 255, 0.1) 150px 355px 0 23px, rgba(255, 255, 255, 0.1) 180px 205px 0 -8px, rgba(255, 255, 255, 0.1) 0px 0px 0 -8px, rgba(255, 255, 255, 0.1) 100px 555px 0 10px;
            box-shadow: rgba(255, 255, 255, 0.1) 160px 335px, rgba(255, 255, 255, 0.1) 120px 275px 0 12px, rgba(255, 255, 255, 0.1) 60px 355px 0 23px, rgba(255, 255, 255, 0.1) 230px 445px 0 -8px, rgba(255, 255, 255, 0.1) 60px 125px, rgba(255, 255, 255, 0.1) 260px 145px 0 12px, rgba(255, 255, 255, 0.1) 300px 145px 0 23px, rgba(255, 255, 255, 0.1) 100px 85px 0 -8px, rgba(255, 255, 255, 0.1) 350px 555px, rgba(255, 255, 255, 0.1) 350px 273px 0 -2px, rgba(255, 255, 255, 0.1) 150px 355px 0 23px, rgba(255, 255, 255, 0.1) 180px 205px 0 -8px, rgba(255, 255, 255, 0.1) 0px 0px 0 -8px, rgba(255, 255, 255, 0.1) 100px 555px 0 10px;
  }
  100% {
    -webkit-box-shadow: rgba(255, 255, 255, 0.1) 70px 10px, rgba(255, 255, 255, 0.1) 300px 205px 0 12px, rgba(255, 255, 255, 0.1) 0px 155px 0 23px, rgba(255, 255, 255, 0.1) 330px 45px 0 -8px, rgba(255, 255, 255, 0.1) 460px 325px, rgba(255, 255, 255, 0.1) 0px 445px 0 12px, rgba(255, 255, 255, 0.1) 300px 145px 0 23px, rgba(255, 255, 255, 0.1) 100px 85px 0 -8px, rgba(255, 255, 255, 0.1) 50px 155px, rgba(255, 255, 255, 0.1) 150px 273px 0 -2px, rgba(255, 255, 255, 0.1) 0px 555px 0 23px, rgba(255, 255, 255, 0.1) 180px 5px 0 -8px, rgba(255, 255, 255, 0.1) 300px 555px 0 -8px, rgba(255, 255, 255, 0.1) 350px 355px 0 10px;
            box-shadow: rgba(255, 255, 255, 0.1) 70px 10px, rgba(255, 255, 255, 0.1) 300px 205px 0 12px, rgba(255, 255, 255, 0.1) 0px 155px 0 23px, rgba(255, 255, 255, 0.1) 330px 45px 0 -8px, rgba(255, 255, 255, 0.1) 460px 325px, rgba(255, 255, 255, 0.1) 0px 445px 0 12px, rgba(255, 255, 255, 0.1) 300px 145px 0 23px, rgba(255, 255, 255, 0.1) 100px 85px 0 -8px, rgba(255, 255, 255, 0.1) 50px 155px, rgba(255, 255, 255, 0.1) 150px 273px 0 -2px, rgba(255, 255, 255, 0.1) 0px 555px 0 23px, rgba(255, 255, 255, 0.1) 180px 5px 0 -8px, rgba(255, 255, 255, 0.1) 300px 555px 0 -8px, rgba(255, 255, 255, 0.1) 350px 355px 0 10px;
  }
}

@keyframes circle {
  0% {
    -webkit-box-shadow: rgba(255, 255, 255, 0.1) 160px 335px, rgba(255, 255, 255, 0.1) 120px 275px 0 12px, rgba(255, 255, 255, 0.1) 60px 355px 0 23px, rgba(255, 255, 255, 0.1) 230px 445px 0 -8px, rgba(255, 255, 255, 0.1) 60px 125px, rgba(255, 255, 255, 0.1) 260px 145px 0 12px, rgba(255, 255, 255, 0.1) 300px 145px 0 23px, rgba(255, 255, 255, 0.1) 100px 85px 0 -8px, rgba(255, 255, 255, 0.1) 350px 555px, rgba(255, 255, 255, 0.1) 350px 273px 0 -2px, rgba(255, 255, 255, 0.1) 150px 355px 0 23px, rgba(255, 255, 255, 0.1) 180px 205px 0 -8px, rgba(255, 255, 255, 0.1) 0px 0px 0 -8px, rgba(255, 255, 255, 0.1) 100px 555px 0 10px;
            box-shadow: rgba(255, 255, 255, 0.1) 160px 335px, rgba(255, 255, 255, 0.1) 120px 275px 0 12px, rgba(255, 255, 255, 0.1) 60px 355px 0 23px, rgba(255, 255, 255, 0.1) 230px 445px 0 -8px, rgba(255, 255, 255, 0.1) 60px 125px, rgba(255, 255, 255, 0.1) 260px 145px 0 12px, rgba(255, 255, 255, 0.1) 300px 145px 0 23px, rgba(255, 255, 255, 0.1) 100px 85px 0 -8px, rgba(255, 255, 255, 0.1) 350px 555px, rgba(255, 255, 255, 0.1) 350px 273px 0 -2px, rgba(255, 255, 255, 0.1) 150px 355px 0 23px, rgba(255, 255, 255, 0.1) 180px 205px 0 -8px, rgba(255, 255, 255, 0.1) 0px 0px 0 -8px, rgba(255, 255, 255, 0.1) 100px 555px 0 10px;
  }
  100% {
    -webkit-box-shadow: rgba(255, 255, 255, 0.1) 70px 10px, rgba(255, 255, 255, 0.1) 300px 205px 0 12px, rgba(255, 255, 255, 0.1) 0px 155px 0 23px, rgba(255, 255, 255, 0.1) 330px 45px 0 -8px, rgba(255, 255, 255, 0.1) 460px 325px, rgba(255, 255, 255, 0.1) 0px 445px 0 12px, rgba(255, 255, 255, 0.1) 300px 145px 0 23px, rgba(255, 255, 255, 0.1) 100px 85px 0 -8px, rgba(255, 255, 255, 0.1) 50px 155px, rgba(255, 255, 255, 0.1) 150px 273px 0 -2px, rgba(255, 255, 255, 0.1) 0px 555px 0 23px, rgba(255, 255, 255, 0.1) 180px 5px 0 -8px, rgba(255, 255, 255, 0.1) 300px 555px 0 -8px, rgba(255, 255, 255, 0.1) 350px 355px 0 10px;
            box-shadow: rgba(255, 255, 255, 0.1) 70px 10px, rgba(255, 255, 255, 0.1) 300px 205px 0 12px, rgba(255, 255, 255, 0.1) 0px 155px 0 23px, rgba(255, 255, 255, 0.1) 330px 45px 0 -8px, rgba(255, 255, 255, 0.1) 460px 325px, rgba(255, 255, 255, 0.1) 0px 445px 0 12px, rgba(255, 255, 255, 0.1) 300px 145px 0 23px, rgba(255, 255, 255, 0.1) 100px 85px 0 -8px, rgba(255, 255, 255, 0.1) 50px 155px, rgba(255, 255, 255, 0.1) 150px 273px 0 -2px, rgba(255, 255, 255, 0.1) 0px 555px 0 23px, rgba(255, 255, 255, 0.1) 180px 5px 0 -8px, rgba(255, 255, 255, 0.1) 300px 555px 0 -8px, rgba(255, 255, 255, 0.1) 350px 355px 0 10px;
  }
}

#about-1 #time {
  font-weight: 500;
}

#about-1 #date {
  font-weight: 500;
}

#about-1 .inbox {
  height: 400px;
  margin: 1rem;
  margin-top: 3rem;
  overflow: hidden;
  position: relative;
}

#about-1 .notification {
  -webkit-animation: newMessage 15s ease infinite, reply 15s ease infinite;
          animation: newMessage 15s ease infinite, reply 15s ease infinite;
  opacity: 0;
  padding: .25rem 0;
  position: absolute;
  width: 100%;
}

#about-1 .notification .inside {
  -webkit-backdrop-filter: blur(6px);
          backdrop-filter: blur(6px);
  background: rgba(0, 0, 0, 0.25);
  border-radius: 1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: .5rem 1rem;
}

#about-1 .notification .inside .icon {
  background-color: white;
  border-radius: .5rem;
  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-right: 1rem;
  padding: .25rem;
}

#about-1 .notification .inside .icon img {
  width: 32px;
  height: 32px;
}

#about-1 .notification .inside .message {
  font-size: 1rem;
}

#about-1 .notification .inside .message .app {
  font-weight: 700;
}

#about-1 .notification .inside .message .text {
  font-weight: 300;
}

#about-1 .notification .inside .time-of-notification {
  color: rgba(255, 255, 255, 0.75);
  margin-left: auto;
  font-size: 10px;
  font-weight: 600;
}

#about-1 .notification-1 {
  -webkit-animation-delay: 0s;
          animation-delay: 0s;
}

#about-1 .notification-2 {
  -webkit-animation-delay: 3s;
          animation-delay: 3s;
}

#about-1 .notification-3 {
  -webkit-animation-delay: 6s;
          animation-delay: 6s;
}

#about-1 .notification-4 {
  -webkit-animation-delay: 9s;
          animation-delay: 9s;
}

#about-1 .notification-5 {
  -webkit-animation-delay: 12s;
          animation-delay: 12s;
}

@-webkit-keyframes reply {
  0%, 20% {
    -webkit-transform: translateY(0%);
            transform: translateY(0%);
  }
  21%, 40% {
    -webkit-transform: translateY(100%);
            transform: translateY(100%);
  }
  41%, 60% {
    -webkit-transform: translateY(200%);
            transform: translateY(200%);
  }
  61%, 80% {
    -webkit-transform: translateY(300%);
            transform: translateY(300%);
  }
  81%, 99% {
    -webkit-transform: translateY(400%);
            transform: translateY(400%);
  }
  100% {
    -webkit-transform: translateY(500%);
            transform: translateY(500%);
  }
}

@keyframes reply {
  0%, 20% {
    -webkit-transform: translateY(0%);
            transform: translateY(0%);
  }
  21%, 40% {
    -webkit-transform: translateY(100%);
            transform: translateY(100%);
  }
  41%, 60% {
    -webkit-transform: translateY(200%);
            transform: translateY(200%);
  }
  61%, 80% {
    -webkit-transform: translateY(300%);
            transform: translateY(300%);
  }
  81%, 99% {
    -webkit-transform: translateY(400%);
            transform: translateY(400%);
  }
  100% {
    -webkit-transform: translateY(500%);
            transform: translateY(500%);
  }
}

@-webkit-keyframes newMessage {
  0%, 1% {
    opacity: 0;
  }
  4%, 99% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

@keyframes newMessage {
  0%, 1% {
    opacity: 0;
  }
  4%, 99% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

#about-2 .panel {
  padding: 3rem;
  -webkit-box-shadow: var(--shadow);
          box-shadow: var(--shadow);
  border-radius: var(--rounded);
}

#about-2 .wrapper {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

#about-2 .wrapper img {
  width: 155%;
  right: 0;
}

@media screen and (max-width: 991px) {
  #about-2 .wrapper img {
    width: 100%;
  }
}

#pricing .col-lg {
  margin-bottom: 3rem;
}

#pricing .toggle-btn {
  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: 1rem 0;
}

#pricing .toggle-btn .switch-label {
  color: var(--primaryTxt);
  font-weight: 600;
  margin: 1rem;
}

#pricing .toggle-btn .switch {
  position: relative;
  display: inline-block;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 60px;
  height: 34px;
}

#pricing .toggle-btn .switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

#pricing .toggle-btn .switch .slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #1e2321;
  -webkit-transition: 0.4s;
  -webkit-transform: translate(0px, 0px);
          transform: translate(0px, 0px);
  -webkit-transition: 0.6s ease transform, 0.6s -webkit-box-shadow;
  transition: 0.6s ease transform, 0.6s -webkit-box-shadow;
  transition: 0.6s ease transform, 0.6s box-shadow;
  transition: 0.6s ease transform, 0.6s box-shadow, 0.6s -webkit-box-shadow;
}

#pricing .toggle-btn .switch .slider:before {
  position: absolute;
  content: "";
  height: 26px;
  width: 26px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

#pricing .toggle-btn .switch input:checked + .slider {
  background-color: var(--magic);
}

#pricing .toggle-btn .switch input:checked + .slider:before {
  -webkit-transform: translateX(26px);
  transform: translateX(26px);
}

#pricing .toggle-btn .switch .slider.round {
  border-radius: 34px;
}

#pricing .toggle-btn .switch .slider.round:before {
  border-radius: 50%;
}

#pricing .card {
  background-color: var(--surfaceBg);
  border: 1px solid rgba(0, 0, 0, 0.125);
  border-radius: var(--rounded);
  -webkit-box-shadow: var(--shadow);
          box-shadow: var(--shadow);
  height: 100%;
  padding: 2rem;
  position: relative;
}

#pricing .card .popular {
  background-image: var(--gradient);
  border-radius: 99em 0 0 99em;
  color: #f1eeff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 1.25rem;
  font-weight: 600;
  padding: 0.625em 0.75em;
  position: absolute;
  top: 20px;
  right: -1px;
}

#pricing .card .card-header,
#pricing .card .card-body,
#pricing .card .card-footer {
  background-color: transparent;
  border: none;
  padding-left: 0;
  padding-right: 0;
}

#pricing .card .card-header .plan {
  border-radius: var(--rounded);
  color: var(--pink);
  display: inline-block;
  font-size: 1rem;
  font-weight: 600;
  padding: 0.5em 0.75em;
  line-height: 1;
}

#pricing .card .card-header .price-wrapper {
  color: var(--primaryTxt);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  margin: 1rem 0;
}

#pricing .card .card-header .price-wrapper .per-month {
  display: block;
}

#pricing .card .card-header .price-wrapper .per-year {
  display: none;
}

#pricing .card .card-header .price-wrapper .price {
  font-size: 40px;
  font-weight: 700;
  margin-right: 4px;
}

#pricing .card .card-header .price-wrapper .per {
  font-size: 16px;
  font-weight: 500;
}

#pricing .card .card-header .price-wrapper .save {
  color: var(--green);
  margin-left: 1rem;
}

#pricing .card .card-header .tag {
  background-image: var(--gradient);
  border-radius: .5rem;
  color: var(--whiteTxt);
  font-weight: 600;
  padding: 0.5em 0.75em;
  text-align: center;
}

#pricing .card .card-body ul {
  margin: 0;
  padding-left: 1rem;
}

#pricing .card .card-body ul li {
  color: #64748B;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 1rem;
  gap: 0.5rem;
  margin-top: .75rem;
}

#pricing .card .card-body ul li .icon {
  color: var(--green);
}

#pricing .card .card-footer a, #pricing .card .card-footer button {
  width: 100%;
}

#banner {
  background-color: var(--surfaceBg);
  border-radius: var(--rounded);
  -webkit-box-shadow: var(--shadow);
          box-shadow: var(--shadow);
  cursor: default;
  overflow: hidden;
  padding: 3rem;
}

.star {
  position: absolute;
  z-index: 2;
  color: white;
  font-size: 1rem;
  -webkit-animation-duration: 1500ms;
          animation-duration: 1500ms;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  pointer-events: none;
}

@-webkit-keyframes fall-1 {
  0% {
    opacity: 0;
    -webkit-transform: translate(0px, 0px) rotateX(45deg) rotateY(30deg) rotateZ(0deg) scale(0.25);
            transform: translate(0px, 0px) rotateX(45deg) rotateY(30deg) rotateZ(0deg) scale(0.25);
  }
  5% {
    opacity: 1;
    -webkit-transform: translate(10px, -10px) rotateX(45deg) rotateY(30deg) rotateZ(0deg) scale(1);
            transform: translate(10px, -10px) rotateX(45deg) rotateY(30deg) rotateZ(0deg) scale(1);
  }
  100% {
    opacity: 0;
    -webkit-transform: translate(25px, 200px) rotateX(180deg) rotateY(270deg) rotateZ(90deg) scale(1);
            transform: translate(25px, 200px) rotateX(180deg) rotateY(270deg) rotateZ(90deg) scale(1);
  }
}

@keyframes fall-1 {
  0% {
    opacity: 0;
    -webkit-transform: translate(0px, 0px) rotateX(45deg) rotateY(30deg) rotateZ(0deg) scale(0.25);
            transform: translate(0px, 0px) rotateX(45deg) rotateY(30deg) rotateZ(0deg) scale(0.25);
  }
  5% {
    opacity: 1;
    -webkit-transform: translate(10px, -10px) rotateX(45deg) rotateY(30deg) rotateZ(0deg) scale(1);
            transform: translate(10px, -10px) rotateX(45deg) rotateY(30deg) rotateZ(0deg) scale(1);
  }
  100% {
    opacity: 0;
    -webkit-transform: translate(25px, 200px) rotateX(180deg) rotateY(270deg) rotateZ(90deg) scale(1);
            transform: translate(25px, 200px) rotateX(180deg) rotateY(270deg) rotateZ(90deg) scale(1);
  }
}

@-webkit-keyframes fall-2 {
  0% {
    opacity: 0;
    -webkit-transform: translate(0px, 0px) rotateX(-20deg) rotateY(10deg) scale(0.25);
            transform: translate(0px, 0px) rotateX(-20deg) rotateY(10deg) scale(0.25);
  }
  10% {
    opacity: 1;
    -webkit-transform: translate(-10px, -5px) rotateX(-20deg) rotateY(10deg) scale(1);
            transform: translate(-10px, -5px) rotateX(-20deg) rotateY(10deg) scale(1);
  }
  100% {
    opacity: 0;
    -webkit-transform: translate(-10px, 160px) rotateX(-90deg) rotateY(45deg) scale(0.25);
            transform: translate(-10px, 160px) rotateX(-90deg) rotateY(45deg) scale(0.25);
  }
}

@keyframes fall-2 {
  0% {
    opacity: 0;
    -webkit-transform: translate(0px, 0px) rotateX(-20deg) rotateY(10deg) scale(0.25);
            transform: translate(0px, 0px) rotateX(-20deg) rotateY(10deg) scale(0.25);
  }
  10% {
    opacity: 1;
    -webkit-transform: translate(-10px, -5px) rotateX(-20deg) rotateY(10deg) scale(1);
            transform: translate(-10px, -5px) rotateX(-20deg) rotateY(10deg) scale(1);
  }
  100% {
    opacity: 0;
    -webkit-transform: translate(-10px, 160px) rotateX(-90deg) rotateY(45deg) scale(0.25);
            transform: translate(-10px, 160px) rotateX(-90deg) rotateY(45deg) scale(0.25);
  }
}

@-webkit-keyframes fall-3 {
  0% {
    opacity: 0;
    -webkit-transform: translate(0px, 0px) rotateX(0deg) rotateY(45deg) scale(0.5);
            transform: translate(0px, 0px) rotateX(0deg) rotateY(45deg) scale(0.5);
  }
  15% {
    opacity: 1;
    -webkit-transform: translate(7px, 5px) rotateX(0deg) rotateY(45deg) scale(1);
            transform: translate(7px, 5px) rotateX(0deg) rotateY(45deg) scale(1);
  }
  100% {
    opacity: 0;
    -webkit-transform: translate(20px, 120px) rotateX(-180deg) rotateY(-90deg) scale(0.5);
            transform: translate(20px, 120px) rotateX(-180deg) rotateY(-90deg) scale(0.5);
  }
}

@keyframes fall-3 {
  0% {
    opacity: 0;
    -webkit-transform: translate(0px, 0px) rotateX(0deg) rotateY(45deg) scale(0.5);
            transform: translate(0px, 0px) rotateX(0deg) rotateY(45deg) scale(0.5);
  }
  15% {
    opacity: 1;
    -webkit-transform: translate(7px, 5px) rotateX(0deg) rotateY(45deg) scale(1);
            transform: translate(7px, 5px) rotateX(0deg) rotateY(45deg) scale(1);
  }
  100% {
    opacity: 0;
    -webkit-transform: translate(20px, 120px) rotateX(-180deg) rotateY(-90deg) scale(0.5);
            transform: translate(20px, 120px) rotateX(-180deg) rotateY(-90deg) scale(0.5);
  }
}

img {
  width: 100%;
}

#team {
  /* stars */
  /* star size */
  /* star speed */
  /* star animation */
  /* star positioning */
}

#team .team-member-card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

#team .img-container {
  position: relative;
  width: 200px;
  aspect-ratio: 1 / 1.2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  border-radius: 0 0 100vw 100vw;
  overflow: hidden;
  -webkit-transition: -webkit-transform 250ms ease-in;
  transition: -webkit-transform 250ms ease-in;
  transition: transform 250ms ease-in;
  transition: transform 250ms ease-in, -webkit-transform 250ms ease-in;
  margin-bottom: 2rem;
}

#team .img-container:hover {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

#team .circle {
  width: 100%;
  aspect-ratio: 1;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 100px;
  background-image: var(--gradient);
}

#team .person-img {
  position: absolute;
  width: 100%;
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
  -webkit-transition: -webkit-transform 250ms ease-in;
  transition: -webkit-transform 250ms ease-in;
  transition: transform 250ms ease-in;
  transition: transform 250ms ease-in, -webkit-transform 250ms ease-in;
}

#team .img-container:hover .person-img {
  -webkit-transform: scale(1.3) translateY(-15px);
          transform: scale(1.3) translateY(-15px);
}

#team .person-info {
  text-align: center;
}

#team .person-info .name {
  color: var(--primaryTxt);
  font-size: 1.125rem;
  font-weight: 700;
  text-align: center;
}

#team .person-info .title {
  color: var(--finePrintTxt);
  color: var(--pink);
  text-align: center;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

#team .star {
  color: #7770FE;
  color: var(--pink);
  position: absolute;
}

#team .sm {
  font-size: 1rem;
}

#team .lg {
  font-size: 2rem;
}

#team .slow {
  -webkit-animation: twinkle 8s ease infinite;
          animation: twinkle 8s ease infinite;
}

#team .fast {
  -webkit-animation: twinkle 6s ease infinite;
          animation: twinkle 6s ease infinite;
}

#team .slow-offset {
  -webkit-animation: twinkle-offset 8s ease infinite;
          animation: twinkle-offset 8s ease infinite;
}

#team .fast-offset {
  -webkit-animation: twinkle-offset 6s ease infinite;
          animation: twinkle-offset 6s ease infinite;
}

@-webkit-keyframes twinkle {
  0%, 100% {
    -webkit-filter: opacity(1) brightness(1.05);
            filter: opacity(1) brightness(1.05);
  }
  50% {
    -webkit-filter: opacity(0) brightness(0.5);
            filter: opacity(0) brightness(0.5);
  }
}

@keyframes twinkle {
  0%, 100% {
    -webkit-filter: opacity(1) brightness(1.05);
            filter: opacity(1) brightness(1.05);
  }
  50% {
    -webkit-filter: opacity(0) brightness(0.5);
            filter: opacity(0) brightness(0.5);
  }
}

@-webkit-keyframes twinkle-offset {
  0%, 100% {
    -webkit-filter: opacity(0) brightness(0.5);
            filter: opacity(0) brightness(0.5);
  }
  50% {
    -webkit-filter: opacity(1) brightness(1.05);
            filter: opacity(1) brightness(1.05);
  }
}

@keyframes twinkle-offset {
  0%, 100% {
    -webkit-filter: opacity(0) brightness(0.5);
            filter: opacity(0) brightness(0.5);
  }
  50% {
    -webkit-filter: opacity(1) brightness(1.05);
            filter: opacity(1) brightness(1.05);
  }
}

#team .picture {
  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;
  position: relative;
}

#team .stars-container {
  z-index: 1;
  position: absolute;
  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;
}

#team span:nth-child(1) {
  top: -75px;
  left: -125px;
}

#team span:nth-child(2) {
  top: -112px;
  left: -100px;
}

#team span:nth-child(3) {
  top: -100px;
  right: -125px;
}

#contact form {
  background-color: var(--surfaceBg);
  border-radius: var(--rounded);
  -webkit-box-shadow: var(--shadow);
          box-shadow: var(--shadow);
  padding: 3rem;
}

#contact form label {
  color: #43414e;
  display: block;
  font-size: 12px;
  font-weight: 600;
  margin-top: 1rem;
}

#contact form input,
#contact form textarea {
  background-color: var(--inputBg);
  border: 1px solid #000;
  border-radius: .5rem;
  color: var(--inputTxt);
  font-size: 16px;
  line-height: 1.55;
  outline: none;
  padding: 1rem;
  width: 100%;
}

#contact form textarea {
  height: 172px !important;
  margin-bottom: 16px;
  min-height: 50px;
  resize: none;
}

#contact form input:focus,
#contact form textarea:focus {
  border: 1px solid var(--outline);
}

#contact form .fine-print {
  color: var(--finePrintTxt);
  font-size: 14px;
  font-weight: 300;
  line-height: 1.55;
}

@media screen and (max-width: 768px) {
  #contact form {
    padding-left: 15px;
    padding-right: 15px;
  }
  #contact form button {
    width: 100%;
  }
}

#footer .wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 3rem;
  padding-left: 3rem;
}

#footer .wrapper h4 {
  font-size: 18px;
  color: var(--primaryTxt);
  text-transform: capitalize;
  margin-bottom: 35px;
  font-weight: 500;
  position: relative;
}

#footer .wrapper h4::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -10px;
  background-color: var(--pink);
  width: 50px;
  height: 2px;
}

#footer .wrapper ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

#footer .wrapper ul li:not(:last-child) {
  margin-bottom: 10px;
}

#footer .wrapper ul a {
  color: var(--primaryTxt);
  display: block;
  font-size: 1rem;
  font-weight: 300;
  text-transform: capitalize;
  text-decoration: none;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

#copyright {
  background-image: var(--gradient);
  color: #FFF;
}

#copyright i {
  color: var(--pink);
}

@media screen and (max-width: 768px) {
  #hero .title-wrapper h1 > .magic {
    display: inline;
    position: relative;
  }
  #about-1 .panel, #about-2 .panel {
    padding: 0;
  }
  #cta .container, #contact .container {
    padding: 0;
  }
}
/*# sourceMappingURL=main.css.map */