@import url("./design/css/fonts/main.css");

:root {
  --color-primary: #5c77ff;
  --color-primary_dark: #0b56ba;
  --color-primary_variant: #950aff;
  --color-primary_light: #bbdefb;
  --color-accent: #ffc107;
  --color-primary_text: #212121;
  --color-secondary_text: #757575;
  --color-icons: #ffffff;
  --color-placeholder: #bdbdbd;
  --color-primary-text2: #707070;
}

* {
  scroll-behavior: smooth;
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: Segoe UI;
  color: var(--color-primary-text2);
}

body {
  counter-reset: circle;
}
.bar {
  position: fixed;
  right: 25px;
  top: 26px;
  font-size: 25px;
  height: 50px;
  width: 50px;
  cursor: pointer;
  /* background-color: rgba(57, 57, 57, 0.723); */
  display: none;
}

.bar span {
  display: block;
  width: 35px;
  height: 5px;
  background-color: white;
  position: absolute;
  top: 10px;
  left: 5px;
  border-radius: 5px;
  transition: all 0.25s ease-in-out;
  box-shadow: 1px 1px 5px #726e6e;
}
.bar span:nth-of-type(2) {
  top: 50%;
  transform: translateY(-50%);
}

.bar span:nth-of-type(3) {
  top: initial;
  bottom: 10px;
}

.bar.active span:nth-of-type(1) {
  top: 50%;
  transform: translateY(-50%) rotate(135deg);
}

.bar.active span:nth-of-type(2) {
  opacity: 0;
}

.bar.active span:nth-of-type(3) {
  bottom: initial;
  top: 50%;
  transform: translateY(-50%) rotate(-135deg);
}
.fluid-container {
  width: 100%;
  overflow-x: hidden;
  display: block;
}

.wrapper {
  max-width: 1500px;
  display: block;
  margin: 0 auto;
}

.top-nav-container {
  background-color: rgb(25 50 85 / 3%);
}
.main-headding .center-mouse .mouse-button {
  display: block;
  width: 8px;
  height: 15px;
  background-color: var(--color-primary);
  margin: 5px auto 0;
  border-radius: 6px;
  animation-name: move;
  animation-timing-function: ease-in-out;
  animation-duration: 2s;
  animation-iteration-count: infinite;
  animation-fill-mode: both;
}
.main-headding .center-mouse {
  display: block;
  margin: 0 auto;
  grid-column: 1 / 3;
  position: absolute;
  bottom: 28px;
  left: 0;
  right: 0;
  width: 30px;
  height: 50px;
  border: 3px solid var(--color-primary);
  border-radius: 15px;
}
.nav-con {
  font-size: 0;
  padding-left: 12px;
}
@keyframes move {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(5px);
  }
  100% {
    transform: translateY(0);
  }
}

.nav-con .logo-con {
  font-size: 1rem;
  height: max-content;
  padding: 20px 0;
  width: 25%;
  vertical-align: middle;
  display: inline-block;
  position: relative;
}

.nav-con .logo-con .logo-img {
  height: 70px;
  width: 70px;
  overflow: hidden;
  background-image: url("./pic/logo.svg");
  background-size: cover;
  background-repeat: no-repeat;
  vertical-align: middle;
  display: inline-block;
}

