@font-face {
  font-family: "book";
  src: url("../Fonts/Nanami-Book.otf");
}

@font-face {
  font-family: "thin";
  src: url("../Fonts/Nanami-Thin.eot");
  src: url("../Fonts/Nanami-Thin.svg");
  src: url("../Fonts/Nanami-Thin.ttf");
  src: url("../Fonts/Nanami-Thin.woff");
  src: url("../Fonts/Nanami-Thin.woff2");
}

@font-face {
  font-family: NanamiR;
  src: url("../Fonts/Nanami-Regular.otf");
}

@font-face {
  font-family: NanamiL;
  src: url("../Fonts/Nanami-Light.otf");
}

@font-face {
  font-family: NanamiEL;
  src: url("../Fonts/Nanami-ExtraLight.otf");
}

* {
  font-family: NanamiR;
}

.skewElem {
  -webkit-transition: 0.05s;
  transition: 0.05s;
}

html {
  scroll-behavior: smooth;
}

body {
  overflow-x: hidden;
  margin: 0;
  background-color: #fcfcfc;
}

body *:focus {
  outline: none;
}

body::-webkit-scrollbar {
  width: 0.5em;
  padding: 0 10px;
  background-color: transparent;
}

body::-webkit-scrollbar-track {
  background-color: transparent;
}

body::-webkit-scrollbar-thumb {
  background-color: #322bff;
  border-radius: 20px;
  margin: 0 10px;
}

body header {
  pointer-events: none;
  position: fixed;
  width: 100%;
  z-index: 20;
  height: 100%;
  overflow: hidden;
}

body header .navbar {
  pointer-events: initial;
  padding: 20px 30px;
}

body header .navbar__logo {
  float: left;
  width: 100px;
  height: auto;
}

body header .navbar__logo img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

body header .navbar__btnGroup {
  float: right;
}

body header .navbar__btnGroup .menuBtn {
  position: relative;
  overflow: hidden;
  background-color: #ececff;
  color: #322bff;
  height: 40px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  border: none;
  border-radius: 25px;
  padding: 0 30px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  outline: none;
}

body header .navbar__btnGroup .menuBtn .front,
body header .navbar__btnGroup .menuBtn .back {
  font-size: 20px;
  padding: 6px 0;
}

body header .navbar__btnGroup .menuBtn .front {
  -webkit-transition: 0.5s;
  transition: 0.5s;
  opacity: 0.5;
}

body header .navbar__btnGroup .menuBtn .back {
  -webkit-transition: 0.5s;
  transition: 0.5s;
  -webkit-transform: translate(-50%, 100%);
          transform: translate(-50%, 100%);
  position: absolute;
  top: 5px;
  width: 20px;
  height: 25px;
  left: 50%;
}

body header .navbar__btnGroup .menuBtn .back .menuIcon {
  width: 100%;
  height: 3px;
  background-color: #322bff;
  margin: 3px 0;
  border-radius: 4px;
  -webkit-transform: translateY(10px);
          transform: translateY(10px);
}

body header .navbar__btnGroup .menuBtn .back .menuIcon:nth-child(1) {
  -webkit-transition: 0.2s 0.2s;
  transition: 0.2s 0.2s;
}

body header .navbar__btnGroup .menuBtn .back .menuIcon:nth-child(2) {
  -webkit-transition: 0.2s 0.25s;
  transition: 0.2s 0.25s;
}

body header .navbar__btnGroup .menuBtn .back .menuIcon:nth-child(3) {
  -webkit-transition: 0.2s 0.3s;
  transition: 0.2s 0.3s;
}

