/*html, body {
  margin: 0;
  padding:0;
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}*/
.wrapper {
  position: relative;
  top: 0;
  width: 100vw;
  height: 100vh;
  max-width: 100%;
  max-height: 100%;
  background: #9142D3;
  overflow: hidden;
}

.panel {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  margin: auto;
}
.panel._active {
  z-index: 10;
}

.trans-layer, .section-inner {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}

.trans-layer {
  background: #E2E2E2;
  transform: translateY(-100%) skew(0) rotate(0) scale(2);
  border-radius: 50%;
  transition: all 500ms ease-in-out;
  transition-delay: 500ms;
}
._active .trans-layer {
  transform: translateY(0) skew(0) rotate(0) scale(2);
  transition-delay: 0ms;
}

.section-inner {
  transform: translateY(100%);
  transition: all 500ms ease-in-out;
  transition-delay: 0ms;
  background: #343434;
}
._active .section-inner {
  transform: translateY(0);
  transition-delay: 500ms;
}

.section-content {
  display: flex;
  flex-flow: column;
  width: 100%;
  height: 100%;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-family: arial;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(30px);
  transition: all 500ms ease;
  transition-delay: 0s;
}
._active .section-content {
  opacity: 1;
  transform: translateY(0px);
  transition-delay: 1000ms;
}

.nav-dots {
  position: absolute;
  top: 50%;
  left: 10px;
  transform: translateY(-50%);
  z-index: 20;
  width: 40px;
}

.nav-dot {
  width: 10px;
  height: 10px;
  margin: 20px auto;
  border-radius: 50%;
  background: #fff;
  cursor: pointer;
  border: 1px solid #AFAFAF;
  transition: all 300ms ease-out;
}
.nav-dot.active {
  background: #9142D3;
  height: 20px;
  border-radius: 20px;
}

.next-btn, .prev-btn {
  width: 30px;
  height: 30px;
  position: absolute;
  z-index: 20;
  border: 1px solid #AFAFAF;
  color: #AFAFAF;
  line-height: 30px;
  text-align: center;
  font-size: 24px;
  cursor: pointer;
}

.next-btn {
  bottom: 10px;
  left: 14px;
}

.prev-btn {
  top: 80px;
  left: 14px;
}

.section-inner {
  background: linear-gradient(#FFFFFF, #FBF2FF);
}
.section-inner .container {
  width: 100%;
  position: relative;
  height: 100%;
}
.section-inner .person {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 60%;
  transform: translateY(-10px) translateX(130px) rotate(30deg);
  transition: 0.5s ease-out;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  bottom: -50px;
  left: -100px;
}
.section-inner .eclipse {
  position: absolute;
  top: 70px;
  right: 60px;
  z-index: -1;
}
.section-inner h2 span {
  font-size: 3.5rem !important;
}
.section-inner a i {
  font-size: 20px;
  margin-left: 10px;
  background: white;
  padding: 4px 11px;
  color: #9142D3;
  border-radius: 3px;
}

.outer-image {
  background: -webkit-linear-gradient(top, rgba(91, 1, 180, 0.08), rgba(255, 255, 255, 0)), #fff;
  background: linear-gradient(180deg, rgba(91, 1, 180, 0.08), rgba(255, 255, 255, 0)), #fff;
  box-shadow: -20px 18px 25px -4px #eef;
  overflow: hidden;
  position: relative;
  border-radius: 130px;
  min-width: 100%;
  min-height: 100%;
  -webkit-transform: translateX(80px) translateY(-240px) rotate(330deg);
  -ms-transform: translateX(80px) translateY(-240px) rotate(330deg);
  transform: translateX(80px) translateY(-240px) rotate(330deg);
  /*&:before {
    width: 100%;
    height: 300px;
    position: absolute;
    right: 140px;
    bottom: -200px;
    content: "";
    background: url(../img/section1/bg.svg) no-repeat;
    overflow: visible;
    display: block;
    -webkit-transform: rotate(30deg);
    -ms-transform: rotate(30deg);
    transform: rotate(30deg);
  }*/
}
.outer-image .shape {
  position: absolute;
}
.outer-image .shape:nth-child(1) {
  top: 0;
  left: 0;
}
.outer-image .shape:nth-child(2) {
  opacity: 0.5;
  top: 203px;
  left: 500px;
}
.outer-image .shape:nth-child(3) {
  bottom: 50px;
  left: 87px;
}
.outer-image .shape:nth-child(4) {
  bottom: 300px;
  left: 70px;
}
.outer-image .shape:nth-child(5) {
  top: 100px;
  left: 500px;
}
.outer-image .shape:nth-child(6) {
  top: 50px;
  left: 300px;
}

/*
  ##Device = Tablets, Ipads (portrait)
  ##Screen = B/w 768px to 1024px
*/
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .section-content > .row > div:last-child {
    display: flex;
    align-items: flex-end;
  }
  .section-content > .row > div:last-child .outer-image {
    min-width: 100%;
    min-height: 40%;
  }
  .section-content > .row > div:last-child .outer-image .person {
    height: 100%;
  }
}
/*
  ##Device = Tablets, Ipads (landscape)
  ##Screen = B/w 768px to 1024px
*/
@media only screen and (max-width: 1024px) and (orientation: landscape) {
  .section-content > .row > div:last-child .outer-image {
    min-width: 100%;
    min-height: 100%;
  }
  .section-content > .row > div:last-child .outer-image .person {
    height: 50%;
  }
}
@media only screen and (max-width: 767px) {
  .section-inner h2 span {
    font-size: 2rem !important;
  }
  .section-inner .section-content > .row > div:first-child {
    order: 1;
    align-items: unset !important;
  }
  .section-inner .section-content > .row > div:last-child {
    height: 44%;
    order: 0;
  }
  .section-inner .outer-image {
    height: 68vh;
  }
  .section-inner .person {
    position: relative;
    height: 50%;
    width: auto;
    bottom: -60px;
    left: 0;
    transform: translateY(240px) translateX(10px) rotate(30deg);
  }
  .section-inner a {
    display: block;
  }

  .nav-dots {
    left: 0;
    width: 30px;
  }

  .prev-btn, .next-btn {
    display: none;
  }
}

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