.logo-con .brand-name::before {
  content: "";
  display: block;
  background-image: linear-gradient(45deg, #950aff, #5c77ff);
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 100%;
  border-radius: 5px 10px 45px 5px;
  z-index: -1;
  transition: all 0.25s ease-in-out;
  color: transparent;
}

.logo-con.active .brand-name::before {
  padding: 5px 25px 8px;
  right: 0;
}

.logo-con .brand-name {
  position: relative;
  display: inline-block;
  width: max-content;
  padding: 5px 25px 8px;
  vertical-align: middle;
  text-align: center;
  color: white;
}
.logo-con .brand-name p {
  color: white;
}

.nav-con .unoder-lists {
  font-size: 1rem;
  width: 75%;
  vertical-align: middle;
  display: inline-block;
}
.nav-con .unoder-lists a {
  text-decoration: none;
}
.nav-con .unoder-lists ul {
  list-style: none;

  font-size: 15px;
  text-align: right;
  color: var(--color-primary-text2);
}

.nav-con .unoder-lists ul li {
  display: inline-block;
  vertical-align: middle;
  cursor: pointer;
  padding: 25px;
}

.nav-con .unoder-lists ul li a {
  display: block;
  padding: 0;
}

.nav-con .unoder-lists ul li a img.action {
  width: 135px;
  background-color: #0f1319;
  border-radius: 10px;
  position: relative;
  padding: 10px 20px;
  right: 0px;
}
/* 
.nav-con .unoder-lists ul li.action img {
  max-width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 20px;
} */

.nav-con .unoder-lists ul li:hover a {
  color: var(--color-primary_variant);
  /* background-color: var(--color-accent); */
}

.main-headding {
  background-image: url(./pic/teamwork.svg);
  background-position: right 100%;
  background-repeat: no-repeat;
  background-size: cover 100%;
  height: max-content;
  font-style: oblique;
  padding: 160px;
  position: relative;
  border-bottom: 1px solid #eee;
}
.main-headding .headding {
  width: max-content;
}
.main-headding h1 {
  font-size: 55px;
  max-width: 600px;
}
.main-headding p {
  max-width: 500px;
  font-size: 20px;
}

.benefits-con {
  text-align: center;
}
.benefits-con h2 {
  padding-top: 80px;
}
.benefits-con h2,
.how-it-is-work h2,
.success-con h2,
.The-Freedom-of-Work h2,
.user-recognised h2,
.faq-con h2 {
  color: #5c77ff;
  font-size: 38px;
}
.user-recognised .hr-tags,
.faq-con .hr-tags {
  width: max-content;
  margin: 0 auto;
}

.benefits-con hr.all-hr,
.benefits-con hr.short-hr,
.benefits-con hr.small-hr,
.success-con .hr-tags hr.all-hr,
.success-con .hr-tags hr.short-hr,
.success-con .hr-tags hr.small-hr,
.user-recognised .hr-tags hr.all-hr,
.user-recognised .hr-tags hr.short-hr,
.user-recognised .hr-tags hr.small-hr,
.faq-con .hr-tags hr.all-hr,
.faq-con .hr-tags hr.short-hr,
.faq-con .hr-tags hr.small-hr {
  height: 3px;
  background-color: #707070;
  border: none;
  display: inline-block;
  margin: 0 auto;
}
.benefits-con hr.all-hr,
.success-con .hr-tags hr.all-hr,
.user-recognised .hr-tags hr.all-hr,
.faq-con .hr-tags hr.all-hr {
  width: 125px;
  background-color: #707070;
}
.benefits-con hr.short-hr,
.success-con .hr-tags hr.short-hr,
.user-recognised .hr-tags hr.short-hr,
.faq-con .hr-tags hr.short-hr {
  width: 35px;
  background-color: #707070;
}
.benefits-con hr.small-hr,
.success-con .hr-tags hr.small-hr,
.user-recognised .hr-tags hr.small-hr,
.faq-con .hr-tags hr.small-hr {
  width: 15px;
  background-color: #707070;
}

.benefits-con p {
  font-size: 18px;
  max-width: 900px;
  margin: 0 auto;
  padding: 80px 25px 80px;
}
.rotate-hr-2,
.rotate-hr {
  border: none;
  height: 2px;
  width: 215px;
  background-color: #950aff;
  margin: 0 auto;
  transform: rotate(145deg);
}
.rotate-hr-2 {
  transform: rotate(145deg) translate(17%, 0px);
}
.two-animated-con {
  font-size: 0px;
  position: relative;
  /* top: 95px; */
  padding-bottom: 50px;
  border-bottom: 1px solid #eee;
}
.two-animated-con .one-con,
.two-animated-con .two-con {
  display: inline-block;
  width: 50%;
  vertical-align: middle;
  font-size: 1rem;
  position: relative;
  height: 400px;
}

.two-animated-con .two-con {
  vertical-align: top;
  padding-top: 50px;
  text-align: center;
}

.two-animated-con .two-con .big-con {
  height: max-content;
  width: 100%;
  background-color: #f2f2f2;
  border-radius: 20px;
  padding: 98px 80px;
  position: relative;
  max-width: 500px;
  font-size: 1rem;
  display: inline-block;
  box-shadow: 8px 10px 16px #d3d3d3;
}
.two-animated-con .two-con .big-con:hover {
  box-shadow: 8px 26px 36px #d3d3d3;
  transition: all 0.5s;
}
.two-animated-con .two-con .top-small-con {
  position: absolute;
  top: -20px;
  height: max-content;
  background-color: #ffc107;
  padding: 20px 25px;
  border-radius: 12px;
  color: white;
  left: 20px;
  font-size: 1rem;
  display: inline-block;
}

.two-animated-con .one-con .shapes {
  position: relative;
  width: 75%;
  height: 400px;
  margin: 0 auto;
}

.two-animated-con .one-con .main-sircle {
  position: absolute;
  width: 200px;
  height: 200px;
  left: 28%;
  top: 28%;
  /* animation: infenity-scale 10s infinite 2s; */
}

.two-animated-con .one-con .middle-tangel {
  position: absolute;
  width: 320px;
  height: 260px;
  left: 50%;
  top: 50%;
  transform-origin: center;
  transform: translate(-45%, -35%);
}

.two-animated-con .one-con .top-tangle {
  position: absolute;
  width: 240px;
  height: 260px;
  left: 50%;
  top: 50%;
  transform: translate(-58%, -55%) rotate(15deg);
  transform-origin: center;
}

.two-animated-con .one-con .first-shape {
  position: absolute;
  top: 10%;
  left: 20%;
  transform: scale(0.6);

  animation: infenity-sku 10s infinite 1s;
}

.two-animated-con .one-con .third-shape {
  position: absolute;
  top: 40%;
  left: 0;
  transform: scale(0.6);
  animation: infenity-scale 10s infinite 1s;
}

.two-animated-con .one-con .second-shape {
  position: absolute;
  bottom: 7%;
  left: 18%;
  transform: scale(0.6);
  animation: infenity-two 20s infinite 1s;
  height: 35px;
}

.two-animated-con .one-con .fifth-shape {
  position: absolute;
  bottom: 5px;
  transform: scale(0.5);
  right: 20%;
  animation: infenity-sku 10s infinite 1s;
}

.two-animated-con .one-con .fourth-shape {
  position: absolute;
  top: 50%;
  right: 15%;
  animation: infenity-scale 10s infinite 1s;
}

.two-animated-con .one-con .sixth-shape {
  position: absolute;
  top: 10%;
  right: 15%;
  transform: scale(0.6);
  animation: infenity-scale 10s infinite 1s;
}

.how-it-is-work h2 {
  padding-top: 80px;
  text-align: center;
}

.blank-hr {
  height: 3px;
  width: 150px;
  margin: 0 auto;
  background: #707070;
}
.all-one-curcle {
  display: inline-block;
  vertical-align: middle;
  font-size: 1rem;
  width: 60%;
}
.install {
  position: relative;
  font-size: 0px;
  padding: 80px 30px 175px;
}
.install .one-curcle-con {
  padding: 10px;
  margin: 10px;
  border-radius: 8px 60px 15px 8px;
  border: 1px solid #f2f2f2;
}
.install .one-curcle-con:hover {
  box-shadow: 0px 3px 10px #bbb;
  transition: all 0.6s;
}

.install .one-curcle-con .one-curcle {
  height: 50px;
  width: 50px;
  background-color: #4bda20;
  border-radius: 50%;
  position: relative;
  box-shadow: 10px 5px 13px #d3d3d3;
  display: inline-block;
  vertical-align: middle;
  padding: 20px;
}

.install .one-curcle-con .one-curcle h3 {
  color: white;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 30px;
}
.install .one-curcle-con .headdin-con-of-install {
  display: inline-block;
  padding: 20px;
  vertical-align: middle;
}
.install .one-curcle-con .headdin-con-of-install h3 {
  font-size: 28px;
}
.install .one-curcle-con .headdin-con-of-install p {
  padding: 0px 20px;
  max-width: 500px;
}
.install-google-paly {
  display: inline-block;
  vertical-align: middle;
  width: 40%;
  position: relative;
}

.install-google-paly img {
  width: 300px;

  border-radius: 35px;
  padding: 45px 42px;
  border: 1px solid rgb(214, 214, 214);
}
.install-google-paly img:hover {
  transition: all 0.4s;
  box-shadow: 0px 10px 52px #d3d3d3;
}
.success-con {
  background-color: #ffc107de;
  text-align: center;
}
.success-con h2 {
  text-align: center;
  color: white;
  text-shadow: 0px 3px 6px rgba(0, 0, 0, 0.164);
  padding-top: 80px;
}
.success-con .all-square {
  padding: 60px 0px;
}
.success-con .all-square .squrare-div {
  height: 150px;
  width: 350px;
  background-image: linear-gradient(to bottom, #ffffff 50%, transparent 50%);
  background-size: 100% 200%;
  background-position: bottom center;
  border-radius: 25px;
  position: relative;
  display: inline-block;
  margin: 25px;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.178);
  transition: background-position 0.5s ease-in-out;
}

.success-con .all-square .squrare-div.active {
  background-position: top center;
}

.success-con .all-square .squrare-div .squrare {
  padding: 50px;
}

.success-con .all-square .squrare-div:hover .on-square {
  transform: scale(1.2);
}
.success-con .all-square .squrare-div .on-square {
  position: absolute;
  top: -25px;
  left: -25px;
  height: 95px;
  width: 95px;
  border-radius: 50%;
  background-color: white;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.178);
  overflow: hidden;
  transform: scale(0.5);
  transition: transform 0.25s ease-in-out;
  transition-delay: 0.25s;
}

