.headinggont {
  font-family: "Nunito", sans-serif !important;
  font-weight: 700;
}

.it-banner-area {
  background-color: #040d19;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding-top: 40px;
  padding-bottom: 40px;
}
.it-banner-area .container-fluid {
  padding-left: 60px;
  padding-right: 60px;
}

.it-banner-content {
  max-width: 665px;
}
.it-banner-content .sub {
  display: inline-flex;
  align-items: center;
  font-size: 14px;
  font-weight: 500;
  background-color: #BFCFFF;
  color: #2E384D;
  border-radius: 50px;
  padding: 10px 20px;
  margin-bottom: 20px;
}
.it-banner-content h1 {
  font-size: 60px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #ffffff;
}
.it-banner-content p {
  font-size: 18px;
  color: #D4D4D4;
  font-weight: 500;
  margin-bottom: 0;
}
.it-banner-content .banner-btn {
  margin-top: 50px;
}

.it-banner-image {
  position: relative;
}
.it-banner-image img {
  border-radius: 35px;
}
.it-banner-image .wrap-left {
  position: absolute;
  left: 0;
  bottom: 0;
  background-color: #040d19;
  border-radius: 0 35px 0 0;
  padding-top: 25px;
  padding-right: 25px;
}
.it-banner-image .wrap-left .inner {
  background-color: #4C5C75;
  padding: 55px 100px 55px 35px;
  border-radius: 35px;
  position: relative;
  z-index: 1;
}
.it-banner-image .wrap-left .inner .love {
  margin-bottom: 50px;
}
.it-banner-image .wrap-left .inner h3 {
  font-size: 42px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 0;
  line-height: 1;
}
.it-banner-image .wrap-left .inner span {
  font-weight: 500;
  color: #ffffff;
  display: block;
  margin-top: 8px;
}
.it-banner-image .wrap-left .inner .shape {
  position: absolute;
  top: 65px;
  right: 20px;
  z-index: -1;
}
.it-banner-image .wrap-left .shape1 {
  position: absolute;
  top: -30px;
  left: 0;
  transform: rotate(630deg);
}
.it-banner-image .wrap-left .shape1 svg {
  width: 30px;
  height: 30px;
  fill: #040d19;
}
.it-banner-image .wrap-left .shape2 {
  position: absolute;
  bottom: 0;
  right: -30px;
  transform: rotate(270deg);
}
.it-banner-image .wrap-left .shape2 svg {
  width: 30px;
  height: 30px;
  fill: #040d19;
}
.it-banner-image .wrap-right {
  position: absolute;
  right: 0;
  top: 0;
  background-color: #040d19;
  border-radius: 0 0 0 35px;
  padding-left: 25px;
  padding-bottom: 25px;
}
.it-banner-image .wrap-right .inner {
  background-color: #4C5C75;
  padding: 55px 100px 55px 35px;
  border-radius: 35px;
  position: relative;
  z-index: 1;
}
.it-banner-image .wrap-right .inner .list {
  margin-bottom: 165px;
  display: flex;
  padding-left: 0;
  padding-right: 0;
}
.it-banner-image .wrap-right .inner .list li {
  list-style-type: none;
  margin-right: -15px;
}
.it-banner-image .wrap-right .inner .list li img {
  border: 3px solid #ffffff;
}
.it-banner-image .wrap-right .inner .list li:last-child {
  margin-right: 0;
}
.it-banner-image .wrap-right .inner .link-btn {
  display: flex;
  align-items: center;
  font-weight: 500;
  color: #ffffff;
  gap: 10px;
  transition: 0.5s;
}
.it-banner-image .wrap-right .inner .link-btn:hover {
  color: red;
}
.it-banner-image .wrap-right .inner .shape {
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: -1;
  text-align: center;
}
.it-banner-image .wrap-right .shape1 {
  position: absolute;
  top: 0;
  left: -30px;
  transform: rotate(450deg);
}
.it-banner-image .wrap-right .shape1 svg {
  width: 30px;
  height: 30px;
  fill: #040d19;
}
.it-banner-image .wrap-right .shape2 {
  position: absolute;
  bottom: -30px;
  right: 0;
  transform: rotate(90deg);
}
.it-banner-image .wrap-right .shape2 svg {
  width: 30px;
  height: 30px;
  fill: #040d19;
}

.it-banner-shape1 {
  position: absolute;
  top: 30px;
  left: 700px;
  z-index: -1;
}
.it-banner-shape1 img {
  animation: moveleftbounce 3s linear infinite;
}

.it-banner-shape2 {
  position: absolute;
  left: 465px;
  bottom: 100px;
  z-index: -1;
}
.it-banner-shape2 img {
  animation-name: rotateme;
  animation-duration: 10s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
}

@keyframes moveleftbounce {
  0% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(-20px);
  }
  100% {
    transform: translateX(0);
  }
}
@keyframes rotateme {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.optional-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  background-color: transparent;
  border: 2px solid #72d802;
  color: #72d802 !important;
  font-weight: 500;
  padding: 15px 30px;
  border-radius: 50px;
  transition: 0.5s;
}
.optional-btn i {
  font-size: 25px;
}
.optional-btn:hover {
  border: 2px solid #ffffff;
  color: #ffffff !important;
}
@media (max-width: 767.98px) {
  .optional-btn {
    font-size: 14px;
    padding: 10px 20px;
    height: unset !important;
    margin-top: 5px;
    margin-bottom: 5px;
  }
}

/* Custom Modal Styles */
.custom-modal {
  display: none;
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.75);
  justify-content: center;
  align-items: center;
}

.custom-modal.active {
  display: flex;
}

.custom-modal-content {
  position: relative;
  background-color: #000;
  width: 90%;
  max-width: 900px;
  border-radius: 12px;
  overflow: hidden;
}

.custom-modal iframe {
  width: 100%;
  height: 500px;
  border: none;
}

.custom-close {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 24px;
  color: #fff;
  cursor: pointer;
  z-index: 10;
}

.custom-close:hover {
  color: #ccc;
}

@media (max-width: 767.98px) {
  .it-banner-area {
    padding-top: 50px;
    padding-bottom: 50px;
    padding-left: 20px;
    padding-right: 20px;
  }
  .it-banner-area .container-fluid {
    padding-left: calc(var(--bs-gutter-x) * 0.5);
    padding-right: calc(var(--bs-gutter-x) * 0.5);
    max-width: 540px;
  }
  .it-banner-content h1 {
    font-size: 35px;
  }
  .it-banner-content p {
    font-size: 15px;
  }
  .it-banner-content .banner-btn {
    margin-top: 30px;
  }
  .it-banner-image .wrap-left {
    position: relative;
    margin-top: 20px;
    padding-top: 0;
    padding-right: 0;
  }
  .it-banner-image .wrap-left .inner h3 {
    font-size: 35px;
  }
  .it-banner-image .wrap-left .shape1,
  .it-banner-image .wrap-left .shape2 {
    display: none;
  }
  .it-banner-image .wrap-right {
    position: relative;
    margin-top: 20px;
    padding-left: 0;
    padding-bottom: 0;
  }
  .it-banner-image .wrap-right .shape1,
  .it-banner-image .wrap-right .shape2 {
    display: none;
  }
  .it-about-left .content {
    margin-bottom: 30px;
  }
  .it-about-left .content h2 {
    font-size: 30px;
    margin-right: 0;
  }
  .it-about-middle-content .experience h3 {
    font-size: 50px;
  }
  .it-about-middle-content .content {
    margin-bottom: 30px;
  }
  .it-about-middle-content .content p {
    font-size: 15px;
    max-width: 750px;
  }
  .it-about-middle-content .fun-items {
    display: block;
    padding: 30px 0;
  }
  .it-about-middle-content .fun-items .item {
    margin-right: 0;
    margin-bottom: 30px;
  }
  .it-about-middle-content .fun-items .item h3 {
    font-size: 30px;
  }
  .it-about-middle-content .fun-items .item:last-child {
    margin-bottom: 0;
  }
}
/*--------------------------------------------------------------
# About One
--------------------------------------------------------------*/
.about-one {
  position: relative;
  display: block;
  background: linear-gradient(360deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.1) 100%);
  padding: 140px 0 0px;
  z-index: 1;
}

.about-one__shape-1 {
  position: absolute;
  width: 927px;
  height: 927px;
  right: -270px;
  top: -40px;
  background: radial-gradient(50% 50% at 50% 50%, rgba(22, 14, 255, 0.1539) 0%, rgba(22, 14, 255, 0) 87.1%);
  z-index: -1;
}

.about-one__left {
  position: relative;
  display: block;
}

.about-one__left .section-title {
  margin-bottom: 22px;
}

.about-one__left .section-title__title {
  margin-right: -100px;
}

.about-one__points {
  position: relative;
  display: block;
  margin-top: 40px;
  margin-bottom: 34px;
}

.about-one__points li {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.about-one__points li + li {
  margin-top: 24px;
}

.about-one__points li .icon {
  position: relative;
  display: inline-block;
  top: 6px;
}

.about-one__points li .icon span {
  position: relative;
  display: inline-block;
  font-size: 20px;
  color: #B5B7BB;
}

.about-one__points li .content {
  position: relative;
  display: block;
  flex: 1;
}

.about-one__points li .content h3 {
  font-size: 20px;
  font-weight: 500;
  line-height: 30px;
  color: #B5B7BB;
  margin-bottom: 12px;
}

.about-one__btn-and-call-box {
  position: relative;
  display: flex;
  align-items: center;
  gap: 20px;
}

.about-one__btn-box {
  position: relative;
  display: block;
}

.about-one__call-box {
  position: relative;
  display: flex;
  align-items: center;
  gap: 15px;
}

.about-one__call-box .icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  z-index: 1;
}

