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

body {
  color: #717f83;
  background-color: transparent;
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(70%, #ffffff3d), to(#ffffff));
  background-image: -o-linear-gradient(top, #ffffff3d 70%, #ffffff 100%);
  background-image: linear-gradient(180deg, #ffffff3d 70%, #ffffff 100%);
  font-family: "DM Sans", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.wrapper {
  min-height: 100vh;
}

.inner-banner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  position: relative;
  min-height: 800px;
  background-color: #fdfdfd;
  background-image: url("./img/black-and-white-24-2.png");
  background-position: center center;
  background-size: cover;
}

.inner-banner-shape img {
  max-width: 100%;
}

.inner-banner-shape .shape-one {
  position: absolute;
  bottom: 80px;
  left: 0;
  right: 0;
}

.inner-banner-shape .shape-two {
  position: absolute;
  bottom: 100px;
  left: 0;
  right: 0;
}

.inner-banner-shape .inner-banner-dots {
  position: absolute;
  top: 22%;
  left: 35%;
  -webkit-animation: flash 10s infinite;
          animation: flash 10s infinite;
}

.inner-banner-shape .shape-three {
  position: absolute;
  bottom: 130px;
  left: 0;
  right: 0;
}

@-webkit-keyframes flash {
  0%,
  50%,
  to {
    opacity: 1;
  }

  25%,
  75% {
    opacity: 0;
  }
}

@keyframes flash {
  0%,
  50%,
  to {
    opacity: 1;
  }

  25%,
  75% {
    opacity: 0;
  }
}

header {
  padding: 1rem 3rem 1rem 1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 2rem;
  font-weight: bold;
  position: absolute;
  top: 0;
  z-index: 10;
  right: 0;
}

header a {
  color: #fff;
  text-decoration: none;
  cursor: pointer;
  display: none;
}

header a:hover {
  color: #fff;
  text-decoration: underline;
  -webkit-text-decoration-color: #3f91de;
          text-decoration-color: #3f91de;
  -webkit-text-decoration-color: #ff2500;
          text-decoration-color: #ff2500;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

header .btn a:hover {
  color: #fff;
  text-decoration: none;
  text-shadow: unset;
}

.bg-wrapper {
  width: 100%;
  height: 100%;
}

.hero-section {
  width: 100%;
  max-width: 1200px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin: 0 auto;
  padding: 0 20px;
  padding-bottom: 105px;
}

.hero-section-top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-top: 10%;
  text-align: left;
  position: relative;
  z-index: 10;
  margin-bottom: 105px;
}

.hero-section-top h2 {
  max-width: 882px;
}

.hero-section h2 {
  color: #7f1cfe;
  font-family: "DM Sans", sans-serif;
  font-size: 24px;
  font-style: normal;
  font-weight: 800;
  line-height: 130%;
  margin-top: 14px;
  text-transform: uppercase;
  letter-spacing: 5px;
}

.hero-section h3 {
  font-size: 32px;
  color: #fff;
  margin-bottom: 1rem;
}

.hero-section p {
  margin-bottom: 40px;
  line-height: 1.5rem;
  color: #939393;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.54px;
}

a.hero-section-top-right-btn {
  background: #000;
  font-size: 15px;
  border-radius: 55px;
  color: #fff;
  text-decoration: none;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  height: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 190px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-weight: 300;
  text-transform: uppercase;
}

a.hero-section-top-right-btn:hover {
  background: #7f1cfe;
}

.hero-section strong {
  color: #21373d;
}

.btn {
  background-color: #ff2500;
  background-image: -webkit-gradient(linear, left top, right top, from(#ff2500), to(#ff7100));
  background-image: -o-linear-gradient(left, #ff2500, #ff7100);
  background-image: linear-gradient(to right, #ff2500, #ff7100);
  border-radius: 4px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1rem;
  letter-spacing: 0.09rem;
  max-width: -webkit-fit-content;
  max-width: -moz-fit-content;
  max-width: fit-content;
  border-radius: 50px;
}

.btn a {
  text-decoration: none;
  color: #fff;
  padding: 10px 27px;
  display: block;
  font-weight: 300;
}

.btn:hover {
  -webkit-filter: brightness(1.1);
          filter: brightness(1.1);
}

footer a {
  cursor: pointer;
  font-weight: 500;
}

footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 20px;
  padding-bottom: 0;
  width: 100%;
  position: relative;
  margin-top: 100px;
  border-top: 1px solid #0709580f;
}

.inner-footer {
  padding: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-top-left-radius: 14px;
  border-top-right-radius: 14px;
}

footer span {
  font-size: 14px;
  text-align: center;
  color: rgb(147, 147, 147);
  font-style: normal;
  font-weight: 400;
  line-height: 1.6;
}

footer li {
  display: inline-block;
  padding: 0 20px;
}

footer a {
  color: #ff2500;
  text-decoration: none;
}

footer ul {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  max-width: 250px;
  border-bottom: 1px solid rgb(0, 0, 0, 0.2);
  padding-bottom: 1rem;
}

.logo {
  height: 43px;
  width: 240px;
  background: url("./img/logo.svg") no-repeat center center;
  cursor: pointer;
  margin-top: 1rem;
  background-size: contain;
  background-position-x: left;
}

@media (max-width: 1024px) and (orientation: portrait) {
  .wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }

  .hero-section {
    width: 100%;
    height: 100%;
  }

  .title {
    font-size: 24px;
  }

  .hero-section-top {
    margin-top: unset;
    padding: 1rem;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    text-align: center;
  }

  header {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding: 1rem;
  }

  .hwt-wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}

.hwt-section {
  position: relative;
  width: 100%;
  padding: 100px 5%;
  background: #f0f2f6;
}

.hwt-header {
  text-align: center;
  margin-bottom: 20px;
}

.hwt-pre-header {
  font-style: normal;
  font-weight: 700;
  line-height: 156.5%;
  letter-spacing: 3.24px;
  text-transform: uppercase;
  color: #7f1cfe;
  margin-bottom: 15px;
  font-size: 22px;
  letter-spacing: 5px;
  font-weight: 700;
}

.hwt-header h2 {
  text-align: left;
  font-size: 50px;
  margin-top: 5px;
  font-style: normal;
  font-weight: 600;
  line-height: 1.2;
  color: #000;
}

.hwt-header p {
  font-size: 18px;
  color: #6c6c6c;
}

.hwt-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
  max-width: 1365px;
  margin: 0 auto;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}

.hwt-side-left {
  width: 50%;
  max-width: 640px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
}

.hwt-side-right {
  width: 50%;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-right: 30px;
}

.hwt-side-right img {
  width: 100%;
  max-width: 285px;
  border-radius: 150px;
}

.hwt-side-left h5 {
  font-size: 30px;
  font-weight: normal;
  margin-bottom: 10px;
  border-bottom: 1px solid rgba(207, 207, 207, 0.1);
  padding-bottom: 4px;
}

.hwt-side-left p {
  font-size: 14px;
  color: #939393;
  line-height: 28px;
  margin-bottom: 40px;
}

.hwt-side-left li {
  line-height: 2.5;
  list-style: none;
  display: block;
  background: url("./img/checkmark.svg") no-repeat left center;
  padding-left: 30px;
  font-size: 14px;
}

.two-uls-col-1 h3,
.two-uls-col-2 h3 {
  margin-bottom: 10px;
  font-size: 24px;
  font-weight: 600;
}

.hwt-marker {
  position: relative;
  list-style: none;
}

.hwt-marker::before {
  content: "";
  position: absolute;
  left: -70px;
  top: 0;
  width: 40px;
  height: 40px;
  background-repeat: no-repeat;
  background-position: center;
  display: none;
}

.about-point-text.vre-slide-up-gsap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.about-point-icon {
  margin-right: 20px;
}

.about-point-icon span {
  width: 85px;
  height: 85px;
  background-color: #ccdeff;
  display: block;
  text-align: center;
  line-height: 85px;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.services-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.offer-work {
  clear: both;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: end;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.offer-work svg {
  width: 50px;
  height: 54px;
  -webkit-transform: rotate(-15deg);
      -ms-transform: rotate(-15deg);
          transform: rotate(-15deg);
  position: absolute;
  right: 20px;
  bottom: 20px;
}

.services {
  width: 100%;
  margin: 0px auto 0;
  text-align: center;
  position: relative;
  background: url("./img/ppc-agencey-bg.png");
  padding: 100px 5%;
}

.services h2 {
  margin-bottom: 50px;
  font-size: 60px;
  font-weight: 300;
  line-height: 60px;
  color: rgb(10, 26, 64);
}

.services-item {
  margin: 0 10px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 25%;
  max-width: 300px;
  padding: 50px 50px 50px 50px;
  border-radius: 7px;
  background-color: #121b1d;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border: 1px solid transparent;
}

.services-item:hover {
  border: 1px solid rgba(127, 17, 224, .3);
  cursor: pointer;
}

.services-item svg {
  -webkit-transition: all .3s ease-in-out;
  -o-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}


.services-item:hover svg {
  -webkit-transform: rotate(10deg) translateY(-8px);
      -ms-transform: rotate(10deg) translateY(-8px);
          transform: rotate(10deg) translateY(-8px);
}

.services-item:hover p {
  color:#7f1cfe;
}

.services-item:nth-child(1):hover p.counter-square-text {
  color: #000;
}

.services-item:nth-child(1):hover {
  border: 1px solid transparent;
}

.services-item:nth-child(1) {
  background-color: transparent;
  font-size: 70px;
}

.services-item:nth-child(2) {
  background-color: #eaf9f9;
}

.services-item:nth-child(3) {
  background-color: #fff7f7;
}

.services-item:nth-child(4) {
  background-color: #f2f5fd;
}

.services-item img {
  max-width: 40px;
  max-height: 40px;
}

.services-item h3 {
  font-size: 40px;
  color: #ffffff;
  font-weight: 500;
  line-height: 1.2;
}

.services-item p {
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  color: #000;
  text-align: left;
  margin-top: 28px;
  margin-bottom: 16px;
  text-align: center;
  -webkit-transition: color .3s ease-in-out;
  -o-transition: color .3s ease-in-out;
  transition: color .3s ease-in-out;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Space Grotesk", sans-serif;
  color: #000;
}

.services-item {
  -webkit-transition: 0.5s ease;
  -o-transition: 0.5s ease;
  transition: 0.5s ease;
}

.services-item svg {
  width: 50px;
}

.headers {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  max-width: 750px;
}

.hero-section-top-right {
  margin-top: 0px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.headers h1 {
  font-size: 65px;
  font-weight: 600;
  margin: 12px 0 20px;
  line-height: 1.2;
}

.two-section {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  position: relative;
}

.hero-section-top-images {
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  max-width: 600px;
  right: 0;
  top: 0;
  padding-top: 150px;
  padding-left: 40px;
}

.hero-section-top-images img {
  max-width: 285px;
  border-radius: 150px;
  border: 1px solid transparent;
}

.hero-section-top-images-first {
  -webkit-animation: borderAnimation 8s cubic-bezier(0.42, 0, 0.58, 1) infinite;
          animation: borderAnimation 8s cubic-bezier(0.42, 0, 0.58, 1) infinite;
  -webkit-animation-delay: 0s;
          animation-delay: 0s;
  -webkit-transition: all 8s cubic-bezier(0.42, 0, 0.58, 1);
  -o-transition: all 8s cubic-bezier(0.42, 0, 0.58, 1);
  transition: all 8s cubic-bezier(0.42, 0, 0.58, 1);
}

.hero-section-top-images-second {
  -webkit-animation: borderAnimation2 8s cubic-bezier(0.42, 0, 0.58, 1) infinite;
          animation: borderAnimation2 8s cubic-bezier(0.42, 0, 0.58, 1) infinite;
  -webkit-animation-delay: 4s;
          animation-delay: 4s;
}

@-webkit-keyframes borderAnimation {
  0% {
    border: 1px solid transparent;
    box-shadow: 6px 5px 18px 0px transparent;
    -webkit-box-shadow: 6px 5px 18px 0px transparent;
    -moz-box-shadow: 6px 5px 18px 0px transparent;
    margin-top: 0px;
  }
  25% {
    border: 1px solid #12f8b8;
    box-shadow: 6px 5px 18px 0px rgba(18, 248, 184, 0.25);
    -webkit-box-shadow: 6px 5px 18px 0px rgba(18, 248, 184, 0.25);
    -moz-box-shadow: 6px 5px 18px 0px rgba(18, 248, 184, 0.25);
    margin-top: 2px;
  }
  50% {
    border: 1px solid transparent;
    box-shadow: 6px 5px 18px 0px transparent;
    -webkit-box-shadow: 6px 5px 18px 0px transparent;
    -moz-box-shadow: 6px 5px 18px 0px transparent;
    margin-top: 0px;
  }  
  100% {
    border: 1px solid transparent;
    box-shadow: 6px 5px 18px 0px transparent;
    -webkit-box-shadow: 6px 5px 18px 0px transparent;
    -moz-box-shadow: 6px 5px 18px 0px transparent;
    margin-top: 0px;
  }
}

@keyframes borderAnimation {
  0% {
    border: 1px solid transparent;
    box-shadow: 6px 5px 18px 0px transparent;
    -webkit-box-shadow: 6px 5px 18px 0px transparent;
    -moz-box-shadow: 6px 5px 18px 0px transparent;
    margin-top: 0px;
  }
  25% {
    border: 1px solid #12f8b8;
    box-shadow: 6px 5px 18px 0px rgba(18, 248, 184, 0.25);
    -webkit-box-shadow: 6px 5px 18px 0px rgba(18, 248, 184, 0.25);
    -moz-box-shadow: 6px 5px 18px 0px rgba(18, 248, 184, 0.25);
    margin-top: 2px;
  }
  50% {
    border: 1px solid transparent;
    box-shadow: 6px 5px 18px 0px transparent;
    -webkit-box-shadow: 6px 5px 18px 0px transparent;
    -moz-box-shadow: 6px 5px 18px 0px transparent;
    margin-top: 0px;
  }  
  100% {
    border: 1px solid transparent;
    box-shadow: 6px 5px 18px 0px transparent;
    -webkit-box-shadow: 6px 5px 18px 0px transparent;
    -moz-box-shadow: 6px 5px 18px 0px transparent;
    margin-top: 0px;
  }
}

@-webkit-keyframes borderAnimation2 {
  0% {
    border: 1px solid transparent;
    box-shadow: 6px 5px 18px 0px transparent;
    -webkit-box-shadow: 6px 5px 18px 0px transparent;
    -moz-box-shadow: 6px 5px 18px 0px transparent;
    margin-top: 0px;
  }
  25% {
    border: 1px solid #801dfe;
    box-shadow: 6px 5px 18px 0px rgba(127,28,254,0.25);
    -webkit-box-shadow: 6px 5px 18px 0px rgba(127,28,254,0.25);
    -moz-box-shadow: 6px 5px 18px 0px rgba(127,28,254,0.25);
    margin-top: -2px;
  }
  50% {
    border: 1px solid transparent;
    box-shadow: 6px 5px 18px 0px transparent;
    -webkit-box-shadow: 6px 5px 18px 0px transparent;
    -moz-box-shadow: 6px 5px 18px 0px transparent;
    margin-top: 0px;
  }  
  100% {
    border: 1px solid transparent;
    box-shadow: 6px 5px 18px 0px transparent;
    -webkit-box-shadow: 6px 5px 18px 0px transparent;
    -moz-box-shadow: 6px 5px 18px 0px transparent;
    margin-top: 0px;
  }
}

@keyframes borderAnimation2 {
  0% {
    border: 1px solid transparent;
    box-shadow: 6px 5px 18px 0px transparent;
    -webkit-box-shadow: 6px 5px 18px 0px transparent;
    -moz-box-shadow: 6px 5px 18px 0px transparent;
    margin-top: 0px;
  }
  25% {
    border: 1px solid #801dfe;
    box-shadow: 6px 5px 18px 0px rgba(127,28,254,0.25);
    -webkit-box-shadow: 6px 5px 18px 0px rgba(127,28,254,0.25);
    -moz-box-shadow: 6px 5px 18px 0px rgba(127,28,254,0.25);
    margin-top: -2px;
  }
  50% {
    border: 1px solid transparent;
    box-shadow: 6px 5px 18px 0px transparent;
    -webkit-box-shadow: 6px 5px 18px 0px transparent;
    -moz-box-shadow: 6px 5px 18px 0px transparent;
    margin-top: 0px;
  }  
  100% {
    border: 1px solid transparent;
    box-shadow: 6px 5px 18px 0px transparent;
    -webkit-box-shadow: 6px 5px 18px 0px transparent;
    -moz-box-shadow: 6px 5px 18px 0px transparent;
    margin-top: 0px;
  }
}

.hero-section-top-images-first {
  margin-right: 30px;
}

.hero-section-top-images-second-wrapper {
  margin-top: -70px;
}

.hero-section-top-images-first-wrapper,
.hero-section-top-images-second-wrapper {
  position: relative;
}

.hero-section-top-images-first-circle-1 {
  position: absolute;
  top: 0;
  left: -30px;
  width: 96px;
  height: 96px;
  border-radius: 150px;
  background-color: #00f8b8;
  z-index: 1;
  -webkit-animation: floatUpDown 6s cubic-bezier(0.42, 0, 0.58, 1) infinite;
          animation: floatUpDown 6s cubic-bezier(0.42, 0, 0.58, 1) infinite;
}

.hero-section-top-images-first-circle-2 {
  position: absolute;
  bottom: -10px;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 51px;
  height: 51px;
  border-radius: 150px;
  background-color: #ff5e87;
  z-index: 1;
  -webkit-animation: floatUpDown 4.5s cubic-bezier(0.42, 0, 0.58, 1) infinite;
          animation: floatUpDown 4.5s cubic-bezier(0.42, 0, 0.58, 1) infinite;
}

.hero-section-top-images-second-circle-1 {
  position: absolute;
  top: -25px;
  left: 50%;
  width: 51px;
  height: 51px;
  border-radius: 150px;
  background-color: #801dfe;
  z-index: 1;
  -webkit-animation: floatUpDown 4s cubic-bezier(0.42, 0, 0.58, 1) infinite;
          animation: floatUpDown 4s cubic-bezier(0.42, 0, 0.58, 1) infinite;
}

.hero-section-top-images-second-circle-2 {
  position: absolute;
  bottom: 30px;
  right: 10px;
  width: 128px;
  height: 128px;
  border-radius: 150px;
  background-color: #ffc961;
  z-index: 1;
  -webkit-animation: floatUpDown 8s cubic-bezier(0.42, 0, 0.58, 1) infinite;
          animation: floatUpDown 8s cubic-bezier(0.42, 0, 0.58, 1) infinite;
}

@-webkit-keyframes floatUpDown {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(-8px);
            transform: translateY(-8px);
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes floatUpDown {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(-8px);
            transform: translateY(-8px);
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

.hwt-side-right-images-first {
  margin-top: -40px;
  margin-right: 30px;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
}

.hwt-side-right-images-second-image-2 {
  margin-top: 20px;
}

.hwt-side-right-second-circle {
  position: absolute;
  top: 10px;
  left: 60px;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 51px;
  height: 51px;
  border-radius: 150px;
  background-color: #00f8b8;
  z-index: 1;
  -webkit-animation: floatUpDown 4s cubic-bezier(0.42, 0, 0.58, 1) infinite;
          animation: floatUpDown 4s cubic-bezier(0.42, 0, 0.58, 1) infinite;
}

.hwt-side-right-first-circle {
  position: absolute;
  bottom: -20px;
  right: -30px;
  width: 92px;
  height: 92px;
  border-radius: 150px;
  background-color: #ff5e87;
  z-index: 1;
  -webkit-animation: floatUpDown 8s cubic-bezier(0.42, 0, 0.58, 1) infinite;
          animation: floatUpDown 8s cubic-bezier(0.42, 0, 0.58, 1) infinite;
}

.hwt-side-right-images-first,
.hwt-side-right-images-second {
  position: relative;
}

.two-uls {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
}

.two-uls-col-1,
.two-uls-col-2 {
  width: 50%;
}

p.counter-square {
  font-size: 70px;
  color: #7f1cfe;
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
}

p.counter-square-text {
  margin-top: 0;
  font-size: 14px;
}

@media (max-width: 1180px) {
  .services,
  .hwt-section {
    padding-left: 15px;
    padding-right: 15px;
  }
  .hwt-side-right {
    margin-left: 0;
    max-width: 40%;
  }
  .hero-section-top {
    padding-top: 20%;
  }
  .hwt-side-left {
    text-align: center;
  }
  .hwt-header h2 {
    text-align: center;
    font-size: 34px;
  }
}

@media (max-width: 920px) {
  .hwt-wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .hwt-header {
    margin-bottom: 20px;
  }
  .hwt-side-left {
    margin-top: 50px;
    width: 100%;
    max-width: none;
  }

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

  .services-list .services-item {
    max-width: none;
    width: 50%;
    margin-bottom: 40px;
  }

  .services-item h3 {
    margin-bottom: 10px;
  }
}

@media (max-width: 768px) {
  .services h2,
  .hwt-header h2 {
    margin-bottom: 20px;
  }
  .hwt-side-left h5 {
    font-size: 25px;
    margin-bottom: 15px;
  }
}

@media (max-width: 560px) {
  .services-list .services-item {
    width: 100%;
    padding: 0;
  }
}