.success-con .all-square .squrare-div.active .on-square {
  transform: scale(1);
}

.success-con .all-square .squrare-div .on-square img {
  height: 100%;
  width: 100%;
}

.business-development .tow-con {
  font-size: 0px;
  width: 100%;
}

.business-development .tow-con .one-con {
  width: 50%;
  display: inline-block;
  vertical-align: middle;
  padding: 30px;
}
.business-development .tow-con .scond-con {
  width: 50%;
  font-size: 1rem;
  display: inline-block;
  vertical-align: middle;
  padding: 25px;
}
.business-development .tow-con .scond-con h3 {
  font-size: 40px;
  color: #ab4aff;
  text-align: center;
  padding-bottom: 35px;
}
.user-recognised {
  position: relative;
}

.user-recognised h2 {
  text-align: center;
}

.user-recognised {
  background-color: #0f1319;
  padding: 80px 0px 25px;
}
.user-recognised .seven-consaptes {
  display: flex;
  flex-wrap: nowrap;
  max-width: 85%;
  margin: 0 auto;
  min-height: 65vh;
  align-self: center;
  align-content: center;
  place-items: center;
  column-gap: 80px;
  overflow-x: hidden;
}

.seven-consaptes::-webkit-scrollbar {
  visibility: hidden;
}