.about-one__call-box .icon::before {
  content: "";
  position: absolute;
  top: 0px;
  left: 0px;
  right: 0px;
  bottom: 0px;
  border-radius: 8px;
  border: 1px solid transparent;
  background: linear-gradient(90deg, #3D72FC, #5CB0E9) border-box;
  -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  transition: all 500ms ease;
  visibility: visible;
  opacity: 1;
  z-index: -1;
}

.about-one__call-box .icon span {
  position: relative;
  display: inline-block;
  font-size: 20px;
  color: #B5B7BB;
  transition: all 500ms linear;
  transition-delay: 0.1s;
  transform: scale(1);
}

.about-one__call-box:hover .icon span {
  transform: scale(0.9);
}

.about-one__call-box .content {
  position: relative;
  display: block;
  flex: 1;
}

.about-one__call-box .content span {
  font-size: 14px;
  font-weight: 700;
  line-height: 24px;
}

.about-one__call-box .content p {
  font-size: 24px;
  font-weight: 700;
  line-height: 34px;
  margin-top: 2px;
}

.about-one__call-box .content p a {
  color: #B5B7BB;
}

.about-one__call-box .content p a:hover {
  color: var(--techguru-base);
}

.about-one__right {
  position: relative;
  display: block;
  margin-left: 70px;
}

.about-one__left-img-box {
  position: relative;
  display: block;
  margin-top: 32px;
}

.about-one__left-img {
  position: relative;
  display: block;
  margin-bottom: 24px;
  overflow: hidden;
  border-radius: 20px;
  z-index: 1;
}

.about-one__left-img::before {
  background: hsla(0, 0%, 100%, 0.5);
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 0;
  height: 100%;
  opacity: 1;
  pointer-events: none;
}

.about-one__left-img:hover::before {
  width: 100%;
  opacity: 0;
  transition: all 0.6s linear;
}

.about-one__left-img img {
  width: 100%;
  border-radius: 20px;
}

.about-one__left-img-2 {
  position: relative;
  display: block;
  border-radius: 20px;
  overflow: hidden;
  z-index: 1;
}

.about-one__left-img-2::before {
  background: hsla(0, 0%, 100%, 0.5);
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 0;
  opacity: 1;
  pointer-events: none;
}

.about-one__left-img-2:hover::before {
  height: 100%;
  opacity: 0;
  transition: all 0.6s linear;
}

.about-one__left-img-2 img {
  width: 100%;
  border-radius: 20px;
}

.about-one__right-img-box {
  position: relative;
  display: block;
  margin-left: 58px;
}

.about-one__right-img {
  position: relative;
  display: block;
  margin-bottom: 24px;
  overflow: hidden;
  border-radius: 20px;
  z-index: 1;
}

.about-one__right-img::before {
  background: hsla(0, 0%, 100%, 0.5);
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 0;
  opacity: 1;
  pointer-events: none;
}

.about-one__right-img:hover::before {
  height: 100%;
  opacity: 0;
  transition: all 0.6s linear;
}

.about-one__right-img img {
  width: 100%;
  border-radius: 20px;
}

.about-one__right-img-2 {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 20px;
  z-index: 1;
}

.about-one__right-img-2::before {
  background: hsla(0, 0%, 100%, 0.5);
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 0;
  height: 100%;
  opacity: 1;
  pointer-events: none;
}

.about-one__right-img-2:hover::before {
  width: 100%;
  opacity: 0;
  transition: all 0.6s linear;
}

.about-one__right-img-2 img {
  width: 100%;
  border-radius: 20px;
}

/*--------------------------------------------------------------
# About Two
--------------------------------------------------------------*/
.about-two {
  position: relative;
  display: block;
  padding: 140px 0 140px;
  background-color: var(--techguru-black);
  z-index: 1;
}

.about-two__shape-2 {
  position: absolute;
  left: 24.95%;
  right: 24.95%;
  top: 0%;
  bottom: -11.72%;
  opacity: 0.3;
  filter: blur(120px);
  background: radial-gradient(50% 50% at 50% 50%, #6669D8 0%, rgba(7, 12, 20, 0) 100%);
  z-index: -1;
}

.about-two__shape-3 {
  position: absolute;
  top: 0px;
  right: 0;
  z-index: -1;
}

.about-two__shape-3 img {
  width: auto;
}

.about-two__left {
  position: relative;
  display: block;
  margin-right: 135px;
  margin-top: 15px;
}

.about-two__img-box {
  position: relative;
  display: block;
}

.about-two__img {
  position: relative;
  display: block;
}

.about-two__img img {
  width: 100%;
  border-radius: 48px;
}

.about-two__img-2 {
  position: absolute;
  bottom: -129px;
  right: -102px;
  max-width: 336px;
  width: 100%;
}

.about-two__img-2::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border: 4px solid #08111F;
  border-radius: 48px;
}

.about-two__img-2 img {
  width: 100%;
  border-radius: 48px;
}

.about-two__shape-1 {
  position: absolute;
  top: -28px;
  right: -28px;
  width: 410px;
  height: 566px;
  border: 3px solid transparent;
  background: linear-gradient(-135deg, #FA5674 0%, #6065D4 52%, rgba(96, 101, 212, 0) 81%) border-box;
  -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  border-radius: 65px;
  z-index: -1;
}

.about-two__client-box {
  position: relative;
  display: block;
  max-width: 226px;
  width: 100%;
  margin-left: 28px;
  text-align: center;
  padding: 18px 10px 16px;
  margin-top: 16px;
  background-color: var(--techguru-black);
  border-radius: 24px;
  z-index: 1;
}

.about-two__client-box::before {
  content: "";
  position: absolute;
  top: 0px;
  left: 0px;
  right: 0px;
  bottom: 0px;
  border-radius: 24px;
  border: 1px solid transparent;
  background: linear-gradient(90deg, #3D72FC, #5CB0E9) border-box;
  -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  z-index: -1;
}

.about-two__client-img-list {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-two__client-img-list li {
  position: relative;
  display: block;
}

.about-two__client-img-list li + li {
  margin-left: -18px;
}

.about-two__client-img {
  position: relative;
  display: block;
  max-width: 40px;
  width: 100%;
}

.about-two__client-img img {
  width: 100%;
  border: 2px solid #08111F;
  border-radius: 50%;
}

.about-two__client-img-list li a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 2px solid #08111F;
  font-size: 16px;
  color: #08111F;
  border-radius: 50%;
  background-color: var(--techguru-base);
}

.about-two__client-text {
  color: #B5B7BB;
  margin-top: 12px;
}

.about-two__client-text span {
  color: #B5B7BB;
  font-family: var(--techguru-font) !important;
}

.about-two__right {
  position: relative;
  display: block;
}

.about-two__right .section-title {
  margin-bottom: 24px;
}

.about-two__right .section-title__title {
  margin-right: -100px;
}

.about-two__points-box {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 50px;
  border-top: 1px dashed rgba(var(--techguru-white-rgb), 0.2);
  border-bottom: 1px dashed rgba(var(--techguru-white-rgb), 0.2);
  padding-top: 23px;
  margin-top: 26px;
  padding-bottom: 23px;
  margin-bottom: 38px;
}

.about-two__points-list {
  position: relative;
  display: block;
}

.about-two__points-list li {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.about-two__points-list li + li {
  margin-top: 20px;
}

.about-two__points-list li .icon {
  position: relative;
  display: inline-block;
  top: 1px;
}

.about-two__points-list li .icon span {
  position: relative;
  display: inline-block;
  font-size: 16px;
  color: #B5B7BB;
}

.about-two__experience-contact-and-btn {
  position: relative;
  display: flex;
  align-items: center;
  gap: 35px;
}

.about-two__experience-box {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
}

.about-two__experience-box::before {
  content: "";
  position: absolute;
  top: 50%;
  right: -20px;
  width: 1px;
  height: 30px;
  background-color: #B5B7BB;
  transform: translateY(-50%);
}

.about-two__experience-count-box {
  position: relative;
  display: flex;
  align-items: center;
}

.about-two__experience-count-box h3 {
  font-size: 48px;
  font-weight: 700;
  line-height: 48px !important;
  font-family: var(--techguru-font) !important;
  color: var(--techguru-base);
}

.about-two__experience-count-box span {
  font-size: 48px;
  font-weight: 700;
  line-height: 48px !important;
  font-family: var(--techguru-font) !important;
  color: var(--techguru-base);
}

.about-two__experience-text {
  font-size: 12px;
  font-weight: 500;
  line-height: 18px;
  color: #B5B7BB;
}

.about-two__call-box {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
}

.about-two__call-box::before {
  content: "";
  position: absolute;
  top: 50%;
  right: -20px;
  width: 1px;
  height: 30px;
  background-color: #B5B7BB;
  transform: translateY(-50%);
}

.about-two__call-icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  overflow: hidden;
  z-index: 1;
}

.about-two__call-icon:before {
  content: "";
  position: absolute;
  top: 0px;
  left: 0px;
  right: 0px;
  bottom: 0px;
  border-radius: 50%;
  border: 1px solid transparent;
  background: linear-gradient(90deg, #3D72FC, #5CB0E9) border-box;
  -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  z-index: -1;
}

.about-two__call-icon::after {
  content: "";
  position: absolute;
  width: 25px;
  height: 25px;
  right: 0px;
  bottom: 0px;
  background: linear-gradient(270deg, #FA5674 0%, #6065D4 100%);
  filter: blur(16.5px);
  z-index: -1;
}

.about-two__call-content {
  position: relative;
  display: block;
  flex: 1;
  top: -3px;
}

.about-two__call-content span {
  position: relative;
  display: inline-block;
  font-size: 14px;
  font-weight: 500;
  background: linear-gradient(270deg, #5CB0E9 0%, #3D72FC 100%);
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
          background-clip: text;
  text-transform: capitalize;
}

.about-two__call-content p {
  font-size: 20px;
  font-weight: 700;
  line-height: 21px;
}

.about-two__call-content p a {
  color: #B5B7BB;
}

.about-two__call-content p a:hover {
  color: var(--techguru-base);
}

.about-two__btn-box {
  position: relative;
  display: block;
}

.about-two__btn-box .thm-btn {
  border-radius: 26px;
}

/*--------------------------------------------------------------
# About Three
--------------------------------------------------------------*/
.about-three {
  position: relative;
  display: block;
  background-color: var(--techguru-black);
  overflow: hidden;
  padding: 140px 0 122px;
  z-index: 1;
}

.about-three__left {
  position: relative;
  display: block;
  margin-right: 60px;
}

.about-three__img-box {
  position: relative;
  display: block;
}

.about-three__img {
  position: relative;
  display: block;
}

.about-three__img img {
  width: 100%;
}

.about-three__right {
  position: relative;
  display: block;
}

.about-three__right .section-title {
  margin-bottom: 23px;
}

.about-three__progress-box {
  position: relative;
  display: block;
  margin-top: 25px;
}

.about-three__progress-box .progress-box {
  position: relative;
  display: block;
}

.about-three__progress-box .progress-box + .progress-box {
  margin-top: 23px;
}

.about-three__progress-box .progress-box .bar-title {
  position: relative;
  font-size: 20px;
  font-weight: 500;
  line-height: 30px;
  text-transform: capitalize;
  margin-bottom: 13px;
  color: #B5B7BB;
}

.about-three__progress-box .progress-box .bar {
  position: relative;
  width: 100%;
  height: 7px;
  background-color: rgba(var(--techguru-white-rgb), 0.1);
  border-radius: 4px;
}

.about-three__progress-box .progress-box .bar-inner {
  position: relative;
  display: block;
  width: 0px;
  height: 7px;
  background: var(--techguru-base);
  border-radius: 4px;
  transition: all 1500ms ease;
}

.about-three__progress-box .progress-box .count-box {
  position: absolute;
  right: 0px;
  margin-right: -35px;
  bottom: 18px;
  width: 40px;
  height: 22px;
  background: var(--techguru-base);
  color: var(--techguru-black);
  line-height: 22px;
  font-size: 14px;
  font-weight: 500;
  border-radius: 5px;
  text-align: center;
  letter-spacing: 0;
  opacity: 0;
  font-family: var(--techguru-font);
  transition: all 500ms ease;
}

.about-three__progress-box .progress-box .counted .count-box {
  opacity: 1;
}

.about-three__progress-box .progress-box .count-box:after {
  content: "";
  position: absolute;
  left: 0;
  top: 100%;
  margin-top: -5px;
  border: 5px solid transparent;
  border-top: 5px solid var(--techguru-base);
  border-left: 5px solid var(--techguru-base);
}

.about-three__points {
  position: relative;
  display: block;
  margin-top: 33px;
  margin-bottom: 31px;
}

.about-three__points li {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.about-three__points li + li {
  margin-top: 24px;
}

.about-three__points li .icon {
  position: relative;
  display: inline-block;
  top: 6px;
}

.about-three__points li .icon span {
  position: relative;
  display: inline-block;
  font-size: 20px;
  color: #B5B7BB;
}

.about-three__points li .content {
  position: relative;
  display: block;
  flex: 1;
}

.about-three__points li .content h3 {
  font-size: 20px;
  font-weight: 500;
  line-height: 30px;
  color: #B5B7BB;
}

.about-three__btn-and-call-box {
  position: relative;
  display: flex;
  align-items: center;
  gap: 20px;
}

.about-three__btn-box {
  position: relative;
  display: block;
}

.about-three__call-box {
  position: relative;
  display: flex;
  align-items: center;
  gap: 15px;
}

.about-three__call-box .icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  z-index: 1;
}

.about-three__call-box .icon::before {
  content: "";
  position: absolute;
  top: 0px;
  left: 0px;
  right: 0px;
  bottom: 0px;
  border-radius: 8px;
  border: 1px solid transparent;
  background: linear-gradient(90deg, #3D72FC, #5CB0E9) border-box;
  -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  transition: all 500ms ease;
  visibility: visible;
  opacity: 1;
  z-index: -1;
}

.about-three__call-box .icon span {
  position: relative;
  display: inline-block;
  font-size: 20px;
  color: #B5B7BB;
  transition: all 500ms linear;
  transition-delay: 0.1s;
  transform: scale(1);
}

.about-three__call-box:hover .icon span {
  transform: scale(0.9);
}

.about-three__call-box .content {
  position: relative;
  display: block;
  flex: 1;
}

.about-three__call-box .content span {
  font-size: 14px;
  font-weight: 700;
  line-height: 24px;
}

.about-three__call-box .content p {
  font-size: 24px;
  font-weight: 700;
  line-height: 34px;
  margin-top: 2px;
}

.about-three__call-box .content p a {
  color: #B5B7BB;
}

.about-three__call-box .content p a:hover {
  color: var(--techguru-base);
}

/*--------------------------------------------------------------
# About Four
--------------------------------------------------------------*/
.about-four {
  position: relative;
  display: block;
  padding: 50px 0px;
  overflow: hidden;
  z-index: 1;
}

.about-four__bg-shape {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 424px;
  opacity: 0.2;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top center;
  animation: leftRight 4s ease-in-out infinite;
  z-index: -1;
}

.about-four__bg-shape-2 {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top center;
  z-index: -1;
}

.about-four__left {
  position: relative;
  display: block;
  margin-right: 145px;
  margin-top: 40px;
}

.about-four__img-box {
  position: relative;
  display: block;
}

.about-four__img {
  position: relative;
  display: block;
}

.about-four__img img {
  width: 100%;
  border-radius: 40px;
}

.about-four__img-2 {
  position: absolute;
  right: -100px;
  bottom: -115px;
  max-width: 308px;
  width: 100%;
}

.about-four__img-2 img {
  width: auto;
  border: 2px solid #B5B7BB;
  border-radius: 40px;
}

.about-four__experience {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  top: 110px;
  right: -65px;
  width: 140px;
  height: 150px;
  background: linear-gradient(270deg, rgba(250, 86, 116, 0.4) 0%, rgba(96, 101, 213, 0.4) 100%);
  border-radius: 100px;
}

.about-four__experience-inner {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 126px;
  height: 134px;
  background: linear-gradient(270deg, #FA5674 0%, #6065D4 100%);
  border-radius: 100px;
  flex-direction: column;
  text-align: center;
}

.about-four__experience-count-box {
  position: relative;
  display: block;
}

.about-four__experience-count-box h3 {
  font-size: 48px;
  font-weight: 700;
  line-height: 48px !important;
  font-family: Nunito !important;
  color: #ffffff;
}

.about-four__experience-count-text {
  font-size: 14px;
  font-weight: 500;
  line-height: 17px;
  color: #ffffff;
  top: -3px;
  position: relative;
}

.about-four__client-box {
  position: relative;
  display: block;
  max-width: 226px;
  width: 100%;
  text-align: center;
  margin-top: 31px;
  margin-left: 40px;
  z-index: 1;
}

.about-four__client-img-list {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-four__client-img-list li {
  position: relative;
  display: block;
}

.about-four__client-img-list li + li {
  margin-left: -18px;
}

.about-four__client-img {
  position: relative;
  display: block;
  max-width: 40px;
  width: 100%;
}

.about-four__client-img img {
  width: 100%;
  border: 2px solid #08111F;
  border-radius: 50%;
}

.about-four__client-img-list li a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 2px solid #08111F;
  font-size: 16px;
  color: #08111F;
  border-radius: 50%;
  background-color: #040d19;
}

.about-four__client-text {
  color: #B5B7BB;
  margin-top: 12px;
}

.about-four__client-text span {
  color: #B5B7BB;
}

.about-four__right {
  position: relative;
  display: block;
}

.about-four__right .section-title__title {
  margin-right: -110px;
  font-size: 40px !important;
}

.about-four__right .section-title {
  margin-bottom: 22px;
}

.about-four__points-box {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 40px;
  border-top: 1px dashed #040d19, 0.2;
  border-bottom: 1px dashed #040d19, 0.2;
  padding: 24px 0 24px;
  margin: 24px 0 24px;
}

.about-four__points-list {
  position: relative;
  display: block;
}

.about-four__points-list li {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.about-four__points-list li + li {
  margin-top: 47px;
}

.about-four__points-list-2 li + li {
  margin-top: 20px;
}

.about-four__points-list li .icon {
  position: relative;
  display: inline-block;
}

.about-four__points-list li .icon span {
  position: relative;
  display: inline-block;
  font-size: 16px;
  color: var(--techguru-base);
}

.about-four__points-list-img {
  position: relative;
  display: block;
  max-width: 60px;
  width: 100%;
}

.about-four__points-list-img img {
  width: 100%;
  border-radius: 50%;
}

.about-four__points-list-content {
  position: relative;
  display: block;
  flex: 1;
}

.about-four__points-list-content h5 {
  font-size: 20px;
  font-weight: 700;
  line-height: 30px;
  color: #B5B7BB;
}

.about-four__points-list-content p {
  font-size: 16px;
  line-height: 16px;
  margin-top: 5px;
}

.about-four__points-2 {
  position: relative;
  display: block;
}

.about-four__points-2 li {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 30px;
}

.about-four__points-2 li + li {
  margin-top: 23px;
}

.about-four__points-2 li .icon {
  position: relative;
  display: inline-block;
}

.about-four__points-2 li .icon span {
  position: relative;
  display: inline-block;
  font-size: 50px;
  background: linear-gradient(270deg, #5CB0E9 0%, #3D72FC 100%);
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
          background-clip: text;
  transition: all 500ms linear;
  transition-delay: 0.1s;
  transform: scale(1);
}

.about-four__points-2 li:hover .icon span {
  transform: scale(0.9);
}

.about-four__points-2 li .content {
  position: relative;
  display: block;
  flex: 1;
}

.about-four__points-2 li .content h5 {
  font-size: 20px;
  font-weight: 500;
  line-height: 30px;
  color: #B5B7BB;
  margin-bottom: 3px;
}

@media only screen and (min-width: 1200px) and (max-width: 1319px) {
  .about-one__left .section-title__title br {
    display: none;
  }
  .counter-one__wrap {
    margin: 0 10px 0;
  }
  .counter-one__single {
    gap: 10px;
  }
  .counter-one__text {
    font-size: 17px;
  }
  .process-one__left {
    margin-right: -55px;
  }
  .process-one__right {
    margin-left: 0;
  }
  .process-one__process-list li {
    gap: 60px;
  }
  .process-one__process-list::before {
    left: 48%;
  }
  .process-one__process-content::before {
    left: -41.5px;
  }
  .process-one__process-list li:nth-child(2) .process-one__process-content::before {
    right: -42.5px;
  }
  .contact-one__right {
    margin-left: 0;
  }
  .about-two__experience-contact-and-btn {
    gap: 20px;
    flex-direction: column;
    align-items: baseline;
  }
  .about-two__experience-box::before,
  .about-two__call-box::before {
    display: none;
  }
  .about-two__right .section-title__title br {
    display: none;
  }
  .why-choose-one__left .section-title__title {
    font-size: 35px;
  }
  .contact-two__shape-1 {
    display: none;
  }
  .event-one__right {
    margin-left: 0;
  }
  .blog-two__right {
    margin-left: -50px;
  }
  .blog-two__meta-two li + li {
    margin-left: 16px;
  }
  .blog-two__meta-two li::before {
    left: -8px;
  }
  .footer-widget-two__support {
    padding-left: 70px;
  }
  .footer-widget-two__services {
    padding-left: 65px;
  }
  .services-three__single {
    padding: 30px 20px 30px;
  }
  .services-three__title {
    font-size: 22px;
  }
  .faq-one__img-box {
    margin-right: 180px;
  }
  .feature-two__list {
    justify-content: center;
  }
  .feature-two__list li {
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
  .team-two__carousel.owl-theme .owl-nav {
    left: -475px;
  }
  .services-four__left {
    margin-right: 295px;
  }
  .services-four__qualified-box {
    right: -25px;
  }
  .blog-page .blog-one__user {
    left: -55px;
  }
  .portfolio-details__points-box-two {
    gap: 75px;
  }
  .services-details__left {
    margin-right: 0;
  }
  .services-details__services-list-box {
    padding: 21px 15px 25px;
  }
}
/* Medium screen  */
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .servces-one__img-box {
    max-width: 600px;
    margin: 0 auto 0;
  }
  .servces-one__bottom-right {
    max-width: 700px;
    margin: 0 auto 0;
  }
  .about-one__left {
    max-width: 600px;
    margin: 0 auto 0;
  }
  .about-one__left .section-title__title {
    margin-right: 0;
  }
  .about-one__right {
    max-width: 600px;
    margin: 50px auto 0;
  }
  .counter-one__bg-shape {
    width: 100%;
  }
  .portfolio-one__tag {
    left: 10px;
  }
  .portfolio-one__tag span {
    padding: 9px 15px 8px;
  }
  .process-one__left {
    margin-top: 0;
  }
  .process-one__right {
    margin-left: 0;
    margin-top: 30px;
  }
  .process-one__process-list::before {
    left: 37.6%;
  }
  .contact-one__right {
    margin-left: 0;
  }
  .team-one__shape-1 {
    display: none;
  }
  .testimonial-one__bg {
    display: none;
  }
  .brand-one {
    padding-left: 0;
  }
  .footer-widget__quick-links {
    margin-left: 0;
    padding-left: 0;
  }
  .footer-widget__quick-links:before {
    display: none;
  }
  .footer-widget__support {
    padding-left: 0;
    margin-right: 0;
    margin-top: 43px;
  }
  .footer-widget__support:before {
    display: none;
  }
  .footer-widget__support:after {
    display: none;
  }
  .footer-widget__newsletter {
    margin-top: 43px;
  }
  .about-two__left {
    max-width: 620px;
    margin: 0 auto 0;
  }
  .about-two__right {
    max-width: 620px;
    margin: 50px auto 0;
  }
  .services-two__title {
    font-size: 20px;
  }
  .why-choose-one__left {
    max-width: 600px;
    margin: 0 auto 0;
  }
  .why-choose-one__right {
    max-width: 600px;
    margin: 50px auto 0;
  }
  .why-choose-one__shape-2 {
    display: none;
  }
  .process-two__text br {
    display: none;
  }
  .pricing-two__inner .row {
    --bs-gutter-x: 30px;
    justify-content: center;
  }
  .pricing-two__single-1 {
    margin-top: 0;
    border-radius: 40px;
    border: 1px solid rgba(var(--netisflow-white-rgb), 0.1);
  }
  .pricing-two__single-3 {
    margin-top: 30px;
    border-radius: 40px;
    border: 1px solid rgba(var(--netisflow-white-rgb), 0.1);
  }
  .contact-two__bg,
  .contact-two__shape-1 {
    display: none;
  }
  .contact-two__left {
    max-width: 600px;
    margin: 0 auto 0;
  }
  .contact-two__right {
    max-width: 600px;
    margin: 50px auto 0;
  }
  .event-one__left {
    max-width: 600px;
    margin: 0 auto 0;
  }
  .event-one__right {
    max-width: 660px;
    margin: 50px auto 0;
  }
  .blog-two__left {
    max-width: 625px;
    margin: 0 auto 0;
  }
  .blog-two__right {
    max-width: 625px;
    margin: 0 auto 0;
  }
  .newsletter-two__inner {
    flex-direction: column;
  }
  .newsletter-two__left {
    margin-bottom: 25px;
  }
  .footer-widget-two__quick-links {
    margin-top: 0;
    margin-left: 0;
  }
  .footer-widget-two__support {
    margin-top: 47px;
    padding-left: 0;
  }
  .footer-widget-two__services {
    margin-top: 47px;
    padding-left: 0;
  }
  .footer-widget-two__support:before,
  .footer-widget-two__services:before {
    display: none;
  }
  .about-three__left {
    max-width: 600px;
    margin: 0 auto 0;
  }
  .about-three__right {
    max-width: 600px;
    margin: 50px auto 0;
  }
  .services-three__single {
    padding: 30px 15px 30px;
  }
  .services-three__title {
    font-size: 20px;
  }
  .why-choose-two__left {
    max-width: 600px;
    margin: 0 auto 0;
  }
  .why-choose-two__right {
    max-width: 600px;
    margin: 50px auto 0;
  }
  .why-choose-two__shape-2,
  .why-choose-two__shape-3 {
    display: none;
  }
  .why-choose-two {
    padding: 140px 0 134px;
  }
  .feature-one__single {
    padding: 40px 20px 39px;
  }
  .faq-one__left {
    max-width: 600px;
    margin: 0 auto 0;
  }
  .faq-one__img-box {
    margin-right: 0;
  }
  .faq-one__right {
    max-width: 600px;
    margin: 50px auto 0;
  }
  .feature-two__list {
    justify-content: center;
  }
  .feature-two__list li {
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
  .feature-two__single {
    padding: 30px 20px 33px;
  }
  .about-four__left {
    max-width: 600px;
    margin: 0 auto 0;
  }
  .about-four__right {
    max-width: 600px;
    margin: 50px auto 0;
  }
  .about-four__right .section-title__title {
    margin-right: 0;
  }
  .about-four__right .section-title__title br {
    display: none;
  }
  .why-choose-three__single-left {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 50px;
    max-width: 600px;
    margin: 0 auto 0;
  }
  .why-choose-three__single {
    margin-bottom: 40px;
  }
  .why-choose-three__img {
    max-width: 600px;
    margin: 0 auto 50px;
  }
  .why-choose-three__img img {
    border-radius: 40px;
  }
  .why-choose-three {
    padding: 140px 0 94px;
  }
  .team-two__left {
    max-width: 600px;
  }
  .team-two__left .section-title__title {
    margin-right: 0;
  }
  .team-two__text br {
    display: none;
  }
  .team-two__right {
    margin-right: 0;
    margin-top: 50px;
  }
  .team-two__carousel.owl-theme .owl-nav {
    display: none;
  }
  .services-four__left {
    max-width: 600px;
    margin: 0 auto 0;
  }
  .services-four__img-box {
    display: flex;
    align-items: center;
    gap: 30px;
  }
  .services-four__img {
    max-width: 255px;
  }
  .services-four__img-2 {
    position: relative;
    top: 65px;
    right: 0;
    max-width: 255px;
    width: 100%;
  }
  .services-four__right {
    max-width: 600px;
    margin: 100px auto 0;
  }
  .services-four__right .section-title__title {
    margin-right: 0;
  }
  .services-four__right .section-title__title br {
    display: none;
  }
  .blog-details__left {
    margin-right: 0;
  }
  .blog-details__points-and-img {
    gap: 20px;
    flex-direction: column;
    align-items: baseline;
  }
  .blog-details__tag-and-share {
    flex-direction: column;
  }
  .blog-details__share-box {
    margin-top: 20px;
  }
  .blog-list__left {
    margin-right: 0;
  }
  .blog-list__left--two {
    margin-left: 0;
  }
  .faq-two__left {
    max-width: 650px;
    margin: 0 auto 50px;
  }
  .faq-two__right {
    max-width: 650px;
    margin: 0 auto 0;
  }
  .cta-two__left .section-title__title {
    font-size: 30px;
    line-height: 40px;
  }
  .cta-two__right {
    margin-left: 0;
    padding: 38px 20px 40px;
  }
  .portfolio-details__top-title {
    font-size: 50px;
    line-height: 60px;
  }
  .portfolio-details__portfolio-list {
    gap: 50px;
  }
  .portfolio-details__points-box-two {
    gap: 50px;
  }
  .services-details__left {
    margin-right: 0;
  }
  .services-details__points-list--two {
    margin-top: 20px;
  }
  .services-details__points-two--two {
    margin-top: 23px;
  }
  .team-details__left {
    margin-right: 90px;
  }
  .team-details__points-box {
    gap: 10px;
  }
  .skill-one__left {
    margin-right: 0;
  }
}
/* Tablet Layout: 768px. */
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .section-title__title br {
    display: none;
  }
  .servces-one__img-box {
    max-width: 600px;
    margin: 0 auto 0;
  }
  .servces-one__bottom-right {
    max-width: 700px;
    margin: 0 auto 0;
  }
  .about-one__left {
    max-width: 600px;
    margin: 0 auto 0;
  }
  .about-one__left .section-title__title {
    margin-right: 0;
  }
  .about-one__right {
    max-width: 600px;
    margin: 50px auto 0;
  }
  .counter-one__bg-shape {
    width: 100%;
  }
  .counter-one__wrap {
    margin: 0 10px 0;
  }
  .process-one__left {
    margin-top: 0;
  }
  .process-one__right {
    margin-left: 0;
    margin-top: 30px;
  }
  .process-one__process-list::before {
    left: 50.6%;
  }
  .contact-one__right {
    margin-left: 0;
    margin-top: 50px;
  }
  .team-one__shape-1 {
    display: none;
  }
  .testimonial-one__bg {
    display: none;
  }
  .brand-one {
    padding-left: 0;
  }
  .testimonial-one__bottom {
    flex-direction: column;
    align-items: baseline;
  }
  .testimonial-one__trustpilot-box {
    margin-top: 30px;
  }
  .testimonial-one__text {
    font-size: 20px;
    line-height: 30px;
  }
  .testimonial-one__carousel.owl-carousel .owl-dots {
    left: -30px;
  }
  .newsletter-one__img {
    display: none;
  }
  .site-footer__top-inner {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }
  .footer-widget__quick-links {
    margin-left: 0;
    padding-left: 0;
  }
  .footer-widget__quick-links:before {
    display: none;
  }
  .footer-widget__support {
    padding-left: 0;
    margin-right: 0;
    margin-top: 43px;
  }
  .footer-widget__support:before {
    display: none;
  }
  .footer-widget__support:after {
    display: none;
  }
  .footer-widget__newsletter {
    margin-top: 43px;
  }
  .about-two__left {
    max-width: 620px;
    margin: 0 auto 0;
  }
  .about-two__img-2 {
    right: -55px;
  }
  .about-two__right {
    max-width: 620px;
    margin: 50px auto 0;
  }
  .services-two__services-list-single {
    flex-direction: column;
    gap: 25px;
  }
  .why-choose-one__left {
    max-width: 600px;
    margin: 0 auto 0;
  }
  .why-choose-one__right {
    max-width: 600px;
    margin: 50px auto 0;
  }
  .why-choose-one__shape-2 {
    display: none;
  }
  .process-two__shape-1,
  .process-two__shape-2 {
    display: none;
  }
  .process-two ul li:nth-child(1),
  .process-two ul li:nth-child(3) {
    margin-top: 0;
  }
  .portfolio-two__content-box {
    left: 10px;
    right: 10px;
    gap: 10px;
    flex-direction: column;
    align-items: baseline;
  }
  .portfolio-two__title-2 {
    font-size: 25px;
    line-height: 35px;
  }
  .pricing-two__single-1 {
    margin-top: 0;
    margin-bottom: 30px;
    border-radius: 40px;
    border: 1px solid rgba(var(--netisflow-white-rgb), 0.1);
  }
  .pricing-two__single-3 {
    margin-top: 30px;
    border-radius: 40px;
    border: 1px solid rgba(var(--netisflow-white-rgb), 0.1);
  }
  .contact-two__bg,
  .contact-two__shape-1 {
    display: none;
  }
  .contact-two__left {
    max-width: 600px;
    margin: 0 auto 0;
  }
  .contact-two__right {
    max-width: 600px;
    margin: 50px auto 0;
  }
  .event-one__top {
    flex-direction: column;
    align-items: baseline;
  }
  .event-one__top-btn-box {
    top: 0;
    margin-top: 30px;
  }
  .event-one__left {
    max-width: 600px;
    margin: 0 auto 0;
  }
  .event-one__right {
    max-width: 660px;
    margin: 50px auto 0;
  }
  .blog-two__left {
    max-width: 625px;
    margin: 0 auto 0;
  }
  .blog-two__right {
    max-width: 625px;
    margin: 0 auto 0;
  }
  .newsletter-two__inner {
    flex-direction: column;
  }
  .newsletter-two__left {
    margin-bottom: 25px;
  }
  .site-footer-two__about {
    padding: 45px 25px 43px;
  }
  .footer-widget-two__quick-links {
    margin-top: 0;
    margin-left: 0;
  }
  .footer-widget-two__support {
    margin-top: 47px;
    padding-left: 0;
  }
  .footer-widget-two__services {
    margin-top: 47px;
    padding-left: 0;
  }
  .footer-widget-two__support:before,
  .footer-widget-two__services:before {
    display: none;
  }
  .site-footer-two__bottom-inner {
    flex-direction: column;
  }
  .site-footer-two__copyright {
    margin-bottom: 15px;
  }
  .about-three__left {
    max-width: 600px;
    margin: 0 auto 0;
  }
  .about-three__right {
    max-width: 600px;
    margin: 50px auto 0;
  }
  .services-three__single {
    padding: 30px 15px 30px;
  }
  .services-three__title {
    font-size: 20px;
  }
  .why-choose-two__left {
    max-width: 600px;
    margin: 0 auto 0;
  }
  .why-choose-two__right {
    max-width: 600px;
    margin: 50px auto 0;
  }
  .why-choose-two__shape-2,
  .why-choose-two__shape-3 {
    display: none;
  }
  .why-choose-two {
    padding: 140px 0 134px;
  }
  .cta-one__inner {
    flex-direction: column;
    text-align: center;
  }
  .cta-one__title {
    margin-bottom: 25px;
  }
  .faq-one__left {
    max-width: 600px;
    margin: 0 auto 0;
  }
  .faq-one__img-box {
    margin-right: 0;
  }
  .faq-one__right {
    max-width: 600px;
    margin: 50px auto 0;
  }
  .feature-two__list {
    justify-content: center;
  }
  .feature-two__list li {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .about-four__left {
    max-width: 600px;
    margin: 0 auto 0;
  }
  .about-four__img-2 {
    right: -50px;
  }
  .about-four__right {
    max-width: 600px;
    margin: 50px auto 0;
  }
  .about-four__right .section-title__title {
    margin-right: 0;
  }
  .about-four__right .section-title__title br {
    display: none;
  }
  .why-choose-three__single-left {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 50px;
    max-width: 600px;
    margin: 0 auto 0;
  }
  .why-choose-three__single {
    margin-bottom: 40px;
  }
  .why-choose-three__img {
    max-width: 600px;
    margin: 0 auto 50px;
  }
  .why-choose-three__img img {
    border-radius: 40px;
  }
  .why-choose-three {
    padding: 140px 0 94px;
  }
  .team-two__left {
    max-width: 600px;
  }
  .team-two__left .section-title__title {
    margin-right: 0;
  }
  .team-two__text br {
    display: none;
  }
  .team-two__right {
    margin-right: 0;
    margin-top: 50px;
  }
  .team-two__carousel.owl-theme .owl-nav {
    display: none;
  }
  .services-four__left {
    max-width: 600px;
    margin: 0 auto 0;
  }
  .services-four__img-box {
    display: flex;
    align-items: center;
    gap: 30px;
  }
  .services-four__img {
    max-width: 255px;
  }
  .services-four__img-2 {
    position: relative;
    top: 65px;
    right: 0;
    max-width: 255px;
    width: 100%;
  }
  .services-four__right {
    max-width: 600px;
    margin: 100px auto 0;
  }
  .services-four__right .section-title__title {
    margin-right: 0;
  }
  .services-four__right .section-title__title br {
    display: none;
  }
  .blog-page .blog-one__user {
    left: -55px;
  }
  .blog-details__left {
    margin-right: 0;
  }
  .sidebar {
    margin-top: 50px;
  }
  .blog-list__left {
    margin-right: 0;
  }
  .blog-list__left--two {
    margin-left: 0;
  }
  .sidebar.sidebar--two {
    margin-top: 0;
    margin-bottom: 50px;
  }
  .faq-two__left {
    max-width: 650px;
    margin: 0 auto 50px;
  }
  .faq-two__right {
    max-width: 650px;
    margin: 0 auto 0;
  }
  .cta-two {
    padding: 140px 0 140px;
  }
  .cta-two__bg-color {
    top: 0;
  }
  .cta-two__left {
    margin-top: 0;
  }
  .cta-two__right {
    margin-top: 50px;
  }
  .portfolio-details__top {
    flex-direction: column;
    align-items: baseline;
  }
  .portfolio-details__top-title {
    font-size: 45px;
    line-height: 55px;
  }
  .portfolio-details__get-touch {
    margin-top: 30px;
  }
  .portfolio-details__portfolio-list {
    gap: 10px;
    flex-direction: column;
    align-items: baseline;
  }
  .portfolio-details__portfolio-page li {
    gap: 30px;
  }
  .portfolio-details__points-box-two {
    gap: 30px;
  }
  .portfolio-details__points-two-single p br {
    display: none;
  }
  .services-details__left {
    margin-right: 0;
    margin-bottom: 50px;
  }
  .services-details__points-list--two {
    margin-top: 20px;
  }
  .services-details__points-two--two {
    margin-top: 23px;
  }
  .team-details__right {
    margin-top: 60px;
  }
  .skill-one__left {
    margin-right: 0;
    margin-bottom: 50px;
  }
  .coming-soon-page {
    height: auto !important;
    padding: 110px 0 120px;
  }
  .coming-soon-page__content .big-title {
    font-size: 55px;
  }
  .coming-soon-page .timer-box .countdown-timer li {
    float: none;
  }
  .coming-soon-page .timer-box .countdown-timer li + li {
    margin-top: 20px;
  }
  .coming-soon-page__content {
    top: 0%;
    transform: translateY(0%);
  }
  .coming-soon-page__content .inner .text p br {
    display: none;
  }
  .coming-soon-page__subscribe-box form {
    flex-direction: column;
  }
}
/* Mobile Layout: 320px. */
@media only screen and (max-width: 767px) {
  .section-title {
    margin-bottom: 38px;
  }
  .section-title__title {
    font-size: 25px;
    line-height: 35px;
    margin-top: 10px;
  }
  .section-title__title br {
    display: none;
  }
  .servces-one__top {
    margin-bottom: 30px;
  }
  .servces-one__top-right {
    margin-top: 30px;
  }
  .servces-one__img-box {
    margin-right: 0;
  }
  .services-one__services-single {
    flex-direction: column;
    align-items: baseline;
  }
  .services-one__count-and-content {
    margin-bottom: 20px;
  }
  .services-one__text br {
    display: none;
  }
  .servces-one {
    padding: 80px 0 61px;
  }
  .about-one__btn-and-call-box {
    flex-direction: column;
    align-items: baseline;
  }
  .about-one__right {
    margin-left: 0;
    margin-top: 50px;
  }
  .about-one__left-img-box {
    margin-right: 0;
    margin-top: 0;
  }
  .about-one__right-img-box {
    margin-left: 0;
    margin-top: 50px;
  }
  .about-one {
    padding: 80px 0 0px;
  }
  .counter-one__bg-shape {
    display: none;
  }
  .counter-one__wrap {
    margin: 0 10px 0;
  }
  .counter-one {
    padding: 80px 0 0;
  }
  .portfolio-one__top {
    flex-direction: column;
    align-items: baseline;
  }
  .portfolio-one__round-text-box {
    top: 0;
    margin-top: 20px;
  }
  .portfolio-one__content {
    flex-direction: column;
    align-items: baseline;
  }
  .portfolio-one__arrow {
    margin-top: 20px;
  }
  .portfolio-one {
    padding: 80px 0 70px;
  }
  .process-one__left {
    margin-top: 0;
  }
  .process-one__text br {
    display: none;
  }
  .process-one__right {
    margin-left: 0;
    margin-top: 50px;
  }
  .process-one__process-list::before {
    display: none;
  }
  .process-one__process-list li:nth-child(1) {
    margin-left: 0;
  }
  .process-one__process-list li:nth-child(3) {
    margin-left: 0;
  }
  .process-one__process-list li:nth-child(5) {
    margin-left: 0;
  }
  .process-one__process-content::before {
    display: none;
  }
  .process-one__process-list li {
    flex-direction: column;
    align-items: baseline;
    gap: 10px;
  }
  .process-one__process-list li:nth-child(2) {
    flex-direction: column-reverse;
    align-items: flex-end;
  }
  .process-one__process-list li:nth-child(4) {
    flex-direction: column-reverse;
    align-items: flex-end;
  }
  .process-one__process-list li:nth-child(6) {
    flex-direction: column-reverse;
    align-items: flex-end;
  }
  .process-one__process-list li + li {
    margin-top: 20px;
  }
  .process-one {
    padding: 80px 0 70px;
  }
  .contact-one__right {
    margin-left: 0;
    margin-top: 50px;
  }
  .contact-one__left {
    padding: 40px 10px 30px;
  }
  .contact-one {
    padding: 80px 0 70px;
  }
  .team-one__shape-1 {
    display: none;
  }
  .team-one__carousel.owl-carousel .owl-dots {
    display: none;
  }
  .team-one {
    padding: 80px 0 40px;
  }
  .sliding-text-two__wrap {
    padding-top: 50px;
  }
  .pricing-one__single {
    padding: 43px 15px 45px;
  }
  .pricing-one {
    padding: 80px 0 50px;
  }
  .brand-one {
    padding-left: 0;
    margin-top: 80px;
  }
  .brand-one__left {
    flex-direction: column;
    justify-content: center;
    text-align: center;
    margin-bottom: 30px;
  }
  .testimonial-one__bg {
    display: none;
  }
  .testimonial-one__bottom {
    flex-direction: column;
    align-items: baseline;
  }
  .testimonial-one__single {
    gap: 25px;
    flex-direction: column;
    align-items: baseline;
  }
  .testimonial-one__trustpilot-box {
    margin-top: 30px;
  }
  .testimonial-one__text {
    font-size: 20px;
    line-height: 30px;
  }
  .testimonial-one__carousel.owl-theme .owl-nav {
    display: none;
  }
  .testimonial-one__carousel.owl-carousel .owl-dots {
    display: none;
  }
  .testimonial-one {
    padding: 80px 0 0px;
  }
  .newsletter-one__inner {
    padding: 75px 15px 60px;
  }
  .newsletter-one__img {
    display: none;
  }
  .newsletter-one {
    padding: 80px 0 0;
  }
  .newsletter-three {
    padding: 80px 0 80px;
  }
  .newsletter-one__title {
    font-size: 40px;
  }
  .newsletter-one__text br {
    display: none;
  }
  .newsletter-one__contact-input-box {
    flex-direction: column;
  }
  .blog-one__carousel.owl-carousel .owl-dots {
    display: none;
  }
  .blog-one__carousel.owl-theme .owl-nav {
    position: relative;
    padding-top: 40px;
  }
  .blog-one {
    padding: 80px 0 80px;
  }
  .site-footer__top-inner {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }
  .site-footer__top-text br {
    display: none;
  }
  .footer-widget__quick-links {
    margin-left: 0;
    padding-left: 0;
    margin-top: 43px;
  }
  .footer-widget__quick-links:before {
    display: none;
  }
  .footer-widget__support {
    padding-left: 0;
    margin-right: 0;
    margin-top: 43px;
  }
  .footer-widget__support:before {
    display: none;
  }
  .footer-widget__support:after {
    display: none;
  }
  .footer-widget__newsletter {
    margin-top: 43px;
  }
  .site-footer__shape-2 {
    display: none;
  }
  .about-two__left {
    margin-right: 0;
    margin-top: 0;
  }
  .about-two__img-2 {
    position: relative;
    bottom: 0;
    right: 0;
    margin-top: 30px;
  }
  .about-two__client-box {
    margin-left: 0;
  }
  .about-two__right {
    margin-top: 50px;
  }
  .about-two__points-box {
    flex-direction: column;
    gap: 20px;
  }
  .about-two__experience-contact-and-btn {
    gap: 20px;
    flex-direction: column;
    align-items: baseline;
  }
  .about-two__experience-box::before,
  .about-two__call-box::before {
    display: none;
  }
  .about-two__right .section-title__title br {
    display: none;
  }
  .about-two {
    padding: 80px 0 80px;
  }
  .services-two__top {
    flex-direction: column;
    align-items: baseline;
  }
  .services-two__round-text-box {
    top: 0;
    margin-top: 27px;
  }
  .services-two__services-list-single {
    flex-direction: column;
    gap: 25px;
    align-items: baseline;
  }
  .services-two__services-list-inner {
    gap: 7px;
    flex-direction: column;
    align-items: baseline;
  }
  .services-two__hover-img {
    display: none;
  }
  .services-two__count-and-title {
    gap: 10px;
  }
  .services-two {
    padding: 80px 0 80px;
  }
  .why-choose-one__left .section-title__title {
    margin-right: 0;
  }
  .why-choose-one__btn-and-client-info {
    gap: 20px;
    flex-direction: column;
    align-items: baseline;
  }
  .why-choose-one__right {
    margin-left: 0;
    margin-right: 0;
    margin-top: 60px;
  }
  .why-choose-one__shape-2 {
    display: none;
  }
  .why-choose-one {
    padding: 80px 0 0;
  }
  .process-two__shape-1,
  .process-two__shape-2 {
    display: none;
  }
  .process-two ul li:nth-child(1),
  .process-two ul li:nth-child(3) {
    margin-top: 0;
  }
  .process-two__text br {
    display: none;
  }
  .process-two .section-title {
    margin-bottom: 38px;
  }
  .process-two {
    padding: 80px 0 50px;
  }
  .portfolio-two__content-box {
    left: 10px;
    right: 10px;
    gap: 10px;
    flex-direction: column;
    align-items: baseline;
  }
  .portfolio-two__title-2 {
    font-size: 25px;
    line-height: 35px;
  }
  .pricing-two__inner {
    margin-left: 0;
    margin-right: 0;
  }
  .pricing-two__single {
    padding: 40px 10px 40px;
  }
  .pricing-two__single-1 {
    margin-top: 0;
    margin-bottom: 30px;
    border-radius: 40px;
    border: 1px solid rgba(var(--netisflow-white-rgb), 0.1);
  }
  .pricing-two__single-3 {
    margin-top: 30px;
    border-radius: 40px;
    border: 1px solid rgba(var(--netisflow-white-rgb), 0.1);
  }
  .pricing-two {
    padding: 80px 0 80px;
  }
  .contact-two__bg,
  .contact-two__shape-1 {
    display: none;
  }
  .contact-two__left {
    margin-left: 0;
  }
  .contact-two__text br {
    display: none;
  }
  .contact-two__right {
    margin-top: 50px;
    padding: 35px 15px 35px;
  }
  .contact-two__contact-list li .content p {
    font-size: 20px;
    line-height: 30px;
  }
  .contact-two {
    padding: 140px 0 80px;
  }
  .event-one__top {
    flex-direction: column;
    align-items: baseline;
  }
  .event-one__top-btn-box {
    top: 0;
    margin-top: 30px;
  }
  .event-one__right {
    margin-left: 0;
    margin-top: 50px;
  }
  .event-one__title-and-countdown-box {
    padding: 30px 15px 30px;
    flex-direction: column;
    align-items: baseline;
  }
  .event-one__title {
    margin-bottom: 15px;
  }
  .event-one__meta-and-btn-box {
    padding: 17px 15px 17px;
    flex-direction: column;
    align-items: baseline;
  }
  .event-one__btn-box {
    margin-top: 20px;
  }
  .event-one {
    padding: 80px 0 50px;
  }
  .testimonial-two {
    padding: 80px 0 80px;
  }
  .blog-two__left {
    margin-right: 0;
  }
  .blog-two__content {
    padding-left: 50px;
  }
  .blog-two__single-two {
    flex-direction: column;
    align-items: baseline;
  }
  .blog-two__user-two {
    left: -55px;
  }
  .blog-two__content-two {
    padding-left: 50px;
    margin-top: 20px;
  }
  .blog-two__meta-two li + li {
    margin-left: 10px;
  }
  .blog-two__meta-two li::before {
    left: -18px;
  }
  .blog-two {
    padding: 80px 0 40px;
  }
  .newsletter-two__inner {
    flex-direction: column;
  }
  .newsletter-two__left {
    margin-bottom: 25px;
    text-align: center;
  }
  .newsletter-two__input input[type=email] {
    padding: 0 15px 0;
    padding-right: 15px;
  }
  .newsletter-two__form .thm-btn {
    position: relative;
    top: 0;
    right: 0;
    margin-top: 10px;
  }
  .site-footer-two__about {
    padding: 45px 25px 43px;
  }
  .footer-widget-two__quick-links {
    margin-top: 47px;
    margin-left: 0;
  }
  .footer-widget-two__support {
    margin-top: 38px;
    padding-left: 0;
  }
  .footer-widget-two__services {
    margin-top: 38px;
    padding-left: 0;
  }
  .footer-widget-two__support:before,
  .footer-widget-two__services:before {
    display: none;
  }
  .site-footer-two__bottom-inner {
    flex-direction: column;
    text-align: center;
  }
  .site-footer-two__copyright {
    margin-bottom: 15px;
  }
  .site-footer-two__social-box {
    flex-direction: column;
  }
  .about-two__right .section-title__title {
    margin-right: 0;
  }
  .about-one__left .section-title__title {
    margin-right: 0;
  }
  .about-three__left {
    margin-right: 0;
    margin-bottom: 30px;
  }
  .about-three__btn-and-call-box {
    flex-direction: column;
    align-items: baseline;
  }
  .about-three {
    padding: 80px 0 72px;
  }
  .about-four__left {
    margin-right: 0;
    margin-top: 0;
  }
  .about-four__img-2 {
    position: relative;
    right: 0;
    bottom: 0;
    margin-top: 30px;
  }
  .about-four__img-2 img {
    width: 100%;
  }
  .about-four__right {
    margin-top: 50px;
  }
  .about-four__right .section-title__title {
    margin-right: 0;
  }
  .about-four__right .section-title__title br {
    display: none;
  }
  .about-four__points-box {
    align-items: baseline;
    gap: 20px;
    flex-direction: column;
  }
  .about-four__points-list li + li {
    margin-top: 20px;
  }
  .about-four__points-2 li .content p br {
    display: none;
  }
  .about-four__experience {
    right: 0;
  }
  .about-four {
    padding: 80px 0 70px;
  }
}
.brands-carousel-three .swiper-slide {
  width: auto;
}

.fintech-cto-content {
  background-color: #2554a0;
  border-radius: 25px;
  position: relative;
  padding: 0 40px 0 80px;
  overflow: hidden;
}
@media (max-width: 992.98px) {
  .fintech-cto-content {
    padding: 50px 50px 0;
  }
  .fintech-cto-content .content h2 {
    font-size: 35px;
  }
}
@media (max-width: 992.98px) and (max-width: 767.98px) {
  .fintech-cto-content .content h2 {
    font-size: 25px !important;
  }
}
@media (max-width: 992.98px) {
  .fintech-cto-content .content p {
    font-size: 18px;
  }
  .fintech-cto-content .content .fintech-green-btn {
    margin-top: 10px;
  }
  .fintech-cto-content .image {
    padding-top: 30px;
  }
}
.fintech-cto-content::before {
  content: "";
  width: 410px;
  height: 410px;
  border-radius: 410px;
  background: #72d802;
  filter: blur(152px);
  position: absolute;
  right: 0;
  top: 0;
}
@media (max-width: 575.98px) {
  .fintech-cto-content::before {
    top: unset;
    width: 240px;
    height: 240px;
    bottom: 0 !important;
  }
}
.fintech-cto-content .content {
  position: relative;
}
.fintech-cto-content .content h2 {
  color: #fff;
  font-weight: normal;
  font-size: 45px;
  margin-bottom: 10px;
}
.fintech-cto-content .content h2 span {
  color: #72d802;
  font-weight: bold;
}
.fintech-cto-content .content p {
  font-size: 24px;
  color: #fff;
}
.fintech-cto-content .content .fintech-green-btn {
  margin-top: 20px;
}
.fintech-cto-content .image {
  padding-top: 40px;
  position: relative;
}

.fintech-green-btn {
  background-color: transparent;
  border: 2px solid #72d802;
  color: #ffffff !important;
  border-radius: 5px;
  padding: 14.5px 35.2px;
  font-weight: 600;
  transition: 0.5s;
}

@media only screen and (max-width: 767px) {
  .fintech-cto-content .image {
    padding-top: 30px;
  }
}
.cta-form-section {
  background-color: #032E66;
  border-radius: 25px;
  position: relative;
  padding: 50px;
  overflow: hidden;
  z-index: 1;
}

.cta-form-section::before {
  content: "";
  width: 410px;
  height: 410px;
  border-radius: 410px;
  filter: blur(152px);
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
}
@media (max-width: 992.98px) {
  .cta-form-section::before {
    background: unset;
  }
}

.cta-content-wrapper {
  position: relative;
  z-index: 2;
}

.cta-content h2 {
  color: #fff;
  font-weight: normal;
  font-size: 45px;
  margin-bottom: 10px;
}

.cta-content h2 span {
  color: #8dcc49;
  font-weight: bold;
}

.cta-content p {
  font-size: 18px;
  color: #fff;
}

.cta-green-btn {
  background-color: transparent;
  border: 2px solid #72d802;
  color: #ffffff !important;
  border-radius: 5px;
  padding: 14.5px 35.2px;
  font-weight: 600;
  transition: 0.5s;
  display: inline-block;
  margin-top: 20px;
  text-decoration: none;
}

.cta-green-btn:hover {
  background-color: #72d802;
  color: #063A30 !important;
}

.cta-image {
  padding-top: 40px;
  position: relative;
}

@media (max-width: 992.98px) {
  .cta-form-section {
    padding: 50px 30px 40px;
  }
  .cta-content h2 {
    font-size: 30px;
  }
  .cta-content p {
    font-size: 16px;
  }
  .cta-image {
    padding-top: 30px;
  }
}
/* FORM OVERLAP EFFECT */
.contact-form {
  margin-top: -100px;
  position: relative;
  z-index: 3;
}

.cta-form-section .contact-form {
  margin-top: unset !important;
}
@media (max-width: 992.98px) {
  .cta-form-section .contact-form {
    margin-top: 30px !important;
  }
}

.cta-form-section .contact-info-row {
  gap: 20px;
  margin-top: 20px;
}

.cta-form-section .contact-box {
  flex: 1 1 250px;
  max-width: 31%;
  min-width: 250px;
  border: 1px solid #286ec8;
    padding: 20px;
    border-radius: 10px;
    color: #333;
    background: #043e8a;
  transition: all 0.3s ease-in-out;
}

.cta-form-section .contact-box:hover {
  transform: translateY(-5px);
}

.cta-form-section .contact-box i {
  font-size: 24px;
  color: #e0e0e0;
  margin-bottom: 10px;
  display: block;
}

.cta-form-section .contact-box h4 {
  font-size: 18px;
  font-weight: 600;
  margin: 10px 0;
  color: #e0e0e0;
}

.cta-form-section .contact-box p,
.cta-form-section .contact-box a {
  font-size: 14px;
  color: #e0e0e0;
  line-height: 1.6;
  margin: 0;
  text-decoration: none;
}

.cta-form-section .contact-box a:hover {
  color: #72d802;
  text-decoration: underline;
}

@media (max-width: 991px) {
  .cta-form-section .contact-box {
    max-width: 48%;
  }
}
@media (max-width: 576px) {
  .cta-form-section .contact-box {
    max-width: 100%;
  }
}
/*--------------------------------------------------------------
# Process One
--------------------------------------------------------------*/
.process-one {
  position: relative;
  display: block;
  background-color: var(--techguru-black);
  padding: 132px 0 133px;
  counter-reset: count;
  overflow: hidden;
  z-index: 1;
}

.process-one::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(var(--techguru-white-rgb), 0.05);
  z-index: -1;
}

.process-one__bg-shape {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  opacity: 0.1;
  height: 192px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  transform: translateY(-50%);
  z-index: -1;
}

.process-one__shape-1 {
  position: absolute;
  bottom: 80px;
  left: 730px;
  z-index: -1;
}

.process-one__shape-1 img {
  width: auto;
}

.process-one__shape-2 {
  position: absolute;
  left: 0%;
  right: 49.9%;
  top: -29.21%;
  bottom: -1.72%;
  background: radial-gradient(50% 50% at 50% 50%, #6669D8 0%, rgba(7, 12, 20, 0) 100%);
  opacity: 0.3;
  z-index: -1;
  filter: blur(120px);
  z-index: -1;
}

.process-one__shape-3 {
  position: absolute;
  width: 740px;
  height: 456px;
  top: 145px;
  right: 320px;
  background: radial-gradient(50% 50% at 50% 50%, rgba(232, 22, 85, 0.4) 0%, rgba(7, 12, 20, 0) 100%);
  opacity: 0.7;
  z-index: -1;
  filter: blur(120px);
  z-index: -1;
}

.process-one__left {
  position: relative;
  display: block;
  margin-top: 34px;
}

.process-one__left .section-title {
  margin-bottom: 25px;
}

.process-one__btn-box {
  position: relative;
  display: block;
  margin-top: 23px;
}

.process-one__right {
  position: relative;
  display: block;
  margin-left: 30px;
}

.process-one__process-list {
  position: relative;
  display: block;
}

.process-one__process-list::before {
  content: "";
  position: absolute;
  width: 2px;
  height: 1050px;
  background: linear-gradient(270deg, #FA5674 0%, #6065D4 100%);
  left: 55.4%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  opacity: 0.1;
}

.process-one__process-list li {
  position: relative;
  display: flex;
  align-items: center;
  gap: 135px;
}

.process-one__process-list li + li {
  margin-top: 42px;
}

.process-one__process-count {
  position: relative;
  display: block;
  color: #016c9a !important;
}

.process-one__process-count::before {
  position: relative;
  display: inline-block;
  font-size: 80px;
  line-height: 80px;
  font-weight: 400;
  counter-increment: count 1;
  content: "0" counter(count);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.29) 0%, rgba(8, 17, 31, 0) 100%);
  -webkit-background-clip: text;
  text-transform: capitalize;
}

.process-one__process-content {
  position: relative;
  display: block;
}

.process-one__process-title {
  font-size: 24px;
  font-weight: 700;
  line-height: 34px;
  background: linear-gradient(#5eb300, #016c9a);
  background-clip: border-box;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.process-one__process-text {
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  margin-top: 12px;
  width: 260px;
}

.process-one__process-list li:nth-child(2) .process-one__process-content,
.process-one__process-list li:nth-child(4) .process-one__process-content,
.process-one__process-list li:nth-child(6) .process-one__process-content {
  text-align: right;
}

.process-one__process-list li:nth-child(1) {
  margin-left: 188px;
}

.process-one__process-list li:nth-child(3),
.process-one__process-list li:nth-child(5) {
  margin-left: 165px;
}

.process-one__process-list li:nth-child(2) .process-one__process-content,
.process-one__process-list li:nth-child(4) .process-one__process-content,
.process-one__process-list li:nth-child(6) .process-one__process-content {
  text-align: right;
}

.process-one__process-content::before {
  content: "";
  position: absolute;
  width: 20.45px;
  height: 20.45px;
  border-radius: 50%;
  background: linear-gradient(270deg, #FA5674 0%, #6065D4 100%);
  top: 50%;
  left: -73.5px;
  transform: translateY(-50%);
}

.process-one__process-list li:nth-child(2) .process-one__process-content::before,
.process-one__process-list li:nth-child(4) .process-one__process-content::before,
.process-one__process-list li:nth-child(6) .process-one__process-content::before {
  left: inherit;
  right: -85.5px;
  background: linear-gradient(270deg, #5CB0E9 0%, #3D72FC 100%);
}

/*--------------------------------------------------------------
# Process Two
--------------------------------------------------------------*/
.process-two {
  position: relative;
  display: block;
  counter-reset: count;
  padding: 140px 0 110px;
  z-index: 1;
}

.process-two__bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  z-index: -1;
}

.process-two__bg::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, rgba(11, 25, 44, 0.7) 0%, #0B192C 100%);
  z-index: -1;
}

.process-two__bg-shape {
  position: absolute;
  left: 0;
  right: 0;
  top: 295px;
  height: 192px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top center;
  z-index: -1;
  display: none;
}

.process-two .section-title {
  margin-bottom: 78px;
}

.process-two ul li:nth-child(1),
.process-two ul li:nth-child(3) {
  margin-top: 80px;
}

.process-two__single {
  position: relative;
  display: block;
  text-align: center;
  margin-bottom: 23px;
}

.process-two__count {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  width: 100px;
  height: 100px;
  z-index: 1;
}

.process-two__count::before {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  bottom: 0;
  left: 50%;
  width: 80px;
  height: 80px;
  background: linear-gradient(270deg, #5CB0E9 0%, #3D72FC 100%);
  border-radius: 50%;
  font-size: 40px;
  line-height: 40px;
  font-weight: 700;
  color: var(--techguru-white);
  counter-increment: count 1;
  content: "0" counter(count);
  transform: translateX(-50%);
  z-index: 1;
}

.process-two ul li:nth-child(2) .process-two__count::before {
  background: linear-gradient(270deg, #FA5674 0%, #6065D4 100%);
}

.process-two__count::after {
  content: "";
  position: absolute;
  top: 0px;
  left: 0px;
  right: 0px;
  bottom: 0px;
  border-radius: 50%;
  border: 1px solid transparent;
  background: linear-gradient(-90deg, #5CB0E9, #3D72FC) border-box;
  -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  z-index: -1;
}

.process-two ul li:nth-child(2) .process-two__count::after {
  border: 1px solid transparent;
  background: linear-gradient(-90deg, #FA5674, #6065D4) border-box;
  -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}

.process-two__title {
  font-size: 24px;
  font-weight: 500;
  line-height: 34px;
  color: var(--techguru-white);
  margin: 19px 0 12px;
}

.process-two__text {
  font-size: 16px;
  line-height: 24px;
}

.process-two__shape-1 {
  position: absolute;
  top: 55px;
  left: -142px;
}

.process-two__shape-1 img {
  width: auto;
}

.process-two__shape-2 {
  position: absolute;
  top: 25px;
  right: -142px;
}

.process-two__shape-2 img {
  width: auto;
}

/* Mobile Layout: 320px. */
@media only screen and (max-width: 767px) {
  .process-one__left {
    margin-top: 0;
  }
  .process-one__text br {
    display: none;
  }
  .process-one__right {
    margin-left: 0;
    margin-top: 50px;
  }
  .process-one__process-list::before {
    display: none;
  }
  .process-one__process-list li:nth-child(1) {
    margin-left: 0;
  }
  .process-one__process-list li:nth-child(3),
  .process-one__process-list li:nth-child(5) {
    margin-left: 0;
  }
  .process-one__process-content::before {
    display: none;
  }
  .process-one__process-list li {
    flex-direction: column;
    align-items: baseline;
    gap: 10px;
  }
  .process-one__process-list li:nth-child(2) {
    flex-direction: column-reverse;
    align-items: flex-end;
  }
  .process-one__process-list li + li {
    margin-top: 20px;
  }
  .process-one {
    padding: 80px 0 70px;
  }
}
/*--------------------------------------------------------------
# End
--------------------------------------------------------------*/
.testimonial-area {
  position: relative;
}
.testimonial-area .section-title h2 {
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}
.testimonial-area .owl-nav {
  margin-top: 0;
}
.testimonial-area .owl-nav .owl-prev {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 30px;
  font-size: 30px !important;
  width: 40px;
  transition: 0.7s;
  height: 40px;
  border-radius: 50px;
  line-height: 42px;
  background-color: transparent !important;
  color: #72d802 !important;
}
.testimonial-area .owl-nav .owl-prev:hover {
  color: #72d802 !important;
}
.testimonial-area .owl-nav .owl-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  transition: 0.7s;
  right: 30px;
  font-size: 30px !important;
  width: 40px;
  transition: 0.7s;
  height: 40px;
  border-radius: 50px;
  line-height: 42px;
  background-color: transparent !important;
  color: #72d802 !important;
}
.testimonial-area .owl-nav .owl-next:hover {
  color: #72d802 !important;
}
.testimonial-area .owl-carousel .owl-item img {
  width: 110px;
  margin: auto;
  border-radius: 50%;
}

.testimonial-area-bg {
  background-color: #ffffff;
}

@media (max-width: 992.98px) {
  .testimonial-shape-img {
    opacity: 25%;
  }
}
.testimonial-shape-img .img-shape1 {
  position: absolute;
  top: 10%;
  left: 5%;
}
.testimonial-shape-img .img-shape1 img {
  border-radius: 50%;
  border: 10px solid #D7F8FB;
  max-width: 80px;
  height: 80px;
}
.testimonial-shape-img .img-shape2 {
  position: absolute;
  bottom: 15%;
  left: 20%;
}
.testimonial-shape-img .img-shape2 img {
  border-radius: 50%;
  border: 10px solid #D7F8FB;
  max-width: 60px;
  height: 60px;
}
.testimonial-shape-img .img-shape3 {
  position: absolute;
  top: 10%;
  right: 5%;
}
.testimonial-shape-img .img-shape3 img {
  border-radius: 50%;
  border: 10px solid #D7F8FB;
  max-width: 80px;
  height: 80px;
}
.testimonial-shape-img .img-shape4 {
  position: absolute;
  bottom: 15%;
  right: 20%;
}
.testimonial-shape-img .img-shape4 img {
  border-radius: 50%;
  border: 10px solid #D7F8FB;
  max-width: 60px;
  height: 60px;
}

.testimonial-item {
  text-align: center;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  min-height: 420px;
}
.testimonial-item i {
  color: #72d802;
  font-size: 40px;
  line-height: 1;
}
.testimonial-item p {
  font-size: 20px;
  margin-bottom: 20px;
}
.testimonial-item .testimonial-avatar h3 {
  font-size: 20px;
  color: #72d802;
  margin-bottom: 0;
}
.testimonial-item .testimonial-avatar span {
  display: block;
  margin-bottom: 10px;
}
.testimonial-item .testimonial-avatar img {
  max-width: 65px;
}

.testimonial-area-two {
  background-color: #ffffff;
}

.testimonial-slider-two {
  position: relative;
}
.testimonial-slider-two .owl-dots {
  position: absolute;
  margin-top: 0 !important;
  margin-bottom: 0 !important;
  bottom: 50px;
  left: 0;
  right: 0;
}
.testimonial-slider-two .owl-dots .owl-dot span {
  background-color: #ffffff !important;
  transition: 0.7s;
  margin: 0 7px;
  width: 12px !important;
  height: 12px !important;
  position: relative;
  z-index: 1;
}
.testimonial-slider-two .owl-dots .owl-dot span::before {
  content: "";
  position: absolute;
  z-index: -1;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  width: 20px;
  height: 20px;
  background-color: transparent;
  border: 1px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  transition: 0.7s;
}
.testimonial-slider-two .owl-dots .owl-dot.active span {
  width: 10px !important;
  height: 10px !important;
}
.testimonial-slider-two .owl-dots .owl-dot.active span::before {
  opacity: 1;
}
.testimonial-slider-two .owl-dots .owl-dot:hover span {
  width: 10px !important;
  height: 10px !important;
}
.testimonial-slider-two .owl-dots .owl-dot:hover span::before {
  opacity: 1;
}

.testimonial-slider-item {
  padding: 80px 50px 100px;
  position: relative;
  background-color: #72d802;
}
.testimonial-slider-item i {
  color: #72d802;
  font-size: 90px;
  line-height: 1;
}
.testimonial-slider-item .icon {
  line-height: 1;
  position: absolute;
  top: 30px;
  right: 30px;
  color: #ffffff;
}
.testimonial-slider-item .icon i {
  font-size: 50px;
}
.testimonial-slider-item p {
  font-size: 20px;
  margin-bottom: 25px;
}
.testimonial-slider-item .testimonial-avatar {
  position: relative;
  padding-left: 80px;
}
.testimonial-slider-item .testimonial-avatar h3 {
  font-size: 20px;
  color: #ffffff;
  margin-bottom: 0;
}
.testimonial-slider-item .testimonial-avatar span {
  display: block;
  margin-bottom: 10px;
}
.testimonial-slider-item .testimonial-avatar img {
  max-width: 60px;
  position: absolute;
  top: -6px;
  left: 0;
  border-radius: 50%;
}

.testimonial-slider-content {
  margin-left: 20px;
}
.testimonial-slider-content .section-title {
  margin-bottom: 18px;
}
.testimonial-slider-content .section-title h2 {
  margin-bottom: 12px;
}
.testimonial-slider-content p {
  margin-bottom: 0;
}
.testimonial-slider-content .default-btn-two {
  margin-top: 30px;
}

.testimonial-area-three {
  border-top-left-radius: 100px;
  border-bottom-right-radius: 100px;
  position: relative;
  z-index: 1;
}
.testimonial-area-three::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-color: #ffffff;
}
.testimonial-area-three .owl-dots {
  position: absolute;
  margin-top: 0 !important;
  margin-bottom: 0 !important;
  bottom: -50px;
  left: 0;
  right: 0;
}
.testimonial-area-three .owl-dots .owl-dot span {
  background-color: #ffffff !important;
  transition: 0.7s;
  margin: 0 7px;
  width: 12px !important;
  height: 12px !important;
  position: relative;
  z-index: 1;
}
.testimonial-area-three .owl-dots .owl-dot span::before {
  content: "";
  position: absolute;
  z-index: -1;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  width: 20px;
  height: 20px;
  background-color: transparent;
  border: 1px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  transition: 0.7s;
}
.testimonial-area-three .owl-dots .owl-dot.active span {
  width: 10px !important;
  height: 10px !important;
}
.testimonial-area-three .owl-dots .owl-dot.active span::before {
  opacity: 1;
}
.testimonial-area-three .owl-dots .owl-dot:hover span {
  width: 10px !important;
  height: 10px !important;
}
.testimonial-area-three .owl-dots .owl-dot:hover span::before {
  opacity: 1;
}

.testimonial-slider-card {
  position: relative;
}
.testimonial-slider-card .section-title {
  margin-bottom: 20px;
}
.testimonial-slider-card i {
  position: absolute;
  bottom: 0;
  right: 0;
  color: #ffffff;
  font-size: 90px;
  line-height: 1;
}
.testimonial-slider-card p {
  font-size: 20px;
  margin-bottom: 25px;
}
.testimonial-slider-card .testimonial-avatar {
  position: relative;
  padding-left: 80px;
}
.testimonial-slider-card .testimonial-avatar h3 {
  font-size: 20px;
  color: #ffffff;
  margin-bottom: 0;
}
.testimonial-slider-card .testimonial-avatar span {
  display: block;
  margin-bottom: 10px;
}
.testimonial-slider-card .testimonial-avatar img {
  max-width: 60px;
  position: absolute;
  top: -6px;
  left: 0;
  border-radius: 50%;
}

.testimonial-slider-img {
  margin-left: 15px;
  padding-bottom: 0;
}

.testimonial-area i {
  color: #72d802 !important;
}

.testimonial-area i {
  color: #72d802 !important;
}

.newfeaturex .scroll-container {
  height: 500px;
  overflow: hidden;
  position: relative;
}
.newfeaturex .scroll-content {
  display: flex;
  flex-direction: column;
}
.newfeaturex .scroll-up {
  animation: scroll-up 10s linear infinite;
}
.newfeaturex .scroll-down {
  animation: scroll-down 10s linear infinite;
}
@keyframes scroll-up {
  0% {
    transform: translateY(0%);
  }
  100% {
    transform: translateY(-50%);
  }
}
@keyframes scroll-down {
  0% {
    transform: translateY(-50%);
  }
  100% {
    transform: translateY(0%);
  }
}
.newfeaturex .company-features {
  padding: 20px;
  border: 1px solid #ddd;
  margin: 5px 10px;
  background-color: transparent !important;
}
@media (max-width: 575.98px) {
  .newfeaturex .company-features {
    margin: 5px !important;
  }
}
.newfeaturex .icon img {
  width: 40px;
  height: auto;
  margin-bottom: 10px;
  filter: brightness(0) invert(1);
}
.newfeaturex .counter {
  color: transparent;
  /* Hide fill color */
  -webkit-text-stroke: 1px #72d802;
  /* Green stroke */
  text-stroke: 1px #72d802;
  /* For future-proofing */
  font-weight: bold;
}
@media (max-width: 575.98px) {
  .newfeaturex .col-6 {
    padding-left: 0px !important;
    padding-right: 0px !important;
  }
}/*# sourceMappingURL=test.css.map */