*, *::after, *::before {
  padding: 0;
  margin: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.color-white {
  color: #FBF8FC;
}

.container {
  max-width: 1440px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 96px 24px;
  overflow: hidden;
}

@media screen and (max-width: 960px) and (min-width: 340px) {
  .container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 32px 18px;
  }
}

.flex-spacebetween {
  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;
}

.flex-top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.flex-start {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.flex-center {
  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;
}

.flex-column {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.relative {
  position: relative;
}

.flex-wrap {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.flex-item-1 {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 360px;
          flex: 1 1 360px;
}

.flex-item-2 {
  -webkit-box-flex: 2;
      -ms-flex: 2 1 360px;
          flex: 2 1 360px;
}

.flex-item-3 {
  -webkit-box-flex: 3;
      -ms-flex: 3 1 360px;
          flex: 3 1 360px;
}

.flex-item-4 {
  -webkit-box-flex: 4;
      -ms-flex: 4 1 360px;
          flex: 4 1 360px;
}

.flex-item-5 {
  -webkit-box-flex: 5;
      -ms-flex: 5 1 360px;
          flex: 5 1 360px;
}

.flex-item-auto {
  -ms-flex-preferred-size: auto;
      flex-basis: auto;
}

.w-auto {
  width: auto;
}

.w-100 {
  width: 100%;
}

.w-75 {
  width: 75%;
}

.w-50 {
  width: 50%;
}

.w-25 {
  width: 25%;
}

.hidden {
  overflow: hidden;
}

.hero {
  height: 90vh;
}

@media screen and (max-width: 960px) and (min-width: 340px) {
  .hero {
    height: auto;
  }
}

.bg-home {
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: absolute;
  z-index: -1;
}

.svg-bg-home {
  width: 150%;
}

@media screen and (min-width: 1440px) {
  .svg-bg-home {
    width: 100%;
  }
}

.list-item {
  list-style: none;
  position: relative;
  margin-top: 48px;
  padding: 8px 8px 8px 72px;
}

.list-item strong {
  color: #232224;
}

.list-item:after {
  position: absolute;
  top: 0;
  left: -8px;
  content: "";
  display: block;
  height: 64px;
  width: 64px;
  height: 64px;
}

.best {
  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;
  padding-right: 16px;
  padding-left: 16px;
  border-radius: 50px;
  background-color: #F3F0F5;
}

@media screen and (max-width: 960px) and (min-width: 340px) {
  .best {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.best:after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
  width: 124px;
  height: 32px;
  background-image: url("../svg/entail.svg");
  background-repeat: no-repeat;
}

.best-item {
  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: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  padding: 16px;
  margin: 8px 0px;
}

@media screen and (max-width: 960px) and (min-width: 340px) {
  .best-item {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.bg-invite {
  height: 100vh;
}

.svg-invite {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: -1;
  width: 100%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

@media screen and (max-width: 960px) and (min-width: 340px) {
  .svg-invite {
    -webkit-transform: translate(-50%, -50%) scale(1.5);
            transform: translate(-50%, -50%) scale(1.5);
  }
}

.list {
  list-style: none;
}

.list a {
  color: #BB71D2;
}

.list li {
  margin-bottom: 12px;
}

footer {
  background: linear-gradient(220.94deg, #A950C4 14.43%, #82269E 85.28%);
}

.bt-purple {
  border-top: 1px solid #BB71D2;
}

h1 {
  color: #232224;
  font-family: 'Sora', sans-serif;
  font-size: 64px;
  line-height: 100%;
}

@media screen and (max-width: 960px) and (min-width: 340px) {
  h1 {
    font-family: 'Sora', sans-serif;
    font-size: 36px;
    line-height: 110%;
  }
}

h2 {
  color: #232224;
  font-family: 'Sora', sans-serif;
  font-size: 52px;
  line-height: 100%;
}

@media screen and (max-width: 960px) and (min-width: 340px) {
  h2 {
    font-family: 'Sora', sans-serif;
    font-size: 36px;
    line-height: 120%;
  }
}

h3 {
  color: #232224;
  font-family: 'Sora', sans-serif;
  font-size: 36px;
  line-height: 120%;
}

@media screen and (max-width: 960px) and (min-width: 340px) {
  h3 {
    font-family: 'Sora', sans-serif;
    font-size: 24px;
    line-height: 120%;
  }
}

h4 {
  color: #232224;
  font-family: 'Sora', sans-serif;
  font-size: 24px;
  line-height: 130%;
}

@media screen and (max-width: 960px) and (min-width: 340px) {
  h4 {
    font-family: 'Sora', sans-serif;
    font-size: 18px;
    line-height: 130%;
  }
}

h5 {
  text-transform: uppercase;
  background: linear-gradient(220.94deg, #A950C4 14.43%, #82269E 85.28%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: bold;
  font-family: 'Sora', sans-serif;
  font-size: 18px;
  line-height: 140%;
}

@media screen and (max-width: 960px) and (min-width: 340px) {
  h5 {
    font-family: 'Sora', sans-serif;
    font-size: 16px;
    line-height: 150%;
  }
}

p {
  color: #666566;
  font-family: 'Source Sans Pro', sans-serif;
  font-size: 16px;
  line-height: 140%;
}

@media screen and (max-width: 960px) and (min-width: 340px) {
  p {
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 14px;
    line-height: 150%;
  }
}

.bold {
  font-weight: bold;
}

strong {
  color: #D5D3D0;
  font-family: 'Source Sans Pro', sans-serif;
  font-size: 16px;
  line-height: 140%;
}

@media screen and (max-width: 960px) and (min-width: 340px) {
  strong {
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 14px;
    line-height: 150%;
  }
}

.text-center {
  text-align: center;
}

.weight-light {
  font-weight: 300;
}

a {
  font-family: 'Source Sans Pro', sans-serif;
  font-size: 16px;
  line-height: 140%;
  text-decoration: none;
  -webkit-transition: 0.5s ease;
  transition: 0.5s ease;
  color: #232224;
  cursor: pointer;
}

a:hover {
  opacity: 0.9;
}

.btn {
  background: linear-gradient(220.94deg, #A950C4 14.43%, #82269E 85.28%);
  border-radius: 16px;
  margin-right: 1rem;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  padding: 12px 32px;
  color: #FBF8FC;
  -webkit-box-shadow: 0px 17px 17px rgba(169, 80, 196, 0.13), 0px 5.125px 5.125px rgba(169, 80, 196, 0.0847066), 0px 2.12866px 2.12866px rgba(169, 80, 196, 0.065), 0px 0.7699px 0.7699px rgba(169, 80, 196, 0.0452935);
          box-shadow: 0px 17px 17px rgba(169, 80, 196, 0.13), 0px 5.125px 5.125px rgba(169, 80, 196, 0.0847066), 0px 2.12866px 2.12866px rgba(169, 80, 196, 0.065), 0px 0.7699px 0.7699px rgba(169, 80, 196, 0.0452935);
}

.btn:hover {
  -webkit-transform: scale(1.02);
          transform: scale(1.02);
  -webkit-box-shadow: 0px 4px 80px rgba(130, 38, 158, 0.07), 0px 1.20588px 24.1177px rgba(130, 38, 158, 0.0456112), 0px 0.50086px 10.0172px rgba(130, 38, 158, 0.035), 0px 0.18115px 3.62304px rgba(130, 38, 158, 0.0243888);
          box-shadow: 0px 4px 80px rgba(130, 38, 158, 0.07), 0px 1.20588px 24.1177px rgba(130, 38, 158, 0.0456112), 0px 0.50086px 10.0172px rgba(130, 38, 158, 0.035), 0px 0.18115px 3.62304px rgba(130, 38, 158, 0.0243888);
}

.link {
  display: inline-block;
  color: #82269E;
  background-image: url("../svg/icon-arrow.svg");
  background-repeat: no-repeat;
  background-position: 0% 50%;
  font-size: 18px;
  padding: 16px 16px 16px 40px;
  position: relative;
}

.link:after {
  content: "";
  position: absolute;
  display: block;
  top: 75%;
  left: 56px;
  background: #A950C4;
  width: 0%;
  height: 2px;
  -webkit-transition: 0.5s ease;
  transition: 0.5s ease;
  border-radius: 2px;
}

.link:hover {
  opacity: 0.8;
  padding-left: 64px;
  background-position: 8px 50%;
}

.link:hover:after {
  width: 100%;
  border-radius: 2px;
}

.button-app {
  -webkit-transition: 0.5s ease;
  transition: 0.5s ease;
}

.button-app:hover {
  -webkit-filter: drop-shadow(0px 51px 80px rgba(169, 80, 196, 0.08)) drop-shadow(0px 15.375px 24.1177px rgba(169, 80, 196, 0.0521271)) drop-shadow(0px 6.38599px 10.0172px rgba(169, 80, 196, 0.04)) drop-shadow(0px 2.30969px 3.62304px rgba(169, 80, 196, 0.0278729));
          filter: drop-shadow(0px 51px 80px rgba(169, 80, 196, 0.08)) drop-shadow(0px 15.375px 24.1177px rgba(169, 80, 196, 0.0521271)) drop-shadow(0px 6.38599px 10.0172px rgba(169, 80, 196, 0.04)) drop-shadow(0px 2.30969px 3.62304px rgba(169, 80, 196, 0.0278729));
}

.mx-1 {
  margin-right: 8px;
}

.my-1 {
  margin-top: 8px;
}

.ml-1 {
  margin-left: 8px;
}

.ml-2 {
  margin-left: 16px;
}

.ml-3 {
  margin-left: 48px;
}

.ml-4 {
  margin-left: 72px;
}

.my-2 {
  margin-top: 16px;
}

.mb-1 {
  margin-bottom: 8px;
}

.py-1 {
  padding-top: 8px;
}

.py-2 {
  padding-top: 16px;
}

.py-3 {
  padding-top: 48px;
}

.py-4 {
  padding-top: 72px;
}

.py-5 {
  padding-top: 128px;
}

.px-1 {
  padding-bottom: 8px;
}

.px-2 {
  padding-bottom: 16px;
}

.px-3 {
  padding-bottom: 48px;
}

.px-4 {
  padding-bottom: 72px;
}

.px-5 {
  padding-bottom: 128px;
}

html {
  scroll-behavior: smooth;
}

body {
  width: 100%;
  height: 100vh;
  position: relative;
  scroll-behavior: smooth;
  background: #EDEAEF;
}

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

.border {
  border: 1px solid red;
}

header {
  width: 100%;
  -webkit-box-shadow: none;
          box-shadow: none;
  position: fixed;
  height: 72px;
  z-index: 9999;
  -webkit-transition: .5s ease;
  transition: .5s ease;
  background: transparent;
}

.active-header {
  background-color: #F3F0F5;
  -webkit-box-shadow: 0px 51px 80px rgba(169, 80, 196, 0.08), 0px 15.375px 24.1177px rgba(169, 80, 196, 0.0521271), 0px 6.38599px 10.0172px rgba(169, 80, 196, 0.04), 0px 2.30969px 3.62304px rgba(169, 80, 196, 0.0278729);
          box-shadow: 0px 51px 80px rgba(169, 80, 196, 0.08), 0px 15.375px 24.1177px rgba(169, 80, 196, 0.0521271), 0px 6.38599px 10.0172px rgba(169, 80, 196, 0.04), 0px 2.30969px 3.62304px rgba(169, 80, 196, 0.0278729);
}

.navbar-desktop {
  max-width: 1440px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 10px 24px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: 0 auto;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media screen and (max-width: 960px) and (min-width: 340px) {
  .navbar-desktop {
    display: none;
  }
}

.logo {
  width: 40px;
  height: 40px;
  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;
  z-index: 800;
}

.navbar-desktop-1 {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.navbar-desktop-2 {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.menu-desktop {
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.menu-desktop .menu-desktop-item {
  margin-left: 16px;
  position: relative;
}

.nav-link-desktop {
  display: inline-block;
  padding: 12px 16px;
  position: relative;
}

.nav-link-desktop::after {
  -webkit-transition: .2s ease;
  transition: .2s ease;
  content: " ";
  position: absolute;
  top: 42%;
  right: -3%;
  height: 7px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  width: 7px;
  border-bottom: 2px solid #82269E;
  border-right: 2px solid #82269E;
  border-radius: 1px;
}

.nav-link-desktop:hover::after {
  top: 45%;
}

.dropdown-menu-desktop {
  background: white;
  border-radius: 16px;
  -webkit-box-shadow: 0px 51px 80px rgba(169, 80, 196, 0.08), 0px 15.375px 24.1177px rgba(169, 80, 196, 0.0521271), 0px 6.38599px 10.0172px rgba(169, 80, 196, 0.04), 0px 2.30969px 3.62304px rgba(169, 80, 196, 0.0278729);
          box-shadow: 0px 51px 80px rgba(169, 80, 196, 0.08), 0px 15.375px 24.1177px rgba(169, 80, 196, 0.0521271), 0px 6.38599px 10.0172px rgba(169, 80, 196, 0.04), 0px 2.30969px 3.62304px rgba(169, 80, 196, 0.0278729);
  list-style: none;
  padding: 16px 24px;
  position: absolute;
  top: 48px;
  left: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  opacity: 0;
  -webkit-transition: .7s ease;
  transition: .7s ease;
  pointer-events: none;
}

.dropdown-menu-desktop .dropdown-item-desktop {
  width: 100%;
}

.active-dropdown-menu {
  pointer-events: all;
  opacity: 1;
}

.nav-link-dropdown-desktop {
  display: inline-block;
  width: 100%;
  padding: 8px 16px;
  position: relative;
}

.nav-link-dropdown-desktop::after {
  content: " ";
  position: absolute;
  top: 90%;
  left: 0;
  width: 0%;
  height: 2px;
  -webkit-transition: .5s ease;
  transition: .5s ease;
  background: #A950C4;
}

.nav-link-dropdown-desktop:hover::after {
  width: 100%;
}

.navbar-mobile {
  max-width: 1440px;
  margin: 0 auto;
  padding: 10px 24px;
  display: none;
}

@media screen and (max-width: 960px) and (min-width: 340px) {
  .navbar-mobile {
    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;
  }
}

.bx {
  width: 48px;
  height: 48px;
  position: relative;
  cursor: pointer;
  -webkit-transition: .7s ease;
  transition: .7s ease;
  z-index: 800;
}

.bx::after {
  content: '';
  position: absolute;
  top: 40%;
  left: 17%;
  width: 70%;
  height: 2px;
  -webkit-transition: .7s ease;
  transition: .7s ease;
  background: #82269E;
}

.bx::before {
  content: '';
  position: absolute;
  top: 64%;
  left: 17%;
  -webkit-transition: .7s ease;
  transition: .7s ease;
  width: 70%;
  height: 2px;
  background: #82269E;
}

.active-bx {
  width: 48px;
  height: 48px;
  position: relative;
  cursor: pointer;
  -webkit-transition: .7s ease;
  transition: .7s ease;
  z-index: 800;
}

.active-bx::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 17%;
  width: 70%;
  height: 2px;
  -webkit-transform: rotate(-135deg);
          transform: rotate(-135deg);
  background: #82269E;
}

.active-bx::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 17%;
  -webkit-transform: rotate(-405deg);
          transform: rotate(-405deg);
  width: 70%;
  height: 2px;
  background: #82269E;
}

.menu-mobile {
  width: 100vw;
  height: 100vh;
  background: #F3F0F5;
  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;
  opacity: 0;
  pointer-events: none;
  -webkit-transform: translate3d(0, -100px, 0);
          transform: translate3d(0, -100px, 0);
  -webkit-transition: 1s ease;
  transition: 1s ease;
}

.active-menu-mobile {
  opacity: 1;
  pointer-events: all;
}

.nav-list-mobile {
  max-width: 1440px;
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.nav-list-mobile svg {
  width: 36px;
  height: 36px;
}

.nav-list-mobile svg path {
  stroke: #A6A6A7;
  -webkit-transition: .7s ease;
  transition: .7s ease;
}

.nav-list-mobile svg:hover path {
  stroke: #82269E;
}

.nav-link-mobile {
  display: inline-block;
  font-family: 'Sora', sans-serif;
  font-size: 36px;
  line-height: 120%;
  color: #555456;
  padding: 16px 24px;
  position: relative;
}

.nav-link-mobile::after {
  content: "";
  position: absolute;
  top: 90%;
  left: 16px;
  width: 0%;
  height: 2px;
  -webkit-transition: 1s ease;
  transition: 1s ease;
  background: #A950C4;
}

.nav-link-mobile::hover {
  color: #82269E;
}

.nav-link-mobile::hover::after {
  width: 100%;
}

.box {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0px 24px;
}

.container-swiper {
  max-width: 1440px;
  margin: 0 auto;
  padding: 96px 24px;
  overflow: hidden;
  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;
}

.swiper-container {
  width: 100%;
  height: 100%;
  position: relative;
}

.swiper-slide {
  max-width: 420px;
  padding: 24px 36px;
  border-radius: 50px;
  margin: 0px 16px;
  background: #F3F0F5;
  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: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.button-next {
  position: absolute;
  right: 32px;
  top: 24px;
  width: 36px;
  height: 36px;
  cursor: pointer;
  background-image: url("../svg/icon-arrow.svg");
  background-repeat: no-repeat;
  background-position: center center;
}

.button-prev {
  position: absolute;
  right: 88px;
  top: 24px;
  width: 36px;
  height: 36px;
  background-image: url("../svg/icon-arrow.svg");
  cursor: pointer;
  background-repeat: no-repeat;
  background-position: center center;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

.photo-profile {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: red;
  background-size: cover;
  -o-object-fit: cover;
     object-fit: cover;
  background-repeat: no-repeat;
}

.photo-1 {
  background-image: url("../img/people1.png");
}

.photo-2 {
  background-image: url("../img/people2.png");
}

.photo-3 {
  background-image: url("../img/people3.png");
}

.photo-4 {
  background-image: url("../img/people4.png");
}

.photo-5 {
  background-image: url("../img/people5.png");
}

.dropshadow {
  -webkit-filter: drop-shadow(0px 16px 24px rgba(169, 80, 196, 0.25));
          filter: drop-shadow(0px 16px 24px rgba(169, 80, 196, 0.25));
}

.bg-icon-mobile::after {
  background-image: url("../svg/icon-mobile.svg");
  background-size: cover;
  -webkit-filter: drop-shadow(0px 16px 24px rgba(169, 80, 196, 0.25));
          filter: drop-shadow(0px 16px 24px rgba(169, 80, 196, 0.25));
  cursor: pointer;
  -webkit-transition: .5s ease;
  transition: .5s ease;
}

.bg-icon-mobile:hover::after {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}

.bg-icon-time::after {
  background-image: url("../svg/icon-time.svg");
  background-size: cover;
  -webkit-filter: drop-shadow(0px 16px 24px rgba(169, 80, 196, 0.25));
          filter: drop-shadow(0px 16px 24px rgba(169, 80, 196, 0.25));
  cursor: pointer;
  -webkit-transition: .5s ease;
  transition: .5s ease;
}

.bg-icon-time:hover::after {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}

.bg-icon-config::after {
  background-image: url("../svg/icon-config.svg");
  background-size: cover;
  -webkit-filter: drop-shadow(0px 16px 24px rgba(169, 80, 196, 0.25));
          filter: drop-shadow(0px 16px 24px rgba(169, 80, 196, 0.25));
  cursor: pointer;
  -webkit-transition: .5s ease;
  transition: .5s ease;
}

.bg-icon-config:hover::after {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}

.bg-icon-card::after {
  background-image: url("../svg/icon-card.svg");
  background-size: cover;
  -webkit-filter: drop-shadow(0px 16px 24px rgba(169, 80, 196, 0.25));
          filter: drop-shadow(0px 16px 24px rgba(169, 80, 196, 0.25));
  cursor: pointer;
  -webkit-transition: .5s ease;
  transition: .5s ease;
}

.bg-icon-card:hover:after {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}

.bg-icon-contactless::after {
  background-image: url("../svg/icon-contactless.svg");
  background-size: cover;
  -webkit-filter: drop-shadow(0px 16px 24px rgba(169, 80, 196, 0.25));
          filter: drop-shadow(0px 16px 24px rgba(169, 80, 196, 0.25));
  cursor: pointer;
  -webkit-transition: .5s ease;
  transition: .5s ease;
}

.bg-icon-contactless:hover:after {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}

.bg-icon-check::after {
  background-image: url("../svg/icon-check.svg");
  background-size: cover;
  -webkit-filter: drop-shadow(0px 16px 24px rgba(169, 80, 196, 0.25));
          filter: drop-shadow(0px 16px 24px rgba(169, 80, 196, 0.25));
  cursor: pointer;
  -webkit-transition: .5s ease;
  transition: .5s ease;
  width: 40px;
  height: 40px;
  top: 16px;
  left: 8px;
}

.bg-icon-check:hover::after {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}

.icon {
  -webkit-filter: drop-shadow(0px 16px 24px rgba(169, 80, 196, 0.25));
          filter: drop-shadow(0px 16px 24px rgba(169, 80, 196, 0.25));
  -webkit-transition: .5s ease;
  transition: .5s ease;
  cursor: pointer;
}

.icon:hover {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}

.icon-networks {
  max-width: 48px;
  padding: 8px;
}

.div-card {
  -webkit-perspective: 500px;
          perspective: 500px;
  position: relative;
}

.card {
  width: 340px;
  height: 217.6px;
  z-index: -1;
  border-radius: 12px;
  -webkit-transform-origin: center center;
          transform-origin: center center;
  -webkit-transform-style: preserve-3d;
          transform-style: preserve-3d;
  -webkit-animation: flip-card 12s linear infinite alternate, change-bg-card 12s linear infinite alternate;
          animation: flip-card 12s linear infinite alternate, change-bg-card 12s linear infinite alternate;
}

@-webkit-keyframes flip-card {
  0% {
    -webkit-transform: rotateX(-10deg) rotateY(10deg) rotateY(-15deg);
            transform: rotateX(-10deg) rotateY(10deg) rotateY(-15deg);
  }
  40% {
    -webkit-transform: rotateX(0deg) rotateY(20deg);
            transform: rotateX(0deg) rotateY(20deg);
  }
  60% {
    -webkit-transform: rotateX(180deg) rotateY(20deg);
            transform: rotateX(180deg) rotateY(20deg);
  }
  100% {
    -webkit-transform: rotateX(190deg) rotateY(10deg) rotateY(15deg);
            transform: rotateX(190deg) rotateY(10deg) rotateY(15deg);
  }
}

@keyframes flip-card {
  0% {
    -webkit-transform: rotateX(-10deg) rotateY(10deg) rotateY(-15deg);
            transform: rotateX(-10deg) rotateY(10deg) rotateY(-15deg);
  }
  40% {
    -webkit-transform: rotateX(0deg) rotateY(20deg);
            transform: rotateX(0deg) rotateY(20deg);
  }
  60% {
    -webkit-transform: rotateX(180deg) rotateY(20deg);
            transform: rotateX(180deg) rotateY(20deg);
  }
  100% {
    -webkit-transform: rotateX(190deg) rotateY(10deg) rotateY(15deg);
            transform: rotateX(190deg) rotateY(10deg) rotateY(15deg);
  }
}

@-webkit-keyframes change-bg-card {
  0%,
  40% {
    background-image: url("../svg/nubank.svg");
    background-size: cover;
  }
  50%,
  100% {
    background-image: url("../svg/nubank-verse.svg");
    background-size: cover;
  }
}

@keyframes change-bg-card {
  0%,
  40% {
    background-image: url("../svg/nubank.svg");
    background-size: cover;
  }
  50%,
  100% {
    background-image: url("../svg/nubank-verse.svg");
    background-size: cover;
  }
}

.icon-card-hero {
  position: absolute;
  top: -0px;
  z-index: 200;
  left: -30px;
  -webkit-animation: icons-hero 7s ease 0.5s infinite alternate;
          animation: icons-hero 7s ease 0.5s infinite alternate;
}

.icon-contactless-hero {
  position: absolute;
  top: 350px;
  z-index: 200;
  left: 30px;
  -webkit-animation: icons-hero 7s ease 1s infinite alternate;
          animation: icons-hero 7s ease 1s infinite alternate;
}

.icon-mobile-hero {
  position: absolute;
  top: 150px;
  z-index: 200;
  left: -250px;
  -webkit-animation: icons-hero 7s ease 2.5s infinite alternate;
          animation: icons-hero 7s ease 2.5s infinite alternate;
}

@media screen and (max-width: 960px) and (min-width: 340px) {
  .icon-mobile-hero {
    top: 350px;
    left: -100px;
  }
}

@-webkit-keyframes icons-hero {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
  100% {
    -webkit-transform: translate3d(10px, -40px, 0);
            transform: translate3d(10px, -40px, 0);
  }
}

@keyframes icons-hero {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
  100% {
    -webkit-transform: translate3d(10px, -40px, 0);
            transform: translate3d(10px, -40px, 0);
  }
}

.bg-home-blur1 {
  -webkit-transform: translate3d(0, -100px, 0);
          transform: translate3d(0, -100px, 0);
}

.bg-home-blur2 {
  -webkit-transform: translate3d(0, -150px, 0);
          transform: translate3d(0, -150px, 0);
}

.bg-home-rect1 {
  -webkit-animation: bg-home-rect 3s ease 0s infinite alternate;
          animation: bg-home-rect 3s ease 0s infinite alternate;
}

.bg-home-rect2 {
  -webkit-animation: bg-home-rect 3s ease 0.5s infinite alternate;
          animation: bg-home-rect 3s ease 0.5s infinite alternate;
}

.bg-home-rect3 {
  -webkit-animation: bg-home-rect 3s ease 1s infinite alternate;
          animation: bg-home-rect 3s ease 1s infinite alternate;
}

.bg-home-rect4 {
  -webkit-animation: bg-home-rect 3s ease 1.5s infinite alternate;
          animation: bg-home-rect 3s ease 1.5s infinite alternate;
}

@-webkit-keyframes bg-home-rect {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
  100% {
    -webkit-transform: translate3d(0, 30px, 0);
            transform: translate3d(0, 30px, 0);
  }
}

@keyframes bg-home-rect {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
  100% {
    -webkit-transform: translate3d(0, 30px, 0);
            transform: translate3d(0, 30px, 0);
  }
}

.people1 {
  opacity: 0;
  -webkit-animation: people 10s ease 0s infinite;
          animation: people 10s ease 0s infinite;
}

.people2 {
  opacity: 0;
  -webkit-animation: people 10s ease 5s infinite;
          animation: people 10s ease 5s infinite;
}

.people3 {
  opacity: 0;
  -webkit-animation: people 10s ease 2s infinite;
          animation: people 10s ease 2s infinite;
}

.people4 {
  opacity: 0;
  -webkit-animation: people 10s ease 7s infinite;
          animation: people 10s ease 7s infinite;
}

.people5 {
  opacity: 0;
  -webkit-animation: people 10s ease 3s infinite;
          animation: people 10s ease 3s infinite;
}

.people6 {
  opacity: 0;
  -webkit-animation: people 10s ease 8s infinite;
          animation: people 10s ease 8s infinite;
}

@media screen and (max-width: 960px) and (min-width: 340px) {
  #people2 {
    display: none;
  }
}

@-webkit-keyframes people {
  0% {
    opacity: 0;
  }
  20%,
  50% {
    opacity: 1;
  }
  70%,
  100% {
    opacity: 0;
  }
}

@keyframes people {
  0% {
    opacity: 0;
  }
  20%,
  50% {
    opacity: 1;
  }
  70%,
  100% {
    opacity: 0;
  }
}

.fignu2-screen1 {
  -webkit-animation: fignu2-screen1 18s ease infinite alternate;
          animation: fignu2-screen1 18s ease infinite alternate;
}

@-webkit-keyframes fignu2-screen1 {
  0%,
  15% {
    opacity: 1;
  }
  20%,
  100% {
    opacity: 0;
  }
}

@keyframes fignu2-screen1 {
  0%,
  15% {
    opacity: 1;
  }
  20%,
  100% {
    opacity: 0;
  }
}

.fignu2-screen2 {
  -webkit-animation: fignu2-screen2 18s ease infinite alternate;
          animation: fignu2-screen2 18s ease infinite alternate;
}

@-webkit-keyframes fignu2-screen2 {
  0%,
  15% {
    opacity: 0;
  }
  20%,
  35% {
    opacity: 1;
  }
  40%,
  100% {
    opacity: 0;
  }
}

@keyframes fignu2-screen2 {
  0%,
  15% {
    opacity: 0;
  }
  20%,
  35% {
    opacity: 1;
  }
  40%,
  100% {
    opacity: 0;
  }
}

.fignu2-screen3 {
  -webkit-animation: fignu2-screen3 18s ease infinite alternate;
          animation: fignu2-screen3 18s ease infinite alternate;
}

@-webkit-keyframes fignu2-screen3 {
  0%,
  35% {
    opacity: 0;
  }
  40%,
  55% {
    opacity: 1;
  }
  60%,
  100% {
    opacity: 0;
  }
}

@keyframes fignu2-screen3 {
  0%,
  35% {
    opacity: 0;
  }
  40%,
  55% {
    opacity: 1;
  }
  60%,
  100% {
    opacity: 0;
  }
}

.fignu2-screen4 {
  -webkit-animation: fignu2-screen4 18s ease infinite alternate;
          animation: fignu2-screen4 18s ease infinite alternate;
}

@-webkit-keyframes fignu2-screen4 {
  0%,
  55% {
    opacity: 0;
  }
  60%,
  75% {
    opacity: 1;
  }
  80%,
  100% {
    opacity: 0;
  }
}

@keyframes fignu2-screen4 {
  0%,
  55% {
    opacity: 0;
  }
  60%,
  75% {
    opacity: 1;
  }
  80%,
  100% {
    opacity: 0;
  }
}

.fignu2-screen5 {
  -webkit-animation: fignu2-screen5 18s ease infinite alternate;
          animation: fignu2-screen5 18s ease infinite alternate;
}

@-webkit-keyframes fignu2-screen5 {
  0%,
  75% {
    opacity: 0;
  }
  80%,
  100% {
    opacity: 1;
  }
}

@keyframes fignu2-screen5 {
  0%,
  75% {
    opacity: 0;
  }
  80%,
  100% {
    opacity: 1;
  }
}

.fignu2-icon1 {
  -webkit-animation: fignu2-icon-move 3s ease 0s infinite alternate;
          animation: fignu2-icon-move 3s ease 0s infinite alternate;
}

.fignu2-icon3 {
  -webkit-animation: fignu2-icon-move 3s ease 2s infinite alternate;
          animation: fignu2-icon-move 3s ease 2s infinite alternate;
}

.fignu2-icon5 {
  -webkit-animation: fignu2-icon-move 3s ease 1s infinite alternate;
          animation: fignu2-icon-move 3s ease 1s infinite alternate;
}

.fignu2-icon2 {
  display: none;
}

.fignu2-icon4 {
  display: none;
}

@-webkit-keyframes fignu2-icon-move {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
  100% {
    -webkit-transform: translate3d(10px, -40px, 0);
            transform: translate3d(10px, -40px, 0);
  }
}

@keyframes fignu2-icon-move {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
  100% {
    -webkit-transform: translate3d(10px, -40px, 0);
            transform: translate3d(10px, -40px, 0);
  }
}

.fignu3-card-verse {
  -webkit-transform-origin: center center;
          transform-origin: center center;
  transform-box: fill-box;
  -webkit-transform: translate3d(0, -40px, 0);
          transform: translate3d(0, -40px, 0);
  -webkit-animation: fignu3-card-verse 3s ease infinite alternate;
          animation: fignu3-card-verse 3s ease infinite alternate;
}

@-webkit-keyframes fignu3-card-verse {
  0% {
    -webkit-transform: translate3d(0, -40px, 0) rotate(0deg);
            transform: translate3d(0, -40px, 0) rotate(0deg);
  }
  100% {
    -webkit-transform: translate3d(0, 20px, 0) rotate(5deg);
            transform: translate3d(0, 20px, 0) rotate(5deg);
  }
}

@keyframes fignu3-card-verse {
  0% {
    -webkit-transform: translate3d(0, -40px, 0) rotate(0deg);
            transform: translate3d(0, -40px, 0) rotate(0deg);
  }
  100% {
    -webkit-transform: translate3d(0, 20px, 0) rotate(5deg);
            transform: translate3d(0, 20px, 0) rotate(5deg);
  }
}

.fignu3-card-front {
  -webkit-transform-origin: center center;
          transform-origin: center center;
  transform-box: fill-box;
  -webkit-transform: translate3d(0, -40px, 0);
          transform: translate3d(0, -40px, 0);
  -webkit-animation: fignu3-card-verse 3s ease 1s infinite alternate;
          animation: fignu3-card-verse 3s ease 1s infinite alternate;
}

.fignu3-shadow {
  -webkit-transform-origin: center center;
          transform-origin: center center;
  transform-box: fill-box;
  fill-opacity: 0.15;
  -webkit-animation: fignu3-shadow 3s ease 1s infinite alternate;
          animation: fignu3-shadow 3s ease 1s infinite alternate;
}

@-webkit-keyframes fignu3-shadow {
  0% {
    fill-opacity: 0.15;
  }
  100% {
    fill-opacity: 0.4;
  }
}

@keyframes fignu3-shadow {
  0% {
    fill-opacity: 0.15;
  }
  100% {
    fill-opacity: 0.4;
  }
}

.fignu4-letter-u, .fignu4-letter-n {
  -webkit-animation: fignu4-letter 4s ease infinite alternate;
          animation: fignu4-letter 4s ease infinite alternate;
}

@-webkit-keyframes fignu4-letter {
  0% {
    stroke-width: 4;
    stroke-dasharray: 0 400;
    stroke-opacity: 1;
  }
  60%, 100% {
    stroke-width: 4;
    stroke-dasharray: 400 0;
    stroke-opacity: 1;
  }
}

@keyframes fignu4-letter {
  0% {
    stroke-width: 4;
    stroke-dasharray: 0 400;
    stroke-opacity: 1;
  }
  60%, 100% {
    stroke-width: 4;
    stroke-dasharray: 400 0;
    stroke-opacity: 1;
  }
}

.fignu5-ball {
  -webkit-animation: finu5-ball-move 4s ease infinite alternate;
          animation: finu5-ball-move 4s ease infinite alternate;
}

@-webkit-keyframes finu5-ball-move {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
  100% {
    -webkit-transform: translate3d(200px, -50px, 0);
            transform: translate3d(200px, -50px, 0);
  }
}

@keyframes finu5-ball-move {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
  100% {
    -webkit-transform: translate3d(200px, -50px, 0);
            transform: translate3d(200px, -50px, 0);
  }
}
/*# sourceMappingURL=style.css.map */