.user-recognised .seven-consaptes .consaptes {
  transition: transform 0.3s ease-in-out;
}
.user-recognised .seven-consaptes .consaptes .under-consaptes-square {
  width: 250px;
  height: 300px;
  background-color: white;
  padding: 30px;
  position: relative;
  box-shadow: rgb(0 0 0) 2px 5px 15px;
  position: relative;
  border-radius: 25px;
}
.user-recognised .seven-consaptes .consaptes .under-consaptes-square .star {
  position: absolute;
  bottom: 25px;
}
.user-recognised
  .seven-consaptes
  .consaptes
  .under-consaptes-square
  .star
  span {
  color: #ffbf00;
}

.user-recognised .seven-consaptes .consaptes .under-consaptes-square h4 {
  font-size: 20px;
  padding-bottom: 10px;
}
.user-recognised
  .seven-consaptes
  .consaptes
  .under-consaptes-square
  .under-conspates-circle {
  position: absolute;
  right: 0;
  bottom: 0;
  height: 95px;
  width: 95px;
  border-radius: 50%;
  transform: translate(50%, 10%);
  overflow: hidden;
  box-shadow: rgba(0, 0, 0, 0.16) 0 0 5px;
}

.user-recognised
  .seven-consaptes
  .consaptes
  .under-consaptes-square
  .under-conspates-circle
  img {
  height: 100%;
  overflow: hidden;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.user-recognised .slider-left-button,
.user-recognised .slider-right-button {
  position: absolute;
  top: 50%;
  background-color: rgba(0, 0, 0, 0.3);
  color: white;
  padding: 25px;
  font-weight: 800;
  display: none;
}
.user-recognised .slider-right-button {
  right: 0;
}
.user-recognised .slider-right-button:hover,
.user-recognised .slider-left-button:hover {
  background-color: rgba(255, 255, 255, 0.5);
  color: black;
  cursor: pointer;
}
.user-recognised:hover .slider-left-button,
.user-recognised:hover .slider-right-button {
  display: block;
}
/* 
.user-recognised .dots-con {
  text-align: center;
}

.user-recognised .dots-con .dots {
  margin: 5px;
  cursor: pointer;
  height: 20px;
  width: 20px;
  display: inline-block;
  text-align: center;
  background-color: #efeeee;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}
.user-recognised .dots-con .dots:hover {
  background-color: #717171;
} */

.The-Freedom-of-Work .one,
.The-Freedom-of-Work .two,
.The-Freedom-of-Work .three,
.The-Freedom-of-Work .four,
.The-Freedom-of-Work .five,
.The-Freedom-of-Work .six,
.The-Freedom-of-Work .seven,
.The-Freedom-of-Work .eight,
.The-Freedom-of-Work .nine,
.The-Freedom-of-Work .ten {
  opacity: 0.1;
  position: absolute;
}
.The-Freedom-of-Work .one {
  bottom: -225px;
  left: -65px;
}
.The-Freedom-of-Work .two {
  top: -45px;
  right: -60px;
  opacity: 0.1;
}
.The-Freedom-of-Work .three {
  bottom: -125px;
  right: -50px;
  animation: infenity-scale 10s infinite 2s;
}
.The-Freedom-of-Work .four {
  top: 46%;
  left: 25%;
  animation: infenity-three 10s infinite 1s;
}
.The-Freedom-of-Work .five {
  top: 28%;
  left: 41%;
  animation: infenity-two 20s infinite 1s;
}
.The-Freedom-of-Work .six {
  bottom: 24%;
  left: 15%;
  animation: infenity-move-two 10s infinite 1s;
}
.The-Freedom-of-Work .seven {
  bottom: 34%;
  right: 20%;
  animation: infenity-three 10s infinite 1s;
}
.The-Freedom-of-Work .eight {
  top: 40%;
  left: 9%;
  animation: infenity-two 20s infinite 1s;
}
.The-Freedom-of-Work .nine {
  top: 45%;
  right: 8%;
  animation: infenity-move-two 10s infinite 1s;
}
.The-Freedom-of-Work .ten {
  top: 5%;
  left: 15%;
  animation: infenity-move-two 10s infinite 1s;
}
.The-Freedom-of-Work {
  text-align: center;
  padding: 165px 25px;
  overflow: hidden;
  position: relative;
}

.The-Freedom-of-Work p.p-one {
  color: #000;
  max-width: 500px;
  margin: 38px auto;
}
.The-Freedom-of-Work p.p-tow {
  max-width: 1020px;
  margin: 0 auto;
  color: #363636;
}
.The-Freedom-of-Work .google-play {
  background-color: #0f1319;
  border-radius: 14px;
  padding: 10px 25px;
  height: 48px;
  width: 200px;
  overflow: hidden;
  margin: 20px;
  cursor: pointer;
  margin: 50px auto 15px;
}
.The-Freedom-of-Work .google-play:hover {
  box-shadow: 1px 2px 5px rgb(117, 117, 117);
}

.The-Freedom-of-Work .google-play img {
  height: 100%;
  width: auto;
}

.one-bigcon {
  background-color: #ffc107de;
  text-align: center;
  padding: 55px 0px;
}

.one-bigcon .under-cons {
  height: 215px;
  width: 245px;
  display: inline-block;
  overflow: hidden;
  text-align: center;
  /* background-color: white; */
  margin: 20px;
  transition: transform 0.25s ease-out;
  background-image: url("https://source.unsplash.com/random/400x400?face,men,driver");
  background-size: cover;
  position: relative;
}
.one-bigcon .under-cons:hover {
  box-shadow: 0px 5px 18px #000000b5;
  transform: scale(1.5);
  z-index: 9;
}
.one-bigcon .under-cons img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.faq-con .faq-con-bar .faq-qutions::before {
  content: "";
  width: 20px;
  height: 20px;
  display: block;
  position: absolute;
  left: -45px;
  top: 22px;
  border-radius: 10px;
  background-color: #c1c1c1;
}

.faq-con .faq-con-bar .faq-qutions:hover::before {
  background-color: #838383;
}
.faq-con h2 {
  text-align: center;
  padding-top: 80px;
}
.faq-con .faq-con-bar {
  max-width: 720px;
  margin: 60px auto auto;
  border-left: 2px solid #c1c1c1;
  padding-left: 34px;
}
.faq-con .faq-con-bar .faq-qutions h4 {
  color: #ffc107;
  font-size: 20px;
  position: relative;
  padding: 20px 40px;
}
.faq-con .faq-con-bar .faq-under-con {
  border-radius: 12px;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.205);

  position: relative;
  margin: 35px 0px 0px;
  cursor: pointer;
}
.faq-con .faq-con-bar .faq-under-con:hover {
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.4);
}