@media (max-width: 768px) {
  body header .navbar__btnGroup .menuBtn {
    padding: 0 0;
    margin: 0 0;
    width: 50px;
    height: 50px;
    border-radius: 50%;
  }
  body header .navbar__btnGroup .menuBtn .front {
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
  }
  body header .navbar__btnGroup .menuBtn .back {
    -webkit-transform: translate(-48%, 19%);
            transform: translate(-48%, 19%);
  }
  body header .navbar__btnGroup .menuBtn .back .menuIcon {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

body header .navbar__btnGroup .menuBtn:hover {
  padding: 0 0;
  margin: 0 30px;
}

body header .navbar__btnGroup .menuBtn:hover .front {
  -webkit-transform: translateY(-100%);
          transform: translateY(-100%);
}

body header .navbar__btnGroup .menuBtn:hover .back {
  -webkit-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
}

body header .navbar__btnGroup .menuBtn:hover .back .menuIcon {
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

body header .navbar__btnGroup .tellUsBtn {
  position: relative;
  overflow: hidden;
  border: none;
  background-color: transparent;
  padding-bottom: 5px;
  margin: 0 30px;
  outline: none;
}

@media (max-width: 768px) {
  body header .navbar__btnGroup .tellUsBtn {
    display: none;
  }
}

body header .navbar__btnGroup .tellUsBtn::before {
  content: "";
  position: absolute;
  width: 30%;
  height: 3px;
  background-color: #134074;
  bottom: 0;
  left: 5px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  border-radius: 5px;
}

body header .navbar__btnGroup .tellUsBtn .front,
body header .navbar__btnGroup .tellUsBtn .back {
  color: #134074;
  font-size: 20px;
}

body header .navbar__btnGroup .tellUsBtn .front {
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

body header .navbar__btnGroup .tellUsBtn .back {
  -webkit-transition: 0.5s;
  transition: 0.5s;
  -webkit-transform: translateY(100%);
          transform: translateY(100%);
  position: absolute;
  top: 2px;
}

body header .navbar__btnGroup .tellUsBtn:hover .front {
  -webkit-transform: translateY(-100%);
          transform: translateY(-100%);
}

body header .navbar__btnGroup .tellUsBtn:hover .back {
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

body header .navbar__btnGroup .tellUsBtn:hover::before {
  width: calc(100% - 10px);
}

body header .menuBg {
  pointer-events: initial;
  width: 0%;
  height: 100%;
  background-color: #0f0f0f;
  opacity: 0.5;
  position: absolute;
  right: 0;
  top: 0;
  -webkit-transition: 1s 1.2s;
  transition: 1s 1.2s;
}

@media (max-width: 768px) {
  body header .menuBg {
    display: none !important;
  }
}

body header .menuBg.open {
  width: 100%;
}

body header .menu {
  pointer-events: initial;
  height: 100%;
  width: 0;
  background-color: #ecf1fd;
  position: absolute;
  top: 0;
  right: 0;
  -webkit-transition: 1.5s;
  transition: 1.5s;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media (max-width: 768px) {
  body header .menu {
    -webkit-transition: 0.8s ease;
    transition: 0.8s ease;
  }
}

body header .menu .closeMenu {
  position: absolute;
  top: 20px;
  right: 20px;
  background-color: transparent;
  border: none;
  display: none;
}

body header .menu .closeMenu:focus {
  outline: none;
}

body header .menu .closeMenu svg {
  color: #322bff;
  width: 30px;
  height: 30px;
}

body header .menu .darkBtn {
  position: absolute;
  top: 5%;
  left: 20%;
  background-color: transparent;
  border: none;
  display: none;
}

body header .menu .darkBtn:focus {
  outline: none;
}

body header .menu .darkBtn svg {
  width: 30px;
  height: 30px;
}

body header .menu .darkBtn svg * {
  fill: #322bff;
  -webkit-transform: 0.5s;
          transform: 0.5s;
}

body header .menu .menuContent {
  width: 100%;
  opacity: 0;
  -webkit-transition: 0.5s 1s;
  transition: 0.5s 1s;
  padding: 0 10%;
  pointer-events: none;
}

body header .menu .menuContent .title {
  font-size: 18px;
  font-family: NanamiEL;
  color: #999;
  padding-left: 45px;
  font-family: NanamiR;
  color: #322bff;
  opacity: 0.38;
}

@media (max-width: 768px) {
  body header .menu .menuContent .title {
    padding-left: 10px;
    font-size: 20px;
  }
}

body header .menu .menuContent ul {
  list-style: none;
  padding: 0;
}

body header .menu .menuContent ul li {
  width: 400px;
  height: 90px;
  position: relative;
  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;
}

@media (max-width: 768px) {
  body header .menu .menuContent ul li {
    height: 70px;
  }
}

body header .menu .menuContent ul li a {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  color: #322bff;
  text-decoration: none;
  font-size: 45px;
  display: block;
  height: 60px;
  overflow: hidden;
  position: relative;
  width: 80%;
}

@media (max-width: 768px) {
  body header .menu .menuContent ul li a {
    width: 95%;
  }
}

body header .menu .menuContent ul li a:hover .front {
  -webkit-transform: translateY(-100%);
          transform: translateY(-100%);
}

body header .menu .menuContent ul li a:hover .back {
  -webkit-transform: translateY(0%);
          transform: translateY(0%);
}

body header .menu .menuContent ul li a .front {
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

body header .menu .menuContent ul li a .front.hide {
  -webkit-transform: translateY(100%);
          transform: translateY(100%);
}

body header .menu .menuContent ul li a .back {
  -webkit-transition: 0.5s;
  transition: 0.5s;
  position: absolute;
  top: 0;
  -webkit-transform: translateY(100%);
          transform: translateY(100%);
}

body header .menu .menuMedia {
  position: absolute;
  bottom: 10px;
  right: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media (max-width: 768px) {
  body header .menu .menuMedia {
    display: block;
    bottom: 30px;
    left: 5%;
  }
}

body header .menu .menuMedia .mediaLink {
  text-decoration: none;
  display: inline;
  margin: 5px 15px;
  padding: 0;
  border: none;
  background-color: transparent;
}

body header .menu .menuMedia .mediaLink:focus {
  outline: none;
}

@media (max-width: 768px) {
  body header .menu .menuMedia .mediaLink {
    display: block;
    margin: 10px 15px;
  }
}

body header .menu .menuMedia .mediaLink .linkCon {
  position: relative;
  font-size: 16px;
  overflow: hidden;
  text-decoration: none;
  color: #322bff;
}

body header .menu .menuMedia .mediaLink .linkCon .front {
  -webkit-transition: 0.5s;
  transition: 0.5s;
  text-decoration: none;
}

body header .menu .menuMedia .mediaLink .linkCon .back {
  position: absolute;
  top: 100%;
  left: 0;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  text-decoration: none;
}

body header .menu .menuMedia .mediaLink:hover .linkCon .front {
  -webkit-transform: translateY(-100%);
          transform: translateY(-100%);
}

body header .menu .menuMedia .mediaLink:hover .linkCon .back {
  top: 0;
}

body header .menu.open {
  width: 40%;
  height: 100%;
  border-radius: 0;
  top: 0px;
  right: 0px;
}

body header .menu.open .menuContent {
  opacity: 1;
}

body header .menu.open::before {
  width: 100%;
}

body header .menu.open .closeMenu,
body header .menu.open .darkBtn {
  display: block;
}

@media (max-width: 768px) {
  body header .menu.open {
    width: 100%;
  }
}

body main {
  -webkit-transition: 1.5s;
  transition: 1.5s;
  width: 100%;
  overflow: hidden;
}

@media (max-width: 768px) {
  body main {
    -webkit-transition: 0.8s ease;
    transition: 0.8s ease;
  }
}

body main .scrollDownCon {
  position: absolute;
  left: 50%;
  bottom: 5%;
}

body main .scrollDownCon .scrollDown {
  width: 30px;
  height: 60px;
  border-radius: 15px;
  border: solid 2px #fcfcfc;
  background-color: transparent;
  position: relative;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  overflow: hidden;
}

body main .scrollDownCon .scrollDown::before {
  content: '';
  position: absolute;
  width: 7px;
  height: 17px;
  background-color: #fcfcfc;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  bottom: 20%;
  border-radius: 10px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

body main .scrollDownCon .scrollDown::after {
  content: '';
  position: absolute;
  width: 7px;
  height: 17px;
  background-color: #fcfcfc;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  bottom: 100%;
  border-radius: 10px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

body main .scrollDownCon:hover .scrollDown::before {
  bottom: -50%;
}

body main .scrollDownCon:hover .scrollDown::after {
  bottom: 20%;
}

body main.move {
  -webkit-transform: translateX(-40%);
          transform: translateX(-40%);
}

@media (max-width: 768px) {
  body main.move {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}

body main .services .servicesBeyond {
  padding: 10em 6em 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  height: 100vh;
  width: 100%;
  position: relative;
  overflow: hidden;
}

@media (max-width: 768px) {
  body main .services .servicesBeyond {
    padding: 10em 1em 0;
  }
}

body main .services .servicesBeyond ::-moz-selection {
  background: #322bff;
  color: #fcfcfc;
}

body main .services .servicesBeyond ::selection {
  background: #322bff;
  color: #fcfcfc;
}

body main .services .servicesBeyond .circle {
  position: absolute;
  top: 100%;
  left: 30%;
  width: 100px;
  height: 100px;
  background-color: #134074;
  border-radius: 50%;
  -webkit-transition: 1s;
  transition: 1s;
}

body main .services .servicesBeyond .circle:hover {
  -webkit-transform: scale(1.5);
          transform: scale(1.5);
}

body main .services .servicesBeyond .circle:nth-child(1) {
  -webkit-animation: circleMove 9s infinite 3s;
          animation: circleMove 9s infinite 3s;
  left: 1006px;
  width: 40px;
  height: 40px;
  opacity: 0.2;
}

body main .services .servicesBeyond .circle:nth-child(2) {
  -webkit-animation: circleMove 8s infinite 9s;
          animation: circleMove 8s infinite 9s;
  left: 786px;
  width: 10px;
  height: 10px;
  opacity: 0.2;
}

body main .services .servicesBeyond .circle:nth-child(3) {
  -webkit-animation: circleMove 6s infinite 2s;
          animation: circleMove 6s infinite 2s;
  left: 1226px;
  width: 40px;
  height: 40px;
  opacity: 0.2;
}

body main .services .servicesBeyond .circle:nth-child(4) {
  -webkit-animation: circleMove 7s infinite 8s;
          animation: circleMove 7s infinite 8s;
  left: 573px;
  width: 10px;
  height: 10px;
  opacity: 0.2;
}

body main .services .servicesBeyond .circle:nth-child(5) {
  -webkit-animation: circleMove 9s infinite 7s;
          animation: circleMove 9s infinite 7s;
  left: 1836px;
  width: 40px;
  height: 40px;
  opacity: 1;
}

body main .services .servicesBeyond .circle:nth-child(6) {
  -webkit-animation: circleMove 6s infinite 4s;
          animation: circleMove 6s infinite 4s;
  left: 356px;
  width: 10px;
  height: 10px;
  opacity: 0.2;
}

body main .services .servicesBeyond .circle:nth-child(7) {
  -webkit-animation: circleMove 12s infinite 10s;
          animation: circleMove 12s infinite 10s;
  left: 1388px;
  width: 40px;
  height: 40px;
  opacity: 0.2;
}

body main .services .servicesBeyond .circle:nth-child(8) {
  -webkit-animation: circleMove 8s infinite 4s;
          animation: circleMove 8s infinite 4s;
  left: 871px;
  width: 10px;
  height: 10px;
  opacity: 0.2;
}

body main .services .servicesBeyond .circle:nth-child(9) {
  -webkit-animation: circleMove 11s infinite 8s;
          animation: circleMove 11s infinite 8s;
  left: 1040px;
  width: 40px;
  height: 40px;
  opacity: 0.2;
}

body main .services .servicesBeyond .circle:nth-child(10) {
  -webkit-animation: circleMove 10s infinite 5s;
          animation: circleMove 10s infinite 5s;
  left: 1945px;
  width: 10px;
  height: 10px;
  opacity: 0.2;
}

body main .services .servicesBeyond .circle:nth-child(11) {
  -webkit-animation: circleMove 11s infinite 4s;
          animation: circleMove 11s infinite 4s;
  left: 244px;
  width: 40px;
  height: 40px;
  opacity: 0.2;
}

body main .services .servicesBeyond .circle:nth-child(12) {
  -webkit-animation: circleMove 12s infinite 10s;
          animation: circleMove 12s infinite 10s;
  left: 1609px;
  width: 10px;
  height: 10px;
  opacity: 0.2;
}

body main .services .servicesBeyond .circle:nth-child(13) {
  -webkit-animation: circleMove 10s infinite 6s;
          animation: circleMove 10s infinite 6s;
  left: 1071px;
  width: 40px;
  height: 40px;
  opacity: 0.2;
}

body main .services .servicesBeyond .circle:nth-child(14) {
  -webkit-animation: circleMove 6s infinite 4s;
          animation: circleMove 6s infinite 4s;
  left: 328px;
  width: 10px;
  height: 10px;
  opacity: 0.2;
}

body main .services .servicesBeyond .circle:nth-child(15) {
  -webkit-animation: circleMove 10s infinite 9s;
          animation: circleMove 10s infinite 9s;
  left: 623px;
  width: 40px;
  height: 40px;
  opacity: 0.2;
}

body main .services .servicesBeyond .circle:nth-child(16) {
  -webkit-animation: circleMove 9s infinite 6s;
          animation: circleMove 9s infinite 6s;
  left: 1589px;
  width: 10px;
  height: 10px;
  opacity: 0.2;
}

body main .services .servicesBeyond .circle:nth-child(17) {
  -webkit-animation: circleMove 12s infinite 10s;
          animation: circleMove 12s infinite 10s;
  left: 1849px;
  width: 40px;
  height: 40px;
  opacity: 0.2;
}

body main .services .servicesBeyond .circle:nth-child(18) {
  -webkit-animation: circleMove 6s infinite 7s;
          animation: circleMove 6s infinite 7s;
  left: 1278px;
  width: 10px;
  height: 10px;
  opacity: 0.2;
}

body main .services .servicesBeyond .circle:nth-child(19) {
  -webkit-animation: circleMove 11s infinite 9s;
          animation: circleMove 11s infinite 9s;
  left: 960px;
  width: 40px;
  height: 40px;
  opacity: 0.2;
}

body main .services .servicesBeyond .circle:nth-child(20) {
  -webkit-animation: circleMove 7s infinite 7s;
          animation: circleMove 7s infinite 7s;
  left: 836px;
  width: 10px;
  height: 10px;
  opacity: 0.2;
}

body main .services .servicesBeyond .circle:nth-child(21) {
  -webkit-animation: circleMove 8s infinite 7s;
          animation: circleMove 8s infinite 7s;
  left: 455px;
  width: 40px;
  height: 40px;
  opacity: 0.2;
}

body main .services .servicesBeyond .circle:nth-child(22) {
  -webkit-animation: circleMove 6s infinite 8s;
          animation: circleMove 6s infinite 8s;
  left: 821px;
  width: 10px;
  height: 10px;
  opacity: 0.2;
}

body main .services .servicesBeyond .circle:nth-child(23) {
  -webkit-animation: circleMove 11s infinite 1s;
          animation: circleMove 11s infinite 1s;
  left: 1407px;
  width: 40px;
  height: 40px;
  opacity: 0.2;
}

body main .services .servicesBeyond .circle:nth-child(24) {
  -webkit-animation: circleMove 6s infinite 7s;
          animation: circleMove 6s infinite 7s;
  left: 1219px;
  width: 10px;
  height: 10px;
  opacity: 0.2;
}

body main .services .servicesBeyond .circle:nth-child(25) {
  -webkit-animation: circleMove 9s infinite 1s;
          animation: circleMove 9s infinite 1s;
  left: 476px;
  width: 40px;
  height: 40px;
  opacity: 0.2;
}

body main .services .servicesBeyond .circle:nth-child(26) {
  -webkit-animation: circleMove 6s infinite 9s;
          animation: circleMove 6s infinite 9s;
  left: 263px;
  width: 10px;
  height: 10px;
  opacity: 0.2;
}

body main .services .servicesBeyond .circle:nth-child(27) {
  -webkit-animation: circleMove 9s infinite 6s;
          animation: circleMove 9s infinite 6s;
  left: 1265px;
  width: 40px;
  height: 40px;
  opacity: 0.2;
}

body main .services .servicesBeyond .circle:nth-child(28) {
  -webkit-animation: circleMove 7s infinite 5s;
          animation: circleMove 7s infinite 5s;
  left: 1060px;
  width: 10px;
  height: 10px;
  opacity: 0.2;
}

body main .services .servicesBeyond .circle:nth-child(29) {
  -webkit-animation: circleMove 7s infinite 2s;
          animation: circleMove 7s infinite 2s;
  left: 691px;
  width: 40px;
  height: 40px;
  opacity: 0.2;
}

body main .services .servicesBeyond .circle:nth-child(30) {
  -webkit-animation: circleMove 9s infinite 6s;
          animation: circleMove 9s infinite 6s;
  left: 835px;
  width: 10px;
  height: 10px;
  opacity: 0.2;
}

body main .services .servicesBeyond .circle:nth-child(31) {
  -webkit-animation: circleMove 7s infinite 5s;
          animation: circleMove 7s infinite 5s;
  left: 897px;
  width: 40px;
  height: 40px;
  opacity: 0.2;
}

body main .services .servicesBeyond .circle:nth-child(32) {
  -webkit-animation: circleMove 12s infinite 2s;
          animation: circleMove 12s infinite 2s;
  left: 1931px;
  width: 10px;
  height: 10px;
  opacity: 0.2;
}

body main .services .servicesBeyond .circle:nth-child(33) {
  -webkit-animation: circleMove 6s infinite 10s;
          animation: circleMove 6s infinite 10s;
  left: 611px;
  width: 40px;
  height: 40px;
  opacity: 0.2;
}

body main .services .servicesBeyond .circle:nth-child(34) {
  -webkit-animation: circleMove 7s infinite 7s;
          animation: circleMove 7s infinite 7s;
  left: 1621px;
  width: 10px;
  height: 10px;
  opacity: 0.2;
}

body main .services .servicesBeyond .circle:nth-child(35) {
  -webkit-animation: circleMove 7s infinite 5s;
          animation: circleMove 7s infinite 5s;
  left: 188px;
  width: 40px;
  height: 40px;
  opacity: 0.2;
}

body main .services .servicesBeyond .circle:nth-child(36) {
  -webkit-animation: circleMove 8s infinite 4s;
          animation: circleMove 8s infinite 4s;
  left: 897px;
  width: 10px;
  height: 10px;
  opacity: 0.2;
}

body main .services .servicesBeyond .circle:nth-child(37) {
  -webkit-animation: circleMove 6s infinite 9s;
          animation: circleMove 6s infinite 9s;
  left: 257px;
  width: 40px;
  height: 40px;
  opacity: 0.2;
}

body main .services .servicesBeyond .circle:nth-child(38) {
  -webkit-animation: circleMove 10s infinite 4s;
          animation: circleMove 10s infinite 4s;
  left: 1169px;
  width: 10px;
  height: 10px;
  opacity: 0.2;
}

body main .services .servicesBeyond .circle:nth-child(39) {
  -webkit-animation: circleMove 12s infinite 1s;
          animation: circleMove 12s infinite 1s;
  left: 1053px;
  width: 40px;
  height: 40px;
  opacity: 0.2;
}

body main .services .servicesBeyond .circle:nth-child(40) {
  -webkit-animation: circleMove 7s infinite 1s;
          animation: circleMove 7s infinite 1s;
  left: 918px;
  width: 10px;
  height: 10px;
  opacity: 0.2;
}

body main .services .servicesBeyond .circle:nth-child(41) {
  -webkit-animation: circleMove 11s infinite 6s;
          animation: circleMove 11s infinite 6s;
  left: 14px;
  width: 40px;
  height: 40px;
  opacity: 0.2;
}

body main .services .servicesBeyond .circle:nth-child(42) {
  -webkit-animation: circleMove 8s infinite 7s;
          animation: circleMove 8s infinite 7s;
  left: 234px;
  width: 10px;
  height: 10px;
  opacity: 0.2;
}

body main .services .servicesBeyond .circle:nth-child(43) {
  -webkit-animation: circleMove 9s infinite 1s;
          animation: circleMove 9s infinite 1s;
  left: 437px;
  width: 40px;
  height: 40px;
  opacity: 0.2;
}

body main .services .servicesBeyond .circle:nth-child(44) {
  -webkit-animation: circleMove 6s infinite 4s;
          animation: circleMove 6s infinite 4s;
  left: 1972px;
  width: 10px;
  height: 10px;
  opacity: 0.2;
}

body main .services .servicesBeyond .circle:nth-child(45) {
  -webkit-animation: circleMove 6s infinite 5s;
          animation: circleMove 6s infinite 5s;
  left: 1750px;
  width: 40px;
  height: 40px;
  opacity: 0.2;
}

body main .services .servicesBeyond .circle:nth-child(46) {
  -webkit-animation: circleMove 11s infinite 4s;
          animation: circleMove 11s infinite 4s;
  left: 452px;
  width: 10px;
  height: 10px;
  opacity: 0.2;
}

body main .services .servicesBeyond .circle:nth-child(47) {
  -webkit-animation: circleMove 6s infinite 2s;
          animation: circleMove 6s infinite 2s;
  left: 727px;
  width: 40px;
  height: 40px;
  opacity: 0.2;
}

body main .services .servicesBeyond .circle:nth-child(48) {
  -webkit-animation: circleMove 12s infinite 5s;
          animation: circleMove 12s infinite 5s;
  left: 142px;
  width: 10px;
  height: 10px;
  opacity: 0.2;
}

body main .services .servicesBeyond .circle:nth-child(49) {
  -webkit-animation: circleMove 11s infinite 3s;
          animation: circleMove 11s infinite 3s;
  left: 191px;
  width: 40px;
  height: 40px;
  opacity: 0.2;
}

body main .services .servicesBeyond .circle:nth-child(50) {
  -webkit-animation: circleMove 6s infinite 3s;
          animation: circleMove 6s infinite 3s;
  left: 1399px;
  width: 10px;
  height: 10px;
  opacity: 0.2;
}

@-webkit-keyframes circleMove {
  from {
    top: 100%;
  }
  to {
    top: -30%;
  }
}

@keyframes circleMove {
  from {
    top: 100%;
  }
  to {
    top: -30%;
  }
}

body main .services .servicesBeyond .servicesLeftText * {
  color: #322bff;
}

body main .services .servicesBeyond .servicesLeftText .title {
  font-family: NanamiL;
  font-size: 60px;
}

@media (max-width: 768px) {
  body main .services .servicesBeyond .servicesLeftText .title {
    font-size: 50px;
    width: 100%;
  }
}

body main .services .servicesBeyond .servicesLeftText .title .titleRow {
  padding-top: 100%;
  -webkit-transition: 2s;
  transition: 2s;
  overflow: hidden;
  height: 75px;
}

@media (max-width: 768px) {
  body main .services .servicesBeyond .servicesLeftText .title .titleRow {
    width: 100%;
  }
}

body main .services .servicesBeyond .servicesLeftText .title.show .titleRow {
  padding-top: 0;
}

body main .services .servicesBeyond .servicesLeftText .des .desRow {
  font-size: 20px;
  height: 30px;
  padding-top: 100%;
  -webkit-transition: 2s 0.5s;
  transition: 2s 0.5s;
  overflow: hidden;
}

@media (max-width: 768px) {
  body main .services .servicesBeyond .servicesLeftText .des .desRow {
    height: auto;
  }
}

body main .services .servicesBeyond .servicesLeftText .des.show .desRow {
  padding-top: 0;
}

body main .services .servicesBeyond .servicesRightText {
  font-size: 20px;
  color: #625ed9;
  padding-top: 18em;
}

@media (max-width: 768px) {
  body main .services .servicesBeyond .servicesRightText {
    padding-top: 5em;
  }
}

body main .services .servicesBeyond .servicesRightText .rightTextRow {
  font-size: 20px;
  color: #625ed9;
  padding-top: 100%;
  -webkit-transition: 2s 1.5s;
  transition: 2s 1.5s;
  overflow: hidden;
  height: 27px;
  margin-bottom: 3px;
}

body main .services .servicesBeyond .servicesRightText.show .rightTextRow {
  padding-top: 0;
}

body main .services .websites {
  min-height: 100vh;
  background-color: #625ed9;
  padding: 2em 5em 0;
}

@media (max-width: 768px) {
  body main .services .websites {
    padding: 2em 1em 5em;
  }
}

body main .services .websites ::-moz-selection {
  background: #fcfcfc;
  color: #625ed9;
}

body main .services .websites ::selection {
  background: #fcfcfc;
  color: #625ed9;
}

body main .services .websites .websitesTitle {
  width: 100%;
  text-align: center;
  font-size: 70px;
  color: #fcfcfc;
  margin-bottom: 1em;
}

@media (max-width: 768px) {
  body main .services .websites .websitesTitle {
    margin-bottom: 0em;
  }
}

body main .services .websites .websitesText {
  margin-top: 4em;
}

body main .services .websites .websitesText .title {
  font-size: 35px;
  color: #fcfcfc;
}

body main .services .websites .websitesText .des {
  font-size: 20px;
  opacity: 0.7;
  width: 70%;
  color: #fcfcfc;
}

@media (max-width: 768px) {
  body main .services .websites .websitesText .des {
    width: 100%;
  }
}

body main .services .websites .websitesText .link {
  display: block;
  text-decoration: none;
  background-color: #fcfcfc;
  color: #625ed9;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 10px 50px;
  font-size: 20px;
  border-radius: 25px;
}

body main .services .websites .websitesText .link .buttonCon {
  position: relative;
  overflow: hidden;
}

body main .services .websites .websitesText .link .buttonCon .front {
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

body main .services .websites .websitesText .link .buttonCon .back {
  position: absolute;
  top: -10%;
  left: 50%;
  -webkit-transform: translateX(-100%) rotate(-90deg) scale(0.2);
          transform: translateX(-100%) rotate(-90deg) scale(0.2);
  opacity: 0;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

body main .services .websites .websitesText .link .buttonCon .back svg {
  width: 40px;
  height: 40px;
}

body main .services .websites .websitesText .link:hover .front {
  -webkit-transform: translateY(-100%);
          transform: translateY(-100%);
}

body main .services .websites .websitesText .link:hover .back {
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  opacity: 1;
}

body main .services .websites .imgFrame {
  margin: 0 auto;
  width: 550px;
  height: 350px;
  background-color: #fcfcfc;
  border-radius: 30px;
  padding: 8px 8px 50px 8px;
  -webkit-box-shadow: 0px 30px 50px -20px rgba(0, 0, 0, 0.3);
          box-shadow: 0px 30px 50px -20px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
  body main .services .websites .imgFrame {
    width: 280px;
    height: 200px;
  }
}

body main .services .websites .imgFrame img {
  width: 100%;
  height: auto;
  overflow: scroll;
  border-radius: 30px;
}

body main .services .wordsSliderCon {
  height: 100vh;
  width: 100%;
}

body main .services .wordsSliderCon .wordsSliderWrapp {
  position: relative;
  min-width: 1500px;
  height: 100%;
}

body main .services .wordsSliderCon .wordsSliderWrapp .col1 .sliderWord {
  -webkit-animation: wordMove linear 10s infinite;
          animation: wordMove linear 10s infinite;
}

body main .services .wordsSliderCon .wordsSliderWrapp .col2 .sliderWord {
  -webkit-animation: wordMove linear 10s infinite 2.5s;
          animation: wordMove linear 10s infinite 2.5s;
}

body main .services .wordsSliderCon .wordsSliderWrapp .col3 .sliderWord {
  -webkit-animation: wordMove linear 10s infinite 5s;
          animation: wordMove linear 10s infinite 5s;
}

body main .services .wordsSliderCon .wordsSliderWrapp .col4 .sliderWord {
  -webkit-animation: wordMove linear 10s infinite 7.5s;
          animation: wordMove linear 10s infinite 7.5s;
}

body main .services .wordsSliderCon .wordsSliderWrapp .col5 .sliderWord {
  -webkit-animation: wordMove linear 10s infinite 10s;
          animation: wordMove linear 10s infinite 10s;
}

body main .services .wordsSliderCon .wordsSliderWrapp .sliderWord {
  position: absolute;
  font-size: 60px;
  color: transparent;
  -webkit-text-stroke: 2px #322bff;
  left: -50%;
}

body main .services .wordsSliderCon .wordsSliderWrapp .sliderWord.fill {
  color: #322bff;
  -webkit-text-stroke: initial;
}

body main .services .wordsSliderCon .wordsSliderWrapp .sliderWord:nth-child(2) {
  -webkit-transform: translateX(50%);
          transform: translateX(50%);
}

body main .services .wordsSliderCon .wordsSliderWrapp .sliderWord:nth-child(3) {
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
}

body main .services .wordsSliderCon .wordsSliderWrapp .sliderWord:nth-child(4) {
  -webkit-transform: translateX(-100%);
          transform: translateX(-100%);
}

body main .services .wordsSliderCon .wordsSliderWrapp .sliderWord:nth-child(5) {
  -webkit-transform: translateX(20%);
          transform: translateX(20%);
}

body main .services .wordsSliderCon .wordsSliderWrapp .sliderWord.t10 {
  top: 5%;
}

body main .services .wordsSliderCon .wordsSliderWrapp .sliderWord.t30 {
  top: 25%;
}

body main .services .wordsSliderCon .wordsSliderWrapp .sliderWord.t50 {
  top: 45%;
}

body main .services .wordsSliderCon .wordsSliderWrapp .sliderWord.t70 {
  top: 65%;
}

body main .services .wordsSliderCon .wordsSliderWrapp .sliderWord.t90 {
  top: 85%;
}

@-webkit-keyframes wordMove {
  from {
    left: -50%;
  }
  to {
    left: 120%;
  }
}

@keyframes wordMove {
  from {
    left: -50%;
  }
  to {
    left: 120%;
  }
}

body main .services .mobileApps {
  background-color: #6d8fb9;
  min-height: 130vh;
}

body main .services .mobileApps ::-moz-selection {
  background: #fcfcfc;
  color: #6d8fb9;
}

body main .services .mobileApps ::selection {
  background: #fcfcfc;
  color: #6d8fb9;
}

body main .services .mobileApps .mobileAppsTitle {
  width: 100%;
  text-align: center;
  font-size: 70px;
  color: #fcfcfc;
  font-family: NanamiL;
  padding: 1em 0 0;
}

@media (max-width: 768px) {
  body main .services .mobileApps .mobileAppsTitle {
    font-size: 60px;
  }
}

body main .services .mobileApps .mobileAppstext {
  margin-top: 10em;
}

@media (max-width: 768px) {
  body main .services .mobileApps .mobileAppstext {
    margin-top: 2em;
    padding: 0 2em;
  }
}

body main .services .mobileApps .mobileAppstext * {
  color: #fcfcfc;
}

body main .services .mobileApps .mobileAppstext .title {
  font-size: 35px;
}

body main .services .mobileApps .mobileAppstext .des {
  font-size: 20px;
  opacity: 0.7;
}

body main .services .mobileApps .mobileAppstext .link {
  display: block;
  text-decoration: none;
  background-color: #fcfcfc;
  color: #134074;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 10px 50px;
  font-size: 20px;
  border-radius: 25px;
}

body main .services .mobileApps .mobileAppstext .link .buttonCon {
  position: relative;
  overflow: hidden;
}

body main .services .mobileApps .mobileAppstext .link .buttonCon .front {
  -webkit-transition: 0.5s;
  transition: 0.5s;
  color: #134074;
}

body main .services .mobileApps .mobileAppstext .link .buttonCon .back {
  position: absolute;
  top: -10%;
  left: 50%;
  -webkit-transform: translateX(-100%) rotate(-90deg) scale(0.2);
          transform: translateX(-100%) rotate(-90deg) scale(0.2);
  opacity: 0;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

body main .services .mobileApps .mobileAppstext .link .buttonCon .back * {
  color: #134074;
}

body main .services .mobileApps .mobileAppstext .link .buttonCon .back svg {
  width: 40px;
  height: 40px;
}

body main .services .mobileApps .mobileAppstext .link:hover .front {
  -webkit-transform: translateY(-100%);
          transform: translateY(-100%);
}

body main .services .mobileApps .mobileAppstext .link:hover .back {
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  opacity: 1;
}

body main .services .mobileApps .mobileFramCon {
  margin: -100px auto 0;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

@media (max-width: 768px) {
  body main .services .mobileApps .mobileFramCon {
    margin-bottom: 200px;
  }
}

body main .services .mobileApps .mobileFramCon .mobileFram {
  width: 52%;
}

@media (max-width: 768px) {
  body main .services .mobileApps .mobileFramCon .mobileFram {
    width: 95%;
  }
}

body main .services .mobileApps .mobileFramCon .mobileContent {
  position: absolute;
  top: 2%;
  left: 50%;
  width: 48%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

@media (max-width: 768px) {
  body main .services .mobileApps .mobileFramCon .mobileContent {
    top: 1.5%;
    right: 10%;
    width: 88%;
  }
}

body main .services .servicesBeyond2 {
  height: 100vh;
  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;
}

@media (max-width: 768px) {
  body main .services .servicesBeyond2 {
    height: 80vh;
  }
}

body main .services .servicesBeyond2 ::-moz-selection {
  background: #322bff;
  color: #fcfcfc;
}

body main .services .servicesBeyond2 ::selection {
  background: #322bff;
  color: #fcfcfc;
}

body main .services .servicesBeyond2 .text {
  text-align: center;
  color: #322bff;
}

body main .services .servicesBeyond2 .text .title {
  font-size: 60px;
  text-align: center;
}

@media (max-width: 768px) {
  body main .services .servicesBeyond2 .text .title {
    font-size: 50px;
  }
}

body main .services .servicesBeyond2 .text .des {
  font-size: 20px;
  text-align: center;
  width: 50%;
  margin: 0 auto;
}

@media (max-width: 768px) {
  body main .services .servicesBeyond2 .text .des {
    margin: 10px auto;
    width: 90%;
    line-height: 35px;
    font-size: 22px;
  }
}

body main .services .host {
  background-color: #acc0d9;
  min-height: 100vh;
}

body main .services .host ::-moz-selection {
  background: #fcfcfc;
  color: #6d8fb9;
}

body main .services .host ::selection {
  background: #fcfcfc;
  color: #6d8fb9;
}

body main .services .host .hostTitle {
  width: 100%;
  text-align: center;
  font-size: 70px;
  color: #fcfcfc;
  font-family: NanamiL;
  padding: 1em 0;
}

@media (max-width: 768px) {
  body main .services .host .hostTitle {
    padding: 1em 0 0;
  }
}

body main .services .host .hostText {
  margin-top: 7em;
}

@media (max-width: 768px) {
  body main .services .host .hostText {
    margin-top: 1em;
    padding: 0 2em;
  }
}

body main .services .host .hostText * {
  color: #fcfcfc;
}

body main .services .host .hostText .title {
  font-size: 35px;
}

body main .services .host .hostText .des {
  font-size: 20px;
}

body main .services .host .hostText .link {
  display: block;
  text-decoration: none;
  background-color: #fcfcfc;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 20px;
  border-radius: 25px;
  padding: 10px 50px;
}

body main .services .host .hostText .link * {
  color: #625ed9;
}

body main .services .host .hostText .link .buttonCon {
  position: relative;
  overflow: hidden;
}

body main .services .host .hostText .link .buttonCon .front {
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

body main .services .host .hostText .link .buttonCon .back {
  position: absolute;
  top: -10%;
  left: 50%;
  -webkit-transform: translateX(-100%) rotate(-90deg) scale(0.2);
          transform: translateX(-100%) rotate(-90deg) scale(0.2);
  opacity: 0;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

body main .services .host .hostText .link .buttonCon .back svg {
  width: 40px;
  height: 40px;
}

body main .services .host .hostText .link:hover .front {
  -webkit-transform: translateY(-100%);
          transform: translateY(-100%);
}

body main .services .host .hostText .link:hover .back {
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  opacity: 1;
}

body main .services .host .hostImg {
  position: relative;
  width: 400px;
  height: 530px;
  margin: 0 auto;
  margin-bottom: 5em;
}

@media (max-width: 768px) {
  body main .services .host .hostImg {
    width: 300px;
    height: 400px;
    margin-top: 5em;
  }
}

body main .services .host .hostImg .server {
  position: absolute;
  top: 10%;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 50%;
  z-index: 10;
  -webkit-animation: imgServer 5s ease infinite;
          animation: imgServer 5s ease infinite;
}

body main .services .host .hostImg .serverBase {
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translate(-50%, 0%) scale(1);
          transform: translate(-50%, 0%) scale(1);
  width: 100%;
  -webkit-animation: baseMove 5s ease infinite;
          animation: baseMove 5s ease infinite;
}

body main .services .host .hostImg .frontServerCircle {
  position: absolute;
  top: 20%;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 100%;
  z-index: 11;
  -webkit-animation: imgCircle 5s ease infinite 0.5s;
          animation: imgCircle 5s ease infinite 0.5s;
}

body main .services .host .hostImg .backServerCircle {
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 100%;
  -webkit-animation: imgCircle 5s ease infinite 0.5s;
          animation: imgCircle 5s ease infinite 0.5s;
}

@-webkit-keyframes imgCircle {
  0% {
    -webkit-transform: translate(-50%, 0);
            transform: translate(-50%, 0);
  }
  50% {
    -webkit-transform: translate(-50%, -50px);
            transform: translate(-50%, -50px);
  }
  100% {
    -webkit-transform: translate(-50%, 0);
            transform: translate(-50%, 0);
  }
}

@keyframes imgCircle {
  0% {
    -webkit-transform: translate(-50%, 0);
            transform: translate(-50%, 0);
  }
  50% {
    -webkit-transform: translate(-50%, -50px);
            transform: translate(-50%, -50px);
  }
  100% {
    -webkit-transform: translate(-50%, 0);
            transform: translate(-50%, 0);
  }
}

@-webkit-keyframes imgServer {
  0% {
    -webkit-transform: translate(-50%, 0);
            transform: translate(-50%, 0);
  }
  50% {
    -webkit-transform: translate(-50%, -50px);
            transform: translate(-50%, -50px);
  }
  100% {
    -webkit-transform: translate(-50%, 0);
            transform: translate(-50%, 0);
  }
}

@keyframes imgServer {
  0% {
    -webkit-transform: translate(-50%, 0);
            transform: translate(-50%, 0);
  }
  50% {
    -webkit-transform: translate(-50%, -50px);
            transform: translate(-50%, -50px);
  }
  100% {
    -webkit-transform: translate(-50%, 0);
            transform: translate(-50%, 0);
  }
}

@-webkit-keyframes baseMove {
  0% {
    -webkit-transform: translate(-50%, 0%) scale(1);
            transform: translate(-50%, 0%) scale(1);
  }
  50% {
    -webkit-transform: translate(-50%, 0%) scale(1.1);
            transform: translate(-50%, 0%) scale(1.1);
  }
  100% {
    -webkit-transform: translate(-50%, 0%) scale(1);
            transform: translate(-50%, 0%) scale(1);
  }
}

@keyframes baseMove {
  0% {
    -webkit-transform: translate(-50%, 0%) scale(1);
            transform: translate(-50%, 0%) scale(1);
  }
  50% {
    -webkit-transform: translate(-50%, 0%) scale(1.1);
            transform: translate(-50%, 0%) scale(1.1);
  }
  100% {
    -webkit-transform: translate(-50%, 0%) scale(1);
            transform: translate(-50%, 0%) scale(1);
  }
}

body main .projects .intro {
  padding: 8em 0 0;
  position: relative;
  height: 100vh;
  overflow: hidden;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

@media (max-width: 768px) {
  body main .projects .intro {
    padding: 8em 2em 0;
  }
}

body main .projects .intro .projectsTitle {
  font-size: 70px;
  color: #322bff;
  text-align: center;
}

@media (max-width: 768px) {
  body main .projects .intro .projectsTitle {
    font-size: 50px;
    text-align: initial;
  }
}

body main .projects .intro .projectsDes {
  font-size: 30px;
  color: #322bff;
  text-align: center;
  width: 30%;
  margin: 0 auto;
  opacity: 0.7;
}

@media (max-width: 768px) {
  body main .projects .intro .projectsDes {
    width: 100%;
    text-align: initial;
    font-size: 20px;
    margin-top: 10px;
  }
}

body main .projects .intro .bigCircle {
  width: 200vw;
  height: 200vw;
  border-radius: 50%;
  background-color: #322bff;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
}

body main .projects .intro .projectsDesWhite {
  color: #fcfcfc;
  width: 40%;
  z-index: 10;
  font-size: 25px;
  text-align: center;
  position: absolute;
  top: 70%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

@media (max-width: 768px) {
  body main .projects .intro .projectsDesWhite {
    width: 95%;
    font-size: 22px;
  }
}

body main .projects .ourWork {
  background-color: #322bff;
  padding: 5em 6em;
}

@media (max-width: 768px) {
  body main .projects .ourWork {
    padding: 5em 0em;
  }
}

body main .projects .ourWork * {
  color: #fcfcfc;
}

body main .projects .ourWork .ourWorkTitle {
  font-size: 60px;
}

body main .projects .ourWork .ourWorkdes {
  font-size: 25px;
  width: 50%;
  font-family: NanamiL;
  margin-bottom: 4em;
}

@media (max-width: 768px) {
  body main .projects .ourWork .ourWorkdes {
    width: 100%;
    font-family: NanamiR;
    font-size: 20px;
    margin-top: 20px;
    opacity: 0.8;
  }
}

body main .projects .ourWork .projectscon .secondCol {
  margin-top: 50vh;
}

@media (max-width: 768px) {
  body main .projects .ourWork .projectscon .secondCol {
    margin-top: 0;
  }
}

body main .projects .ourWork .projectscon .projectCard {
  margin-bottom: 70px;
  padding: 0 3em;
  position: relative;
}

@media (max-width: 768px) {
  body main .projects .ourWork .projectscon .projectCard {
    padding: 0 1em;
  }
}

body main .projects .ourWork .projectscon .projectCard .cardImg {
  width: 100%;
  height: 100vh;
  background-color: #fcfcfc;
  border-radius: 30px;
  position: relative;
  -o-object-fit: none;
     object-fit: none;
  z-index: 10;
  -o-object-position: 50% 0%;
     object-position: 50% 0%;
  -webkit-transition: 0.1s ease;
  transition: 0.1s ease;
}

@media (max-width: 768px) {
  body main .projects .ourWork .projectscon .projectCard .cardImg {
    height: 500px;
  }
}

body main .projects .ourWork .projectscon .projectCard .cardImgshadow {
  border-radius: 30px;
  width: calc(100% - 6em);
  height: 100vh;
  position: absolute;
  right: calc(3em);
  top: 0;
  opacity: 1;
  -webkit-transform: translate(10px, 10px);
          transform: translate(10px, 10px);
  -webkit-filter: blur(20px);
          filter: blur(20px);
  -o-object-position: 50% 0%;
     object-position: 50% 0%;
  -webkit-transition: 0.1s ease;
  transition: 0.1s ease;
}

@media (max-width: 768px) {
  body main .projects .ourWork .projectscon .projectCard .cardImgshadow {
    height: 500px;
  }
}

body main .projects .ourWork .projectscon .projectCard .cardTitle {
  margin-top: 30px;
  font-size: 30px;
  line-height: 20px;
}

@media (max-width: 768px) {
  body main .projects .ourWork .projectscon .projectCard .cardTitle {
    text-align: center;
  }
}

body main .projects .ourWork .projectscon .projectCard .cardDes {
  font-size: 23px;
  color: #ccc;
}

@media (max-width: 768px) {
  body main .projects .ourWork .projectscon .projectCard .cardDes {
    text-align: center;
    font-size: 20px;
  }
}

body main .projects .milestones .title {
  font-size: 80px;
  text-align: center;
  color: #322bff;
  padding: 1.5em 0 1em;
}

@media (max-width: 768px) {
  body main .projects .milestones .title {
    font-size: 50px;
  }
}

body main .projects .milestones .steps {
  padding: 1em 10em 8em;
}

@media (max-width: 768px) {
  body main .projects .milestones .steps {
    padding: 1em 1em 8em;
  }
}

body main .projects .milestones .steps .stepsCard {
  margin-bottom: 50px;
}

body main .projects .milestones .steps .stepsCard .stepNum {
  width: 100%;
  font-size: 130px;
  line-height: 150px;
  color: transparent;
  -webkit-transition: 0.1s ease-in;
  transition: 0.1s ease-in;
  -webkit-text-stroke: 2px #322bff;
}

body main .projects .milestones .steps .stepsCard .stepNum:hover {
  color: #322bff;
}

@media (max-width: 768px) {
  body main .projects .milestones .steps .stepsCard .stepNum {
    text-align: center;
  }
}

body main .projects .milestones .steps .stepsCard .stepTitle {
  color: #322bff;
  font-size: 35px;
  line-height: 40px;
  margin-bottom: 10px;
}

@media (max-width: 768px) {
  body main .projects .milestones .steps .stepsCard .stepTitle {
    text-align: center;
  }
}

body main .projects .milestones .steps .stepsCard .stepDes {
  font-size: 20px;
  color: #322bff;
  opacity: 0.8;
}

@media (max-width: 768px) {
  body main .projects .milestones .steps .stepsCard .stepDes {
    text-align: center;
    opacity: 1;
  }
}

body main .projects .example {
  min-height: 100vh;
  width: calc(100%-2em);
  background-color: #acc0d9;
  margin: 0 2em 10em;
}

@media (max-width: 768px) {
  body main .projects .example {
    display: none;
  }
}

body main .projects .example.website {
  padding: 8em 0;
}

body main .projects .example .mobileImg {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

body main .projects .example .imgFrame {
  margin: 0 auto;
  width: 1000px;
  height: 580px;
  background-color: #fcfcfc;
  border-radius: 30px;
  padding: 16px 8px 50px 8px;
  -webkit-box-shadow: -30px 30px 50px -20px rgba(0, 0, 0, 0.3);
          box-shadow: -30px 30px 50px -20px rgba(0, 0, 0, 0.3);
  border-radius: 30px;
}

body main .projects .example .imgFrame .iframeCon {
  width: 100%;
  height: 100%;
  border-radius: 30px;
  overflow: hidden;
  -webkit-box-shadow: 1px 1px 10px 0 rgba(0, 0, 0, 0.3) inset;
          box-shadow: 1px 1px 10px 0 rgba(0, 0, 0, 0.3) inset;
  position: relative;
}

body main .projects .example .imgFrame .iframeCon::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  -webkit-box-shadow: 1px 1px 5px 0 rgba(0, 0, 0, 0.2) inset;
          box-shadow: 1px 1px 5px 0 rgba(0, 0, 0, 0.2) inset;
  pointer-events: none;
}

body main .projects .example .imgFrame .iframeCon iframe {
  width: 100%;
  height: 100%;
  border: none;
}

body main .projects .example .imgFrame img {
  width: 100%;
  height: auto;
  overflow: scroll;
  border-radius: 30px;
}

body main .aboutUs ::-moz-selection {
  background: #322bff;
  color: #fcfcfc;
}

body main .aboutUs ::selection {
  background: #322bff;
  color: #fcfcfc;
}

body main .aboutUs .intro {
  height: 100vh;
  overflow: hidden !important;
  position: relative;
}

body main .aboutUs .intro .circle {
  position: absolute;
  top: 100%;
  left: 30%;
  width: 100px;
  height: 100px;
  background-color: #134074;
  border-radius: 50%;
  -webkit-transition: 1s;
  transition: 1s;
}

body main .aboutUs .intro .circle:hover {
  -webkit-transform: scale(1.5);
          transform: scale(1.5);
}

body main .aboutUs .intro .circle:nth-child(1) {
  -webkit-animation: circleMove 8s infinite 2s;
          animation: circleMove 8s infinite 2s;
  left: 1999px;
  width: 40px;
  height: 40px;
  opacity: 0.2;
}

body main .aboutUs .intro .circle:nth-child(2) {
  -webkit-animation: circleMove 10s infinite 8s;
          animation: circleMove 10s infinite 8s;
  left: 1907px;
  width: 10px;
  height: 10px;
  opacity: 0.2;
}

body main .aboutUs .intro .circle:nth-child(3) {
  -webkit-animation: circleMove 8s infinite 10s;
          animation: circleMove 8s infinite 10s;
  left: 1087px;
  width: 40px;
  height: 40px;
  opacity: 0.2;
}

body main .aboutUs .intro .circle:nth-child(4) {
  -webkit-animation: circleMove 11s infinite 2s;
          animation: circleMove 11s infinite 2s;
  left: 1031px;
  width: 10px;
  height: 10px;
  opacity: 0.2;
}

body main .aboutUs .intro .circle:nth-child(5) {
  -webkit-animation: circleMove 7s infinite 5s;
          animation: circleMove 7s infinite 5s;
  left: 346px;
  width: 40px;
  height: 40px;
  opacity: 1;
}

body main .aboutUs .intro .circle:nth-child(6) {
  -webkit-animation: circleMove 10s infinite 1s;
          animation: circleMove 10s infinite 1s;
  left: 1826px;
  width: 10px;
  height: 10px;
  opacity: 0.2;
}

body main .aboutUs .intro .circle:nth-child(7) {
  -webkit-animation: circleMove 11s infinite 2s;
          animation: circleMove 11s infinite 2s;
  left: 732px;
  width: 40px;
  height: 40px;
  opacity: 0.2;
}

body main .aboutUs .intro .circle:nth-child(8) {
  -webkit-animation: circleMove 6s infinite 9s;
          animation: circleMove 6s infinite 9s;
  left: 1712px;
  width: 10px;
  height: 10px;
  opacity: 0.2;
}

body main .aboutUs .intro .circle:nth-child(9) {
  -webkit-animation: circleMove 6s infinite 2s;
          animation: circleMove 6s infinite 2s;
  left: 919px;
  width: 40px;
  height: 40px;
  opacity: 0.2;
}

body main .aboutUs .intro .circle:nth-child(10) {
  -webkit-animation: circleMove 8s infinite 6s;
          animation: circleMove 8s infinite 6s;
  left: 689px;
  width: 10px;
  height: 10px;
  opacity: 0.2;
}

body main .aboutUs .intro .circle:nth-child(11) {
  -webkit-animation: circleMove 9s infinite 10s;
          animation: circleMove 9s infinite 10s;
  left: 842px;
  width: 40px;
  height: 40px;
  opacity: 0.2;
}

body main .aboutUs .intro .circle:nth-child(12) {
  -webkit-animation: circleMove 8s infinite 10s;
          animation: circleMove 8s infinite 10s;
  left: 82px;
  width: 10px;
  height: 10px;
  opacity: 0.2;
}

body main .aboutUs .intro .circle:nth-child(13) {
  -webkit-animation: circleMove 10s infinite 8s;
          animation: circleMove 10s infinite 8s;
  left: 1240px;
  width: 40px;
  height: 40px;
  opacity: 0.2;
}

body main .aboutUs .intro .circle:nth-child(14) {
  -webkit-animation: circleMove 12s infinite 6s;
          animation: circleMove 12s infinite 6s;
  left: 1604px;
  width: 10px;
  height: 10px;
  opacity: 0.2;
}

body main .aboutUs .intro .circle:nth-child(15) {
  -webkit-animation: circleMove 6s infinite 5s;
          animation: circleMove 6s infinite 5s;
  left: 1012px;
  width: 40px;
  height: 40px;
  opacity: 0.2;
}

body main .aboutUs .intro .circle:nth-child(16) {
  -webkit-animation: circleMove 6s infinite 8s;
          animation: circleMove 6s infinite 8s;
  left: 1387px;
  width: 10px;
  height: 10px;
  opacity: 0.2;
}

body main .aboutUs .intro .circle:nth-child(17) {
  -webkit-animation: circleMove 12s infinite 4s;
          animation: circleMove 12s infinite 4s;
  left: 1729px;
  width: 40px;
  height: 40px;
  opacity: 0.2;
}

body main .aboutUs .intro .circle:nth-child(18) {
  -webkit-animation: circleMove 7s infinite 2s;
          animation: circleMove 7s infinite 2s;
  left: 152px;
  width: 10px;
  height: 10px;
  opacity: 0.2;
}

body main .aboutUs .intro .circle:nth-child(19) {
  -webkit-animation: circleMove 12s infinite 9s;
          animation: circleMove 12s infinite 9s;
  left: 1163px;
  width: 40px;
  height: 40px;
  opacity: 0.2;
}

body main .aboutUs .intro .circle:nth-child(20) {
  -webkit-animation: circleMove 11s infinite 2s;
          animation: circleMove 11s infinite 2s;
  left: 1080px;
  width: 10px;
  height: 10px;
  opacity: 0.2;
}

body main .aboutUs .intro .circle:nth-child(21) {
  -webkit-animation: circleMove 7s infinite 8s;
          animation: circleMove 7s infinite 8s;
  left: 675px;
  width: 40px;
  height: 40px;
  opacity: 0.2;
}

body main .aboutUs .intro .circle:nth-child(22) {
  -webkit-animation: circleMove 8s infinite 4s;
          animation: circleMove 8s infinite 4s;
  left: 1319px;
  width: 10px;
  height: 10px;
  opacity: 0.2;
}

body main .aboutUs .intro .circle:nth-child(23) {
  -webkit-animation: circleMove 8s infinite 1s;
          animation: circleMove 8s infinite 1s;
  left: 1349px;
  width: 40px;
  height: 40px;
  opacity: 0.2;
}

body main .aboutUs .intro .circle:nth-child(24) {
  -webkit-animation: circleMove 12s infinite 4s;
          animation: circleMove 12s infinite 4s;
  left: 1013px;
  width: 10px;
  height: 10px;
  opacity: 0.2;
}

body main .aboutUs .intro .circle:nth-child(25) {
  -webkit-animation: circleMove 7s infinite 9s;
          animation: circleMove 7s infinite 9s;
  left: 1216px;
  width: 40px;
  height: 40px;
  opacity: 0.2;
}

body main .aboutUs .intro .circle:nth-child(26) {
  -webkit-animation: circleMove 11s infinite 7s;
          animation: circleMove 11s infinite 7s;
  left: 807px;
  width: 10px;
  height: 10px;
  opacity: 0.2;
}

body main .aboutUs .intro .circle:nth-child(27) {
  -webkit-animation: circleMove 12s infinite 7s;
          animation: circleMove 12s infinite 7s;
  left: 148px;
  width: 40px;
  height: 40px;
  opacity: 0.2;
}

body main .aboutUs .intro .circle:nth-child(28) {
  -webkit-animation: circleMove 9s infinite 7s;
          animation: circleMove 9s infinite 7s;
  left: 851px;
  width: 10px;
  height: 10px;
  opacity: 0.2;
}

body main .aboutUs .intro .circle:nth-child(29) {
  -webkit-animation: circleMove 12s infinite 10s;
          animation: circleMove 12s infinite 10s;
  left: 1849px;
  width: 40px;
  height: 40px;
  opacity: 0.2;
}

body main .aboutUs .intro .circle:nth-child(30) {
  -webkit-animation: circleMove 7s infinite 9s;
          animation: circleMove 7s infinite 9s;
  left: 1873px;
  width: 10px;
  height: 10px;
  opacity: 0.2;
}

body main .aboutUs .intro .circle:nth-child(31) {
  -webkit-animation: circleMove 7s infinite 7s;
          animation: circleMove 7s infinite 7s;
  left: 772px;
  width: 40px;
  height: 40px;
  opacity: 0.2;
}

body main .aboutUs .intro .circle:nth-child(32) {
  -webkit-animation: circleMove 6s infinite 6s;
          animation: circleMove 6s infinite 6s;
  left: 1125px;
  width: 10px;
  height: 10px;
  opacity: 0.2;
}

body main .aboutUs .intro .circle:nth-child(33) {
  -webkit-animation: circleMove 12s infinite 1s;
          animation: circleMove 12s infinite 1s;
  left: 374px;
  width: 40px;
  height: 40px;
  opacity: 0.2;
}

body main .aboutUs .intro .circle:nth-child(34) {
  -webkit-animation: circleMove 11s infinite 4s;
          animation: circleMove 11s infinite 4s;
  left: 1941px;
  width: 10px;
  height: 10px;
  opacity: 0.2;
}

body main .aboutUs .intro .circle:nth-child(35) {
  -webkit-animation: circleMove 9s infinite 1s;
          animation: circleMove 9s infinite 1s;
  left: 776px;
  width: 40px;
  height: 40px;
  opacity: 0.2;
}

body main .aboutUs .intro .circle:nth-child(36) {
  -webkit-animation: circleMove 11s infinite 2s;
          animation: circleMove 11s infinite 2s;
  left: 150px;
  width: 10px;
  height: 10px;
  opacity: 0.2;
}

body main .aboutUs .intro .circle:nth-child(37) {
  -webkit-animation: circleMove 10s infinite 5s;
          animation: circleMove 10s infinite 5s;
  left: 580px;
  width: 40px;
  height: 40px;
  opacity: 0.2;
}

body main .aboutUs .intro .circle:nth-child(38) {
  -webkit-animation: circleMove 10s infinite 2s;
          animation: circleMove 10s infinite 2s;
  left: 652px;
  width: 10px;
  height: 10px;
  opacity: 0.2;
}

body main .aboutUs .intro .circle:nth-child(39) {
  -webkit-animation: circleMove 9s infinite 6s;
          animation: circleMove 9s infinite 6s;
  left: 1451px;
  width: 40px;
  height: 40px;
  opacity: 0.2;
}

body main .aboutUs .intro .circle:nth-child(40) {
  -webkit-animation: circleMove 6s infinite 1s;
          animation: circleMove 6s infinite 1s;
  left: 1022px;
  width: 10px;
  height: 10px;
  opacity: 0.2;
}

body main .aboutUs .intro .circle:nth-child(41) {
  -webkit-animation: circleMove 7s infinite 1s;
          animation: circleMove 7s infinite 1s;
  left: 1027px;
  width: 40px;
  height: 40px;
  opacity: 0.2;
}

body main .aboutUs .intro .circle:nth-child(42) {
  -webkit-animation: circleMove 9s infinite 8s;
          animation: circleMove 9s infinite 8s;
  left: 229px;
  width: 10px;
  height: 10px;
  opacity: 0.2;
}

body main .aboutUs .intro .circle:nth-child(43) {
  -webkit-animation: circleMove 11s infinite 5s;
          animation: circleMove 11s infinite 5s;
  left: 1737px;
  width: 40px;
  height: 40px;
  opacity: 0.2;
}

body main .aboutUs .intro .circle:nth-child(44) {
  -webkit-animation: circleMove 11s infinite 10s;
          animation: circleMove 11s infinite 10s;
  left: 1106px;
  width: 10px;
  height: 10px;
  opacity: 0.2;
}

body main .aboutUs .intro .circle:nth-child(45) {
  -webkit-animation: circleMove 12s infinite 7s;
          animation: circleMove 12s infinite 7s;
  left: 1749px;
  width: 40px;
  height: 40px;
  opacity: 0.2;
}

body main .aboutUs .intro .circle:nth-child(46) {
  -webkit-animation: circleMove 6s infinite 3s;
          animation: circleMove 6s infinite 3s;
  left: 1372px;
  width: 10px;
  height: 10px;
  opacity: 0.2;
}

body main .aboutUs .intro .circle:nth-child(47) {
  -webkit-animation: circleMove 11s infinite 8s;
          animation: circleMove 11s infinite 8s;
  left: 1705px;
  width: 40px;
  height: 40px;
  opacity: 0.2;
}

body main .aboutUs .intro .circle:nth-child(48) {
  -webkit-animation: circleMove 12s infinite 10s;
          animation: circleMove 12s infinite 10s;
  left: 389px;
  width: 10px;
  height: 10px;
  opacity: 0.2;
}

body main .aboutUs .intro .circle:nth-child(49) {
  -webkit-animation: circleMove 8s infinite 10s;
          animation: circleMove 8s infinite 10s;
  left: 290px;
  width: 40px;
  height: 40px;
  opacity: 0.2;
}

body main .aboutUs .intro .circle:nth-child(50) {
  -webkit-animation: circleMove 6s infinite 5s;
          animation: circleMove 6s infinite 5s;
  left: 1251px;
  width: 10px;
  height: 10px;
  opacity: 0.2;
}

@keyframes circleMove {
  from {
    top: 100%;
  }
  to {
    top: -30%;
  }
}

body main .aboutUs .intro .text {
  font-size: 80px;
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  color: #322bff;
  line-height: 100px;
}

@media (max-width: 768px) {
  body main .aboutUs .intro .text {
    line-height: 50px;
    width: 100%;
  }
}

body main .aboutUs .intro .text .textRow {
  height: 100px;
  padding-top: 100%;
  overflow: hidden;
  -webkit-transition: 2s;
  transition: 2s;
}

@media (max-width: 768px) {
  body main .aboutUs .intro .text .textRow {
    height: auto;
    font-size: 40px;
    padding-top: 0;
    width: 100%;
  }
}

body main .aboutUs .intro .text .textRow.show {
  padding-top: 0;
}

body main .aboutUs .intro .text .textRow:nth-child(2) {
  -webkit-transition: 2s 0.1s;
  transition: 2s 0.1s;
}

body main .aboutUs .aboutUsPhoto {
  height: 100vh;
  overflow: hidden;
  background-color: #ccc;
}

@media (max-width: 768px) {
  body main .aboutUs .aboutUsPhoto {
    height: 60vh;
  }
}

body main .aboutUs .aboutUsPhoto img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

body main .aboutUs .knowUs {
  padding: 1em 6em;
  position: relative;
}

@media (max-width: 768px) {
  body main .aboutUs .knowUs {
    padding: 0em 2em;
  }
}

body main .aboutUs .knowUs .laptopSvg {
  width: 100% !important;
  overflow: initial;
}

@media (max-width: 768px) {
  body main .aboutUs .knowUs .laptopSvg {
    display: none;
  }
}

body main .aboutUs .knowUs .mobileSvg {
  width: 140%;
  height: auto;
  -webkit-transform: translateX(-25%);
          transform: translateX(-25%);
  padding-top: 25em;
  overflow: initial;
}

@media (min-width: 768px) {
  body main .aboutUs .knowUs .mobileSvg {
    display: none;
  }
}

body main .aboutUs .knowUs .text {
  position: absolute;
  width: 40%;
}

@media (max-width: 768px) {
  body main .aboutUs .knowUs .text {
    width: calc(100% - 4em);
  }
}

body main .aboutUs .knowUs .text .title {
  font-size: 60px;
  color: #322bff;
  line-height: 60px;
  margin-bottom: 20px;
}

@media (max-width: 768px) {
  body main .aboutUs .knowUs .text .title {
    font-size: 42px;
    line-height: initial;
  }
}

body main .aboutUs .knowUs .text .des {
  font-size: 25px;
  color: #322bff;
}

@media (max-width: 768px) {
  body main .aboutUs .knowUs .text .des {
    font-size: 19px;
    line-height: 35px;
  }
}

body main .aboutUs .knowUs .left {
  left: 6em;
  top: 15em;
}

@media (max-width: 768px) {
  body main .aboutUs .knowUs .left {
    left: 2em;
    top: 2em;
  }
}

body main .aboutUs .knowUs .right {
  bottom: 40em;
  right: 10em;
}

@media (max-width: 768px) {
  body main .aboutUs .knowUs .right {
    bottom: 14em;
    right: 2em;
  }
}

body main .aboutUs .meet {
  padding: 1em 6em;
}

@media (max-width: 768px) {
  body main .aboutUs .meet {
    padding: 1em 1em;
  }
}

body main .aboutUs .meet .title {
  font-size: 30px;
  text-align: center;
  color: #322bff;
  font-size: 40px;
  margin-top: -150px;
}

@media (max-width: 768px) {
  body main .aboutUs .meet .title {
    margin-top: 0px;
  }
}

body main .aboutUs .meet .personsCon .person {
  padding: 0 40px;
  margin-bottom: 40px;
}

@media (max-width: 768px) {
  body main .aboutUs .meet .personsCon .person {
    padding: 0 10px;
  }
}

body main .aboutUs .meet .personsCon .person .imgCon {
  position: relative;
}

body main .aboutUs .meet .personsCon .person .imgCon .personImg {
  position: relative;
  z-index: 10;
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  min-height: 410px;
}

body main .aboutUs .meet .personsCon .person .imgCon .personImg.before {
  opacity: 1;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

body main .aboutUs .meet .personsCon .person .imgCon .personImg.after {
  opacity: 0;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  position: absolute;
  bottom: 0;
  left: 0;
}

body main .aboutUs .meet .personsCon .person .imgCon .circle {
  position: absolute;
  background-color: #134074;
  border-radius: 50%;
}

body main .aboutUs .meet .personsCon .person .imgCon .circle:nth-child(1) {
  top: 10%;
  width: 180px;
  height: 180px;
  left: 0;
}

body main .aboutUs .meet .personsCon .person .imgCon .circle:nth-child(2) {
  width: 80px;
  height: 80px;
  bottom: 20px;
  right: 10px;
}

body main .aboutUs .meet .personsCon .person .imgCon .circle:nth-child(3) {
  width: 10px;
  height: 10px;
  right: 0;
  top: 30%;
}

body main .aboutUs .meet .personsCon .person:hover .personImg.before {
  opacity: 0;
}

body main .aboutUs .meet .personsCon .person:hover .personImg.after {
  opacity: 1;
}

body main .aboutUs .meet .personsCon .person .name {
  margin-top: 10px;
  font-size: 35px;
  text-align: center;
  color: #134074;
}

body main .aboutUs .meet .personsCon .person .name ::-moz-selection {
  background: #134074 !important;
  color: #fcfcfc !important;
}

body main .aboutUs .meet .personsCon .person .name ::selection {
  background: #134074 !important;
  color: #fcfcfc !important;
}

body main .aboutUs .meet .personsCon .person .jobTitle {
  font-size: 25px;
  text-align: center;
  color: #134074;
  opacity: 0.7;
}

body main .aboutUs .meet .personsCon .person .jobTitle ::-moz-selection {
  background: #134074 !important;
  color: #fcfcfc !important;
}

body main .aboutUs .meet .personsCon .person .jobTitle ::selection {
  background: #134074 !important;
  color: #fcfcfc !important;
}

body main .aboutUs .meet .personsCon .person.spical .circle {
  background-color: #322bff;
}

body main .aboutUs .meet .personsCon .person.spical .circle:nth-child(1) {
  top: 10%;
  width: 280px;
  height: 280px;
  left: 0;
}

@media (max-width: 768px) {
  body main .aboutUs .meet .personsCon .person.spical .circle:nth-child(1) {
    width: 260px;
    height: 260px;
  }
}

body main .aboutUs .meet .personsCon .person.spical .circle:nth-child(2) {
  width: 120px;
  height: 120px;
  bottom: 10px;
  right: 20px;
}

@media (max-width: 768px) {
  body main .aboutUs .meet .personsCon .person.spical .circle:nth-child(2) {
    width: 100px;
    height: 100px;
  }
}

body main .aboutUs .meet .personsCon .person.spical .circle:nth-child(3) {
  width: 18px;
  height: 18px;
  right: 0;
  top: 35%;
}

body main .aboutUs .meet .personsCon .person.spical .name {
  color: #322bff;
}

body main .aboutUs .meet .personsCon .person.spical .jobTitle {
  color: #322bff;
}

body main .aboutUs .meet .personsCon .slick-slide {
  padding: 0 50px;
}

body main .aboutUs .meet .personsCon .slick-arrow {
  background-color: #fcfcfc;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  -webkit-box-shadow: 1px 1px 20px rgba(0, 0, 0, 0.3);
          box-shadow: 1px 1px 20px rgba(0, 0, 0, 0.3);
}

body main .aboutUs .meet .personsCon .slick-arrow::before {
  content: "";
  border: solid #322bff;
  border-width: 0 3px 3px 0;
  display: inline-block;
  padding: 4px;
}

body main .aboutUs .meet .personsCon .slick-next {
  right: 10px;
}

body main .aboutUs .meet .personsCon .slick-next::before {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

body main .aboutUs .meet .personsCon .slick-prev {
  left: 10px;
}

body main .aboutUs .meet .personsCon .slick-prev::before {
  -webkit-transform: rotate(135deg);
          transform: rotate(135deg);
}

body main .aboutUs .meet .personsCon .join {
  padding: 4em 0;
  width: 35%;
  margin: 0 auto;
}

@media (max-width: 768px) {
  body main .aboutUs .meet .personsCon .join {
    width: 100%;
  }
}

body main .aboutUs .meet .personsCon .joinButton {
  display: block;
  background-color: #322bff;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  color: #fcfcfc;
  padding: 5px 50px;
  border-radius: 25px;
  font-size: 20px;
  margin: 0 auto;
}

body main .aboutUs .meet .personsCon .joinButton .buttonCon {
  position: relative;
  overflow: hidden;
}

body main .aboutUs .meet .personsCon .joinButton .buttonCon .front {
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

body main .aboutUs .meet .personsCon .joinButton .buttonCon .back {
  position: absolute;
  top: -10%;
  left: 50%;
  -webkit-transform: translateX(-150%);
          transform: translateX(-150%);
  opacity: 0;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

body main .aboutUs .meet .personsCon .joinButton .buttonCon .back svg {
  width: 40px;
  height: 40px;
}

body main .aboutUs .meet .personsCon .joinButton .buttonCon:hover .front {
  -webkit-transform: translateY(-100%);
          transform: translateY(-100%);
}

body main .aboutUs .meet .personsCon .joinButton .buttonCon:hover .back {
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  opacity: 1;
}

body main .tellUs .intro {
  min-height: 60vh;
  overflow: hidden !important;
  position: relative;
}

body main .tellUs .intro .circle {
  position: absolute;
  top: 100%;
  left: 30%;
  width: 100px;
  height: 100px;
  background-color: #134074;
  border-radius: 50%;
  -webkit-transition: 1s;
  transition: 1s;
}

body main .tellUs .intro .circle:hover {
  -webkit-transform: scale(1.5);
          transform: scale(1.5);
}

body main .tellUs .intro .circle:nth-child(1) {
  -webkit-animation: circleMove 12s infinite 10s;
          animation: circleMove 12s infinite 10s;
  left: 1731px;
  width: 40px;
  height: 40px;
  opacity: 0.2;
}

body main .tellUs .intro .circle:nth-child(2) {
  -webkit-animation: circleMove 12s infinite 4s;
          animation: circleMove 12s infinite 4s;
  left: 548px;
  width: 10px;
  height: 10px;
  opacity: 0.2;
}

body main .tellUs .intro .circle:nth-child(3) {
  -webkit-animation: circleMove 12s infinite 2s;
          animation: circleMove 12s infinite 2s;
  left: 872px;
  width: 40px;
  height: 40px;
  opacity: 0.2;
}

body main .tellUs .intro .circle:nth-child(4) {
  -webkit-animation: circleMove 7s infinite 5s;
          animation: circleMove 7s infinite 5s;
  left: 1875px;
  width: 10px;
  height: 10px;
  opacity: 0.2;
}

body main .tellUs .intro .circle:nth-child(5) {
  -webkit-animation: circleMove 7s infinite 9s;
          animation: circleMove 7s infinite 9s;
  left: 12px;
  width: 40px;
  height: 40px;
  opacity: 1;
}

body main .tellUs .intro .circle:nth-child(6) {
  -webkit-animation: circleMove 11s infinite 3s;
          animation: circleMove 11s infinite 3s;
  left: 879px;
  width: 10px;
  height: 10px;
  opacity: 0.2;
}

body main .tellUs .intro .circle:nth-child(7) {
  -webkit-animation: circleMove 6s infinite 7s;
          animation: circleMove 6s infinite 7s;
  left: 467px;
  width: 40px;
  height: 40px;
  opacity: 0.2;
}

body main .tellUs .intro .circle:nth-child(8) {
  -webkit-animation: circleMove 10s infinite 7s;
          animation: circleMove 10s infinite 7s;
  left: 1442px;
  width: 10px;
  height: 10px;
  opacity: 0.2;
}

body main .tellUs .intro .circle:nth-child(9) {
  -webkit-animation: circleMove 8s infinite 3s;
          animation: circleMove 8s infinite 3s;
  left: 137px;
  width: 40px;
  height: 40px;
  opacity: 0.2;
}

body main .tellUs .intro .circle:nth-child(10) {
  -webkit-animation: circleMove 12s infinite 3s;
          animation: circleMove 12s infinite 3s;
  left: 640px;
  width: 10px;
  height: 10px;
  opacity: 0.2;
}

body main .tellUs .intro .circle:nth-child(11) {
  -webkit-animation: circleMove 12s infinite 1s;
          animation: circleMove 12s infinite 1s;
  left: 636px;
  width: 40px;
  height: 40px;
  opacity: 0.2;
}

body main .tellUs .intro .circle:nth-child(12) {
  -webkit-animation: circleMove 11s infinite 8s;
          animation: circleMove 11s infinite 8s;
  left: 1443px;
  width: 10px;
  height: 10px;
  opacity: 0.2;
}

body main .tellUs .intro .circle:nth-child(13) {
  -webkit-animation: circleMove 8s infinite 2s;
          animation: circleMove 8s infinite 2s;
  left: 1611px;
  width: 40px;
  height: 40px;
  opacity: 0.2;
}

body main .tellUs .intro .circle:nth-child(14) {
  -webkit-animation: circleMove 8s infinite 10s;
          animation: circleMove 8s infinite 10s;
  left: 645px;
  width: 10px;
  height: 10px;
  opacity: 0.2;
}

body main .tellUs .intro .circle:nth-child(15) {
  -webkit-animation: circleMove 10s infinite 2s;
          animation: circleMove 10s infinite 2s;
  left: 494px;
  width: 40px;
  height: 40px;
  opacity: 0.2;
}

body main .tellUs .intro .circle:nth-child(16) {
  -webkit-animation: circleMove 7s infinite 4s;
          animation: circleMove 7s infinite 4s;
  left: 288px;
  width: 10px;
  height: 10px;
  opacity: 0.2;
}

body main .tellUs .intro .circle:nth-child(17) {
  -webkit-animation: circleMove 6s infinite 8s;
          animation: circleMove 6s infinite 8s;
  left: 1415px;
  width: 40px;
  height: 40px;
  opacity: 0.2;
}

body main .tellUs .intro .circle:nth-child(18) {
  -webkit-animation: circleMove 12s infinite 1s;
          animation: circleMove 12s infinite 1s;
  left: 453px;
  width: 10px;
  height: 10px;
  opacity: 0.2;
}

body main .tellUs .intro .circle:nth-child(19) {
  -webkit-animation: circleMove 11s infinite 1s;
          animation: circleMove 11s infinite 1s;
  left: 1177px;
  width: 40px;
  height: 40px;
  opacity: 0.2;
}

body main .tellUs .intro .circle:nth-child(20) {
  -webkit-animation: circleMove 7s infinite 9s;
          animation: circleMove 7s infinite 9s;
  left: 292px;
  width: 10px;
  height: 10px;
  opacity: 0.2;
}

body main .tellUs .intro .circle:nth-child(21) {
  -webkit-animation: circleMove 10s infinite 6s;
          animation: circleMove 10s infinite 6s;
  left: 1926px;
  width: 40px;
  height: 40px;
  opacity: 0.2;
}

body main .tellUs .intro .circle:nth-child(22) {
  -webkit-animation: circleMove 8s infinite 3s;
          animation: circleMove 8s infinite 3s;
  left: 505px;
  width: 10px;
  height: 10px;
  opacity: 0.2;
}

body main .tellUs .intro .circle:nth-child(23) {
  -webkit-animation: circleMove 7s infinite 4s;
          animation: circleMove 7s infinite 4s;
  left: 388px;
  width: 40px;
  height: 40px;
  opacity: 0.2;
}

body main .tellUs .intro .circle:nth-child(24) {
  -webkit-animation: circleMove 10s infinite 3s;
          animation: circleMove 10s infinite 3s;
  left: 1815px;
  width: 10px;
  height: 10px;
  opacity: 0.2;
}

body main .tellUs .intro .circle:nth-child(25) {
  -webkit-animation: circleMove 6s infinite 8s;
          animation: circleMove 6s infinite 8s;
  left: 98px;
  width: 40px;
  height: 40px;
  opacity: 0.2;
}

body main .tellUs .intro .circle:nth-child(26) {
  -webkit-animation: circleMove 11s infinite 7s;
          animation: circleMove 11s infinite 7s;
  left: 641px;
  width: 10px;
  height: 10px;
  opacity: 0.2;
}

body main .tellUs .intro .circle:nth-child(27) {
  -webkit-animation: circleMove 7s infinite 7s;
          animation: circleMove 7s infinite 7s;
  left: 1287px;
  width: 40px;
  height: 40px;
  opacity: 0.2;
}

body main .tellUs .intro .circle:nth-child(28) {
  -webkit-animation: circleMove 12s infinite 2s;
          animation: circleMove 12s infinite 2s;
  left: 1093px;
  width: 10px;
  height: 10px;
  opacity: 0.2;
}

body main .tellUs .intro .circle:nth-child(29) {
  -webkit-animation: circleMove 11s infinite 8s;
          animation: circleMove 11s infinite 8s;
  left: 1650px;
  width: 40px;
  height: 40px;
  opacity: 0.2;
}

body main .tellUs .intro .circle:nth-child(30) {
  -webkit-animation: circleMove 8s infinite 2s;
          animation: circleMove 8s infinite 2s;
  left: 678px;
  width: 10px;
  height: 10px;
  opacity: 0.2;
}

body main .tellUs .intro .circle:nth-child(31) {
  -webkit-animation: circleMove 8s infinite 8s;
          animation: circleMove 8s infinite 8s;
  left: 1295px;
  width: 40px;
  height: 40px;
  opacity: 0.2;
}

body main .tellUs .intro .circle:nth-child(32) {
  -webkit-animation: circleMove 9s infinite 1s;
          animation: circleMove 9s infinite 1s;
  left: 811px;
  width: 10px;
  height: 10px;
  opacity: 0.2;
}

body main .tellUs .intro .circle:nth-child(33) {
  -webkit-animation: circleMove 6s infinite 7s;
          animation: circleMove 6s infinite 7s;
  left: 1640px;
  width: 40px;
  height: 40px;
  opacity: 0.2;
}

body main .tellUs .intro .circle:nth-child(34) {
  -webkit-animation: circleMove 8s infinite 5s;
          animation: circleMove 8s infinite 5s;
  left: 1409px;
  width: 10px;
  height: 10px;
  opacity: 0.2;
}

body main .tellUs .intro .circle:nth-child(35) {
  -webkit-animation: circleMove 10s infinite 1s;
          animation: circleMove 10s infinite 1s;
  left: 537px;
  width: 40px;
  height: 40px;
  opacity: 0.2;
}

body main .tellUs .intro .circle:nth-child(36) {
  -webkit-animation: circleMove 11s infinite 2s;
          animation: circleMove 11s infinite 2s;
  left: 214px;
  width: 10px;
  height: 10px;
  opacity: 0.2;
}

body main .tellUs .intro .circle:nth-child(37) {
  -webkit-animation: circleMove 7s infinite 3s;
          animation: circleMove 7s infinite 3s;
  left: 1924px;
  width: 40px;
  height: 40px;
  opacity: 0.2;
}

body main .tellUs .intro .circle:nth-child(38) {
  -webkit-animation: circleMove 10s infinite 2s;
          animation: circleMove 10s infinite 2s;
  left: 348px;
  width: 10px;
  height: 10px;
  opacity: 0.2;
}

body main .tellUs .intro .circle:nth-child(39) {
  -webkit-animation: circleMove 12s infinite 1s;
          animation: circleMove 12s infinite 1s;
  left: 1635px;
  width: 40px;
  height: 40px;
  opacity: 0.2;
}

body main .tellUs .intro .circle:nth-child(40) {
  -webkit-animation: circleMove 9s infinite 1s;
          animation: circleMove 9s infinite 1s;
  left: 22px;
  width: 10px;
  height: 10px;
  opacity: 0.2;
}

body main .tellUs .intro .circle:nth-child(41) {
  -webkit-animation: circleMove 10s infinite 4s;
          animation: circleMove 10s infinite 4s;
  left: 1546px;
  width: 40px;
  height: 40px;
  opacity: 0.2;
}

body main .tellUs .intro .circle:nth-child(42) {
  -webkit-animation: circleMove 9s infinite 9s;
          animation: circleMove 9s infinite 9s;
  left: 1789px;
  width: 10px;
  height: 10px;
  opacity: 0.2;
}

body main .tellUs .intro .circle:nth-child(43) {
  -webkit-animation: circleMove 9s infinite 1s;
          animation: circleMove 9s infinite 1s;
  left: 1966px;
  width: 40px;
  height: 40px;
  opacity: 0.2;
}

body main .tellUs .intro .circle:nth-child(44) {
  -webkit-animation: circleMove 12s infinite 5s;
          animation: circleMove 12s infinite 5s;
  left: 1240px;
  width: 10px;
  height: 10px;
  opacity: 0.2;
}

body main .tellUs .intro .circle:nth-child(45) {
  -webkit-animation: circleMove 10s infinite 8s;
          animation: circleMove 10s infinite 8s;
  left: 51px;
  width: 40px;
  height: 40px;
  opacity: 0.2;
}

body main .tellUs .intro .circle:nth-child(46) {
  -webkit-animation: circleMove 12s infinite 3s;
          animation: circleMove 12s infinite 3s;
  left: 1447px;
  width: 10px;
  height: 10px;
  opacity: 0.2;
}

body main .tellUs .intro .circle:nth-child(47) {
  -webkit-animation: circleMove 6s infinite 10s;
          animation: circleMove 6s infinite 10s;
  left: 1126px;
  width: 40px;
  height: 40px;
  opacity: 0.2;
}

body main .tellUs .intro .circle:nth-child(48) {
  -webkit-animation: circleMove 8s infinite 9s;
          animation: circleMove 8s infinite 9s;
  left: 822px;
  width: 10px;
  height: 10px;
  opacity: 0.2;
}

body main .tellUs .intro .circle:nth-child(49) {
  -webkit-animation: circleMove 8s infinite 5s;
          animation: circleMove 8s infinite 5s;
  left: 1126px;
  width: 40px;
  height: 40px;
  opacity: 0.2;
}

body main .tellUs .intro .circle:nth-child(50) {
  -webkit-animation: circleMove 11s infinite 3s;
          animation: circleMove 11s infinite 3s;
  left: 361px;
  width: 10px;
  height: 10px;
  opacity: 0.2;
}

@keyframes circleMove {
  from {
    top: 100%;
  }
  to {
    top: -30%;
  }
}

body main .tellUs .intro .text {
  font-size: 50px;
  text-align: center;
  left: 50%;
  color: #322bff;
  padding-top: 4em;
  padding-bottom: 1em;
}

@media (max-width: 768px) {
  body main .tellUs .intro .text {
    line-height: 50px;
    width: 100%;
  }
}

body main .tellUs .intro .text .textRow {
  height: 70px;
  padding-top: 70px;
  overflow: hidden;
  -webkit-transition: 2s;
  transition: 2s;
}

@media (max-width: 768px) {
  body main .tellUs .intro .text .textRow {
    height: auto;
    font-size: 40px;
    padding-top: 0;
    width: 100%;
  }
}

body main .tellUs .intro .text .textRow.show {
  padding-top: 0;
}

body main .tellUs .intro .text .textRow:nth-child(2) {
  -webkit-transition: 2s 0.1s;
  transition: 2s 0.1s;
}

body main .tellUs .interested .text_center {
  color: #322bff;
  opacity: 0.4;
  font-size: 2rem;
  letter-spacing: 3px;
}

body main .tellUs .interested .form {
  width: 50%;
  margin: 0 auto;
}

@media (max-width: 768px) {
  body main .tellUs .interested .form {
    width: 100%;
  }
}

body main .tellUs .interested .form .custom-checkbox input {
  display: none;
}

body main .tellUs .interested .form .custom-checkbox .custom-control-label {
  margin-bottom: 20px;
  padding: 10px 40px;
  border: 2px solid #322bff;
  border-radius: 30px;
  color: #322bff;
  opacity: 0.4;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

body main .tellUs .interested .form .custom-checkbox .custom-control-label .labelCon {
  position: relative;
  overflow: hidden;
}

body main .tellUs .interested .form .custom-checkbox .custom-control-label .labelCon .front {
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

body main .tellUs .interested .form .custom-checkbox .custom-control-label .labelCon .back {
  position: absolute;
  top: 100%;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

body main .tellUs .interested .form .custom-checkbox .custom-control-label:hover {
  cursor: pointer;
  opacity: 1;
}

body main .tellUs .interested .form .custom-checkbox .custom-control-label:hover .labelCon .front {
  -webkit-transform: translateY(-100%);
          transform: translateY(-100%);
}

body main .tellUs .interested .form .custom-checkbox .custom-control-label:hover .labelCon .back {
  top: 0%;
}

@media (max-width: 768px) {
  body main .tellUs .interested .form .custom-checkbox .custom-control-label {
    width: 100%;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding: 10px 0;
    text-align: center;
  }
}

body main .tellUs .interested .form .custom-checkbox .custom-control-label.active {
  background: #322bff;
  opacity: 1;
  color: #fcfcfc;
}

body main .tellUs .interested .form .custom-checkbox .custom-control-label::after,
body main .tellUs .interested .form .custom-checkbox .custom-control-label::before {
  display: none;
}

body main .tellUs .interested .form .custom-control {
  padding-left: 0;
  padding: 0 0.75rem;
}

@media (max-width: 768px) {
  body main .tellUs .interested .form .custom-control {
    padding: 0 0;
  }
}

body main .tellUs .interested .form .inputs .input {
  position: relative;
  width: 40vw;
  margin: 0 auto;
  margin-top: 3vh;
  background: transparent;
}

@media (max-width: 768px) {
  body main .tellUs .interested .form .inputs .input {
    width: 100%;
  }
}

body main .tellUs .interested .form .inputs .input--wave {
  overflow: hidden;
}

body main .tellUs .interested .form .inputs .graphic {
  position: absolute;
  top: 0;
  left: 0;
  fill: none;
}

body main .tellUs .interested .form .inputs .graphic--wave {
  pointer-events: none;
  -webkit-transition: stroke 0.7s, -webkit-transform 0.7s;
  transition: stroke 0.7s, -webkit-transform 0.7s;
  transition: transform 0.7s, stroke 0.7s;
  transition: transform 0.7s, stroke 0.7s, -webkit-transform 0.7s;
  -webkit-transition-timing-function: cubic-bezier(0, 0.25, 0.5, 1);
          transition-timing-function: cubic-bezier(0, 0.25, 0.5, 1);
}

body main .tellUs .interested .form .inputs .graphic
.input__field--wave:focus
+ .input__label--wave,
body main .tellUs .interested .form .inputs .input--filled .input__label--wave {
  -webkit-transform: translate3d(0, -1.25em, 0) scale3d(0.75, 0.75, 1);
  transform: translate3d(0, -1.25em, 0) scale3d(0.75, 0.75, 1);
}

body main .tellUs .interested .form .inputs .input__field--wave:focus ~ .graphic--wave,
body main .tellUs .interested .form .inputs .input--filled .graphic--wave {
  stroke: #322bff;
  -webkit-transform: translate3d(-66.6%, 0, 0);
  transform: translate3d(-66.6%, 0, 0);
}

body main .tellUs .interested .form .inputs input {
  margin: 25px 0;
  text-align: center;
  border: 0;
  border-radius: 0;
  color: #322bff;
  font-size: 30px;
}

body main .tellUs .interested .form .inputs input:focus {
  outline: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
}

body main .tellUs .interested .form .inputs input::-webkit-input-placeholder {
  color: #322bff;
  opacity: 0.4;
}

body main .tellUs .interested .form .inputs input:-ms-input-placeholder {
  color: #322bff;
  opacity: 0.4;
}

body main .tellUs .interested .form .inputs input::-ms-input-placeholder {
  color: #322bff;
  opacity: 0.4;
}

body main .tellUs .interested .form .inputs input::placeholder {
  color: #322bff;
  opacity: 0.4;
}

body main .tellUs .interested .form .inputs .btn-file {
  margin: 10% auto;
  border-radius: 30px;
  border: 2px solid #322bff;
  padding: 15px 30px;
  color: #322bff;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

body main .tellUs .interested .form .inputs .btn-file svg {
  width: 25px;
  height: 25px;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

body main .tellUs .interested .form .inputs .btn-file:hover {
  cursor: pointer;
  color: #fcfcfc;
  background: #322bff;
}

body main .tellUs .interested .form .inputs .btn-file:hover svg * {
  fill: #fcfcfc;
}

body main .tellUs .interested .form .files {
  width: 70%;
  margin: 30px auto;
}

@media (max-width: 768px) {
  body main .tellUs .interested .form .files {
    width: 100%;
  }
}

body main .tellUs .interested .form .btn-submit {
  border-radius: 30px;
  color: #fcfcfc;
  background: #322bff;
  padding: 10px 50px;
  margin: 0 auto 5%;
}

body main .tellUs .interested .form .btn-submit .submitCon {
  overflow: hidden;
  position: relative;
  font-size: 20px;
}

body main .tellUs .interested .form .btn-submit .submitCon .front {
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

body main .tellUs .interested .form .btn-submit .submitCon .back {
  -webkit-transition: 0.5s;
  transition: 0.5s;
  position: absolute;
  top: 100%;
  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;
  left: 50%;
  -webkit-transform: translateX(-50%) scale(0.4);
          transform: translateX(-50%) scale(0.4);
}

body main .tellUs .interested .form .btn-submit .submitCon .back * {
  fill: #fcfcfc;
}

body main .tellUs .interested .form .btn-submit .submitCon .back svg {
  width: 30px;
  height: 30px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

body main .tellUs .interested .form .btn-submit:hover .front {
  -webkit-transform: translateY(-100%);
          transform: translateY(-100%);
}

body main .tellUs .interested .form .btn-submit:hover .back {
  top: 0%;
  -webkit-transform: translateX(-50%) scale(1);
          transform: translateX(-50%) scale(1);
}

body main .career .intro {
  min-height: 60vh;
  overflow: hidden !important;
  position: relative;
}

body main .career .intro .circle {
  position: absolute;
  top: 100%;
  left: 30%;
  width: 100px;
  height: 100px;
  background-color: #134074;
  border-radius: 50%;
  -webkit-transition: 1s;
  transition: 1s;
}

body main .career .intro .circle:hover {
  -webkit-transform: scale(1.5);
          transform: scale(1.5);
}

body main .career .intro .circle:nth-child(1) {
  -webkit-animation: circleMove 9s infinite 7s;
          animation: circleMove 9s infinite 7s;
  left: 29px;
  width: 40px;
  height: 40px;
  opacity: 0.2;
}

body main .career .intro .circle:nth-child(2) {
  -webkit-animation: circleMove 8s infinite 2s;
          animation: circleMove 8s infinite 2s;
  left: 326px;
  width: 10px;
  height: 10px;
  opacity: 0.2;
}

body main .career .intro .circle:nth-child(3) {
  -webkit-animation: circleMove 12s infinite 7s;
          animation: circleMove 12s infinite 7s;
  left: 1045px;
  width: 40px;
  height: 40px;
  opacity: 0.2;
}

body main .career .intro .circle:nth-child(4) {
  -webkit-animation: circleMove 12s infinite 9s;
          animation: circleMove 12s infinite 9s;
  left: 302px;
  width: 10px;
  height: 10px;
  opacity: 0.2;
}

body main .career .intro .circle:nth-child(5) {
  -webkit-animation: circleMove 6s infinite 6s;
          animation: circleMove 6s infinite 6s;
  left: 998px;
  width: 40px;
  height: 40px;
  opacity: 1;
}

body main .career .intro .circle:nth-child(6) {
  -webkit-animation: circleMove 6s infinite 1s;
          animation: circleMove 6s infinite 1s;
  left: 1234px;
  width: 10px;
  height: 10px;
  opacity: 0.2;
}

body main .career .intro .circle:nth-child(7) {
  -webkit-animation: circleMove 6s infinite 4s;
          animation: circleMove 6s infinite 4s;
  left: 164px;
  width: 40px;
  height: 40px;
  opacity: 0.2;
}

body main .career .intro .circle:nth-child(8) {
  -webkit-animation: circleMove 11s infinite 5s;
          animation: circleMove 11s infinite 5s;
  left: 1058px;
  width: 10px;
  height: 10px;
  opacity: 0.2;
}

body main .career .intro .circle:nth-child(9) {
  -webkit-animation: circleMove 8s infinite 6s;
          animation: circleMove 8s infinite 6s;
  left: 726px;
  width: 40px;
  height: 40px;
  opacity: 0.2;
}

body main .career .intro .circle:nth-child(10) {
  -webkit-animation: circleMove 10s infinite 7s;
          animation: circleMove 10s infinite 7s;
  left: 290px;
  width: 10px;
  height: 10px;
  opacity: 0.2;
}

body main .career .intro .circle:nth-child(11) {
  -webkit-animation: circleMove 12s infinite 4s;
          animation: circleMove 12s infinite 4s;
  left: 514px;
  width: 40px;
  height: 40px;
  opacity: 0.2;
}

body main .career .intro .circle:nth-child(12) {
  -webkit-animation: circleMove 7s infinite 6s;
          animation: circleMove 7s infinite 6s;
  left: 1049px;
  width: 10px;
  height: 10px;
  opacity: 0.2;
}

body main .career .intro .circle:nth-child(13) {
  -webkit-animation: circleMove 7s infinite 9s;
          animation: circleMove 7s infinite 9s;
  left: 229px;
  width: 40px;
  height: 40px;
  opacity: 0.2;
}

body main .career .intro .circle:nth-child(14) {
  -webkit-animation: circleMove 8s infinite 5s;
          animation: circleMove 8s infinite 5s;
  left: 1613px;
  width: 10px;
  height: 10px;
  opacity: 0.2;
}

body main .career .intro .circle:nth-child(15) {
  -webkit-animation: circleMove 7s infinite 7s;
          animation: circleMove 7s infinite 7s;
  left: 1668px;
  width: 40px;
  height: 40px;
  opacity: 0.2;
}

body main .career .intro .circle:nth-child(16) {
  -webkit-animation: circleMove 12s infinite 5s;
          animation: circleMove 12s infinite 5s;
  left: 1324px;
  width: 10px;
  height: 10px;
  opacity: 0.2;
}

body main .career .intro .circle:nth-child(17) {
  -webkit-animation: circleMove 12s infinite 8s;
          animation: circleMove 12s infinite 8s;
  left: 1407px;
  width: 40px;
  height: 40px;
  opacity: 0.2;
}

body main .career .intro .circle:nth-child(18) {
  -webkit-animation: circleMove 7s infinite 9s;
          animation: circleMove 7s infinite 9s;
  left: 1756px;
  width: 10px;
  height: 10px;
  opacity: 0.2;
}

body main .career .intro .circle:nth-child(19) {
  -webkit-animation: circleMove 10s infinite 4s;
          animation: circleMove 10s infinite 4s;
  left: 632px;
  width: 40px;
  height: 40px;
  opacity: 0.2;
}

body main .career .intro .circle:nth-child(20) {
  -webkit-animation: circleMove 12s infinite 1s;
          animation: circleMove 12s infinite 1s;
  left: 1632px;
  width: 10px;
  height: 10px;
  opacity: 0.2;
}

body main .career .intro .circle:nth-child(21) {
  -webkit-animation: circleMove 7s infinite 4s;
          animation: circleMove 7s infinite 4s;
  left: 1874px;
  width: 40px;
  height: 40px;
  opacity: 0.2;
}

body main .career .intro .circle:nth-child(22) {
  -webkit-animation: circleMove 10s infinite 10s;
          animation: circleMove 10s infinite 10s;
  left: 450px;
  width: 10px;
  height: 10px;
  opacity: 0.2;
}

body main .career .intro .circle:nth-child(23) {
  -webkit-animation: circleMove 11s infinite 6s;
          animation: circleMove 11s infinite 6s;
  left: 1553px;
  width: 40px;
  height: 40px;
  opacity: 0.2;
}

body main .career .intro .circle:nth-child(24) {
  -webkit-animation: circleMove 12s infinite 7s;
          animation: circleMove 12s infinite 7s;
  left: 1280px;
  width: 10px;
  height: 10px;
  opacity: 0.2;
}

body main .career .intro .circle:nth-child(25) {
  -webkit-animation: circleMove 11s infinite 4s;
          animation: circleMove 11s infinite 4s;
  left: 1846px;
  width: 40px;
  height: 40px;
  opacity: 0.2;
}

body main .career .intro .circle:nth-child(26) {
  -webkit-animation: circleMove 6s infinite 10s;
          animation: circleMove 6s infinite 10s;
  left: 908px;
  width: 10px;
  height: 10px;
  opacity: 0.2;
}

body main .career .intro .circle:nth-child(27) {
  -webkit-animation: circleMove 11s infinite 8s;
          animation: circleMove 11s infinite 8s;
  left: 1528px;
  width: 40px;
  height: 40px;
  opacity: 0.2;
}

body main .career .intro .circle:nth-child(28) {
  -webkit-animation: circleMove 11s infinite 6s;
          animation: circleMove 11s infinite 6s;
  left: 201px;
  width: 10px;
  height: 10px;
  opacity: 0.2;
}

body main .career .intro .circle:nth-child(29) {
  -webkit-animation: circleMove 6s infinite 8s;
          animation: circleMove 6s infinite 8s;
  left: 629px;
  width: 40px;
  height: 40px;
  opacity: 0.2;
}

body main .career .intro .circle:nth-child(30) {
  -webkit-animation: circleMove 9s infinite 2s;
          animation: circleMove 9s infinite 2s;
  left: 1221px;
  width: 10px;
  height: 10px;
  opacity: 0.2;
}

body main .career .intro .circle:nth-child(31) {
  -webkit-animation: circleMove 11s infinite 4s;
          animation: circleMove 11s infinite 4s;
  left: 597px;
  width: 40px;
  height: 40px;
  opacity: 0.2;
}

body main .career .intro .circle:nth-child(32) {
  -webkit-animation: circleMove 10s infinite 9s;
          animation: circleMove 10s infinite 9s;
  left: 1834px;
  width: 10px;
  height: 10px;
  opacity: 0.2;
}

body main .career .intro .circle:nth-child(33) {
  -webkit-animation: circleMove 12s infinite 5s;
          animation: circleMove 12s infinite 5s;
  left: 1825px;
  width: 40px;
  height: 40px;
  opacity: 0.2;
}

body main .career .intro .circle:nth-child(34) {
  -webkit-animation: circleMove 12s infinite 5s;
          animation: circleMove 12s infinite 5s;
  left: 1874px;
  width: 10px;
  height: 10px;
  opacity: 0.2;
}

body main .career .intro .circle:nth-child(35) {
  -webkit-animation: circleMove 11s infinite 7s;
          animation: circleMove 11s infinite 7s;
  left: 123px;
  width: 40px;
  height: 40px;
  opacity: 0.2;
}

body main .career .intro .circle:nth-child(36) {
  -webkit-animation: circleMove 11s infinite 7s;
          animation: circleMove 11s infinite 7s;
  left: 783px;
  width: 10px;
  height: 10px;
  opacity: 0.2;
}

body main .career .intro .circle:nth-child(37) {
  -webkit-animation: circleMove 6s infinite 1s;
          animation: circleMove 6s infinite 1s;
  left: 1434px;
  width: 40px;
  height: 40px;
  opacity: 0.2;
}

body main .career .intro .circle:nth-child(38) {
  -webkit-animation: circleMove 10s infinite 2s;
          animation: circleMove 10s infinite 2s;
  left: 980px;
  width: 10px;
  height: 10px;
  opacity: 0.2;
}

body main .career .intro .circle:nth-child(39) {
  -webkit-animation: circleMove 10s infinite 1s;
          animation: circleMove 10s infinite 1s;
  left: 459px;
  width: 40px;
  height: 40px;
  opacity: 0.2;
}

body main .career .intro .circle:nth-child(40) {
  -webkit-animation: circleMove 10s infinite 7s;
          animation: circleMove 10s infinite 7s;
  left: 279px;
  width: 10px;
  height: 10px;
  opacity: 0.2;
}

body main .career .intro .circle:nth-child(41) {
  -webkit-animation: circleMove 12s infinite 10s;
          animation: circleMove 12s infinite 10s;
  left: 111px;
  width: 40px;
  height: 40px;
  opacity: 0.2;
}

body main .career .intro .circle:nth-child(42) {
  -webkit-animation: circleMove 8s infinite 1s;
          animation: circleMove 8s infinite 1s;
  left: 1143px;
  width: 10px;
  height: 10px;
  opacity: 0.2;
}

body main .career .intro .circle:nth-child(43) {
  -webkit-animation: circleMove 12s infinite 5s;
          animation: circleMove 12s infinite 5s;
  left: 455px;
  width: 40px;
  height: 40px;
  opacity: 0.2;
}

body main .career .intro .circle:nth-child(44) {
  -webkit-animation: circleMove 11s infinite 10s;
          animation: circleMove 11s infinite 10s;
  left: 8px;
  width: 10px;
  height: 10px;
  opacity: 0.2;
}

body main .career .intro .circle:nth-child(45) {
  -webkit-animation: circleMove 10s infinite 8s;
          animation: circleMove 10s infinite 8s;
  left: 378px;
  width: 40px;
  height: 40px;
  opacity: 0.2;
}

body main .career .intro .circle:nth-child(46) {
  -webkit-animation: circleMove 6s infinite 4s;
          animation: circleMove 6s infinite 4s;
  left: 1391px;
  width: 10px;
  height: 10px;
  opacity: 0.2;
}

body main .career .intro .circle:nth-child(47) {
  -webkit-animation: circleMove 6s infinite 5s;
          animation: circleMove 6s infinite 5s;
  left: 353px;
  width: 40px;
  height: 40px;
  opacity: 0.2;
}

body main .career .intro .circle:nth-child(48) {
  -webkit-animation: circleMove 8s infinite 6s;
          animation: circleMove 8s infinite 6s;
  left: 826px;
  width: 10px;
  height: 10px;
  opacity: 0.2;
}

body main .career .intro .circle:nth-child(49) {
  -webkit-animation: circleMove 10s infinite 6s;
          animation: circleMove 10s infinite 6s;
  left: 1800px;
  width: 40px;
  height: 40px;
  opacity: 0.2;
}

body main .career .intro .circle:nth-child(50) {
  -webkit-animation: circleMove 6s infinite 5s;
          animation: circleMove 6s infinite 5s;
  left: 1430px;
  width: 10px;
  height: 10px;
  opacity: 0.2;
}

@keyframes circleMove {
  from {
    top: 100%;
  }
  to {
    top: -30%;
  }
}

body main .career .intro .text {
  font-size: 50px;
  text-align: center;
  color: #322bff;
  line-height: 60px;
  padding-top: 3em;
  margin-bottom: 50px;
}

@media (max-width: 768px) {
  body main .career .intro .text {
    line-height: 50px;
    width: 100%;
  }
}

body main .career .intro .text .textRow {
  height: 70px;
  padding-top: 70px;
  overflow: hidden;
  -webkit-transition: 2s;
  transition: 2s;
}

@media (max-width: 768px) {
  body main .career .intro .text .textRow {
    height: auto;
    font-size: 40px;
    padding-top: 0;
    width: 100%;
  }
}

body main .career .intro .text .textRow.show {
  padding-top: 0;
}

body main .career .intro .text .textRow:nth-child(2) {
  -webkit-transition: 2s 0.1s;
  transition: 2s 0.1s;
}

body main .career .job_title .form-check-inline .form-check-input {
  display: none;
}

body main .career .job_title .form-check-label {
  color: #322bff;
  opacity: 0.4;
  border: 2px solid #322bff;
  border-radius: 35px;
  padding: 10px 0;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

body main .career .job_title .form-check-label .labelCon {
  position: relative;
  overflow: hidden;
  font-size: 20px;
}

body main .career .job_title .form-check-label .labelCon .front {
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

body main .career .job_title .form-check-label .labelCon .back {
  position: absolute;
  top: 100%;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

body main .career .job_title .form-check-label:hover {
  cursor: pointer;
  opacity: 1;
}

body main .career .job_title .form-check-label:hover .labelCon .front {
  -webkit-transform: translateY(-100%);
          transform: translateY(-100%);
}

body main .career .job_title .form-check-label:hover .labelCon .back {
  top: 0%;
}

body main .career .job_title .type {
  padding: 10px 60px;
}

body main .career .job_title .form-check-label.active {
  background: #322bff;
  color: #fcfcfc;
  opacity: 1;
}

body main .career .job_title .teel {
  color: #322bff;
  font-size: 30px;
  margin-top: 9rem;
}

body main .career .job_title form {
  width: 50%;
  margin: 0 auto;
}

@media (max-width: 768px) {
  body main .career .job_title form {
    width: 100%;
  }
}

body main .career .job_title .inputs .input {
  position: relative;
  width: 40vw;
  margin: 0 auto;
  margin-top: 3vh;
  background-color: transparent;
}

@media (max-width: 768px) {
  body main .career .job_title .inputs .input {
    width: 90%;
  }
}

body main .career .job_title .inputs .input--wave {
  overflow: hidden;
}

body main .career .job_title .inputs .graphic {
  position: absolute;
  top: 0;
  left: 0;
  fill: none;
}

body main .career .job_title .inputs .graphic--wave {
  stroke: #6d8fb9;
  pointer-events: none;
  -webkit-transition: stroke 0.7s, -webkit-transform 0.7s;
  transition: stroke 0.7s, -webkit-transform 0.7s;
  transition: transform 0.7s, stroke 0.7s;
  transition: transform 0.7s, stroke 0.7s, -webkit-transform 0.7s;
  -webkit-transition-timing-function: cubic-bezier(0, 0.25, 0.5, 1);
          transition-timing-function: cubic-bezier(0, 0.25, 0.5, 1);
}

body main .career .job_title .inputs .graphic .input__field--wave:focus + .input__label--wave,
body main .career .job_title .inputs .input--filled .input__label--wave {
  -webkit-transform: translate3d(0, -1.25em, 0) scale3d(0.75, 0.75, 1);
  transform: translate3d(0, -1.25em, 0) scale3d(0.75, 0.75, 1);
}

body main .career .job_title .inputs .input__field--wave:focus ~ .graphic--wave,
body main .career .job_title .inputs .input--filled .graphic--wave {
  stroke: #c6c6c6;
  -webkit-transform: translate3d(-66.6%, 0, 0);
  transform: translate3d(-66.6%, 0, 0);
}

body main .career .job_title .inputs input {
  margin: 25px 0;
  text-align: center;
  border: 0;
  border-radius: 0;
  color: #322bff;
  font-size: 30px;
}

body main .career .job_title .inputs input:focus {
  outline: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
}

body main .career .job_title .inputs input::-webkit-input-placeholder {
  color: #322bff;
  opacity: 0.4;
}

body main .career .job_title .inputs input:-ms-input-placeholder {
  color: #322bff;
  opacity: 0.4;
}

body main .career .job_title .inputs input::-ms-input-placeholder {
  color: #322bff;
  opacity: 0.4;
}

body main .career .job_title .inputs input::placeholder {
  color: #322bff;
  opacity: 0.4;
}

body main .career .job_title .inputs .btn-file {
  margin: 5% auto 2%;
  border-radius: 25px;
  border: 1px solid #322bff;
  padding: 15px 30px;
  color: #322bff;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

body main .career .job_title .inputs .btn-file:hover {
  cursor: pointer;
  color: #fcfcfc;
  background: #322bff;
}

body main .career .job_title .job_position {
  width: 100%;
  color: #322bff;
  font-size: 35px;
}

body main .career .job_pos {
  margin: 5rem;
}

body main .career .job_pos h3 {
  color: #322bff;
}

body main .career .exper {
  margin-top: 5rem;
}

body main .career h3 {
  color: #322bff;
}

body main .career .error_ajax {
  display: none;
}

body main .career .btn-submit {
  border-radius: 30px;
  color: #fcfcfc;
  background: #322bff;
  padding: 10px 50px;
  margin: 0 auto 5%;
}

body main .career .btn-submit .submitCon {
  overflow: hidden;
  position: relative;
  font-size: 20px;
}

body main .career .btn-submit .submitCon .front {
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

body main .career .btn-submit .submitCon .back {
  -webkit-transition: 0.5s;
  transition: 0.5s;
  position: absolute;
  top: 100%;
  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;
  left: 50%;
  -webkit-transform: translateX(-50%) scale(0.4);
          transform: translateX(-50%) scale(0.4);
}

body main .career .btn-submit .submitCon .back * {
  fill: #fcfcfc;
}

body main .career .btn-submit .submitCon .back svg {
  width: 30px;
  height: 30px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

body main .career .btn-submit:hover .front {
  -webkit-transform: translateY(-100%);
          transform: translateY(-100%);
}

body main .career .btn-submit:hover .back {
  top: 0%;
  -webkit-transform: translateX(-50%) scale(1);
          transform: translateX(-50%) scale(1);
}

body main .career .form-label {
  color: #322bff;
}

body main .career .form-range {
  width: 100%;
  margin: 10px 0 !important;
  background-color: #322bff !important;
  color: #322bff !important;
  -webkit-appearance: inherit;
     -moz-appearance: inherit;
          appearance: inherit;
  height: 3px;
}

body main .career .form-range[type="range"]::-webkit-slider-thumb {
  background-color: #322bff !important;
  color: #322bff !important;
  -webkit-appearance: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 10px solid #fcfcfc;
  cursor: pointer;
}

body main .career .rangeValues {
  color: #322bff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 0 0 0 20px;
}

body main .career .rangeValues .value {
  -webkit-transition: 0.4s ease;
  transition: 0.4s ease;
  opacity: 0;
}

body main .career .rangeValues .value.show {
  opacity: 1;
}

body main .home .intro {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

body main .home .intro ::-moz-selection {
  background: #134074;
  color: #fcfcfc;
}

body main .home .intro ::selection {
  background: #134074;
  color: #fcfcfc;
}

body main .home .intro .shape {
  position: absolute;
  top: 100%;
  left: 30%;
  width: auto;
  height: auto;
  color: #322bff;
  border-radius: 50%;
  -webkit-transition: 1s;
  transition: 1s;
}

body main .home .intro .shape img {
  width: 30px;
  height: 30px;
}

body main .home .intro .shape:hover {
  -webkit-transform: scale(1.5);
          transform: scale(1.5);
}

body main .home .intro .shape:nth-child(1) {
  -webkit-animation: circleMove 14s infinite 8s;
          animation: circleMove 14s infinite 8s;
  left: 742px;
}

body main .home .intro .shape:nth-child(1).circle {
  width: 40px;
  height: 40px;
  opacity: 0.2;
  background-color: #134074;
}

body main .home .intro .shape:nth-child(1).yellowCircle {
  background-color: #f2d129;
  width: 10px;
  height: 10px;
}

body main .home .intro .shape:nth-child(1).yellow {
  color: #f2d129;
}

body main .home .intro .shape:nth-child(1).blue {
  color: #322bff;
  opacity: 0.7;
}

body main .home .intro .shape:nth-child(2) {
  -webkit-animation: circleMove 12s infinite 10s;
          animation: circleMove 12s infinite 10s;
  left: 353px;
}

body main .home .intro .shape:nth-child(2).circle {
  width: 10px;
  height: 10px;
  opacity: 0.2;
  background-color: #134074;
}

body main .home .intro .shape:nth-child(2).yellowCircle {
  background-color: #f2d129;
  width: 10px;
  height: 10px;
}

body main .home .intro .shape:nth-child(2).yellow {
  color: #f2d129;
}

body main .home .intro .shape:nth-child(2).blue {
  color: #322bff;
  opacity: 0.7;
}

body main .home .intro .shape:nth-child(3) {
  -webkit-animation: circleMove 14s infinite 7s;
          animation: circleMove 14s infinite 7s;
  left: 1518px;
}

body main .home .intro .shape:nth-child(3).circle {
  width: 40px;
  height: 40px;
  opacity: 0.2;
  background-color: #134074;
}

body main .home .intro .shape:nth-child(3).yellowCircle {
  background-color: #f2d129;
  width: 10px;
  height: 10px;
}

body main .home .intro .shape:nth-child(3).yellow {
  color: #f2d129;
}

body main .home .intro .shape:nth-child(3).blue {
  color: #322bff;
  opacity: 0.7;
}

body main .home .intro .shape:nth-child(4) {
  -webkit-animation: circleMove 9s infinite 4s;
          animation: circleMove 9s infinite 4s;
  left: 1461px;
}

body main .home .intro .shape:nth-child(4).circle {
  width: 10px;
  height: 10px;
  opacity: 0.2;
  background-color: #134074;
}

body main .home .intro .shape:nth-child(4).yellowCircle {
  background-color: #f2d129;
  width: 10px;
  height: 10px;
}

body main .home .intro .shape:nth-child(4).yellow {
  color: #f2d129;
}

body main .home .intro .shape:nth-child(4).blue {
  color: #322bff;
  opacity: 0.7;
}

body main .home .intro .shape:nth-child(5) {
  -webkit-animation: circleMove 12s infinite 7s;
          animation: circleMove 12s infinite 7s;
  left: 36px;
}

body main .home .intro .shape:nth-child(5).circle {
  width: 40px;
  height: 40px;
  opacity: 1;
  background-color: #134074;
}

body main .home .intro .shape:nth-child(5).yellowCircle {
  background-color: #f2d129;
  width: 10px;
  height: 10px;
}

body main .home .intro .shape:nth-child(5).yellow {
  color: #f2d129;
}

body main .home .intro .shape:nth-child(5).blue {
  color: #322bff;
  opacity: 0.7;
}

body main .home .intro .shape:nth-child(6) {
  -webkit-animation: circleMove 9s infinite 9s;
          animation: circleMove 9s infinite 9s;
  left: 811px;
}

body main .home .intro .shape:nth-child(6).circle {
  width: 10px;
  height: 10px;
  opacity: 0.2;
  background-color: #134074;
}

body main .home .intro .shape:nth-child(6).yellowCircle {
  background-color: #f2d129;
  width: 10px;
  height: 10px;
}

body main .home .intro .shape:nth-child(6).yellow {
  color: #f2d129;
}

body main .home .intro .shape:nth-child(6).blue {
  color: #322bff;
  opacity: 0.7;
}

body main .home .intro .shape:nth-child(7) {
  -webkit-animation: circleMove 15s infinite 1s;
          animation: circleMove 15s infinite 1s;
  left: 1935px;
}

body main .home .intro .shape:nth-child(7).circle {
  width: 40px;
  height: 40px;
  opacity: 0.2;
  background-color: #134074;
}

body main .home .intro .shape:nth-child(7).yellowCircle {
  background-color: #f2d129;
  width: 10px;
  height: 10px;
}

body main .home .intro .shape:nth-child(7).yellow {
  color: #f2d129;
}

body main .home .intro .shape:nth-child(7).blue {
  color: #322bff;
  opacity: 0.7;
}

body main .home .intro .shape:nth-child(8) {
  -webkit-animation: circleMove 11s infinite 6s;
          animation: circleMove 11s infinite 6s;
  left: 1700px;
}

body main .home .intro .shape:nth-child(8).circle {
  width: 10px;
  height: 10px;
  opacity: 0.2;
  background-color: #134074;
}

body main .home .intro .shape:nth-child(8).yellowCircle {
  background-color: #f2d129;
  width: 10px;
  height: 10px;
}

body main .home .intro .shape:nth-child(8).yellow {
  color: #f2d129;
}

body main .home .intro .shape:nth-child(8).blue {
  color: #322bff;
  opacity: 0.7;
}

body main .home .intro .shape:nth-child(9) {
  -webkit-animation: circleMove 15s infinite 2s;
          animation: circleMove 15s infinite 2s;
  left: 1644px;
}

body main .home .intro .shape:nth-child(9).circle {
  width: 40px;
  height: 40px;
  opacity: 0.2;
  background-color: #134074;
}

body main .home .intro .shape:nth-child(9).yellowCircle {
  background-color: #f2d129;
  width: 10px;
  height: 10px;
}

body main .home .intro .shape:nth-child(9).yellow {
  color: #f2d129;
}

body main .home .intro .shape:nth-child(9).blue {
  color: #322bff;
  opacity: 0.7;
}

body main .home .intro .shape:nth-child(10) {
  -webkit-animation: circleMove 13s infinite 2s;
          animation: circleMove 13s infinite 2s;
  left: 1687px;
}

body main .home .intro .shape:nth-child(10).circle {
  width: 10px;
  height: 10px;
  opacity: 0.2;
  background-color: #134074;
}

body main .home .intro .shape:nth-child(10).yellowCircle {
  background-color: #f2d129;
  width: 10px;
  height: 10px;
}

body main .home .intro .shape:nth-child(10).yellow {
  color: #f2d129;
}

body main .home .intro .shape:nth-child(10).blue {
  color: #322bff;
  opacity: 0.7;
}

body main .home .intro .shape:nth-child(11) {
  -webkit-animation: circleMove 15s infinite 6s;
          animation: circleMove 15s infinite 6s;
  left: 403px;
}

body main .home .intro .shape:nth-child(11).circle {
  width: 40px;
  height: 40px;
  opacity: 0.2;
  background-color: #134074;
}

body main .home .intro .shape:nth-child(11).yellowCircle {
  background-color: #f2d129;
  width: 10px;
  height: 10px;
}

body main .home .intro .shape:nth-child(11).yellow {
  color: #f2d129;
}

body main .home .intro .shape:nth-child(11).blue {
  color: #322bff;
  opacity: 0.7;
}

body main .home .intro .shape:nth-child(12) {
  -webkit-animation: circleMove 11s infinite 8s;
          animation: circleMove 11s infinite 8s;
  left: 790px;
}

body main .home .intro .shape:nth-child(12).circle {
  width: 10px;
  height: 10px;
  opacity: 0.2;
  background-color: #134074;
}

body main .home .intro .shape:nth-child(12).yellowCircle {
  background-color: #f2d129;
  width: 10px;
  height: 10px;
}

body main .home .intro .shape:nth-child(12).yellow {
  color: #f2d129;
}

body main .home .intro .shape:nth-child(12).blue {
  color: #322bff;
  opacity: 0.7;
}

body main .home .intro .shape:nth-child(13) {
  -webkit-animation: circleMove 15s infinite 2s;
          animation: circleMove 15s infinite 2s;
  left: 1817px;
}

body main .home .intro .shape:nth-child(13).circle {
  width: 40px;
  height: 40px;
  opacity: 0.2;
  background-color: #134074;
}

body main .home .intro .shape:nth-child(13).yellowCircle {
  background-color: #f2d129;
  width: 10px;
  height: 10px;
}

body main .home .intro .shape:nth-child(13).yellow {
  color: #f2d129;
}

body main .home .intro .shape:nth-child(13).blue {
  color: #322bff;
  opacity: 0.7;
}

body main .home .intro .shape:nth-child(14) {
  -webkit-animation: circleMove 10s infinite 5s;
          animation: circleMove 10s infinite 5s;
  left: 70px;
}

body main .home .intro .shape:nth-child(14).circle {
  width: 10px;
  height: 10px;
  opacity: 0.2;
  background-color: #134074;
}

body main .home .intro .shape:nth-child(14).yellowCircle {
  background-color: #f2d129;
  width: 10px;
  height: 10px;
}

body main .home .intro .shape:nth-child(14).yellow {
  color: #f2d129;
}

body main .home .intro .shape:nth-child(14).blue {
  color: #322bff;
  opacity: 0.7;
}

body main .home .intro .shape:nth-child(15) {
  -webkit-animation: circleMove 11s infinite 3s;
          animation: circleMove 11s infinite 3s;
  left: 1622px;
}

body main .home .intro .shape:nth-child(15).circle {
  width: 40px;
  height: 40px;
  opacity: 0.2;
  background-color: #134074;
}

body main .home .intro .shape:nth-child(15).yellowCircle {
  background-color: #f2d129;
  width: 10px;
  height: 10px;
}

body main .home .intro .shape:nth-child(15).yellow {
  color: #f2d129;
}

body main .home .intro .shape:nth-child(15).blue {
  color: #322bff;
  opacity: 0.7;
}

body main .home .intro .shape:nth-child(16) {
  -webkit-animation: circleMove 12s infinite 8s;
          animation: circleMove 12s infinite 8s;
  left: 927px;
}

body main .home .intro .shape:nth-child(16).circle {
  width: 10px;
  height: 10px;
  opacity: 0.2;
  background-color: #134074;
}

body main .home .intro .shape:nth-child(16).yellowCircle {
  background-color: #f2d129;
  width: 10px;
  height: 10px;
}

body main .home .intro .shape:nth-child(16).yellow {
  color: #f2d129;
}

body main .home .intro .shape:nth-child(16).blue {
  color: #322bff;
  opacity: 0.7;
}

body main .home .intro .shape:nth-child(17) {
  -webkit-animation: circleMove 10s infinite 7s;
          animation: circleMove 10s infinite 7s;
  left: 43px;
}

body main .home .intro .shape:nth-child(17).circle {
  width: 40px;
  height: 40px;
  opacity: 0.2;
  background-color: #134074;
}

body main .home .intro .shape:nth-child(17).yellowCircle {
  background-color: #f2d129;
  width: 10px;
  height: 10px;
}

body main .home .intro .shape:nth-child(17).yellow {
  color: #f2d129;
}

body main .home .intro .shape:nth-child(17).blue {
  color: #322bff;
  opacity: 0.7;
}

body main .home .intro .shape:nth-child(18) {
  -webkit-animation: circleMove 13s infinite 8s;
          animation: circleMove 13s infinite 8s;
  left: 1401px;
}

body main .home .intro .shape:nth-child(18).circle {
  width: 10px;
  height: 10px;
  opacity: 0.2;
  background-color: #134074;
}

body main .home .intro .shape:nth-child(18).yellowCircle {
  background-color: #f2d129;
  width: 10px;
  height: 10px;
}

body main .home .intro .shape:nth-child(18).yellow {
  color: #f2d129;
}

body main .home .intro .shape:nth-child(18).blue {
  color: #322bff;
  opacity: 0.7;
}

body main .home .intro .shape:nth-child(19) {
  -webkit-animation: circleMove 15s infinite 5s;
          animation: circleMove 15s infinite 5s;
  left: 199px;
}

body main .home .intro .shape:nth-child(19).circle {
  width: 40px;
  height: 40px;
  opacity: 0.2;
  background-color: #134074;
}

body main .home .intro .shape:nth-child(19).yellowCircle {
  background-color: #f2d129;
  width: 10px;
  height: 10px;
}

body main .home .intro .shape:nth-child(19).yellow {
  color: #f2d129;
}

body main .home .intro .shape:nth-child(19).blue {
  color: #322bff;
  opacity: 0.7;
}

body main .home .intro .shape:nth-child(20) {
  -webkit-animation: circleMove 15s infinite 6s;
          animation: circleMove 15s infinite 6s;
  left: 812px;
}

body main .home .intro .shape:nth-child(20).circle {
  width: 10px;
  height: 10px;
  opacity: 0.2;
  background-color: #134074;
}

body main .home .intro .shape:nth-child(20).yellowCircle {
  background-color: #f2d129;
  width: 10px;
  height: 10px;
}

body main .home .intro .shape:nth-child(20).yellow {
  color: #f2d129;
}

body main .home .intro .shape:nth-child(20).blue {
  color: #322bff;
  opacity: 0.7;
}

body main .home .intro .shape:nth-child(21) {
  -webkit-animation: circleMove 10s infinite 3s;
          animation: circleMove 10s infinite 3s;
  left: 1370px;
}

body main .home .intro .shape:nth-child(21).circle {
  width: 40px;
  height: 40px;
  opacity: 0.2;
  background-color: #134074;
}

body main .home .intro .shape:nth-child(21).yellowCircle {
  background-color: #f2d129;
  width: 10px;
  height: 10px;
}

body main .home .intro .shape:nth-child(21).yellow {
  color: #f2d129;
}

body main .home .intro .shape:nth-child(21).blue {
  color: #322bff;
  opacity: 0.7;
}

body main .home .intro .shape:nth-child(22) {
  -webkit-animation: circleMove 14s infinite 2s;
          animation: circleMove 14s infinite 2s;
  left: 1731px;
}

body main .home .intro .shape:nth-child(22).circle {
  width: 10px;
  height: 10px;
  opacity: 0.2;
  background-color: #134074;
}

body main .home .intro .shape:nth-child(22).yellowCircle {
  background-color: #f2d129;
  width: 10px;
  height: 10px;
}

body main .home .intro .shape:nth-child(22).yellow {
  color: #f2d129;
}

body main .home .intro .shape:nth-child(22).blue {
  color: #322bff;
  opacity: 0.7;
}

body main .home .intro .shape:nth-child(23) {
  -webkit-animation: circleMove 11s infinite 10s;
          animation: circleMove 11s infinite 10s;
  left: 466px;
}

body main .home .intro .shape:nth-child(23).circle {
  width: 40px;
  height: 40px;
  opacity: 0.2;
  background-color: #134074;
}

body main .home .intro .shape:nth-child(23).yellowCircle {
  background-color: #f2d129;
  width: 10px;
  height: 10px;
}

body main .home .intro .shape:nth-child(23).yellow {
  color: #f2d129;
}

body main .home .intro .shape:nth-child(23).blue {
  color: #322bff;
  opacity: 0.7;
}

body main .home .intro .shape:nth-child(24) {
  -webkit-animation: circleMove 13s infinite 10s;
          animation: circleMove 13s infinite 10s;
  left: 340px;
}

body main .home .intro .shape:nth-child(24).circle {
  width: 10px;
  height: 10px;
  opacity: 0.2;
  background-color: #134074;
}

body main .home .intro .shape:nth-child(24).yellowCircle {
  background-color: #f2d129;
  width: 10px;
  height: 10px;
}

body main .home .intro .shape:nth-child(24).yellow {
  color: #f2d129;
}

body main .home .intro .shape:nth-child(24).blue {
  color: #322bff;
  opacity: 0.7;
}

body main .home .intro .shape:nth-child(25) {
  -webkit-animation: circleMove 14s infinite 7s;
          animation: circleMove 14s infinite 7s;
  left: 1853px;
}

body main .home .intro .shape:nth-child(25).circle {
  width: 40px;
  height: 40px;
  opacity: 0.2;
  background-color: #134074;
}

body main .home .intro .shape:nth-child(25).yellowCircle {
  background-color: #f2d129;
  width: 10px;
  height: 10px;
}

body main .home .intro .shape:nth-child(25).yellow {
  color: #f2d129;
}

body main .home .intro .shape:nth-child(25).blue {
  color: #322bff;
  opacity: 0.7;
}

body main .home .intro .shape:nth-child(26) {
  -webkit-animation: circleMove 15s infinite 5s;
          animation: circleMove 15s infinite 5s;
  left: 282px;
}

body main .home .intro .shape:nth-child(26).circle {
  width: 10px;
  height: 10px;
  opacity: 0.2;
  background-color: #134074;
}

body main .home .intro .shape:nth-child(26).yellowCircle {
  background-color: #f2d129;
  width: 10px;
  height: 10px;
}

body main .home .intro .shape:nth-child(26).yellow {
  color: #f2d129;
}

body main .home .intro .shape:nth-child(26).blue {
  color: #322bff;
  opacity: 0.7;
}

body main .home .intro .shape:nth-child(27) {
  -webkit-animation: circleMove 9s infinite 8s;
          animation: circleMove 9s infinite 8s;
  left: 1721px;
}

body main .home .intro .shape:nth-child(27).circle {
  width: 40px;
  height: 40px;
  opacity: 0.2;
  background-color: #134074;
}

body main .home .intro .shape:nth-child(27).yellowCircle {
  background-color: #f2d129;
  width: 10px;
  height: 10px;
}

body main .home .intro .shape:nth-child(27).yellow {
  color: #f2d129;
}

body main .home .intro .shape:nth-child(27).blue {
  color: #322bff;
  opacity: 0.7;
}

body main .home .intro .shape:nth-child(28) {
  -webkit-animation: circleMove 13s infinite 10s;
          animation: circleMove 13s infinite 10s;
  left: 1325px;
}

body main .home .intro .shape:nth-child(28).circle {
  width: 10px;
  height: 10px;
  opacity: 0.2;
  background-color: #134074;
}

body main .home .intro .shape:nth-child(28).yellowCircle {
  background-color: #f2d129;
  width: 10px;
  height: 10px;
}

body main .home .intro .shape:nth-child(28).yellow {
  color: #f2d129;
}

body main .home .intro .shape:nth-child(28).blue {
  color: #322bff;
  opacity: 0.7;
}

body main .home .intro .shape:nth-child(29) {
  -webkit-animation: circleMove 15s infinite 8s;
          animation: circleMove 15s infinite 8s;
  left: 561px;
}

body main .home .intro .shape:nth-child(29).circle {
  width: 40px;
  height: 40px;
  opacity: 0.2;
  background-color: #134074;
}

body main .home .intro .shape:nth-child(29).yellowCircle {
  background-color: #f2d129;
  width: 10px;
  height: 10px;
}

body main .home .intro .shape:nth-child(29).yellow {
  color: #f2d129;
}

body main .home .intro .shape:nth-child(29).blue {
  color: #322bff;
  opacity: 0.7;
}

body main .home .intro .shape:nth-child(30) {
  -webkit-animation: circleMove 9s infinite 8s;
          animation: circleMove 9s infinite 8s;
  left: 1284px;
}

body main .home .intro .shape:nth-child(30).circle {
  width: 10px;
  height: 10px;
  opacity: 0.2;
  background-color: #134074;
}

body main .home .intro .shape:nth-child(30).yellowCircle {
  background-color: #f2d129;
  width: 10px;
  height: 10px;
}

body main .home .intro .shape:nth-child(30).yellow {
  color: #f2d129;
}

body main .home .intro .shape:nth-child(30).blue {
  color: #322bff;
  opacity: 0.7;
}

body main .home .intro .shape:nth-child(31) {
  -webkit-animation: circleMove 13s infinite 1s;
          animation: circleMove 13s infinite 1s;
  left: 595px;
}

body main .home .intro .shape:nth-child(31).circle {
  width: 40px;
  height: 40px;
  opacity: 0.2;
  background-color: #134074;
}

body main .home .intro .shape:nth-child(31).yellowCircle {
  background-color: #f2d129;
  width: 10px;
  height: 10px;
}

body main .home .intro .shape:nth-child(31).yellow {
  color: #f2d129;
}

body main .home .intro .shape:nth-child(31).blue {
  color: #322bff;
  opacity: 0.7;
}

body main .home .intro .shape:nth-child(32) {
  -webkit-animation: circleMove 15s infinite 8s;
          animation: circleMove 15s infinite 8s;
  left: 1248px;
}

body main .home .intro .shape:nth-child(32).circle {
  width: 10px;
  height: 10px;
  opacity: 0.2;
  background-color: #134074;
}

body main .home .intro .shape:nth-child(32).yellowCircle {
  background-color: #f2d129;
  width: 10px;
  height: 10px;
}

body main .home .intro .shape:nth-child(32).yellow {
  color: #f2d129;
}

body main .home .intro .shape:nth-child(32).blue {
  color: #322bff;
  opacity: 0.7;
}

body main .home .intro .shape:nth-child(33) {
  -webkit-animation: circleMove 12s infinite 8s;
          animation: circleMove 12s infinite 8s;
  left: 959px;
}

body main .home .intro .shape:nth-child(33).circle {
  width: 40px;
  height: 40px;
  opacity: 0.2;
  background-color: #134074;
}

body main .home .intro .shape:nth-child(33).yellowCircle {
  background-color: #f2d129;
  width: 10px;
  height: 10px;
}

body main .home .intro .shape:nth-child(33).yellow {
  color: #f2d129;
}

body main .home .intro .shape:nth-child(33).blue {
  color: #322bff;
  opacity: 0.7;
}

body main .home .intro .shape:nth-child(34) {
  -webkit-animation: circleMove 15s infinite 8s;
          animation: circleMove 15s infinite 8s;
  left: 224px;
}

body main .home .intro .shape:nth-child(34).circle {
  width: 10px;
  height: 10px;
  opacity: 0.2;
  background-color: #134074;
}

body main .home .intro .shape:nth-child(34).yellowCircle {
  background-color: #f2d129;
  width: 10px;
  height: 10px;
}

body main .home .intro .shape:nth-child(34).yellow {
  color: #f2d129;
}

body main .home .intro .shape:nth-child(34).blue {
  color: #322bff;
  opacity: 0.7;
}

body main .home .intro .shape:nth-child(35) {
  -webkit-animation: circleMove 10s infinite 10s;
          animation: circleMove 10s infinite 10s;
  left: 1780px;
}

body main .home .intro .shape:nth-child(35).circle {
  width: 40px;
  height: 40px;
  opacity: 0.2;
  background-color: #134074;
}

body main .home .intro .shape:nth-child(35).yellowCircle {
  background-color: #f2d129;
  width: 10px;
  height: 10px;
}

body main .home .intro .shape:nth-child(35).yellow {
  color: #f2d129;
}

body main .home .intro .shape:nth-child(35).blue {
  color: #322bff;
  opacity: 0.7;
}

body main .home .intro .shape:nth-child(36) {
  -webkit-animation: circleMove 10s infinite 3s;
          animation: circleMove 10s infinite 3s;
  left: 1593px;
}

body main .home .intro .shape:nth-child(36).circle {
  width: 10px;
  height: 10px;
  opacity: 0.2;
  background-color: #134074;
}

body main .home .intro .shape:nth-child(36).yellowCircle {
  background-color: #f2d129;
  width: 10px;
  height: 10px;
}

body main .home .intro .shape:nth-child(36).yellow {
  color: #f2d129;
}

body main .home .intro .shape:nth-child(36).blue {
  color: #322bff;
  opacity: 0.7;
}

body main .home .intro .shape:nth-child(37) {
  -webkit-animation: circleMove 12s infinite 2s;
          animation: circleMove 12s infinite 2s;
  left: 1347px;
}

body main .home .intro .shape:nth-child(37).circle {
  width: 40px;
  height: 40px;
  opacity: 0.2;
  background-color: #134074;
}

body main .home .intro .shape:nth-child(37).yellowCircle {
  background-color: #f2d129;
  width: 10px;
  height: 10px;
}

body main .home .intro .shape:nth-child(37).yellow {
  color: #f2d129;
}

body main .home .intro .shape:nth-child(37).blue {
  color: #322bff;
  opacity: 0.7;
}

body main .home .intro .shape:nth-child(38) {
  -webkit-animation: circleMove 15s infinite 7s;
          animation: circleMove 15s infinite 7s;
  left: 250px;
}

body main .home .intro .shape:nth-child(38).circle {
  width: 10px;
  height: 10px;
  opacity: 0.2;
  background-color: #134074;
}

body main .home .intro .shape:nth-child(38).yellowCircle {
  background-color: #f2d129;
  width: 10px;
  height: 10px;
}

body main .home .intro .shape:nth-child(38).yellow {
  color: #f2d129;
}

body main .home .intro .shape:nth-child(38).blue {
  color: #322bff;
  opacity: 0.7;
}

body main .home .intro .shape:nth-child(39) {
  -webkit-animation: circleMove 12s infinite 4s;
          animation: circleMove 12s infinite 4s;
  left: 812px;
}

body main .home .intro .shape:nth-child(39).circle {
  width: 40px;
  height: 40px;
  opacity: 0.2;
  background-color: #134074;
}

body main .home .intro .shape:nth-child(39).yellowCircle {
  background-color: #f2d129;
  width: 10px;
  height: 10px;
}

body main .home .intro .shape:nth-child(39).yellow {
  color: #f2d129;
}

body main .home .intro .shape:nth-child(39).blue {
  color: #322bff;
  opacity: 0.7;
}

body main .home .intro .shape:nth-child(40) {
  -webkit-animation: circleMove 13s infinite 8s;
          animation: circleMove 13s infinite 8s;
  left: 420px;
}

body main .home .intro .shape:nth-child(40).circle {
  width: 10px;
  height: 10px;
  opacity: 0.2;
  background-color: #134074;
}

body main .home .intro .shape:nth-child(40).yellowCircle {
  background-color: #f2d129;
  width: 10px;
  height: 10px;
}

body main .home .intro .shape:nth-child(40).yellow {
  color: #f2d129;
}

body main .home .intro .shape:nth-child(40).blue {
  color: #322bff;
  opacity: 0.7;
}

body main .home .intro .shape:nth-child(41) {
  -webkit-animation: circleMove 15s infinite 6s;
          animation: circleMove 15s infinite 6s;
  left: 1853px;
}

body main .home .intro .shape:nth-child(41).circle {
  width: 40px;
  height: 40px;
  opacity: 0.2;
  background-color: #134074;
}

body main .home .intro .shape:nth-child(41).yellowCircle {
  background-color: #f2d129;
  width: 10px;
  height: 10px;
}

body main .home .intro .shape:nth-child(41).yellow {
  color: #f2d129;
}

body main .home .intro .shape:nth-child(41).blue {
  color: #322bff;
  opacity: 0.7;
}

body main .home .intro .shape:nth-child(42) {
  -webkit-animation: circleMove 14s infinite 6s;
          animation: circleMove 14s infinite 6s;
  left: 867px;
}

body main .home .intro .shape:nth-child(42).circle {
  width: 10px;
  height: 10px;
  opacity: 0.2;
  background-color: #134074;
}

body main .home .intro .shape:nth-child(42).yellowCircle {
  background-color: #f2d129;
  width: 10px;
  height: 10px;
}

body main .home .intro .shape:nth-child(42).yellow {
  color: #f2d129;
}

body main .home .intro .shape:nth-child(42).blue {
  color: #322bff;
  opacity: 0.7;
}

body main .home .intro .shape:nth-child(43) {
  -webkit-animation: circleMove 14s infinite 8s;
          animation: circleMove 14s infinite 8s;
  left: 73px;
}

body main .home .intro .shape:nth-child(43).circle {
  width: 40px;
  height: 40px;
  opacity: 0.2;
  background-color: #134074;
}

body main .home .intro .shape:nth-child(43).yellowCircle {
  background-color: #f2d129;
  width: 10px;
  height: 10px;
}

body main .home .intro .shape:nth-child(43).yellow {
  color: #f2d129;
}

body main .home .intro .shape:nth-child(43).blue {
  color: #322bff;
  opacity: 0.7;
}

body main .home .intro .shape:nth-child(44) {
  -webkit-animation: circleMove 10s infinite 1s;
          animation: circleMove 10s infinite 1s;
  left: 1287px;
}

body main .home .intro .shape:nth-child(44).circle {
  width: 10px;
  height: 10px;
  opacity: 0.2;
  background-color: #134074;
}

body main .home .intro .shape:nth-child(44).yellowCircle {
  background-color: #f2d129;
  width: 10px;
  height: 10px;
}

body main .home .intro .shape:nth-child(44).yellow {
  color: #f2d129;
}

body main .home .intro .shape:nth-child(44).blue {
  color: #322bff;
  opacity: 0.7;
}

body main .home .intro .shape:nth-child(45) {
  -webkit-animation: circleMove 11s infinite 8s;
          animation: circleMove 11s infinite 8s;
  left: 319px;
}

body main .home .intro .shape:nth-child(45).circle {
  width: 40px;
  height: 40px;
  opacity: 0.2;
  background-color: #134074;
}

body main .home .intro .shape:nth-child(45).yellowCircle {
  background-color: #f2d129;
  width: 10px;
  height: 10px;
}

body main .home .intro .shape:nth-child(45).yellow {
  color: #f2d129;
}

body main .home .intro .shape:nth-child(45).blue {
  color: #322bff;
  opacity: 0.7;
}

body main .home .intro .shape:nth-child(46) {
  -webkit-animation: circleMove 11s infinite 6s;
          animation: circleMove 11s infinite 6s;
  left: 391px;
}

body main .home .intro .shape:nth-child(46).circle {
  width: 10px;
  height: 10px;
  opacity: 0.2;
  background-color: #134074;
}

body main .home .intro .shape:nth-child(46).yellowCircle {
  background-color: #f2d129;
  width: 10px;
  height: 10px;
}

body main .home .intro .shape:nth-child(46).yellow {
  color: #f2d129;
}

body main .home .intro .shape:nth-child(46).blue {
  color: #322bff;
  opacity: 0.7;
}

body main .home .intro .shape:nth-child(47) {
  -webkit-animation: circleMove 14s infinite 10s;
          animation: circleMove 14s infinite 10s;
  left: 647px;
}

body main .home .intro .shape:nth-child(47).circle {
  width: 40px;
  height: 40px;
  opacity: 0.2;
  background-color: #134074;
}

body main .home .intro .shape:nth-child(47).yellowCircle {
  background-color: #f2d129;
  width: 10px;
  height: 10px;
}

body main .home .intro .shape:nth-child(47).yellow {
  color: #f2d129;
}

body main .home .intro .shape:nth-child(47).blue {
  color: #322bff;
  opacity: 0.7;
}

body main .home .intro .shape:nth-child(48) {
  -webkit-animation: circleMove 12s infinite 9s;
          animation: circleMove 12s infinite 9s;
  left: 549px;
}

body main .home .intro .shape:nth-child(48).circle {
  width: 10px;
  height: 10px;
  opacity: 0.2;
  background-color: #134074;
}

body main .home .intro .shape:nth-child(48).yellowCircle {
  background-color: #f2d129;
  width: 10px;
  height: 10px;
}

body main .home .intro .shape:nth-child(48).yellow {
  color: #f2d129;
}

body main .home .intro .shape:nth-child(48).blue {
  color: #322bff;
  opacity: 0.7;
}

body main .home .intro .shape:nth-child(49) {
  -webkit-animation: circleMove 12s infinite 3s;
          animation: circleMove 12s infinite 3s;
  left: 1837px;
}

body main .home .intro .shape:nth-child(49).circle {
  width: 40px;
  height: 40px;
  opacity: 0.2;
  background-color: #134074;
}

body main .home .intro .shape:nth-child(49).yellowCircle {
  background-color: #f2d129;
  width: 10px;
  height: 10px;
}

body main .home .intro .shape:nth-child(49).yellow {
  color: #f2d129;
}

body main .home .intro .shape:nth-child(49).blue {
  color: #322bff;
  opacity: 0.7;
}

body main .home .intro .shape:nth-child(50) {
  -webkit-animation: circleMove 11s infinite 4s;
          animation: circleMove 11s infinite 4s;
  left: 1716px;
}

body main .home .intro .shape:nth-child(50).circle {
  width: 10px;
  height: 10px;
  opacity: 0.2;
  background-color: #134074;
}

body main .home .intro .shape:nth-child(50).yellowCircle {
  background-color: #f2d129;
  width: 10px;
  height: 10px;
}

body main .home .intro .shape:nth-child(50).yellow {
  color: #f2d129;
}

body main .home .intro .shape:nth-child(50).blue {
  color: #322bff;
  opacity: 0.7;
}

body main .home .intro .shape:nth-child(51) {
  -webkit-animation: circleMove 12s infinite 6s;
          animation: circleMove 12s infinite 6s;
  left: 1352px;
}

body main .home .intro .shape:nth-child(51).circle {
  width: 40px;
  height: 40px;
  opacity: 0.2;
  background-color: #134074;
}

body main .home .intro .shape:nth-child(51).yellowCircle {
  background-color: #f2d129;
  width: 10px;
  height: 10px;
}

body main .home .intro .shape:nth-child(51).yellow {
  color: #f2d129;
}

body main .home .intro .shape:nth-child(51).blue {
  color: #322bff;
  opacity: 0.7;
}

body main .home .intro .shape:nth-child(52) {
  -webkit-animation: circleMove 13s infinite 2s;
          animation: circleMove 13s infinite 2s;
  left: 1734px;
}

body main .home .intro .shape:nth-child(52).circle {
  width: 10px;
  height: 10px;
  opacity: 0.2;
  background-color: #134074;
}

body main .home .intro .shape:nth-child(52).yellowCircle {
  background-color: #f2d129;
  width: 10px;
  height: 10px;
}

body main .home .intro .shape:nth-child(52).yellow {
  color: #f2d129;
}

body main .home .intro .shape:nth-child(52).blue {
  color: #322bff;
  opacity: 0.7;
}

body main .home .intro .shape:nth-child(53) {
  -webkit-animation: circleMove 14s infinite 2s;
          animation: circleMove 14s infinite 2s;
  left: 1333px;
}

body main .home .intro .shape:nth-child(53).circle {
  width: 40px;
  height: 40px;
  opacity: 0.2;
  background-color: #134074;
}

body main .home .intro .shape:nth-child(53).yellowCircle {
  background-color: #f2d129;
  width: 10px;
  height: 10px;
}

body main .home .intro .shape:nth-child(53).yellow {
  color: #f2d129;
}

body main .home .intro .shape:nth-child(53).blue {
  color: #322bff;
  opacity: 0.7;
}

body main .home .intro .shape:nth-child(54) {
  -webkit-animation: circleMove 10s infinite 6s;
          animation: circleMove 10s infinite 6s;
  left: 1686px;
}

body main .home .intro .shape:nth-child(54).circle {
  width: 10px;
  height: 10px;
  opacity: 0.2;
  background-color: #134074;
}

body main .home .intro .shape:nth-child(54).yellowCircle {
  background-color: #f2d129;
  width: 10px;
  height: 10px;
}

body main .home .intro .shape:nth-child(54).yellow {
  color: #f2d129;
}

body main .home .intro .shape:nth-child(54).blue {
  color: #322bff;
  opacity: 0.7;
}

body main .home .intro .shape:nth-child(55) {
  -webkit-animation: circleMove 11s infinite 10s;
          animation: circleMove 11s infinite 10s;
  left: 1783px;
}

body main .home .intro .shape:nth-child(55).circle {
  width: 40px;
  height: 40px;
  opacity: 0.2;
  background-color: #134074;
}

body main .home .intro .shape:nth-child(55).yellowCircle {
  background-color: #f2d129;
  width: 10px;
  height: 10px;
}

body main .home .intro .shape:nth-child(55).yellow {
  color: #f2d129;
}

body main .home .intro .shape:nth-child(55).blue {
  color: #322bff;
  opacity: 0.7;
}

body main .home .intro .shape:nth-child(56) {
  -webkit-animation: circleMove 15s infinite 2s;
          animation: circleMove 15s infinite 2s;
  left: 1578px;
}

body main .home .intro .shape:nth-child(56).circle {
  width: 10px;
  height: 10px;
  opacity: 0.2;
  background-color: #134074;
}

body main .home .intro .shape:nth-child(56).yellowCircle {
  background-color: #f2d129;
  width: 10px;
  height: 10px;
}

body main .home .intro .shape:nth-child(56).yellow {
  color: #f2d129;
}

body main .home .intro .shape:nth-child(56).blue {
  color: #322bff;
  opacity: 0.7;
}

body main .home .intro .shape:nth-child(57) {
  -webkit-animation: circleMove 13s infinite 9s;
          animation: circleMove 13s infinite 9s;
  left: 1066px;
}

body main .home .intro .shape:nth-child(57).circle {
  width: 40px;
  height: 40px;
  opacity: 0.2;
  background-color: #134074;
}

body main .home .intro .shape:nth-child(57).yellowCircle {
  background-color: #f2d129;
  width: 10px;
  height: 10px;
}

body main .home .intro .shape:nth-child(57).yellow {
  color: #f2d129;
}

body main .home .intro .shape:nth-child(57).blue {
  color: #322bff;
  opacity: 0.7;
}

body main .home .intro .shape:nth-child(58) {
  -webkit-animation: circleMove 11s infinite 9s;
          animation: circleMove 11s infinite 9s;
  left: 105px;
}

body main .home .intro .shape:nth-child(58).circle {
  width: 10px;
  height: 10px;
  opacity: 0.2;
  background-color: #134074;
}

body main .home .intro .shape:nth-child(58).yellowCircle {
  background-color: #f2d129;
  width: 10px;
  height: 10px;
}

body main .home .intro .shape:nth-child(58).yellow {
  color: #f2d129;
}

body main .home .intro .shape:nth-child(58).blue {
  color: #322bff;
  opacity: 0.7;
}

body main .home .intro .shape:nth-child(59) {
  -webkit-animation: circleMove 12s infinite 10s;
          animation: circleMove 12s infinite 10s;
  left: 1711px;
}

body main .home .intro .shape:nth-child(59).circle {
  width: 40px;
  height: 40px;
  opacity: 0.2;
  background-color: #134074;
}

body main .home .intro .shape:nth-child(59).yellowCircle {
  background-color: #f2d129;
  width: 10px;
  height: 10px;
}

body main .home .intro .shape:nth-child(59).yellow {
  color: #f2d129;
}

body main .home .intro .shape:nth-child(59).blue {
  color: #322bff;
  opacity: 0.7;
}

body main .home .intro .shape:nth-child(60) {
  -webkit-animation: circleMove 9s infinite 4s;
          animation: circleMove 9s infinite 4s;
  left: 217px;
}

body main .home .intro .shape:nth-child(60).circle {
  width: 10px;
  height: 10px;
  opacity: 0.2;
  background-color: #134074;
}

body main .home .intro .shape:nth-child(60).yellowCircle {
  background-color: #f2d129;
  width: 10px;
  height: 10px;
}

body main .home .intro .shape:nth-child(60).yellow {
  color: #f2d129;
}

body main .home .intro .shape:nth-child(60).blue {
  color: #322bff;
  opacity: 0.7;
}

body main .home .intro .shape:nth-child(61) {
  -webkit-animation: circleMove 12s infinite 3s;
          animation: circleMove 12s infinite 3s;
  left: 890px;
}

body main .home .intro .shape:nth-child(61).circle {
  width: 40px;
  height: 40px;
  opacity: 0.2;
  background-color: #134074;
}

body main .home .intro .shape:nth-child(61).yellowCircle {
  background-color: #f2d129;
  width: 10px;
  height: 10px;
}

body main .home .intro .shape:nth-child(61).yellow {
  color: #f2d129;
}

body main .home .intro .shape:nth-child(61).blue {
  color: #322bff;
  opacity: 0.7;
}

body main .home .intro .shape:nth-child(62) {
  -webkit-animation: circleMove 13s infinite 8s;
          animation: circleMove 13s infinite 8s;
  left: 1893px;
}

body main .home .intro .shape:nth-child(62).circle {
  width: 10px;
  height: 10px;
  opacity: 0.2;
  background-color: #134074;
}

body main .home .intro .shape:nth-child(62).yellowCircle {
  background-color: #f2d129;
  width: 10px;
  height: 10px;
}

body main .home .intro .shape:nth-child(62).yellow {
  color: #f2d129;
}

body main .home .intro .shape:nth-child(62).blue {
  color: #322bff;
  opacity: 0.7;
}

body main .home .intro .shape:nth-child(63) {
  -webkit-animation: circleMove 14s infinite 1s;
          animation: circleMove 14s infinite 1s;
  left: 1586px;
}

body main .home .intro .shape:nth-child(63).circle {
  width: 40px;
  height: 40px;
  opacity: 0.2;
  background-color: #134074;
}

body main .home .intro .shape:nth-child(63).yellowCircle {
  background-color: #f2d129;
  width: 10px;
  height: 10px;
}

body main .home .intro .shape:nth-child(63).yellow {
  color: #f2d129;
}

body main .home .intro .shape:nth-child(63).blue {
  color: #322bff;
  opacity: 0.7;
}

body main .home .intro .shape:nth-child(64) {
  -webkit-animation: circleMove 15s infinite 3s;
          animation: circleMove 15s infinite 3s;
  left: 835px;
}

body main .home .intro .shape:nth-child(64).circle {
  width: 10px;
  height: 10px;
  opacity: 0.2;
  background-color: #134074;
}

body main .home .intro .shape:nth-child(64).yellowCircle {
  background-color: #f2d129;
  width: 10px;
  height: 10px;
}

body main .home .intro .shape:nth-child(64).yellow {
  color: #f2d129;
}

body main .home .intro .shape:nth-child(64).blue {
  color: #322bff;
  opacity: 0.7;
}

body main .home .intro .shape:nth-child(65) {
  -webkit-animation: circleMove 12s infinite 6s;
          animation: circleMove 12s infinite 6s;
  left: 912px;
}

body main .home .intro .shape:nth-child(65).circle {
  width: 40px;
  height: 40px;
  opacity: 0.2;
  background-color: #134074;
}

body main .home .intro .shape:nth-child(65).yellowCircle {
  background-color: #f2d129;
  width: 10px;
  height: 10px;
}

body main .home .intro .shape:nth-child(65).yellow {
  color: #f2d129;
}

body main .home .intro .shape:nth-child(65).blue {
  color: #322bff;
  opacity: 0.7;
}

body main .home .intro .shape:nth-child(66) {
  -webkit-animation: circleMove 13s infinite 1s;
          animation: circleMove 13s infinite 1s;
  left: 755px;
}

body main .home .intro .shape:nth-child(66).circle {
  width: 10px;
  height: 10px;
  opacity: 0.2;
  background-color: #134074;
}

body main .home .intro .shape:nth-child(66).yellowCircle {
  background-color: #f2d129;
  width: 10px;
  height: 10px;
}

body main .home .intro .shape:nth-child(66).yellow {
  color: #f2d129;
}

body main .home .intro .shape:nth-child(66).blue {
  color: #322bff;
  opacity: 0.7;
}

body main .home .intro .shape:nth-child(67) {
  -webkit-animation: circleMove 11s infinite 5s;
          animation: circleMove 11s infinite 5s;
  left: 265px;
}

body main .home .intro .shape:nth-child(67).circle {
  width: 40px;
  height: 40px;
  opacity: 0.2;
  background-color: #134074;
}

body main .home .intro .shape:nth-child(67).yellowCircle {
  background-color: #f2d129;
  width: 10px;
  height: 10px;
}

body main .home .intro .shape:nth-child(67).yellow {
  color: #f2d129;
}

body main .home .intro .shape:nth-child(67).blue {
  color: #322bff;
  opacity: 0.7;
}

body main .home .intro .shape:nth-child(68) {
  -webkit-animation: circleMove 12s infinite 2s;
          animation: circleMove 12s infinite 2s;
  left: 897px;
}

body main .home .intro .shape:nth-child(68).circle {
  width: 10px;
  height: 10px;
  opacity: 0.2;
  background-color: #134074;
}

body main .home .intro .shape:nth-child(68).yellowCircle {
  background-color: #f2d129;
  width: 10px;
  height: 10px;
}

body main .home .intro .shape:nth-child(68).yellow {
  color: #f2d129;
}

body main .home .intro .shape:nth-child(68).blue {
  color: #322bff;
  opacity: 0.7;
}

body main .home .intro .shape:nth-child(69) {
  -webkit-animation: circleMove 14s infinite 2s;
          animation: circleMove 14s infinite 2s;
  left: 684px;
}

body main .home .intro .shape:nth-child(69).circle {
  width: 40px;
  height: 40px;
  opacity: 0.2;
  background-color: #134074;
}

body main .home .intro .shape:nth-child(69).yellowCircle {
  background-color: #f2d129;
  width: 10px;
  height: 10px;
}

body main .home .intro .shape:nth-child(69).yellow {
  color: #f2d129;
}

body main .home .intro .shape:nth-child(69).blue {
  color: #322bff;
  opacity: 0.7;
}

body main .home .intro .shape:nth-child(70) {
  -webkit-animation: circleMove 12s infinite 2s;
          animation: circleMove 12s infinite 2s;
  left: 308px;
}

body main .home .intro .shape:nth-child(70).circle {
  width: 10px;
  height: 10px;
  opacity: 0.2;
  background-color: #134074;
}

body main .home .intro .shape:nth-child(70).yellowCircle {
  background-color: #f2d129;
  width: 10px;
  height: 10px;
}

body main .home .intro .shape:nth-child(70).yellow {
  color: #f2d129;
}

body main .home .intro .shape:nth-child(70).blue {
  color: #322bff;
  opacity: 0.7;
}

body main .home .intro .shape:nth-child(71) {
  -webkit-animation: circleMove 13s infinite 9s;
          animation: circleMove 13s infinite 9s;
  left: 1243px;
}

body main .home .intro .shape:nth-child(71).circle {
  width: 40px;
  height: 40px;
  opacity: 0.2;
  background-color: #134074;
}

body main .home .intro .shape:nth-child(71).yellowCircle {
  background-color: #f2d129;
  width: 10px;
  height: 10px;
}

body main .home .intro .shape:nth-child(71).yellow {
  color: #f2d129;
}

body main .home .intro .shape:nth-child(71).blue {
  color: #322bff;
  opacity: 0.7;
}

body main .home .intro .shape:nth-child(72) {
  -webkit-animation: circleMove 13s infinite 3s;
          animation: circleMove 13s infinite 3s;
  left: 1206px;
}

body main .home .intro .shape:nth-child(72).circle {
  width: 10px;
  height: 10px;
  opacity: 0.2;
  background-color: #134074;
}

body main .home .intro .shape:nth-child(72).yellowCircle {
  background-color: #f2d129;
  width: 10px;
  height: 10px;
}

body main .home .intro .shape:nth-child(72).yellow {
  color: #f2d129;
}

body main .home .intro .shape:nth-child(72).blue {
  color: #322bff;
  opacity: 0.7;
}

body main .home .intro .shape:nth-child(73) {
  -webkit-animation: circleMove 14s infinite 6s;
          animation: circleMove 14s infinite 6s;
  left: 772px;
}

body main .home .intro .shape:nth-child(73).circle {
  width: 40px;
  height: 40px;
  opacity: 0.2;
  background-color: #134074;
}

body main .home .intro .shape:nth-child(73).yellowCircle {
  background-color: #f2d129;
  width: 10px;
  height: 10px;
}

body main .home .intro .shape:nth-child(73).yellow {
  color: #f2d129;
}

body main .home .intro .shape:nth-child(73).blue {
  color: #322bff;
  opacity: 0.7;
}

body main .home .intro .shape:nth-child(74) {
  -webkit-animation: circleMove 15s infinite 5s;
          animation: circleMove 15s infinite 5s;
  left: 191px;
}

body main .home .intro .shape:nth-child(74).circle {
  width: 10px;
  height: 10px;
  opacity: 0.2;
  background-color: #134074;
}

body main .home .intro .shape:nth-child(74).yellowCircle {
  background-color: #f2d129;
  width: 10px;
  height: 10px;
}

body main .home .intro .shape:nth-child(74).yellow {
  color: #f2d129;
}

body main .home .intro .shape:nth-child(74).blue {
  color: #322bff;
  opacity: 0.7;
}

body main .home .intro .shape:nth-child(75) {
  -webkit-animation: circleMove 10s infinite 2s;
          animation: circleMove 10s infinite 2s;
  left: 744px;
}

body main .home .intro .shape:nth-child(75).circle {
  width: 40px;
  height: 40px;
  opacity: 0.2;
  background-color: #134074;
}

body main .home .intro .shape:nth-child(75).yellowCircle {
  background-color: #f2d129;
  width: 10px;
  height: 10px;
}

body main .home .intro .shape:nth-child(75).yellow {
  color: #f2d129;
}

body main .home .intro .shape:nth-child(75).blue {
  color: #322bff;
  opacity: 0.7;
}

body main .home .intro .shape:nth-child(76) {
  -webkit-animation: circleMove 13s infinite 6s;
          animation: circleMove 13s infinite 6s;
  left: 1584px;
}

body main .home .intro .shape:nth-child(76).circle {
  width: 10px;
  height: 10px;
  opacity: 0.2;
  background-color: #134074;
}

body main .home .intro .shape:nth-child(76).yellowCircle {
  background-color: #f2d129;
  width: 10px;
  height: 10px;
}

body main .home .intro .shape:nth-child(76).yellow {
  color: #f2d129;
}

body main .home .intro .shape:nth-child(76).blue {
  color: #322bff;
  opacity: 0.7;
}

body main .home .intro .shape:nth-child(77) {
  -webkit-animation: circleMove 14s infinite 7s;
          animation: circleMove 14s infinite 7s;
  left: 1247px;
}

body main .home .intro .shape:nth-child(77).circle {
  width: 40px;
  height: 40px;
  opacity: 0.2;
  background-color: #134074;
}

body main .home .intro .shape:nth-child(77).yellowCircle {
  background-color: #f2d129;
  width: 10px;
  height: 10px;
}

body main .home .intro .shape:nth-child(77).yellow {
  color: #f2d129;
}

body main .home .intro .shape:nth-child(77).blue {
  color: #322bff;
  opacity: 0.7;
}

body main .home .intro .shape:nth-child(78) {
  -webkit-animation: circleMove 14s infinite 3s;
          animation: circleMove 14s infinite 3s;
  left: 1185px;
}

body main .home .intro .shape:nth-child(78).circle {
  width: 10px;
  height: 10px;
  opacity: 0.2;
  background-color: #134074;
}

body main .home .intro .shape:nth-child(78).yellowCircle {
  background-color: #f2d129;
  width: 10px;
  height: 10px;
}

body main .home .intro .shape:nth-child(78).yellow {
  color: #f2d129;
}

body main .home .intro .shape:nth-child(78).blue {
  color: #322bff;
  opacity: 0.7;
}

body main .home .intro .shape:nth-child(79) {
  -webkit-animation: circleMove 14s infinite 10s;
          animation: circleMove 14s infinite 10s;
  left: 1702px;
}

body main .home .intro .shape:nth-child(79).circle {
  width: 40px;
  height: 40px;
  opacity: 0.2;
  background-color: #134074;
}

body main .home .intro .shape:nth-child(79).yellowCircle {
  background-color: #f2d129;
  width: 10px;
  height: 10px;
}

body main .home .intro .shape:nth-child(79).yellow {
  color: #f2d129;
}

body main .home .intro .shape:nth-child(79).blue {
  color: #322bff;
  opacity: 0.7;
}

body main .home .intro .shape:nth-child(80) {
  -webkit-animation: circleMove 12s infinite 1s;
          animation: circleMove 12s infinite 1s;
  left: 413px;
}

body main .home .intro .shape:nth-child(80).circle {
  width: 10px;
  height: 10px;
  opacity: 0.2;
  background-color: #134074;
}

body main .home .intro .shape:nth-child(80).yellowCircle {
  background-color: #f2d129;
  width: 10px;
  height: 10px;
}

body main .home .intro .shape:nth-child(80).yellow {
  color: #f2d129;
}

body main .home .intro .shape:nth-child(80).blue {
  color: #322bff;
  opacity: 0.7;
}

body main .home .intro .shape:nth-child(81) {
  -webkit-animation: circleMove 15s infinite 1s;
          animation: circleMove 15s infinite 1s;
  left: 12px;
}

body main .home .intro .shape:nth-child(81).circle {
  width: 40px;
  height: 40px;
  opacity: 0.2;
  background-color: #134074;
}

body main .home .intro .shape:nth-child(81).yellowCircle {
  background-color: #f2d129;
  width: 10px;
  height: 10px;
}

body main .home .intro .shape:nth-child(81).yellow {
  color: #f2d129;
}

body main .home .intro .shape:nth-child(81).blue {
  color: #322bff;
  opacity: 0.7;
}

body main .home .intro .shape:nth-child(82) {
  -webkit-animation: circleMove 13s infinite 2s;
          animation: circleMove 13s infinite 2s;
  left: 427px;
}

body main .home .intro .shape:nth-child(82).circle {
  width: 10px;
  height: 10px;
  opacity: 0.2;
  background-color: #134074;
}

body main .home .intro .shape:nth-child(82).yellowCircle {
  background-color: #f2d129;
  width: 10px;
  height: 10px;
}

body main .home .intro .shape:nth-child(82).yellow {
  color: #f2d129;
}

body main .home .intro .shape:nth-child(82).blue {
  color: #322bff;
  opacity: 0.7;
}

body main .home .intro .shape:nth-child(83) {
  -webkit-animation: circleMove 10s infinite 5s;
          animation: circleMove 10s infinite 5s;
  left: 1003px;
}

body main .home .intro .shape:nth-child(83).circle {
  width: 40px;
  height: 40px;
  opacity: 0.2;
  background-color: #134074;
}

body main .home .intro .shape:nth-child(83).yellowCircle {
  background-color: #f2d129;
  width: 10px;
  height: 10px;
}

body main .home .intro .shape:nth-child(83).yellow {
  color: #f2d129;
}

body main .home .intro .shape:nth-child(83).blue {
  color: #322bff;
  opacity: 0.7;
}

body main .home .intro .shape:nth-child(84) {
  -webkit-animation: circleMove 13s infinite 7s;
          animation: circleMove 13s infinite 7s;
  left: 296px;
}

body main .home .intro .shape:nth-child(84).circle {
  width: 10px;
  height: 10px;
  opacity: 0.2;
  background-color: #134074;
}

body main .home .intro .shape:nth-child(84).yellowCircle {
  background-color: #f2d129;
  width: 10px;
  height: 10px;
}

body main .home .intro .shape:nth-child(84).yellow {
  color: #f2d129;
}

body main .home .intro .shape:nth-child(84).blue {
  color: #322bff;
  opacity: 0.7;
}

body main .home .intro .shape:nth-child(85) {
  -webkit-animation: circleMove 10s infinite 2s;
          animation: circleMove 10s infinite 2s;
  left: 621px;
}

body main .home .intro .shape:nth-child(85).circle {
  width: 40px;
  height: 40px;
  opacity: 0.2;
  background-color: #134074;
}

body main .home .intro .shape:nth-child(85).yellowCircle {
  background-color: #f2d129;
  width: 10px;
  height: 10px;
}

body main .home .intro .shape:nth-child(85).yellow {
  color: #f2d129;
}

body main .home .intro .shape:nth-child(85).blue {
  color: #322bff;
  opacity: 0.7;
}

body main .home .intro .shape:nth-child(86) {
  -webkit-animation: circleMove 15s infinite 2s;
          animation: circleMove 15s infinite 2s;
  left: 572px;
}

body main .home .intro .shape:nth-child(86).circle {
  width: 10px;
  height: 10px;
  opacity: 0.2;
  background-color: #134074;
}

body main .home .intro .shape:nth-child(86).yellowCircle {
  background-color: #f2d129;
  width: 10px;
  height: 10px;
}

body main .home .intro .shape:nth-child(86).yellow {
  color: #f2d129;
}

body main .home .intro .shape:nth-child(86).blue {
  color: #322bff;
  opacity: 0.7;
}

body main .home .intro .shape:nth-child(87) {
  -webkit-animation: circleMove 12s infinite 9s;
          animation: circleMove 12s infinite 9s;
  left: 1152px;
}

body main .home .intro .shape:nth-child(87).circle {
  width: 40px;
  height: 40px;
  opacity: 0.2;
  background-color: #134074;
}

body main .home .intro .shape:nth-child(87).yellowCircle {
  background-color: #f2d129;
  width: 10px;
  height: 10px;
}

body main .home .intro .shape:nth-child(87).yellow {
  color: #f2d129;
}

body main .home .intro .shape:nth-child(87).blue {
  color: #322bff;
  opacity: 0.7;
}

body main .home .intro .shape:nth-child(88) {
  -webkit-animation: circleMove 11s infinite 1s;
          animation: circleMove 11s infinite 1s;
  left: 179px;
}

body main .home .intro .shape:nth-child(88).circle {
  width: 10px;
  height: 10px;
  opacity: 0.2;
  background-color: #134074;
}

body main .home .intro .shape:nth-child(88).yellowCircle {
  background-color: #f2d129;
  width: 10px;
  height: 10px;
}

body main .home .intro .shape:nth-child(88).yellow {
  color: #f2d129;
}

body main .home .intro .shape:nth-child(88).blue {
  color: #322bff;
  opacity: 0.7;
}

body main .home .intro .shape:nth-child(89) {
  -webkit-animation: circleMove 12s infinite 4s;
          animation: circleMove 12s infinite 4s;
  left: 996px;
}

body main .home .intro .shape:nth-child(89).circle {
  width: 40px;
  height: 40px;
  opacity: 0.2;
  background-color: #134074;
}

body main .home .intro .shape:nth-child(89).yellowCircle {
  background-color: #f2d129;
  width: 10px;
  height: 10px;
}

body main .home .intro .shape:nth-child(89).yellow {
  color: #f2d129;
}

body main .home .intro .shape:nth-child(89).blue {
  color: #322bff;
  opacity: 0.7;
}

body main .home .intro .shape:nth-child(90) {
  -webkit-animation: circleMove 11s infinite 9s;
          animation: circleMove 11s infinite 9s;
  left: 1687px;
}

body main .home .intro .shape:nth-child(90).circle {
  width: 10px;
  height: 10px;
  opacity: 0.2;
  background-color: #134074;
}

body main .home .intro .shape:nth-child(90).yellowCircle {
  background-color: #f2d129;
  width: 10px;
  height: 10px;
}

body main .home .intro .shape:nth-child(90).yellow {
  color: #f2d129;
}

body main .home .intro .shape:nth-child(90).blue {
  color: #322bff;
  opacity: 0.7;
}

body main .home .intro .shape:nth-child(91) {
  -webkit-animation: circleMove 10s infinite 10s;
          animation: circleMove 10s infinite 10s;
  left: 1075px;
}

body main .home .intro .shape:nth-child(91).circle {
  width: 40px;
  height: 40px;
  opacity: 0.2;
  background-color: #134074;
}

body main .home .intro .shape:nth-child(91).yellowCircle {
  background-color: #f2d129;
  width: 10px;
  height: 10px;
}

body main .home .intro .shape:nth-child(91).yellow {
  color: #f2d129;
}

body main .home .intro .shape:nth-child(91).blue {
  color: #322bff;
  opacity: 0.7;
}

body main .home .intro .shape:nth-child(92) {
  -webkit-animation: circleMove 14s infinite 6s;
          animation: circleMove 14s infinite 6s;
  left: 1816px;
}

body main .home .intro .shape:nth-child(92).circle {
  width: 10px;
  height: 10px;
  opacity: 0.2;
  background-color: #134074;
}

body main .home .intro .shape:nth-child(92).yellowCircle {
  background-color: #f2d129;
  width: 10px;
  height: 10px;
}

body main .home .intro .shape:nth-child(92).yellow {
  color: #f2d129;
}

body main .home .intro .shape:nth-child(92).blue {
  color: #322bff;
  opacity: 0.7;
}

body main .home .intro .shape:nth-child(93) {
  -webkit-animation: circleMove 13s infinite 5s;
          animation: circleMove 13s infinite 5s;
  left: 1841px;
}

body main .home .intro .shape:nth-child(93).circle {
  width: 40px;
  height: 40px;
  opacity: 0.2;
  background-color: #134074;
}

body main .home .intro .shape:nth-child(93).yellowCircle {
  background-color: #f2d129;
  width: 10px;
  height: 10px;
}

body main .home .intro .shape:nth-child(93).yellow {
  color: #f2d129;
}

body main .home .intro .shape:nth-child(93).blue {
  color: #322bff;
  opacity: 0.7;
}

body main .home .intro .shape:nth-child(94) {
  -webkit-animation: circleMove 15s infinite 8s;
          animation: circleMove 15s infinite 8s;
  left: 119px;
}

body main .home .intro .shape:nth-child(94).circle {
  width: 10px;
  height: 10px;
  opacity: 0.2;
  background-color: #134074;
}

body main .home .intro .shape:nth-child(94).yellowCircle {
  background-color: #f2d129;
  width: 10px;
  height: 10px;
}

body main .home .intro .shape:nth-child(94).yellow {
  color: #f2d129;
}

body main .home .intro .shape:nth-child(94).blue {
  color: #322bff;
  opacity: 0.7;
}

body main .home .intro .shape:nth-child(95) {
  -webkit-animation: circleMove 9s infinite 9s;
          animation: circleMove 9s infinite 9s;
  left: 369px;
}

body main .home .intro .shape:nth-child(95).circle {
  width: 40px;
  height: 40px;
  opacity: 0.2;
  background-color: #134074;
}

body main .home .intro .shape:nth-child(95).yellowCircle {
  background-color: #f2d129;
  width: 10px;
  height: 10px;
}

body main .home .intro .shape:nth-child(95).yellow {
  color: #f2d129;
}

body main .home .intro .shape:nth-child(95).blue {
  color: #322bff;
  opacity: 0.7;
}

body main .home .intro .shape:nth-child(96) {
  -webkit-animation: circleMove 12s infinite 4s;
          animation: circleMove 12s infinite 4s;
  left: 479px;
}

body main .home .intro .shape:nth-child(96).circle {
  width: 10px;
  height: 10px;
  opacity: 0.2;
  background-color: #134074;
}

body main .home .intro .shape:nth-child(96).yellowCircle {
  background-color: #f2d129;
  width: 10px;
  height: 10px;
}

body main .home .intro .shape:nth-child(96).yellow {
  color: #f2d129;
}

body main .home .intro .shape:nth-child(96).blue {
  color: #322bff;
  opacity: 0.7;
}

body main .home .intro .shape:nth-child(97) {
  -webkit-animation: circleMove 10s infinite 7s;
          animation: circleMove 10s infinite 7s;
  left: 1744px;
}

body main .home .intro .shape:nth-child(97).circle {
  width: 40px;
  height: 40px;
  opacity: 0.2;
  background-color: #134074;
}

body main .home .intro .shape:nth-child(97).yellowCircle {
  background-color: #f2d129;
  width: 10px;
  height: 10px;
}

body main .home .intro .shape:nth-child(97).yellow {
  color: #f2d129;
}

body main .home .intro .shape:nth-child(97).blue {
  color: #322bff;
  opacity: 0.7;
}

body main .home .intro .shape:nth-child(98) {
  -webkit-animation: circleMove 9s infinite 10s;
          animation: circleMove 9s infinite 10s;
  left: 1784px;
}

body main .home .intro .shape:nth-child(98).circle {
  width: 10px;
  height: 10px;
  opacity: 0.2;
  background-color: #134074;
}

body main .home .intro .shape:nth-child(98).yellowCircle {
  background-color: #f2d129;
  width: 10px;
  height: 10px;
}

body main .home .intro .shape:nth-child(98).yellow {
  color: #f2d129;
}

body main .home .intro .shape:nth-child(98).blue {
  color: #322bff;
  opacity: 0.7;
}

body main .home .intro .shape:nth-child(99) {
  -webkit-animation: circleMove 14s infinite 3s;
          animation: circleMove 14s infinite 3s;
  left: 858px;
}

body main .home .intro .shape:nth-child(99).circle {
  width: 40px;
  height: 40px;
  opacity: 0.2;
  background-color: #134074;
}

body main .home .intro .shape:nth-child(99).yellowCircle {
  background-color: #f2d129;
  width: 10px;
  height: 10px;
}

body main .home .intro .shape:nth-child(99).yellow {
  color: #f2d129;
}

body main .home .intro .shape:nth-child(99).blue {
  color: #322bff;
  opacity: 0.7;
}

body main .home .intro .shape:nth-child(100) {
  -webkit-animation: circleMove 10s infinite 6s;
          animation: circleMove 10s infinite 6s;
  left: 1847px;
}

body main .home .intro .shape:nth-child(100).circle {
  width: 10px;
  height: 10px;
  opacity: 0.2;
  background-color: #134074;
}

body main .home .intro .shape:nth-child(100).yellowCircle {
  background-color: #f2d129;
  width: 10px;
  height: 10px;
}

body main .home .intro .shape:nth-child(100).yellow {
  color: #f2d129;
}

body main .home .intro .shape:nth-child(100).blue {
  color: #322bff;
  opacity: 0.7;
}

@keyframes circleMove {
  from {
    top: 100%;
  }
  to {
    top: -30%;
  }
}

body main .home .intro .introText {
  color: #134074;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

body main .home .intro .introText .textRow {
  font-size: 80px;
  height: 108px;
  overflow: hidden;
}

@media (max-width: 768px) {
  body main .home .intro .introText .textRow {
    font-size: 55px;
    height: auto;
    line-height: 70px;
  }
}

body main .home .intro .introText .textRow span {
  padding-top: 200px;
  display: block;
  -webkit-transition: 1s;
  transition: 1s;
}

body main .home .intro .introText .textRow:nth-child(2) span {
  -webkit-transition: 1s 0.1s;
  transition: 1s 0.1s;
}

body main .home .intro .introText .textRow.show span {
  padding-top: 0;
}

body main .home .happen {
  background-color: rgba(242, 209, 41, 0.6);
  min-height: 100vh;
  padding: 6em 0;
  position: relative;
}

body main .home .happen .circle {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  position: absolute;
}

body main .home .happen .circle:nth-child(1) {
  left: 20%;
  top: 20%;
}

body main .home .happen .circle:nth-child(2) {
  left: 5%;
  top: 40%;
}

body main .home .happen .circle:nth-child(3) {
  left: 30%;
  bottom: 20%;
  width: 10px;
  height: 10px;
}

body main .home .happen .circle:nth-child(4) {
  left: 10%;
  bottom: 30%;
  width: 10px;
  height: 10px;
}

body main .home .happen .circle:nth-child(5) {
  left: 5%;
  bottom: 20%;
  width: 10px;
  height: 10px;
}

body main .home .happen .circle:nth-child(6) {
  right: 40%;
  top: 40%;
}

body main .home .happen .circle:nth-child(7) {
  right: 20%;
  top: 10%;
}

body main .home .happen .circle:nth-child(8) {
  right: 5%;
  bottom: 10%;
  width: 30px;
  height: 30px;
}

body main .home .happen .circle.white {
  background-color: #fcfcfc;
  opacity: 0.6;
}

body main .home .happen .circle.blue {
  background-color: #6d8fb9;
}

body main .home .happen .icon {
  width: 40px;
  height: 40px;
  position: absolute;
}

body main .home .happen .icon.computer {
  left: 10%;
  top: 50%;
}

body main .home .happen .icon.smartphone {
  right: 40%;
  bottom: 30%;
}

body main .home .happen .icon.browser {
  right: 5%;
  top: 30%;
}

body main .home .happen ::-moz-selection {
  background: #322bff;
  color: #f2d129;
}

body main .home .happen ::selection {
  background: #322bff;
  color: #f2d129;
}

@media (max-width: 768px) {
  body main .home .happen {
    padding: 4em 0;
  }
}

body main .home .happen .title {
  text-align: center;
  font-size: 60px;
  color: #322bff;
}

@media (max-width: 768px) {
  body main .home .happen .title {
    font-size: 55px;
    line-height: 65px;
  }
}

body main .home .happen .wordsCon {
  margin-top: 120px;
  margin-bottom: 100px;
}

body main .home .happen .wordsCon .wordCon {
  position: relative;
}

body main .home .happen .wordsCon .wordCon::before {
  content: "";
  position: absolute;
  width: 250px;
  height: 250px;
  background-color: #fcfcfc;
  border-radius: 50%;
  right: 0;
  top: 50%;
  -webkit-transition: 1s 0.2s;
  transition: 1s 0.2s;
  -webkit-transform: translate(20%, -50%) scale(0);
          transform: translate(20%, -50%) scale(0);
}

body main .home .happen .wordsCon .wordCon .word {
  font-size: 100px;
  text-align: center;
  -webkit-text-stroke: 1px #322bff;
  color: transparent;
  background: radial-gradient(circle at center, transparent, transparent 0%, #322bff 0.2%, #322bff 65%, transparent 65.2%, transparent 100%);
  position: relative;
  z-index: 10;
  -webkit-transition: 1s;
  transition: 1s;
  background-position: 100% 100%;
  background-size: 300% 300%;
  background-repeat: no-repeat;
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
}

@media (max-width: 768px) {
  body main .home .happen .wordsCon .wordCon .word {
    font-size: 70px;
    text-align: center;
    margin-bottom: 50px;
  }
}

body main .home .happen .wordsCon .wordCon:hover .word {
  background-position: 292.5% 100%;
  background-size: 90% 90%;
}

body main .home .happen .wordsCon .wordCon:hover::before {
  -webkit-transform: translate(20%, -50%) scale(1);
          transform: translate(20%, -50%) scale(1);
}

body main .home .happen .link {
  display: block;
  text-decoration: none;
  background-color: #fcfcfc;
  color: #322bff;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 10px 50px;
  font-size: 20px;
  border-radius: 25px;
  margin: 20px auto;
  -webkit-transition: 0.8s;
  transition: 0.8s;
}

body main .home .happen .link .buttonCon {
  position: relative;
  overflow: hidden;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

body main .home .happen .link .buttonCon .front {
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

body main .home .happen .link .buttonCon .back {
  position: absolute;
  top: -10%;
  left: 50%;
  -webkit-transform: translateX(-50%) scale(0.2);
          transform: translateX(-50%) scale(0.2);
  opacity: 0;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

body main .home .happen .link .buttonCon .back svg {
  width: 20px;
  height: 20px;
}

body main .home .happen .link .buttonCon .back svg * {
  stroke-width: 8px;
}

body main .home .happen .link:hover {
  padding: 10px 0px;
  border-radius: 50%;
  width: 50px;
}

body main .home .happen .link:hover .buttonCon {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

body main .home .happen .link:hover .buttonCon .front {
  -webkit-transform: translateY(-100%);
          transform: translateY(-100%);
}

body main .home .happen .link:hover .buttonCon .back {
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  opacity: 1;
}

body main .home .homeProjects {
  min-height: 100vh;
  padding: 10em 0;
  position: relative;
  overflow: hidden;
}

body main .home .homeProjects ::-moz-selection {
  background: #322bff;
  color: #fcfcfc;
}

body main .home .homeProjects ::selection {
  background: #322bff;
  color: #fcfcfc;
}

@media (max-width: 768px) {
  body main .home .homeProjects {
    padding: 0em 0em 5em;
  }
}

body main .home .homeProjects .circle {
  position: absolute;
  top: 100%;
  left: 30%;
  width: 100px;
  height: 100px;
  background-color: #322bff;
  border-radius: 50%;
  -webkit-transition: 1s;
  transition: 1s;
}

body main .home .homeProjects .circle:hover {
  -webkit-transform: scale(1.5);
          transform: scale(1.5);
}

body main .home .homeProjects .circle:nth-child(1) {
  -webkit-animation: circleMove 8s infinite 4s;
          animation: circleMove 8s infinite 4s;
  left: 59px;
  width: 40px;
  height: 40px;
  opacity: 0.2;
}

body main .home .homeProjects .circle:nth-child(2) {
  -webkit-animation: circleMove 10s infinite 6s;
          animation: circleMove 10s infinite 6s;
  left: 1711px;
  width: 10px;
  height: 10px;
  opacity: 0.2;
}

body main .home .homeProjects .circle:nth-child(3) {
  -webkit-animation: circleMove 11s infinite 2s;
          animation: circleMove 11s infinite 2s;
  left: 370px;
  width: 40px;
  height: 40px;
  opacity: 0.2;
}

body main .home .homeProjects .circle:nth-child(4) {
  -webkit-animation: circleMove 10s infinite 4s;
          animation: circleMove 10s infinite 4s;
  left: 1507px;
  width: 10px;
  height: 10px;
  opacity: 0.2;
}

body main .home .homeProjects .circle:nth-child(5) {
  -webkit-animation: circleMove 8s infinite 6s;
          animation: circleMove 8s infinite 6s;
  left: 904px;
  width: 40px;
  height: 40px;
  opacity: 1;
}

body main .home .homeProjects .circle:nth-child(6) {
  -webkit-animation: circleMove 7s infinite 6s;
          animation: circleMove 7s infinite 6s;
  left: 1768px;
  width: 10px;
  height: 10px;
  opacity: 0.2;
}

body main .home .homeProjects .circle:nth-child(7) {
  -webkit-animation: circleMove 7s infinite 1s;
          animation: circleMove 7s infinite 1s;
  left: 162px;
  width: 40px;
  height: 40px;
  opacity: 0.2;
}

body main .home .homeProjects .circle:nth-child(8) {
  -webkit-animation: circleMove 8s infinite 3s;
          animation: circleMove 8s infinite 3s;
  left: 513px;
  width: 10px;
  height: 10px;
  opacity: 0.2;
}

body main .home .homeProjects .circle:nth-child(9) {
  -webkit-animation: circleMove 9s infinite 2s;
          animation: circleMove 9s infinite 2s;
  left: 571px;
  width: 40px;
  height: 40px;
  opacity: 0.2;
}

body main .home .homeProjects .circle:nth-child(10) {
  -webkit-animation: circleMove 7s infinite 3s;
          animation: circleMove 7s infinite 3s;
  left: 393px;
  width: 10px;
  height: 10px;
  opacity: 0.2;
}

body main .home .homeProjects .circle:nth-child(11) {
  -webkit-animation: circleMove 12s infinite 5s;
          animation: circleMove 12s infinite 5s;
  left: 160px;
  width: 40px;
  height: 40px;
  opacity: 0.2;
}

body main .home .homeProjects .circle:nth-child(12) {
  -webkit-animation: circleMove 10s infinite 5s;
          animation: circleMove 10s infinite 5s;
  left: 1751px;
  width: 10px;
  height: 10px;
  opacity: 0.2;
}

body main .home .homeProjects .circle:nth-child(13) {
  -webkit-animation: circleMove 11s infinite 1s;
          animation: circleMove 11s infinite 1s;
  left: 936px;
  width: 40px;
  height: 40px;
  opacity: 0.2;
}

body main .home .homeProjects .circle:nth-child(14) {
  -webkit-animation: circleMove 11s infinite 4s;
          animation: circleMove 11s infinite 4s;
  left: 608px;
  width: 10px;
  height: 10px;
  opacity: 0.2;
}

body main .home .homeProjects .circle:nth-child(15) {
  -webkit-animation: circleMove 9s infinite 9s;
          animation: circleMove 9s infinite 9s;
  left: 1586px;
  width: 40px;
  height: 40px;
  opacity: 0.2;
}

body main .home .homeProjects .circle:nth-child(16) {
  -webkit-animation: circleMove 9s infinite 6s;
          animation: circleMove 9s infinite 6s;
  left: 1895px;
  width: 10px;
  height: 10px;
  opacity: 0.2;
}

body main .home .homeProjects .circle:nth-child(17) {
  -webkit-animation: circleMove 7s infinite 10s;
          animation: circleMove 7s infinite 10s;
  left: 790px;
  width: 40px;
  height: 40px;
  opacity: 0.2;
}

body main .home .homeProjects .circle:nth-child(18) {
  -webkit-animation: circleMove 12s infinite 5s;
          animation: circleMove 12s infinite 5s;
  left: 710px;
  width: 10px;
  height: 10px;
  opacity: 0.2;
}

body main .home .homeProjects .circle:nth-child(19) {
  -webkit-animation: circleMove 6s infinite 9s;
          animation: circleMove 6s infinite 9s;
  left: 378px;
  width: 40px;
  height: 40px;
  opacity: 0.2;
}

body main .home .homeProjects .circle:nth-child(20) {
  -webkit-animation: circleMove 11s infinite 5s;
          animation: circleMove 11s infinite 5s;
  left: 1180px;
  width: 10px;
  height: 10px;
  opacity: 0.2;
}

body main .home .homeProjects .circle:nth-child(21) {
  -webkit-animation: circleMove 11s infinite 4s;
          animation: circleMove 11s infinite 4s;
  left: 1850px;
  width: 40px;
  height: 40px;
  opacity: 0.2;
}

body main .home .homeProjects .circle:nth-child(22) {
  -webkit-animation: circleMove 6s infinite 1s;
          animation: circleMove 6s infinite 1s;
  left: 1936px;
  width: 10px;
  height: 10px;
  opacity: 0.2;
}

body main .home .homeProjects .circle:nth-child(23) {
  -webkit-animation: circleMove 9s infinite 1s;
          animation: circleMove 9s infinite 1s;
  left: 729px;
  width: 40px;
  height: 40px;
  opacity: 0.2;
}

body main .home .homeProjects .circle:nth-child(24) {
  -webkit-animation: circleMove 6s infinite 9s;
          animation: circleMove 6s infinite 9s;
  left: 994px;
  width: 10px;
  height: 10px;
  opacity: 0.2;
}

body main .home .homeProjects .circle:nth-child(25) {
  -webkit-animation: circleMove 7s infinite 9s;
          animation: circleMove 7s infinite 9s;
  left: 828px;
  width: 40px;
  height: 40px;
  opacity: 0.2;
}

body main .home .homeProjects .circle:nth-child(26) {
  -webkit-animation: circleMove 12s infinite 8s;
          animation: circleMove 12s infinite 8s;
  left: 1500px;
  width: 10px;
  height: 10px;
  opacity: 0.2;
}

body main .home .homeProjects .circle:nth-child(27) {
  -webkit-animation: circleMove 11s infinite 2s;
          animation: circleMove 11s infinite 2s;
  left: 886px;
  width: 40px;
  height: 40px;
  opacity: 0.2;
}

body main .home .homeProjects .circle:nth-child(28) {
  -webkit-animation: circleMove 11s infinite 2s;
          animation: circleMove 11s infinite 2s;
  left: 1717px;
  width: 10px;
  height: 10px;
  opacity: 0.2;
}

body main .home .homeProjects .circle:nth-child(29) {
  -webkit-animation: circleMove 11s infinite 8s;
          animation: circleMove 11s infinite 8s;
  left: 836px;
  width: 40px;
  height: 40px;
  opacity: 0.2;
}

body main .home .homeProjects .circle:nth-child(30) {
  -webkit-animation: circleMove 12s infinite 8s;
          animation: circleMove 12s infinite 8s;
  left: 1877px;
  width: 10px;
  height: 10px;
  opacity: 0.2;
}

body main .home .homeProjects .circle:nth-child(31) {
  -webkit-animation: circleMove 11s infinite 1s;
          animation: circleMove 11s infinite 1s;
  left: 705px;
  width: 40px;
  height: 40px;
  opacity: 0.2;
}

body main .home .homeProjects .circle:nth-child(32) {
  -webkit-animation: circleMove 10s infinite 8s;
          animation: circleMove 10s infinite 8s;
  left: 1819px;
  width: 10px;
  height: 10px;
  opacity: 0.2;
}

body main .home .homeProjects .circle:nth-child(33) {
  -webkit-animation: circleMove 12s infinite 9s;
          animation: circleMove 12s infinite 9s;
  left: 680px;
  width: 40px;
  height: 40px;
  opacity: 0.2;
}

body main .home .homeProjects .circle:nth-child(34) {
  -webkit-animation: circleMove 12s infinite 1s;
          animation: circleMove 12s infinite 1s;
  left: 97px;
  width: 10px;
  height: 10px;
  opacity: 0.2;
}

body main .home .homeProjects .circle:nth-child(35) {
  -webkit-animation: circleMove 6s infinite 3s;
          animation: circleMove 6s infinite 3s;
  left: 50px;
  width: 40px;
  height: 40px;
  opacity: 0.2;
}

body main .home .homeProjects .circle:nth-child(36) {
  -webkit-animation: circleMove 10s infinite 4s;
          animation: circleMove 10s infinite 4s;
  left: 287px;
  width: 10px;
  height: 10px;
  opacity: 0.2;
}

body main .home .homeProjects .circle:nth-child(37) {
  -webkit-animation: circleMove 7s infinite 6s;
          animation: circleMove 7s infinite 6s;
  left: 1250px;
  width: 40px;
  height: 40px;
  opacity: 0.2;
}

body main .home .homeProjects .circle:nth-child(38) {
  -webkit-animation: circleMove 7s infinite 2s;
          animation: circleMove 7s infinite 2s;
  left: 630px;
  width: 10px;
  height: 10px;
  opacity: 0.2;
}

body main .home .homeProjects .circle:nth-child(39) {
  -webkit-animation: circleMove 10s infinite 8s;
          animation: circleMove 10s infinite 8s;
  left: 65px;
  width: 40px;
  height: 40px;
  opacity: 0.2;
}

body main .home .homeProjects .circle:nth-child(40) {
  -webkit-animation: circleMove 8s infinite 9s;
          animation: circleMove 8s infinite 9s;
  left: 1388px;
  width: 10px;
  height: 10px;
  opacity: 0.2;
}

body main .home .homeProjects .circle:nth-child(41) {
  -webkit-animation: circleMove 6s infinite 8s;
          animation: circleMove 6s infinite 8s;
  left: 48px;
  width: 40px;
  height: 40px;
  opacity: 0.2;
}

body main .home .homeProjects .circle:nth-child(42) {
  -webkit-animation: circleMove 6s infinite 9s;
          animation: circleMove 6s infinite 9s;
  left: 308px;
  width: 10px;
  height: 10px;
  opacity: 0.2;
}

body main .home .homeProjects .circle:nth-child(43) {
  -webkit-animation: circleMove 9s infinite 4s;
          animation: circleMove 9s infinite 4s;
  left: 881px;
  width: 40px;
  height: 40px;
  opacity: 0.2;
}

body main .home .homeProjects .circle:nth-child(44) {
  -webkit-animation: circleMove 7s infinite 9s;
          animation: circleMove 7s infinite 9s;
  left: 280px;
  width: 10px;
  height: 10px;
  opacity: 0.2;
}

body main .home .homeProjects .circle:nth-child(45) {
  -webkit-animation: circleMove 6s infinite 9s;
          animation: circleMove 6s infinite 9s;
  left: 134px;
  width: 40px;
  height: 40px;
  opacity: 0.2;
}

body main .home .homeProjects .circle:nth-child(46) {
  -webkit-animation: circleMove 6s infinite 1s;
          animation: circleMove 6s infinite 1s;
  left: 875px;
  width: 10px;
  height: 10px;
  opacity: 0.2;
}

body main .home .homeProjects .circle:nth-child(47) {
  -webkit-animation: circleMove 9s infinite 6s;
          animation: circleMove 9s infinite 6s;
  left: 1905px;
  width: 40px;
  height: 40px;
  opacity: 0.2;
}

body main .home .homeProjects .circle:nth-child(48) {
  -webkit-animation: circleMove 7s infinite 9s;
          animation: circleMove 7s infinite 9s;
  left: 1167px;
  width: 10px;
  height: 10px;
  opacity: 0.2;
}

body main .home .homeProjects .circle:nth-child(49) {
  -webkit-animation: circleMove 10s infinite 4s;
          animation: circleMove 10s infinite 4s;
  left: 1092px;
  width: 40px;
  height: 40px;
  opacity: 0.2;
}

body main .home .homeProjects .circle:nth-child(50) {
  -webkit-animation: circleMove 7s infinite 10s;
          animation: circleMove 7s infinite 10s;
  left: 1169px;
  width: 10px;
  height: 10px;
  opacity: 0.2;
}

@keyframes circleMove {
  from {
    top: 100%;
  }
  to {
    top: -30%;
  }
}

body main .home .homeProjects .left {
  margin-top: 100px;
}

@media (max-width: 768px) {
  body main .home .homeProjects .left {
    padding: 4em 1.5em;
  }
}

body main .home .homeProjects .left .title {
  font-size: 40px;
  color: #f2d129;
  text-transform: uppercase;
}

@media (max-width: 768px) {
  body main .home .homeProjects .left .title {
    font-size: 35px;
  }
}

body main .home .homeProjects .left .des {
  font-size: 25px;
  color: #322bff;
}

@media (max-width: 768px) {
  body main .home .homeProjects .left .des {
    font-size: 20px;
  }
}

@media (max-width: 768px) {
  body main .home .homeProjects .left .link {
    margin-bottom: 1em;
  }
}

body main .home .homeProjects .left .link .linkCon {
  border-radius: 30px;
  color: #fcfcfc;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 10px 30px;
  background-color: #322bff;
  display: block;
  margin: 10px 0;
  font-size: 20px;
  overflow: hidden;
  position: relative;
  overflow: hidden;
}

body main .home .homeProjects .left .link .linkCon .front {
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

body main .home .homeProjects .left .link .linkCon .back {
  width: 50px;
  height: 50px;
  position: absolute;
  top: 100%;
  left: 50%;
  -webkit-transform: translateX(-50%) scale(0.8);
          transform: translateX(-50%) scale(0.8);
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

body main .home .homeProjects .left .link .linkCon .back .svgCon {
  position: relative;
}

body main .home .homeProjects .left .link .linkCon .back .svgCon .page {
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  -webkit-transition: 0.5s;
  transition: 0.5s;
  z-index: 2;
}

body main .home .homeProjects .left .link .linkCon .back .svgCon .rightPage {
  -webkit-transform: rotate(-30deg) translateY(-7px) translateX(-50%) scale(1.2);
          transform: rotate(-30deg) translateY(-7px) translateX(-50%) scale(1.2);
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

body main .home .homeProjects .left .link .linkCon .back .svgCon .leftPage {
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: rotate(30deg) translateY(9px) translateX(-50%) scale(1.2);
          transform: rotate(30deg) translateY(9px) translateX(-50%) scale(1.2);
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

body main .home .homeProjects .left .link .linkCon:hover .front {
  -webkit-transform: translateY(-150%);
          transform: translateY(-150%);
}

body main .home .homeProjects .left .link .linkCon:hover .back {
  top: 10%;
}

body main .home .homeProjects .left .link .linkCon:hover .back .svgCon .rightPage {
  -webkit-transform: translateX(0%) translateY(5px) scale(1.2);
          transform: translateX(0%) translateY(5px) scale(1.2);
}

body main .home .homeProjects .left .link .linkCon:hover .back .svgCon .leftPage {
  -webkit-transform: translateX(-100%) translateY(5px) scale(1.2);
          transform: translateX(-100%) translateY(5px) scale(1.2);
}

body main .home .homeProjects .right {
  position: relative;
}

body main .home .homeProjects .right .mobileFramCon {
  position: relative;
}

@media (max-width: 768px) {
  body main .home .homeProjects .right .mobileFramCon {
    width: 100%;
  }
}

body main .home .homeProjects .right .mobileFramCon .mobileFram {
  width: 57%;
  -webkit-filter: drop-shadow(-10px 10px 30px rgba(0, 0, 0, 0.4));
          filter: drop-shadow(-10px 10px 30px rgba(0, 0, 0, 0.4));
}

@media (max-width: 768px) {
  body main .home .homeProjects .right .mobileFramCon .mobileFram {
    width: 90%;
    margin: 3em auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

body main .home .homeProjects .right .mobileFramCon .mobileImg {
  position: absolute;
  top: 2.5%;
  left: 2.5%;
  width: 52%;
}

@media (max-width: 768px) {
  body main .home .homeProjects .right .mobileFramCon .mobileImg {
    top: 2%;
    left: 50%;
    width: 83%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}

body main .home .homeProjects .right .laptopfram {
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translate(20%, -50%);
          transform: translate(20%, -50%);
  margin: 0 auto;
  width: 550px;
  height: 350px;
  z-index: 2;
  background-color: #fcfcfc;
  border-radius: 30px;
  padding: 8px 8px 50px 8px;
  -webkit-box-shadow: 5px 10px 30px rgba(0, 0, 0, 0.2);
          box-shadow: 5px 10px 30px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
  body main .home .homeProjects .right .laptopfram {
    position: inherit;
    width: 100%;
    height: auto;
    -webkit-transform: inherit;
            transform: inherit;
    padding: 8px 8px 40px 8px;
    border-radius: 10px;
  }
}

body main .home .homeProjects .right .laptopfram img {
  width: 100%;
  height: auto;
  overflow: scroll;
  border-radius: 30px;
}

@media (max-width: 768px) {
  body main .home .homeProjects .right .laptopfram img {
    border-radius: 10px;
  }
}

body main .home .handInHand {
  min-height: 100vh;
  padding: 8em 0;
}

body main .home .handInHand ::-moz-selection {
  background: #322bff;
  color: #fcfcfc;
}

body main .home .handInHand ::selection {
  background: #322bff;
  color: #fcfcfc;
}

@media (max-width: 768px) {
  body main .home .handInHand {
    padding: 1em 1em;
  }
}

body main .home .handInHand .left .blueBox {
  width: 80%;
  height: 65vh;
  background: radial-gradient(farthest-corner at 20px 20px, #322bff 0, #2b23fc 10%, #3831ff 30%, #241cf9 55%, #231cf9 75%, #0800fb 100%) #322bff;
  border-radius: 30px;
  position: relative;
  -webkit-box-shadow: 0px 0px 50px rgba(50, 43, 255, 0.5);
          box-shadow: 0px 0px 50px rgba(50, 43, 255, 0.5);
}

@media (max-width: 768px) {
  body main .home .handInHand .left .blueBox {
    width: 100%;
    height: 60vh;
  }
}

body main .home .handInHand .left .blueBox .blueCircle {
  position: absolute;
  border-radius: 50%;
  width: 10px;
  height: 10px;
  background-color: #322bff;
}

@media (max-width: 768px) {
  body main .home .handInHand .left .blueBox .blueCircle {
    display: none;
  }
}

body main .home .handInHand .left .blueBox .blueCircle:nth-child(1) {
  left: -20%;
  top: 30%;
}

body main .home .handInHand .left .blueBox .blueCircle:nth-child(2) {
  right: -10%;
  top: 20%;
}

body main .home .handInHand .left .blueBox .blueCircle:nth-child(3) {
  width: 20px;
  height: 20px;
  right: -10%;
  bottom: 20%;
}

body main .home .handInHand .left .blueBox .blueCircle:nth-child(4) {
  width: 20px;
  height: 20px;
  left: -15%;
  bottom: 2%;
}

body main .home .handInHand .left .blueBox .whiteCircle {
  position: absolute;
  left: -5%;
  top: 20%;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  background-color: #fcfcfc;
  -webkit-box-shadow: 0px 0px 40px -20px rgba(0, 0, 0, 0.3);
          box-shadow: 0px 0px 40px -20px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
  body main .home .handInHand .left .blueBox .whiteCircle {
    display: none;
  }
}

body main .home .handInHand .left .blueBox .lamp {
  position: absolute;
  left: 50%;
  top: 40%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 200px;
  z-index: 1;
  -webkit-animation: 5s lampMove infinite;
          animation: 5s lampMove infinite;
}

body main .home .handInHand .left .blueBox .wheel {
  position: absolute;
  left: 50%;
  top: 68%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 150px;
  -webkit-animation: 5s wheelMove infinite;
          animation: 5s wheelMove infinite;
}

@-webkit-keyframes lampMove {
  0% {
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }
  50% {
    -webkit-transform: translate(-50%, -60%);
            transform: translate(-50%, -60%);
    @media (max-width: 768px) {
      -webkit-transform: translate(-50%, -52%);
              transform: translate(-50%, -52%);
    }
  }
  100% {
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }
}

@keyframes lampMove {
  0% {
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }
  50% {
    -webkit-transform: translate(-50%, -60%);
            transform: translate(-50%, -60%);
    @media (max-width: 768px) {
      -webkit-transform: translate(-50%, -52%);
              transform: translate(-50%, -52%);
    }
  }
  100% {
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }
}

@-webkit-keyframes wheelMove {
  0% {
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }
  50% {
    -webkit-transform: translate(-50%, -30%);
            transform: translate(-50%, -30%);
    @media (max-width: 768px) {
      -webkit-transform: translate(-50%, -45%);
              transform: translate(-50%, -45%);
    }
  }
  100% {
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }
}

@keyframes wheelMove {
  0% {
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }
  50% {
    -webkit-transform: translate(-50%, -30%);
            transform: translate(-50%, -30%);
    @media (max-width: 768px) {
      -webkit-transform: translate(-50%, -45%);
              transform: translate(-50%, -45%);
    }
  }
  100% {
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }
}

body main .home .handInHand .right {
  margin-top: 3em;
}

body main .home .handInHand .right .yellowTitle {
  color: #f2d129;
  text-transform: uppercase;
  font-size: 35px;
}

@media (max-width: 768px) {
  body main .home .handInHand .right .yellowTitle {
    margin-bottom: 20px;
  }
}

body main .home .handInHand .right .subTitle {
  font-size: 22px;
  color: #322bff;
}

@media (max-width: 768px) {
  body main .home .handInHand .right .subTitle {
    font-size: 25px;
  }
}

body main .home .handInHand .right .des {
  font-size: 16px;
  font-family: NanamiEL;
  color: #322bff;
  margin-top: 30px;
}

@media (max-width: 768px) {
  body main .home .handInHand .right .des {
    font-size: 22px;
  }
}

body main .home .handInHand .right .link {
  display: block;
  text-decoration: none;
  background-color: #322bff;
  color: #fcfcfc;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 10px 50px;
  font-size: 20px;
  border-radius: 25px;
  margin-top: 20px;
}

@media (max-width: 768px) {
  body main .home .handInHand .right .link {
    margin-top: 50px;
    margin-bottom: 70px;
  }
}

body main .home .handInHand .right .link .buttonCon {
  position: relative;
  overflow: hidden;
}

body main .home .handInHand .right .link .buttonCon .front {
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

body main .home .handInHand .right .link .buttonCon .back {
  position: absolute;
  top: -10%;
  left: 50%;
  -webkit-transform: translateX(-100%) translateY(50%) scale(0.2);
          transform: translateX(-100%) translateY(50%) scale(0.2);
  opacity: 0;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

body main .home .handInHand .right .link .buttonCon .back svg {
  width: 20px;
  height: 20px;
}

body main .home .handInHand .right .link:hover .front {
  -webkit-transform: translateY(-100%);
          transform: translateY(-100%);
}

body main .home .handInHand .right .link:hover .back {
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  opacity: 1;
}

body main .home .workWith {
  min-height: 100vh;
  padding: 2em 0 10em;
  position: relative;
}

body main .home .workWith .circle {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  position: absolute;
}

body main .home .workWith .circle:nth-child(1) {
  left: 20%;
  top: 20%;
  width: 30px;
  height: 30px;
}

body main .home .workWith .circle:nth-child(2) {
  left: 5%;
  top: 40%;
}

body main .home .workWith .circle:nth-child(3) {
  left: 30%;
  bottom: 20%;
  width: 10px;
  height: 10px;
}

body main .home .workWith .circle:nth-child(4) {
  left: 10%;
  bottom: 30%;
  width: 10px;
  height: 10px;
}

body main .home .workWith .circle:nth-child(5) {
  left: 5%;
  bottom: 20%;
  width: 10px;
  height: 10px;
}

body main .home .workWith .circle:nth-child(6) {
  right: 40%;
  top: 40%;
}

body main .home .workWith .circle:nth-child(7) {
  right: 20%;
  top: 10%;
}

body main .home .workWith .circle:nth-child(8) {
  right: 5%;
  bottom: 10%;
  width: 30px;
  height: 30px;
}

body main .home .workWith .circle.white {
  background-color: #322bff;
  opacity: 0.6;
}

body main .home .workWith .circle.blue {
  background-color: #322bff;
}

body main .home .workWith ::-moz-selection {
  background: #322bff;
  color: #fcfcfc;
}

body main .home .workWith ::selection {
  background: #322bff;
  color: #fcfcfc;
}

@media (max-width: 768px) {
  body main .home .workWith {
    min-height: auto;
    padding: 2em 0 10em;
  }
  body main .home .workWith .slick-arrow {
    background-color: #c6c4ff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
  }
  body main .home .workWith .slick-arrow::before {
    content: "";
    border: solid #322bff;
    border-width: 0 3px 3px 0;
    display: inline-block;
    padding: 4px;
  }
  body main .home .workWith .slick-next {
    right: 10px;
  }
  body main .home .workWith .slick-next::before {
    -webkit-transform: rotate(-45deg);
            transform: rotate(-45deg);
  }
  body main .home .workWith .slick-prev {
    left: 10px;
  }
  body main .home .workWith .slick-prev::before {
    -webkit-transform: rotate(135deg);
            transform: rotate(135deg);
  }
}

body main .home .workWith .title {
  color: #322bff;
  text-align: center;
  width: 40%;
  margin: 50px auto 0;
  font-size: 50px;
}

@media (max-width: 768px) {
  body main .home .workWith .title {
    width: 95%;
    font-size: 32px;
  }
}

body main .home .workWith .logoCon {
  margin-top: 150px;
  width: 100%;
  height: 150px;
  position: relative;
}

@media (max-width: 768px) {
  body main .home .workWith .logoCon {
    margin-top: 40px;
    width: 100%;
    height: 300px;
  }
}

body main .home .workWith .logoCon .logoImg {
  width: 100%;
  height: 100%;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

body main .home .workWith .logoCon .logoImg.before {
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

body main .home .workWith .logoCon .logoImg.after {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

body main .home .workWith .logoCon:hover .logoImg.before {
  opacity: 0;
}

body main .home .workWith .logoCon:hover .logoImg.after {
  opacity: 1;
}

body main .creativity {
  height: 100vh;
  background-color: #ecf1fd;
  position: relative;
  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;
}

body main .creativity ::-moz-selection {
  background: #322bff;
  color: #ecf1fd;
}

body main .creativity ::selection {
  background: #322bff;
  color: #ecf1fd;
}

@media (max-width: 768px) {
  body main .creativity {
    height: 80vh;
  }
}

body main .creativity .icon {
  width: 40px;
  height: 40px;
  position: absolute;
}

@media (max-width: 768px) {
  body main .creativity .icon {
    width: 50px;
    height: 50px;
  }
}

body main .creativity .icon.icon1 {
  top: 10%;
  right: 35%;
}

@media (max-width: 768px) {
  body main .creativity .icon.icon1 {
    top: 15%;
    right: 10%;
  }
}

body main .creativity .icon.icon2 {
  top: 35%;
  right: 20%;
}

@media (max-width: 768px) {
  body main .creativity .icon.icon2 {
    display: none;
  }
}

body main .creativity .icon.icon3 {
  bottom: 35%;
  right: 20%;
}

@media (max-width: 768px) {
  body main .creativity .icon.icon3 {
    display: none;
  }
}

body main .creativity .icon.icon4 {
  bottom: 10%;
  right: 35%;
}

@media (max-width: 768px) {
  body main .creativity .icon.icon4 {
    bottom: 15%;
    right: 10%;
  }
}

body main .creativity .icon.icon5 {
  bottom: 10%;
  left: 35%;
}

@media (max-width: 768px) {
  body main .creativity .icon.icon5 {
    bottom: 15%;
    left: 10%;
  }
}

body main .creativity .icon.icon6 {
  bottom: 35%;
  left: 20%;
}

@media (max-width: 768px) {
  body main .creativity .icon.icon6 {
    display: none;
  }
}

body main .creativity .icon.icon7 {
  top: 35%;
  left: 20%;
}

@media (max-width: 768px) {
  body main .creativity .icon.icon7 {
    display: none;
  }
}

body main .creativity .icon.icon8 {
  top: 10%;
  left: 35%;
}

@media (max-width: 768px) {
  body main .creativity .icon.icon8 {
    top: 15%;
    left: 10%;
  }
}

body main .creativity .text {
  width: 35%;
}

@media (max-width: 768px) {
  body main .creativity .text {
    width: 95%;
  }
}

body main .creativity .text .title {
  font-size: 60px;
  color: #322bff;
  text-align: center;
  margin-bottom: 10px;
}

@media (max-width: 768px) {
  body main .creativity .text .title {
    font-size: 35px;
  }
}

body main .creativity .text .des {
  font-size: 25px;
  color: #322bff;
  text-align: center;
}

@media (max-width: 768px) {
  body main .creativity .text .des {
    font-size: 17px;
  }
}

body main .idea {
  background-color: #625ed9;
  height: 80vh;
}

body main .idea ::-moz-selection {
  background: #fcfcfc;
  color: #625ed9;
}

body main .idea ::selection {
  background: #fcfcfc;
  color: #625ed9;
}

body main .idea .text .title {
  color: #fcfcfc;
}

body main .idea .text .des {
  color: #fcfcfc;
}

body main .idea .link {
  display: block;
  text-decoration: none;
  background-color: #fcfcfc;
  color: #322bff;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 10px 50px;
  font-size: 20px;
  border-radius: 25px;
  margin: 30px auto;
}

body main .idea .link .buttonCon {
  position: relative;
  overflow: hidden;
}

body main .idea .link .buttonCon .front {
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

body main .idea .link .buttonCon .back {
  position: absolute;
  top: -10%;
  left: 50%;
  -webkit-transform: translateX(-50%) translateY(30px) scale(0.2);
          transform: translateX(-50%) translateY(30px) scale(0.2);
  opacity: 0;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

body main .idea .link .buttonCon .back svg {
  width: 30px;
  height: 30px;
}

body main .idea .link:hover .front {
  -webkit-transform: translateY(-100%);
          transform: translateY(-100%);
}

body main .idea .link:hover .back {
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  opacity: 1;
}

body main .hosting {
  position: relative;
}

body main .hosting .overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.2);
  z-index: 2;
  -webkit-transition: 0.2;
  transition: 0.2;
  display: none;
}

body main .hosting .cards {
  padding-top: 15vh;
  padding-right: 5vw;
  padding-left: 5vw;
}

@media (max-width: 768px) {
  body main .hosting .cards {
    padding-right: 0px;
    padding-left: 0px;
  }
}

@media (max-width: 768px) {
  body main .hosting .cards {
    padding-right: 5vw;
    padding-left: 5vw;
  }
}

body main .hosting .cards .card1 {
  padding: 0vh 2.5vw 0vh;
}

@media (max-width: 768px) {
  body main .hosting .cards .card1 {
    padding: 0px;
  }
}

body main .hosting .cards .card1__title {
  font-size: 2rem;
}

body main .hosting .cards .card1__subtitle {
  color: white;
  font-size: 1.2rem;
  height: 6rem;
  font-family: "book";
}

@media (max-width: 768px) {
  body main .hosting .cards .card1__subtitle {
    font-size: 1.3rem;
  }
}

body main .hosting .cards .card1__subtitle .yellow {
  color: #f7c65d;
}

body main .hosting .cards .card1__price {
  padding-top: 2vh;
}

body main .hosting .cards .card1__price-alt {
  font-size: 1.5rem;
  font-family: "book";
}

body main .hosting .cards .card1__price-num {
  color: #eecb2e;
  font-size: 2rem;
  line-height: 25px;
  height: 50px;
}

body main .hosting .cards .card1__price-num .mo {
  font-size: 1rem;
  color: #eecb2e;
}

body main .hosting .cards .card1__whiteBlock {
  margin-top: 1vh;
  padding: 2vw 30px 2vw;
  border-radius: 10px;
  color: black;
  font-size: 1.1rem;
  margin-bottom: 7em;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

body main .hosting .cards .card1__whiteBlock.scale {
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
  z-index: 4;
}

@media (max-width: 768px) {
  body main .hosting .cards .card1__whiteBlock.scale {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
}

@media (max-width: 768px) {
  body main .hosting .cards .card1__whiteBlock {
    font-size: 1.4rem;
    margin: 3vh auto;
  }
}

body main .hosting .cards .card1__whiteBlock .closeBtn {
  position: absolute;
  right: 20px;
  top: 20px;
  display: none;
}

body main .hosting .cards .card1__whiteBlock .closeBtn * {
  color: #322bff;
}

body main .hosting .cards .card1__whiteBlock .closeBtn svg {
  width: 30px;
  height: 30px;
}

body main .hosting .cards .card1__whiteBlock .moreItem {
  display: none;
}

body main .hosting .cards .card1__whiteBlock .moreBtn .card1__whiteBlock-list-item-txt {
  text-decoration: underline;
}

body main .hosting .cards .card1__whiteBlock-list {
  margin: 1vw 0 1vw 0;
}

body main .hosting .cards .card1__whiteBlock-list-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
  -ms-flex-line-pack: center;
      align-content: center;
  margin: 0.5vw 0 0.5vw 0;
}

@media (max-width: 768px) {
  body main .hosting .cards .card1__whiteBlock-list-item {
    margin: 2.5vw 0 2.5vw 0;
  }
}

body main .hosting .cards .card1__whiteBlock-list-item-icon {
  width: 2rem;
  color: #625ed9;
}

body main .hosting .cards .card1__whiteBlock-list-item-icon * {
  color: #625ed9;
}

body main .hosting .cards .card1__whiteBlock-list-item-txt {
  font-family: NanamiL;
  color: #707070;
}

body main .hosting .cards .card1__whiteBlock-list-item-txt .purple {
  color: #625ed9;
  font-family: "book";
}

body main .hosting .cards .card1__whiteBlock-btn {
  background-color: #322bff;
  border-radius: 20px;
  width: 80%;
  padding: 8px 1vw;
  margin: 0 10% 0 10%;
  color: #fcfcfc;
  font-size: 1rem;
  text-align: center;
}

body main .hosting .cards .card1__whiteBlock-btn .buttonCon {
  position: relative;
  overflow: hidden;
}

body main .hosting .cards .card1__whiteBlock-btn .buttonCon .front {
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

body main .hosting .cards .card1__whiteBlock-btn .buttonCon .back {
  position: absolute;
  top: -35%;
  left: 50%;
  -webkit-transform: translateX(-50%) scale(0.2);
          transform: translateX(-50%) scale(0.2);
  opacity: 0;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

body main .hosting .cards .card1__whiteBlock-btn .buttonCon .back svg {
  width: 40px;
  height: 40px;
}

body main .hosting .cards .card1__whiteBlock-btn:hover .front {
  -webkit-transform: translateY(-100%);
          transform: translateY(-100%);
}

body main .hosting .cards .card1__whiteBlock-btn:hover .back {
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  opacity: 1;
}

@media (max-width: 768px) {
  body main .hosting .cards .card1__whiteBlock-btn {
    margin: 0 auto;
    width: 60%;
    padding: 1vh;
  }
}

body main .hosting .intro {
  padding: 8em 0 0;
  position: relative;
  height: 100vh;
  overflow: hidden;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

@media (max-width: 768px) {
  body main .hosting .intro {
    padding: 8em 2em 0;
  }
}

body main .hosting .intro .projectsTitle {
  font-size: 70px;
  color: #322bff;
  text-align: center;
}

@media (max-width: 768px) {
  body main .hosting .intro .projectsTitle {
    font-size: 50px;
    text-align: initial;
  }
}

body main .hosting .intro .projectsDes {
  font-size: 30px;
  color: #322bff;
  text-align: center;
  width: 30%;
  margin: 0 auto;
  opacity: 0.7;
}

@media (max-width: 768px) {
  body main .hosting .intro .projectsDes {
    width: 100%;
    text-align: initial;
    font-size: 20px;
    margin-top: 10px;
  }
}

body main .hosting .intro .bigCircle {
  width: 200vw;
  height: 200vw;
  border-radius: 50%;
  background-color: #322bff;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
}

body main .hosting .intro .projectsDesWhite {
  color: #fcfcfc;
  width: 40%;
  z-index: 10;
  font-size: 25px;
  text-align: center;
  position: absolute;
  top: 70%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

@media (max-width: 768px) {
  body main .hosting .intro .projectsDesWhite {
    width: 95%;
    font-size: 22px;
  }
}

body main .hosting .ourWork {
  background-color: #322bff;
  padding: 5em 6em;
}

@media (max-width: 768px) {
  body main .hosting .ourWork {
    padding: 5em 0em;
  }
}

body main .hosting .ourWork * {
  color: #fcfcfc;
}

body main .hosting .ourWork .searchCon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

body main .hosting .ourWork .searchCon .www {
  font-size: 28px;
  margin: 0 10px;
}

body main .hosting .ourWork .searchCon .seachTextBox {
  position: relative;
}

body main .hosting .ourWork .searchCon .seachTextBox input {
  border: none;
  color: #322bff;
  font-size: 25px;
  background-color: #ddd;
  border-radius: 30px;
  padding: 5px 70px 5px 10px;
  width: 100%;
}

body main .hosting .ourWork .searchCon .seachTextBox button {
  position: absolute;
  border: none;
  width: 60px;
  height: 100%;
  right: 0;
  top: 0;
  border-radius: 30px;
  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;
}

body main .hosting .ourWork .searchCon .seachTextBox button:focus {
  outline: none;
}

body main .hosting .ourWork .searchCon .seachTextBox button svg {
  width: 20px;
  height: 20px;
}

body main .hosting .ourWork .searchCon .seachTextBox button svg * {
  color: #322bff;
}

@media (max-width: 768px) {
  body main .hosting .ourWork .checkBoxCon {
    margin-top: 20px;
  }
}

body main .hosting .ourWork .checkBoxCon .form-check {
  display: inline-block;
  margin-left: 30px;
  margin-bottom: 10px;
}

@media (max-width: 768px) {
  body main .hosting .ourWork .checkBoxCon .form-check {
    margin-bottom: 20px;
  }
}

body main .hosting .ourWork .checkBoxCon .form-check .form-check-input {
  width: 20px;
  height: 20px;
  border-radius: 2px;
  -webkit-appearance: inherit;
     -moz-appearance: inherit;
          appearance: inherit;
  background-color: #fcfcfc;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  padding-bottom: 10px !important;
  line-height: 0;
}

body main .hosting .ourWork .checkBoxCon .form-check .form-check-input:checked {
  border-radius: 2px;
  background-color: #f2d129 !important;
  color: #f2d129;
}

body main .hosting .ourWork .checkBoxCon .form-check .form-check-label {
  font-size: 25px;
  line-height: 30px;
  padding-left: 6px;
}

body main .hosting .ourWork .hostingResult {
  text-align: center;
  font-size: 35px;
  padding: 30px 0;
  height: 80px;
}

body main .hosting .ourWork .hostingResult .yellow {
  color: #f2d129;
}

body main .hosting .ourWork .hostingResult .yellowBox {
  display: inline-block;
  width: 20px;
  height: 20px;
  border-radius: 2px;
  background-color: #f2d129;
}

body main .hosting .ourWork .ourWorkTitle {
  font-size: 60px;
  margin-top: 3em;
}

body main .hosting .ourWork .ourWorkdes {
  font-size: 25px;
  width: 50%;
  font-family: NanamiL;
  margin-bottom: 0.5em;
}

@media (max-width: 768px) {
  body main .hosting .ourWork .ourWorkdes {
    width: 100%;
    font-family: NanamiR;
    font-size: 20px;
    margin-top: 20px;
    opacity: 0.8;
  }
}

body main .hosting .ourWork .hostinBtns {
  margin-top: 40px;
}

body main .hosting .ourWork .hostinBtns .hostinBtn {
  border: none;
  background-color: #fcfcfc;
  color: #322bff;
  border-radius: 30px;
  font-size: 20px;
  padding: 8px 50px;
  margin-right: 50px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  margin-bottom: 10px;
}

body main .hosting .ourWork .hostinBtns .hostinBtn:focus {
  outline: none;
}

body main .hosting .ourWork .hostinBtns .hostinBtn.active {
  background-color: #f2d129;
}

body main .hosting .ourWork .hostinBtns .hostinBtn:hover {
  background-color: #f2d129;
}

body main .hosting .getFastCon {
  height: 80vh;
  position: relative;
}

body main .hosting .getFastCon .text {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  text-align: center;
  color: #322bff;
  font-size: 60px;
}

body .error {
  width: 100%;
  height: 100vh;
  overflow: hidden;
  position: relative;
}

body .error .circle {
  position: absolute;
  top: 100%;
  left: 30%;
  width: 100px;
  height: 100px;
  background-color: #322bff;
  border-radius: 50%;
  -webkit-transition: 1s;
  transition: 1s;
}

body .error .circle:hover {
  -webkit-transform: scale(1.5);
          transform: scale(1.5);
}

body .error .circle:nth-child(1) {
  -webkit-animation: circleMove 8s infinite 1s;
          animation: circleMove 8s infinite 1s;
  left: 1982px;
  width: 40px;
  height: 40px;
  opacity: 0.2;
}

body .error .circle:nth-child(2) {
  -webkit-animation: circleMove 9s infinite 8s;
          animation: circleMove 9s infinite 8s;
  left: 531px;
  width: 10px;
  height: 10px;
  opacity: 0.2;
}

body .error .circle:nth-child(3) {
  -webkit-animation: circleMove 10s infinite 7s;
          animation: circleMove 10s infinite 7s;
  left: 1267px;
  width: 40px;
  height: 40px;
  opacity: 0.2;
}

body .error .circle:nth-child(4) {
  -webkit-animation: circleMove 6s infinite 4s;
          animation: circleMove 6s infinite 4s;
  left: 423px;
  width: 10px;
  height: 10px;
  opacity: 0.2;
}

body .error .circle:nth-child(5) {
  -webkit-animation: circleMove 9s infinite 7s;
          animation: circleMove 9s infinite 7s;
  left: 1490px;
  width: 40px;
  height: 40px;
  opacity: 1;
}

body .error .circle:nth-child(6) {
  -webkit-animation: circleMove 7s infinite 1s;
          animation: circleMove 7s infinite 1s;
  left: 1387px;
  width: 10px;
  height: 10px;
  opacity: 0.2;
}

body .error .circle:nth-child(7) {
  -webkit-animation: circleMove 7s infinite 4s;
          animation: circleMove 7s infinite 4s;
  left: 1040px;
  width: 40px;
  height: 40px;
  opacity: 0.2;
}

body .error .circle:nth-child(8) {
  -webkit-animation: circleMove 6s infinite 2s;
          animation: circleMove 6s infinite 2s;
  left: 1531px;
  width: 10px;
  height: 10px;
  opacity: 0.2;
}

body .error .circle:nth-child(9) {
  -webkit-animation: circleMove 9s infinite 6s;
          animation: circleMove 9s infinite 6s;
  left: 1780px;
  width: 40px;
  height: 40px;
  opacity: 0.2;
}

body .error .circle:nth-child(10) {
  -webkit-animation: circleMove 8s infinite 1s;
          animation: circleMove 8s infinite 1s;
  left: 117px;
  width: 10px;
  height: 10px;
  opacity: 0.2;
}

body .error .circle:nth-child(11) {
  -webkit-animation: circleMove 8s infinite 5s;
          animation: circleMove 8s infinite 5s;
  left: 1639px;
  width: 40px;
  height: 40px;
  opacity: 0.2;
}

body .error .circle:nth-child(12) {
  -webkit-animation: circleMove 11s infinite 3s;
          animation: circleMove 11s infinite 3s;
  left: 1665px;
  width: 10px;
  height: 10px;
  opacity: 0.2;
}

body .error .circle:nth-child(13) {
  -webkit-animation: circleMove 11s infinite 5s;
          animation: circleMove 11s infinite 5s;
  left: 189px;
  width: 40px;
  height: 40px;
  opacity: 0.2;
}

body .error .circle:nth-child(14) {
  -webkit-animation: circleMove 9s infinite 1s;
          animation: circleMove 9s infinite 1s;
  left: 858px;
  width: 10px;
  height: 10px;
  opacity: 0.2;
}

body .error .circle:nth-child(15) {
  -webkit-animation: circleMove 7s infinite 8s;
          animation: circleMove 7s infinite 8s;
  left: 1336px;
  width: 40px;
  height: 40px;
  opacity: 0.2;
}

body .error .circle:nth-child(16) {
  -webkit-animation: circleMove 12s infinite 3s;
          animation: circleMove 12s infinite 3s;
  left: 283px;
  width: 10px;
  height: 10px;
  opacity: 0.2;
}

body .error .circle:nth-child(17) {
  -webkit-animation: circleMove 9s infinite 4s;
          animation: circleMove 9s infinite 4s;
  left: 1040px;
  width: 40px;
  height: 40px;
  opacity: 0.2;
}

body .error .circle:nth-child(18) {
  -webkit-animation: circleMove 10s infinite 5s;
          animation: circleMove 10s infinite 5s;
  left: 483px;
  width: 10px;
  height: 10px;
  opacity: 0.2;
}

body .error .circle:nth-child(19) {
  -webkit-animation: circleMove 11s infinite 5s;
          animation: circleMove 11s infinite 5s;
  left: 720px;
  width: 40px;
  height: 40px;
  opacity: 0.2;
}

body .error .circle:nth-child(20) {
  -webkit-animation: circleMove 10s infinite 2s;
          animation: circleMove 10s infinite 2s;
  left: 1710px;
  width: 10px;
  height: 10px;
  opacity: 0.2;
}

body .error .circle:nth-child(21) {
  -webkit-animation: circleMove 12s infinite 3s;
          animation: circleMove 12s infinite 3s;
  left: 938px;
  width: 40px;
  height: 40px;
  opacity: 0.2;
}

body .error .circle:nth-child(22) {
  -webkit-animation: circleMove 6s infinite 8s;
          animation: circleMove 6s infinite 8s;
  left: 976px;
  width: 10px;
  height: 10px;
  opacity: 0.2;
}

body .error .circle:nth-child(23) {
  -webkit-animation: circleMove 10s infinite 4s;
          animation: circleMove 10s infinite 4s;
  left: 1304px;
  width: 40px;
  height: 40px;
  opacity: 0.2;
}

body .error .circle:nth-child(24) {
  -webkit-animation: circleMove 9s infinite 6s;
          animation: circleMove 9s infinite 6s;
  left: 450px;
  width: 10px;
  height: 10px;
  opacity: 0.2;
}

body .error .circle:nth-child(25) {
  -webkit-animation: circleMove 7s infinite 10s;
          animation: circleMove 7s infinite 10s;
  left: 256px;
  width: 40px;
  height: 40px;
  opacity: 0.2;
}

body .error .circle:nth-child(26) {
  -webkit-animation: circleMove 6s infinite 9s;
          animation: circleMove 6s infinite 9s;
  left: 1237px;
  width: 10px;
  height: 10px;
  opacity: 0.2;
}

body .error .circle:nth-child(27) {
  -webkit-animation: circleMove 7s infinite 4s;
          animation: circleMove 7s infinite 4s;
  left: 1998px;
  width: 40px;
  height: 40px;
  opacity: 0.2;
}

body .error .circle:nth-child(28) {
  -webkit-animation: circleMove 9s infinite 6s;
          animation: circleMove 9s infinite 6s;
  left: 1194px;
  width: 10px;
  height: 10px;
  opacity: 0.2;
}

body .error .circle:nth-child(29) {
  -webkit-animation: circleMove 6s infinite 7s;
          animation: circleMove 6s infinite 7s;
  left: 1363px;
  width: 40px;
  height: 40px;
  opacity: 0.2;
}

body .error .circle:nth-child(30) {
  -webkit-animation: circleMove 11s infinite 3s;
          animation: circleMove 11s infinite 3s;
  left: 1863px;
  width: 10px;
  height: 10px;
  opacity: 0.2;
}

body .error .circle:nth-child(31) {
  -webkit-animation: circleMove 8s infinite 10s;
          animation: circleMove 8s infinite 10s;
  left: 1217px;
  width: 40px;
  height: 40px;
  opacity: 0.2;
}

body .error .circle:nth-child(32) {
  -webkit-animation: circleMove 6s infinite 4s;
          animation: circleMove 6s infinite 4s;
  left: 1290px;
  width: 10px;
  height: 10px;
  opacity: 0.2;
}

body .error .circle:nth-child(33) {
  -webkit-animation: circleMove 9s infinite 5s;
          animation: circleMove 9s infinite 5s;
  left: 196px;
  width: 40px;
  height: 40px;
  opacity: 0.2;
}

body .error .circle:nth-child(34) {
  -webkit-animation: circleMove 10s infinite 10s;
          animation: circleMove 10s infinite 10s;
  left: 1268px;
  width: 10px;
  height: 10px;
  opacity: 0.2;
}

body .error .circle:nth-child(35) {
  -webkit-animation: circleMove 10s infinite 7s;
          animation: circleMove 10s infinite 7s;
  left: 961px;
  width: 40px;
  height: 40px;
  opacity: 0.2;
}

body .error .circle:nth-child(36) {
  -webkit-animation: circleMove 12s infinite 8s;
          animation: circleMove 12s infinite 8s;
  left: 748px;
  width: 10px;
  height: 10px;
  opacity: 0.2;
}

body .error .circle:nth-child(37) {
  -webkit-animation: circleMove 8s infinite 9s;
          animation: circleMove 8s infinite 9s;
  left: 1361px;
  width: 40px;
  height: 40px;
  opacity: 0.2;
}

body .error .circle:nth-child(38) {
  -webkit-animation: circleMove 11s infinite 3s;
          animation: circleMove 11s infinite 3s;
  left: 1120px;
  width: 10px;
  height: 10px;
  opacity: 0.2;
}

body .error .circle:nth-child(39) {
  -webkit-animation: circleMove 7s infinite 6s;
          animation: circleMove 7s infinite 6s;
  left: 1739px;
  width: 40px;
  height: 40px;
  opacity: 0.2;
}

body .error .circle:nth-child(40) {
  -webkit-animation: circleMove 6s infinite 2s;
          animation: circleMove 6s infinite 2s;
  left: 131px;
  width: 10px;
  height: 10px;
  opacity: 0.2;
}

body .error .circle:nth-child(41) {
  -webkit-animation: circleMove 11s infinite 2s;
          animation: circleMove 11s infinite 2s;
  left: 480px;
  width: 40px;
  height: 40px;
  opacity: 0.2;
}

body .error .circle:nth-child(42) {
  -webkit-animation: circleMove 9s infinite 4s;
          animation: circleMove 9s infinite 4s;
  left: 1626px;
  width: 10px;
  height: 10px;
  opacity: 0.2;
}

body .error .circle:nth-child(43) {
  -webkit-animation: circleMove 12s infinite 3s;
          animation: circleMove 12s infinite 3s;
  left: 1679px;
  width: 40px;
  height: 40px;
  opacity: 0.2;
}

body .error .circle:nth-child(44) {
  -webkit-animation: circleMove 10s infinite 9s;
          animation: circleMove 10s infinite 9s;
  left: 1018px;
  width: 10px;
  height: 10px;
  opacity: 0.2;
}

body .error .circle:nth-child(45) {
  -webkit-animation: circleMove 8s infinite 9s;
          animation: circleMove 8s infinite 9s;
  left: 183px;
  width: 40px;
  height: 40px;
  opacity: 0.2;
}

body .error .circle:nth-child(46) {
  -webkit-animation: circleMove 11s infinite 6s;
          animation: circleMove 11s infinite 6s;
  left: 105px;
  width: 10px;
  height: 10px;
  opacity: 0.2;
}

body .error .circle:nth-child(47) {
  -webkit-animation: circleMove 9s infinite 10s;
          animation: circleMove 9s infinite 10s;
  left: 872px;
  width: 40px;
  height: 40px;
  opacity: 0.2;
}

body .error .circle:nth-child(48) {
  -webkit-animation: circleMove 11s infinite 1s;
          animation: circleMove 11s infinite 1s;
  left: 839px;
  width: 10px;
  height: 10px;
  opacity: 0.2;
}

body .error .circle:nth-child(49) {
  -webkit-animation: circleMove 10s infinite 10s;
          animation: circleMove 10s infinite 10s;
  left: 1767px;
  width: 40px;
  height: 40px;
  opacity: 0.2;
}

body .error .circle:nth-child(50) {
  -webkit-animation: circleMove 6s infinite 1s;
          animation: circleMove 6s infinite 1s;
  left: 1547px;
  width: 10px;
  height: 10px;
  opacity: 0.2;
}

@keyframes circleMove {
  from {
    top: 100%;
  }
  to {
    top: -30%;
  }
}

body .error img {
  margin: 5% auto 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 350px;
}

@media (max-width: 1000px) {
  body .error img {
    width: 80%;
  }
}

body .error .errorText {
  color: #f2d129;
  font-size: 130px;
  text-align: center;
  line-height: 10px;
  font-family: NanamiL;
  letter-spacing: 20px;
}

@media (max-width: 1000px) {
  body .error .errorText {
    font-size: 180px;
  }
}

body .error .notFound {
  color: #0F64B7;
  text-align: center;
}

@media (max-width: 1000px) {
  body .error .notFound {
    font-size: 80px;
  }
}

body .error .link {
  display: block;
  color: #fcfcfc;
  font-size: 15px;
  padding: 15px 50px;
  background-color: #0F64B7;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  border-radius: 30px;
  text-decoration: none;
  font-size: 20px;
  margin: 0 auto;
}

@media (max-width: 1000px) {
  body .error .link {
    font-size: 50px;
    padding: 30px 100px;
    border-radius: 50px;
  }
}

body footer {
  background-color: #ecf1fd !important;
  padding: 4em 2em 0;
  position: relative;
  -webkit-transition: 1.5s;
  transition: 1.5s;
}

body footer ::-moz-selection {
  background: #322bff;
  color: #ecf1fd;
}

body footer ::selection {
  background: #322bff;
  color: #ecf1fd;
}

body footer.move {
  -webkit-transform: translateX(-40%);
          transform: translateX(-40%);
}

@media (max-width: 768px) {
  body footer.move {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}

@media (max-width: 768px) {
  body footer {
    padding: 10em 2em 0;
  }
}

body footer .footerLogoCon {
  margin: 0 auto;
  width: 150px;
  height: auto;
}

body footer .footerLogoCon img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

body footer .footerDes {
  color: #322bff;
  width: 30%;
  text-align: center;
  margin: 20px auto;
  font-size: 20px;
}

@media (max-width: 768px) {
  body footer .footerDes {
    width: 95%;
    margin-bottom: 30px;
  }
}

body footer .contactCon {
  width: 20%;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
}

@media (max-width: 768px) {
  body footer .contactCon {
    width: 100%;
  }
}

body footer .footerCircle {
  border: none;
  width: 40px;
  height: 40px;
  background-color: white;
  border-radius: 50%;
  display: block;
  -webkit-box-shadow: 0px 0px 10px -3px rgba(0, 0, 0, 0.3);
          box-shadow: 0px 0px 10px -3px rgba(0, 0, 0, 0.3);
  color: #322bff;
  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;
}

@media (max-width: 768px) {
  body footer .footerCircle {
    width: 50px;
    height: 50px;
  }
}

body footer .footerCircle svg {
  width: 20px;
  height: 20px;
}

@media (max-width: 768px) {
  body footer .footerCircle svg {
    width: 25px;
    height: 25px;
  }
}

body footer .footerCircle.upbtn {
  position: absolute;
  right: 20px;
  bottom: 20px;
}

body footer .footerCircle.upbtn:focus {
  outline: none;
}

@media (max-width: 768px) {
  body footer .footerCircle.upbtn {
    display: none;
  }
}

body footer .media {
  position: absolute;
  left: 20px;
  bottom: 20px;
}

body footer .media svg * {
  fill: #322bff;
}

@media (max-width: 768px) {
  body footer .media {
    display: none;
  }
}

body footer .media a {
  display: inline-block;
  color: #322bff;
  margin: 0 15px;
}

body footer .media a svg {
  width: 20px;
  height: 20px;
}

body footer .copyRight {
  text-align: center;
  margin-top: 50px;
  padding-bottom: 10px;
  color: #625ed9;
  font-size: 13px;
}

@media (max-width: 768px) {
  body footer .copyRight {
    margin-top: 10em;
    font-size: 17px;
  }
}

body.dark {
  background-color: #0f0f0f;
}

body.dark::-webkit-scrollbar-thumb {
  background-color: #fcfcfc;
}

body.dark .menu {
  background-color: #f2d129;
}

body.dark .menu .title {
  color: #fcfcfc !important;
  opacity: 1 !important;
}

body.dark .menu * {
  color: #0f0f0f;
}

body.dark .navbar__logo {
  -webkit-filter: brightness(50);
          filter: brightness(50);
}

body.dark .tellUsBtn * {
  color: #fcfcfc !important;
  border-color: #fcfcfc;
}

body.dark .tellUsBtn::before {
  background-color: #fcfcfc !important;
}

body.dark .menuBtn .front {
  opacity: 1 !important;
}

body.dark .darkBtn * {
  fill: #0f0f0f !important;
}

body.dark .home .intro * {
  color: #fcfcfc;
}

body.dark .home .shape .blue {
  background-color: #fcfcfc !important;
}

body.dark .home .happen {
  background-color: #f2d129;
}

body.dark .home .homeProjects .laptopfram {
  -webkit-box-shadow: 5px 10px 10px #fcfcfc;
          box-shadow: 5px 10px 10px #fcfcfc;
}

body.dark .home .homeProjects .mobileFramCon .mobileFram {
  -webkit-filter: drop-shadow(-10px 10px 10px #fcfcfc);
          filter: drop-shadow(-10px 10px 10px #fcfcfc);
}

body.dark .home .homeProjects .des {
  color: #fcfcfc !important;
}

body.dark .home .homeProjects .link .linkCon {
  background-color: #fcfcfc !important;
  color: #322bff !important;
}

body.dark .home .homeProjects .link .linkCon .back svg * {
  stroke: #322bff !important;
  fill: #fcfcfc;
}

body.dark .home .creativity {
  background-color: #134074;
}

body.dark .home .creativity * {
  color: #fcfcfc !important;
}

body.dark .home .handInHand .subTitle {
  color: #fcfcfc !important;
}

body.dark .home .handInHand .des {
  color: #fcfcfc !important;
}

body.dark .home .handInHand .link {
  background-color: #fcfcfc !important;
  color: #322bff !important;
}

body.dark .home .workWith .title {
  color: #fcfcfc;
}

body.dark .home .idea {
  background-color: #625ed9;
}

body.dark .home .idea .link * {
  color: #322bff !important;
}

body.dark .services .servicesBeyond * {
  color: #ecf1fd !important;
}

body.dark .services .servicesBeyond .circle {
  background-color: #fcfcfc !important;
}

body.dark .services .websites {
  background-color: #134074;
}

body.dark .services .wordsSliderCon .sliderWord {
  -webkit-text-stroke: 2px #fcfcfc !important;
}

body.dark .services .wordsSliderCon .fill {
  color: #fcfcfc !important;
  -webkit-text-stroke: initial !important;
}

body.dark .services .mobileApps {
  background-color: #052244;
}

body.dark .services .servicesBeyond2 * {
  color: #f2d129 !important;
}

body.dark .services .host {
  background-color: #021224;
}

body.dark .aboutUs .intro * {
  color: #fcfcfc;
}

body.dark .aboutUs .intro .circle {
  background-color: #fcfcfc;
}

body.dark .aboutUs .knowUs * {
  color: #fcfcfc !important;
}

body.dark .aboutUs .knowUs path {
  stroke: #fcfcfc;
}

body.dark .aboutUs .meet * {
  color: #fcfcfc;
}

body.dark .aboutUs .meet .circle {
  background-color: #fcfcfc !important;
}

body.dark .aboutUs .meet .name {
  color: #fcfcfc !important;
}

body.dark .aboutUs .meet .jobTitle {
  color: #fcfcfc !important;
}

body.dark .aboutUs .meet .joinButton {
  background-color: #fcfcfc !important;
}

body.dark .aboutUs .meet .joinButton * {
  color: #322bff !important;
}

body.dark .projects .intro * {
  color: #fcfcfc !important;
}

body.dark .projects .milestones * {
  color: #fcfcfc !important;
}

body.dark .projects .milestones .stepNum {
  -webkit-text-stroke: 2px #fcfcfc !important;
  color: transparent !important;
}

body.dark .projects .milestones .stepNum:hover {
  color: #fcfcfc !important;
}

body.dark .projects .website {
  background-color: #134074;
}

body.dark .hosting .intro * {
  color: #fcfcfc !important;
}

body.dark .hosting .getFastCon .text {
  color: #f2d129;
}

body.dark .tellUs * {
  color: #fcfcfc !important;
}

body.dark .tellUs .custom-control-label {
  background-color: #fcfcfc;
}

body.dark .tellUs .custom-control-label * {
  color: #322bff !important;
}

body.dark .tellUs .custom-control-label.active {
  background: #fcfcfc !important;
  opacity: 1;
  color: #322bff;
}

body.dark .tellUs .input::-webkit-input-placeholder {
  color: #fcfcfc !important;
}

body.dark .tellUs .input:-ms-input-placeholder {
  color: #fcfcfc !important;
}

body.dark .tellUs .input::-ms-input-placeholder {
  color: #fcfcfc !important;
}

body.dark .tellUs .input::placeholder {
  color: #fcfcfc !important;
}

body.dark .tellUs .input .graphic * {
  stroke: #fcfcfc !important;
}

body.dark .tellUs .file .close_icon svg path {
  fill: #fcfcfc !important;
}

body.dark .tellUs .file .progress-bar {
  background-color: #322bff !important;
}

body.dark .tellUs .btn-submit {
  background-color: #fcfcfc !important;
}

body.dark .tellUs .btn-submit * {
  color: #322bff !important;
}

body.dark .tellUs .btn-submit svg * {
  fill: #322bff !important;
}

body.dark .career * {
  color: #fcfcfc !important;
}

body.dark .career .form-check-label {
  background-color: #fcfcfc;
}

body.dark .career .form-check-label * {
  color: #322bff !important;
}

body.dark .career .form-check-label.active {
  background: #fcfcfc !important;
  opacity: 1;
  color: #322bff;
}

body.dark .career .input::-webkit-input-placeholder {
  color: #fcfcfc !important;
}

body.dark .career .input:-ms-input-placeholder {
  color: #fcfcfc !important;
}

body.dark .career .input::-ms-input-placeholder {
  color: #fcfcfc !important;
}

body.dark .career .input::placeholder {
  color: #fcfcfc !important;
}

body.dark .career .input .graphic * {
  stroke: #fcfcfc !important;
}

body.dark .career .btn-file {
  background-color: #fcfcfc !important;
  color: #322bff !important;
}

body.dark .career .btn-file:hover {
  color: #322bff !important;
  background: #fcfcfc !important;
}

body.dark .career .btn-file:hover svg * {
  fill: #322bff !important;
}

body.dark .career .file .close_icon svg path {
  fill: #fcfcfc !important;
}

body.dark .career .file .progress-bar {
  background-color: #322bff !important;
}

body.dark .career .btn-submit {
  background-color: #fcfcfc !important;
}

body.dark .career .btn-submit * {
  color: #322bff !important;
}

body.dark .career .btn-submit svg * {
  fill: #322bff !important;
}

body.dark .career .form-range {
  background-color: #fcfcfc !important;
  color: #fcfcfc !important;
}

body.dark .career .form-range[type="range"]::-webkit-slider-thumb {
  background-color: #fcfcfc !important;
  color: #fcfcfc !important;
  border: 10px solid #0f0f0f;
}

body.dark footer {
  background-color: #0f0f0f !important;
}

body.dark footer .footerLogoCon {
  -webkit-filter: brightness(20);
          filter: brightness(20);
}

body.dark footer * {
  color: #fcfcfc;
}

body.dark footer .footerCircle * {
  color: #625ed9 !important;
}

body.rtl .menu,
body.rtl .menuBg {
  left: 0;
  right: auto !important;
}

body.rtl main.move {
  -webkit-transform: translateX(40%);
          transform: translateX(40%);
}

@media (max-width: 768px) {
  body.rtl main.move {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
}

body.rtl .linkCon {
  width: initial !important;
}

body.rtl .linkCon .back {
  width: 100%;
}

body.rtl footer.move {
  -webkit-transform: translateX(40%);
          transform: translateX(40%);
}

@media (max-width: 768px) {
  body.rtl footer.move {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
}

body.rtl .home * {
  text-align: right;
}

body.rtl .home .left .linkCon {
  width: -webkit-fit-content !important;
  width: -moz-fit-content !important;
  width: fit-content !important;
}

body.rtl .home .laptopfram {
  right: auto !important;
  left: 0 !important;
  -webkit-transform: translate(-20%, -50%) !important;
          transform: translate(-20%, -50%) !important;
}

@media (max-width: 768px) {
  body.rtl .home .laptopfram {
    -webkit-transform: inherit !important;
            transform: inherit !important;
  }
}

body.rtl .home .mobileImg {
  right: 2.5%;
}

@media (max-width: 768px) {
  body.rtl .home .mobileImg {
    right: inherit !important;
  }
}

body.rtl .home .mobileFram {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

body.rtl .home .handInHand .link {
  margin-right: auto;
}

body.rtl .services .mobileContent {
  right: initial !important;
}

body.rtl .services * {
  text-align: right;
}

body.rtl .services .wordsSliderWrapp {
  -webkit-transform: rotateY(180deg);
          transform: rotateY(180deg);
}

body.rtl .services .wordsSliderWrapp .sliderWord {
  -webkit-transform: rotateY(180deg) !important;
          transform: rotateY(180deg) !important;
}

body.rtl .services .wordsSliderWrapp .sliderWord:nth-child(2) {
  -webkit-transform: translateX(50%) rotateY(180deg) !important;
          transform: translateX(50%) rotateY(180deg) !important;
}

body.rtl .services .wordsSliderWrapp .sliderWord:nth-child(3) {
  -webkit-transform: translateX(100%) rotateY(180deg) !important;
          transform: translateX(100%) rotateY(180deg) !important;
}

body.rtl .services .wordsSliderWrapp .sliderWord:nth-child(4) {
  -webkit-transform: translateX(-100%) rotateY(180deg) !important;
          transform: translateX(-100%) rotateY(180deg) !important;
}

body.rtl .services .wordsSliderWrapp .sliderWord:nth-child(5) {
  -webkit-transform: translateX(20%) rotateY(180deg) !important;
          transform: translateX(20%) rotateY(180deg) !important;
}

body.rtl .aboutUs .laptopSvg {
  -webkit-transform: rotateY(180deg);
          transform: rotateY(180deg);
}

body.rtl .aboutUs .mobileSvg {
  -webkit-transform: rotateY(180deg) translateX(-25%) !important;
          transform: rotateY(180deg) translateX(-25%) !important;
}

body.rtl .aboutUs .knowUs .left {
  left: auto;
  right: 6em;
}

@media (max-width: 768px) {
  body.rtl .aboutUs .knowUs .left {
    right: 2em;
  }
}

body.rtl .aboutUs .knowUs .left * {
  text-align: right;
}

body.rtl .aboutUs .knowUs .right {
  right: auto;
  left: 10em;
}

@media (max-width: 768px) {
  body.rtl .aboutUs .knowUs .right {
    left: 2em;
  }
}

body.rtl .aboutUs .knowUs .right * {
  text-align: right;
}

body.rtl .aboutUs .slick-next {
  right: 10px !important;
  left: auto !important;
}

body.rtl .aboutUs .slider {
  direction: ltr;
}

body.rtl .aboutUs .slider * {
  direction: ltr;
}

body.rtl .ourWork * {
  text-align: right !important;
  direction: rtl;
}

body.rtl .steps * {
  text-align: right;
}

body.rtl .steps .row .offset-md-2 {
  margin: 0 !important;
  margin-right: 16.666667% !important;
}

@media (max-width: 768px) {
  body.rtl .steps .row .offset-md-2 {
    margin-right: 0 !important;
  }
}

body.rtl .hosting .dominName .row {
  direction: ltr;
}

body.rtl .hosting .dominName .row * {
  direction: ltr;
}

body.rtl .hosting .hostingResult {
  text-align: center !important;
}

body.rtl .hosting .hostinBtn {
  margin-left: 50px;
  margin-right: 0 !important;
}

body.rtl .hosting .buttonCon .front {
  text-align: center !important;
}

body.rtl .hosting .closeBtn {
  right: auto !important;
  left: 20px;
}

body .btn-file {
  background-color: #fcfcfc !important;
  color: #322bff !important;
}

body .btn-file:hover {
  color: #322bff !important;
  background: #fcfcfc !important;
}

body .btn-file:hover svg * {
  fill: #322bff !important;
}

body .Cfiles {
  margin-top: 5rem;
  width: 70%;
  margin: 30px auto;
}

@media (max-width: 768px) {
  body .Cfiles {
    width: 100%;
  }
}

body .file {
  margin: 30px 0;
  text-align: left;
}

body .file .close_icon svg path {
  fill: #322bff;
}

body .file .close_icon:hover {
  cursor: pointer;
}

body .file:nth-child(1) .progress-bar {
  -webkit-transition-delay: 0.2s !important;
          transition-delay: 0.2s !important;
}

body .file:nth-child(2) .progress-bar {
  -webkit-transition-delay: 0.4s !important;
          transition-delay: 0.4s !important;
}

body .file:nth-child(3) .progress-bar {
  -webkit-transition-delay: 0.6s !important;
          transition-delay: 0.6s !important;
}

body .file:nth-child(4) .progress-bar {
  -webkit-transition-delay: 0.8s !important;
          transition-delay: 0.8s !important;
}

body .file:nth-child(5) .progress-bar {
  -webkit-transition-delay: 1s !important;
          transition-delay: 1s !important;
}

body .file:nth-child(6) .progress-bar {
  -webkit-transition-delay: 1.2s !important;
          transition-delay: 1.2s !important;
}

body .file:nth-child(7) .progress-bar {
  -webkit-transition-delay: 1.4s !important;
          transition-delay: 1.4s !important;
}

body .file:nth-child(8) .progress-bar {
  -webkit-transition-delay: 1.6s !important;
          transition-delay: 1.6s !important;
}

body .file:nth-child(9) .progress-bar {
  -webkit-transition-delay: 1.8s !important;
          transition-delay: 1.8s !important;
}

body .file:nth-child(10) .progress-bar {
  -webkit-transition-delay: 2s !important;
          transition-delay: 2s !important;
}

body .file:nth-child(11) .progress-bar {
  -webkit-transition-delay: 2.2s !important;
          transition-delay: 2.2s !important;
}

body .file:nth-child(12) .progress-bar {
  -webkit-transition-delay: 2.4s !important;
          transition-delay: 2.4s !important;
}

body .file:nth-child(13) .progress-bar {
  -webkit-transition-delay: 2.6s !important;
          transition-delay: 2.6s !important;
}

body .file:nth-child(14) .progress-bar {
  -webkit-transition-delay: 2.8s !important;
          transition-delay: 2.8s !important;
}

body .file:nth-child(15) .progress-bar {
  -webkit-transition-delay: 3s !important;
          transition-delay: 3s !important;
}

body .file:nth-child(16) .progress-bar {
  -webkit-transition-delay: 3.2s !important;
          transition-delay: 3.2s !important;
}

body .file:nth-child(17) .progress-bar {
  -webkit-transition-delay: 3.4s !important;
          transition-delay: 3.4s !important;
}

body .file:nth-child(18) .progress-bar {
  -webkit-transition-delay: 3.6s !important;
          transition-delay: 3.6s !important;
}

body .file:nth-child(19) .progress-bar {
  -webkit-transition-delay: 3.8s !important;
          transition-delay: 3.8s !important;
}

body .file:nth-child(20) .progress-bar {
  -webkit-transition-delay: 4s !important;
          transition-delay: 4s !important;
}

body .file:nth-child(21) .progress-bar {
  -webkit-transition-delay: 4.2s !important;
          transition-delay: 4.2s !important;
}

body .file:nth-child(22) .progress-bar {
  -webkit-transition-delay: 4.4s !important;
          transition-delay: 4.4s !important;
}

body .file:nth-child(23) .progress-bar {
  -webkit-transition-delay: 4.6s !important;
          transition-delay: 4.6s !important;
}

body .file:nth-child(24) .progress-bar {
  -webkit-transition-delay: 4.8s !important;
          transition-delay: 4.8s !important;
}

body .file:nth-child(25) .progress-bar {
  -webkit-transition-delay: 5s !important;
          transition-delay: 5s !important;
}

body .file:nth-child(26) .progress-bar {
  -webkit-transition-delay: 5.2s !important;
          transition-delay: 5.2s !important;
}

body .file:nth-child(27) .progress-bar {
  -webkit-transition-delay: 5.4s !important;
          transition-delay: 5.4s !important;
}

body .file:nth-child(28) .progress-bar {
  -webkit-transition-delay: 5.6s !important;
          transition-delay: 5.6s !important;
}

body .file:nth-child(29) .progress-bar {
  -webkit-transition-delay: 5.8s !important;
          transition-delay: 5.8s !important;
}

body .file:nth-child(30) .progress-bar {
  -webkit-transition-delay: 6s !important;
          transition-delay: 6s !important;
}

body .file:nth-child(31) .progress-bar {
  -webkit-transition-delay: 6.2s !important;
          transition-delay: 6.2s !important;
}

body .file:nth-child(32) .progress-bar {
  -webkit-transition-delay: 6.4s !important;
          transition-delay: 6.4s !important;
}

body .file:nth-child(33) .progress-bar {
  -webkit-transition-delay: 6.6s !important;
          transition-delay: 6.6s !important;
}

body .file:nth-child(34) .progress-bar {
  -webkit-transition-delay: 6.8s !important;
          transition-delay: 6.8s !important;
}

body .file:nth-child(35) .progress-bar {
  -webkit-transition-delay: 7s !important;
          transition-delay: 7s !important;
}

body .file:nth-child(36) .progress-bar {
  -webkit-transition-delay: 7.2s !important;
          transition-delay: 7.2s !important;
}

body .file:nth-child(37) .progress-bar {
  -webkit-transition-delay: 7.4s !important;
          transition-delay: 7.4s !important;
}

body .file:nth-child(38) .progress-bar {
  -webkit-transition-delay: 7.6s !important;
          transition-delay: 7.6s !important;
}

body .file:nth-child(39) .progress-bar {
  -webkit-transition-delay: 7.8s !important;
          transition-delay: 7.8s !important;
}

body .file:nth-child(40) .progress-bar {
  -webkit-transition-delay: 8s !important;
          transition-delay: 8s !important;
}

body .file:nth-child(41) .progress-bar {
  -webkit-transition-delay: 8.2s !important;
          transition-delay: 8.2s !important;
}

body .file:nth-child(42) .progress-bar {
  -webkit-transition-delay: 8.4s !important;
          transition-delay: 8.4s !important;
}

body .file:nth-child(43) .progress-bar {
  -webkit-transition-delay: 8.6s !important;
          transition-delay: 8.6s !important;
}

body .file:nth-child(44) .progress-bar {
  -webkit-transition-delay: 8.8s !important;
          transition-delay: 8.8s !important;
}

body .file:nth-child(45) .progress-bar {
  -webkit-transition-delay: 9s !important;
          transition-delay: 9s !important;
}

body .file:nth-child(46) .progress-bar {
  -webkit-transition-delay: 9.2s !important;
          transition-delay: 9.2s !important;
}

body .file:nth-child(47) .progress-bar {
  -webkit-transition-delay: 9.4s !important;
          transition-delay: 9.4s !important;
}

body .file:nth-child(48) .progress-bar {
  -webkit-transition-delay: 9.6s !important;
          transition-delay: 9.6s !important;
}

body .file:nth-child(49) .progress-bar {
  -webkit-transition-delay: 9.8s !important;
          transition-delay: 9.8s !important;
}

body .file:nth-child(50) .progress-bar {
  -webkit-transition-delay: 10s !important;
          transition-delay: 10s !important;
}

body .file:nth-child(51) .progress-bar {
  -webkit-transition-delay: 10.2s !important;
          transition-delay: 10.2s !important;
}

body .file:nth-child(52) .progress-bar {
  -webkit-transition-delay: 10.4s !important;
          transition-delay: 10.4s !important;
}

body .file:nth-child(53) .progress-bar {
  -webkit-transition-delay: 10.6s !important;
          transition-delay: 10.6s !important;
}

body .file:nth-child(54) .progress-bar {
  -webkit-transition-delay: 10.8s !important;
          transition-delay: 10.8s !important;
}

body .file:nth-child(55) .progress-bar {
  -webkit-transition-delay: 11s !important;
          transition-delay: 11s !important;
}

body .file:nth-child(56) .progress-bar {
  -webkit-transition-delay: 11.2s !important;
          transition-delay: 11.2s !important;
}

body .file:nth-child(57) .progress-bar {
  -webkit-transition-delay: 11.4s !important;
          transition-delay: 11.4s !important;
}

body .file:nth-child(58) .progress-bar {
  -webkit-transition-delay: 11.6s !important;
          transition-delay: 11.6s !important;
}

body .file:nth-child(59) .progress-bar {
  -webkit-transition-delay: 11.8s !important;
          transition-delay: 11.8s !important;
}

body .file:nth-child(60) .progress-bar {
  -webkit-transition-delay: 12s !important;
          transition-delay: 12s !important;
}

body .file:nth-child(61) .progress-bar {
  -webkit-transition-delay: 12.2s !important;
          transition-delay: 12.2s !important;
}

body .file:nth-child(62) .progress-bar {
  -webkit-transition-delay: 12.4s !important;
          transition-delay: 12.4s !important;
}

body .file:nth-child(63) .progress-bar {
  -webkit-transition-delay: 12.6s !important;
          transition-delay: 12.6s !important;
}

body .file:nth-child(64) .progress-bar {
  -webkit-transition-delay: 12.8s !important;
          transition-delay: 12.8s !important;
}

body .file:nth-child(65) .progress-bar {
  -webkit-transition-delay: 13s !important;
          transition-delay: 13s !important;
}

body .file:nth-child(66) .progress-bar {
  -webkit-transition-delay: 13.2s !important;
          transition-delay: 13.2s !important;
}

body .file:nth-child(67) .progress-bar {
  -webkit-transition-delay: 13.4s !important;
          transition-delay: 13.4s !important;
}

body .file:nth-child(68) .progress-bar {
  -webkit-transition-delay: 13.6s !important;
          transition-delay: 13.6s !important;
}

body .file:nth-child(69) .progress-bar {
  -webkit-transition-delay: 13.8s !important;
          transition-delay: 13.8s !important;
}

body .file:nth-child(70) .progress-bar {
  -webkit-transition-delay: 14s !important;
          transition-delay: 14s !important;
}

body .file:nth-child(71) .progress-bar {
  -webkit-transition-delay: 14.2s !important;
          transition-delay: 14.2s !important;
}

body .file:nth-child(72) .progress-bar {
  -webkit-transition-delay: 14.4s !important;
          transition-delay: 14.4s !important;
}

body .file:nth-child(73) .progress-bar {
  -webkit-transition-delay: 14.6s !important;
          transition-delay: 14.6s !important;
}

body .file:nth-child(74) .progress-bar {
  -webkit-transition-delay: 14.8s !important;
          transition-delay: 14.8s !important;
}

body .file:nth-child(75) .progress-bar {
  -webkit-transition-delay: 15s !important;
          transition-delay: 15s !important;
}

body .file:nth-child(76) .progress-bar {
  -webkit-transition-delay: 15.2s !important;
          transition-delay: 15.2s !important;
}

body .file:nth-child(77) .progress-bar {
  -webkit-transition-delay: 15.4s !important;
          transition-delay: 15.4s !important;
}

body .file:nth-child(78) .progress-bar {
  -webkit-transition-delay: 15.6s !important;
          transition-delay: 15.6s !important;
}

body .file:nth-child(79) .progress-bar {
  -webkit-transition-delay: 15.8s !important;
          transition-delay: 15.8s !important;
}

body .file:nth-child(80) .progress-bar {
  -webkit-transition-delay: 16s !important;
          transition-delay: 16s !important;
}

body .file:nth-child(81) .progress-bar {
  -webkit-transition-delay: 16.2s !important;
          transition-delay: 16.2s !important;
}

body .file:nth-child(82) .progress-bar {
  -webkit-transition-delay: 16.4s !important;
          transition-delay: 16.4s !important;
}

body .file:nth-child(83) .progress-bar {
  -webkit-transition-delay: 16.6s !important;
          transition-delay: 16.6s !important;
}

body .file:nth-child(84) .progress-bar {
  -webkit-transition-delay: 16.8s !important;
          transition-delay: 16.8s !important;
}

body .file:nth-child(85) .progress-bar {
  -webkit-transition-delay: 17s !important;
          transition-delay: 17s !important;
}

body .file:nth-child(86) .progress-bar {
  -webkit-transition-delay: 17.2s !important;
          transition-delay: 17.2s !important;
}

body .file:nth-child(87) .progress-bar {
  -webkit-transition-delay: 17.4s !important;
          transition-delay: 17.4s !important;
}

body .file:nth-child(88) .progress-bar {
  -webkit-transition-delay: 17.6s !important;
          transition-delay: 17.6s !important;
}

body .file:nth-child(89) .progress-bar {
  -webkit-transition-delay: 17.8s !important;
          transition-delay: 17.8s !important;
}

body .file:nth-child(90) .progress-bar {
  -webkit-transition-delay: 18s !important;
          transition-delay: 18s !important;
}

body .file:nth-child(91) .progress-bar {
  -webkit-transition-delay: 18.2s !important;
          transition-delay: 18.2s !important;
}

body .file:nth-child(92) .progress-bar {
  -webkit-transition-delay: 18.4s !important;
          transition-delay: 18.4s !important;
}

body .file:nth-child(93) .progress-bar {
  -webkit-transition-delay: 18.6s !important;
          transition-delay: 18.6s !important;
}

body .file:nth-child(94) .progress-bar {
  -webkit-transition-delay: 18.8s !important;
          transition-delay: 18.8s !important;
}

body .file:nth-child(95) .progress-bar {
  -webkit-transition-delay: 19s !important;
          transition-delay: 19s !important;
}

body .file:nth-child(96) .progress-bar {
  -webkit-transition-delay: 19.2s !important;
          transition-delay: 19.2s !important;
}

body .file:nth-child(97) .progress-bar {
  -webkit-transition-delay: 19.4s !important;
          transition-delay: 19.4s !important;
}

body .file:nth-child(98) .progress-bar {
  -webkit-transition-delay: 19.6s !important;
          transition-delay: 19.6s !important;
}

body .file:nth-child(99) .progress-bar {
  -webkit-transition-delay: 19.8s !important;
          transition-delay: 19.8s !important;
}

body .file:nth-child(100) .progress-bar {
  -webkit-transition-delay: 20s !important;
          transition-delay: 20s !important;
}

body .file_name {
  color: #322bff;
}

body .progress {
  height: 5px !important;
}

body .progress .progress-bar {
  background-color: #322bff;
  -webkit-transition: all 2s linear;
  transition: all 2s linear;
  width: 0%;
  background-color: #322bff;
  margin-left: auto;
  margin-right: 0;
}

body .progress .progress-bar.move {
  -webkit-transition: all 2s linear;
  transition: all 2s linear;
  width: 100%;
  margin-left: 0;
  margin-right: auto;
}

@-webkit-keyframes moving {
  0% {
    width: 0%;
  }
  25% {
    width: 25%;
  }
  50% {
    width: 50%;
  }
  75% {
    width: 75%;
  }
  100% {
    width: 100%;
  }
}

@keyframes moving {
  0% {
    width: 0%;
  }
  25% {
    width: 25%;
  }
  50% {
    width: 50%;
  }
  75% {
    width: 75%;
  }
  100% {
    width: 100%;
  }
}
/*# sourceMappingURL=style.css.map */