.faq-con .faq-con-bar .faq-qutions .arow-down {
  clip-path: polygon(0% 0%, 15% 0%, 50% 75%, 85% 0%, 100% 0%, 50% 100%);
  background-color: #950aff;
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  transition: all 0.3s ease-in-out;
  height: 15px;
  width: 25px;
}
.faq-con .faq-con-bar .faq-under-con .faq-ans {
  display: none;
  padding: 0px 15px 35px 38px;
}
.get-new-update .upper-con {
  width: 400px;
  margin: 0 auto;
  font-size: 35px;
  text-align: center;
  padding: 0px 25px 0px;
  margin-top: 95px;
  font-size: 0;
  position: relative;
}

.get-new-update .upper-con .one-upper-con {
  background-color: #ffc107;
  display: inline-block;
  vertical-align: top;
  padding: 25px;
  border-radius: 15px 0px 0px;
}

.get-new-update .upper-con h3 {
  width: 100%;
  font-size: 2rem;
  position: absolute;
  top: 50%;
  left: 50%;
  font-family: "Montserret", sans-serif;
  transform: translate(-50%, -50%);
  text-shadow: rgba(0, 0, 0, 0.3) 1px 1px 2px;
  padding-bottom: 10px;
}

.get-new-update .upper-con h3 .white {
  color: white;
}

.get-new-update .upper-con h3 .yellow {
  color: var(--color-accent);
}

.get-new-update .upper-con .a1 {
  height: 65px;
  width: 50%;
}

.get-new-update .upper-con .sep {
  width: 20%;
  height: 4px;
  position: absolute;
  background: var(--color-accent);
  top: 80%;
  left: 50%;
  border-radius: 50px;
}

.get-new-update .upper-con .sep.sep1 {
  transform: translateX(-100%);
  background-color: #eeeeee;
}

.get-new-update .upper-con .two-upper-con {
  background-color: #eeeeee;
  display: inline-block;
  vertical-align: top;
  padding: 25px;
  border-radius: 0px 15px 0px 0px;
}

.get-new-update .tow-update .one-update {
  background-color: #fbfcff;
}

.get-new-update .tow-update .one-update form {
  position: relative;
  width: max-content;
  margin: 0 auto;
}
.get-new-update .tow-update .one-update form input {
  width: 390px;
  height: 50px;
  font-size: 20px;
  color: #000;
  border: none;
  border-radius: 8px;
  box-shadow: 1px 4px 8px rgba(0, 0, 0, 0.192);
  padding: 12px;
}
.get-new-update .tow-update .one-update form input::placeholder {
  color: rgba(172, 172, 172, 0.863);
}
.get-new-update .tow-update .one-update form input:hover {
  box-shadow: 2px 5px 10px #0000007d;
  transition: all 0.4s;
}
.get-new-update .tow-update .one-update form input:focus-visible {
  outline: none;
}
.get-new-update .tow-update .one-update form .submit {
  background-color: #ffc107;
  color: white;
  padding : 15px 25px;
  border : 0;
  transition: box-shadow .3s ease-in-out;
  font-size: 18px;
  display: block;
  margin: 0 auto;
  overflow: hidden;
}
.get-new-update .tow-update .one-update form .submit:hover {
  background-color: #ffbf00;
  cursor: pointer;
  box-shadow: rgba(0,0,0,.1) 0 4px 8px, rgba(0,0,0,.26) 0 8px 16px;
}
.get-new-update .tow-update .one-update form .submit:hover i{
    transition : none;
    animation : mANim .8s linear;   
    color: white;
}

@keyframes mANim{
    0%{
        transform : translate(0%, 0%);
    }
    30%{
        transform : translate(300%, -500%);
    }
    50%{
        transform : translate(500%, 200%);
    }
    70%{
        transform : translate(-200%, 200%);
    }
    100%{
        transform : translate(0%,0%);
    }
}
        
        

.get-new-update .tow-update {
  width: 100%;
  font-size: 0px;
  overflow: hidden;
}

.get-new-update .tow-update .one-update {
  width: 50%;
  display: inline-block;
  font-size: 1rem;
  vertical-align: middle;
  padding: 8%;
  height: 700px;
  position: relative;
}

.get-new-update .tow-update .one-update .one-one,
.get-new-update .tow-update .one-update .one-two,
.get-new-update .tow-update .one-update .one-three,
.get-new-update .tow-update .one-update .one-four,
.get-new-update .tow-update .one-update .one-five,
.get-new-update .tow-update .one-update .one-six {
  position: absolute;
  opacity: 0.2;
}

.get-new-update .tow-update .one-update .one-one {
  bottom: 0;
  right: -217px;
  transform: translateY(50%) scale(0.5);
  opacity: 1;
  transform-origin: center;
}

.get-new-update .tow-update .one-update .one-one:nth-of-type(1) {
  animation: infenity 20s infinite 3s;
}

.get-new-update .tow-update .one-update .one-one:nth-of-type(2) {
  animation: infenity 20s infinite 6s;
}

.get-new-update .tow-update .one-update .one-one:nth-of-type(3) {
  animation: infenity 20s infinite 9s;
}

.get-new-update .tow-update .one-update .one-one:nth-of-type(4) {
  animation: infenity 20s infinite 12s;
}

.get-new-update .tow-update .one-update .one-one:nth-of-type(5) {
  animation: infenity 20s infinite 15s;
}

.get-new-update .tow-update .one-update .one-one:nth-of-type(6) {
  animation: infenity 20s infinite 18s;
}

.get-new-update .tow-update .one-update .one-one:nth-of-type(7) {
  animation: infenity 20s infinite 21s;
}

.get-new-update .tow-update .one-update .one-two {
  bottom: 46%;
  right: 8%;
  animation: infenity-scale 10s infinite 2s;
}
.get-new-update .tow-update .one-update .one-three {
  top: 6%;
  animation: infenity-two 20s infinite 1s;
}
.get-new-update .tow-update .one-update .one-four {
  top: 12%;
  right: 24%;
  animation: infenity-three 10s infinite 1s;
}
.get-new-update .tow-update .one-update .one-five {
  bottom: -285px;
  left: -200px;
  transform: rotate(45deg);
  animation: infenity-move 10s infinite 1s;
}

.get-new-update .tow-update .one-update label {
  font-size: 18px;
  padding-left: 20px;
}
.get-new-update .tow-update .second-update {
  width: 50%;
  display: inline-block;
  vertical-align: middle;
  background-color: #ffc107de;
  height: 700px;
  position: relative;
}
.get-new-update .tow-update .second-update .update-one,
.get-new-update .tow-update .second-update .update-two,
.get-new-update .tow-update .second-update .update-three,
.get-new-update .tow-update .second-update .update-four,
.get-new-update .tow-update .second-update .update-five,
.get-new-update .tow-update .second-update .update-six,
.get-new-update .tow-update .second-update .update-seven,
.get-new-update .tow-update .second-update .update-eight {
  position: absolute;
  opacity: 0.1;
}
.get-new-update .tow-update .second-update .update-one {
  top: 40%;
  left: 12%;
  animation: infenity-move 20s infinite 2s;
}
.get-new-update .tow-update .second-update .update-two {
  top: -175px;
  height: 280px;
  right: -3%;
  transform: rotate(85deg);
  animation: infenity-move-two 10s infinite 1s;
}
.get-new-update .tow-update .second-update .update-three {
  bottom: 25%;
  height: 36px;
  left: 15%;
  animation: infenity-sku 10s infinite 1s;
}
.get-new-update .tow-update .second-update .update-four {
  top: 12%;
  left: 35%;
  opacity: 1;
  animation: infenity-two 20s infinite 3s;
}
.get-new-update .tow-update .second-update .update-five {
  bottom: 25%;
  right: 20%;
  opacity: 1;
  animation: infenity-scale-two 10s infinite 2s;
}
.get-new-update .tow-update .second-update .update-six {
  top: 35%;
  right: 18%;
  animation: infenity-scale 10s infinite 1s;
}
.get-new-update .tow-update .second-update .update-seven {
  opacity: 1;
  bottom: -200px;
  left: -150px;
}

.get-new-update .tow-update .second-update .be-img {
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.get-new-update .tow-update .second-update .be-img h3 {
  font-size: 20px;
  color: white;
}
.get-new-update .tow-update .second-update .be-img .g-button {
  background-color: #000;
  border-radius: 15px;
  height: 35px;
  width: 155px;
  overflow: hidden;
  margin: 25px;
  cursor: pointer;
}
.get-new-update .tow-update .second-update .be-img .g-button img {
  height: 100%;
  padding: 8px;
}
.top-shape,
.bottom-shape {
  border: none;
  height: 1px;
  background-color: #e9e7e7;
}
.last-pic-con {
  text-align: center;
  padding: 28px;
}
.last-con {
  list-style: none;
  position: relative;
  transition: all 2s ease-in-out;
}
.last-con .top-ul {
  display: inline-block;
}

.last-con .left {
  display: inline-block;
}
.last-con .right-ul {
  position: absolute;
  right: 12px;
  top: 32px;
}
/* .last-con .right-ul {
  display: inline-block;
  position: absolute;
  top: 30px;
  right: 20px;
} */
/* .last-con .top-ul {
  display: inline-block;
} */
.last-con .right-ul li {
  display: inline-block;
  padding: 12px;
}
.last-con .right-ul li i:hover {
  color: orange;
  transform: scale(1.5);
}
.last-con .last-img-con img {
  height: 80px;
  width: 80px;
}
.last-con ul.left li {
  display: inline-block;
  padding: 12px;
  vertical-align: middle;
}
.last-con ul li a:hover {
  color: orange;
  cursor: pointer;
}

.last-write-con {
  text-align: center;
}
.last-con a {
  text-decoration: none;
}
/* .last-con ul {
  display: inline-block;
} */
.last-write-con .privacy li {
  display: inline-block;
  cursor: pointer;
  padding: 12px;
}
.last-write-con .privacy li a {
  text-decoration: none;
}
.last-write-con .privacy li a:hover {
  color: orange;
}
.last-write-con p {
  padding: 12px;
}

.star-icon {
  width: 12px;
  height: 12px;
  clip-path: polygon(50% 0%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
  display: inline-block;
  background-color: #ffbf00;
  border: 1px solid #ffbf00;
}
