/* @font-face {
    font-family: "overusedGrotesk";
    src: url(../fonts/OverusedGrotesk-VF.ttf) format("truetype");
    font-style: normal;
} */
@font-face {
  font-family: "OverusedGrotesk";
  src: url("../fonts/OverusedGrotesk-Light.ttf") format("truetype");
  font-weight: 300;
  /* Light */
  font-style: normal;
}

@font-face {
  font-family: "OverusedGrotesk";
  src: url("../fonts/OverusedGrotesk-Roman.ttf") format("truetype");
  font-weight: 400;
  /* Regular */
  font-style: normal;
}

@font-face {
  font-family: "OverusedGrotesk";
  src: url("../fonts/OverusedGrotesk-Medium.ttf") format("truetype");
  font-weight: 500;
  /* Medium */
  font-style: normal;
}

@font-face {
  font-family: "OverusedGrotesk";
  src: url("../fonts/OverusedGrotesk-SemiBold.ttf") format("truetype");
  font-weight: 600;
  /* SemiBold */
  font-style: normal;
}

@font-face {
  font-family: "OverusedGrotesk";
  src: url("../fonts/OverusedGrotesk-Bold.ttf") format("truetype");
  font-weight: 700;
  /* Bold */
  font-style: normal;
}

@font-face {
  font-family: "OverusedGrotesk";
  src: url("../fonts/OverusedGrotesk-ExtraBold.ttf") format("truetype");
  font-weight: 800;
  /* ExtraBold */
  font-style: normal;
}

:root {
  --primary-color: #003996;
  --secondary-color: #e2694b;
  --sub-text: #aeb3bf;
  --title-text: #353535;
  --text-color: #14213d;
  --secondary-bg: #f6fbff;
  --orange-light: #ffbf9d;
  --color-blue: #64aaff;
  --warning-color: #ffe68c;
  --sky-blue: #c5e1f9;
  --bg-blue: #070d13;
  --bg-gray: #f5f5fa;
  --sub-text-tt: #d5dbe2;
  --tag-bg: #0c1218;
  --subtitle: #4d5461;
  --desc-color: #7d8594;
}

html {
  height: 100%;
  overflow-x: hidden;
}

body {
  padding: 0px;
  margin: 0px;
  font-size: 16px;
  font-family: "overusedGrotesk";
  position: relative;
  min-height: 100%;
  background: #fafbff;
  /* overflow-y: auto;
    overflow-x: hidden; */
}

.container {
  max-width: 1280px;
}

button:disabled,
button[disabled] {
  opacity: 0.6;
  cursor: not-allowed;
}

.border-r-20 {
  border-radius: 20px;
}

/* fonts */
.font-100 {
  font-size: 100px;
}

.font-80 {
  font-size: 80px;
}

.font-68 {
  font-size: 68px;
}

.font-60 {
  font-size: 60px;
}

.font-58 {
  font-size: 58px;
}

.font-48 {
  font-size: 48px;
}

.font-38 {
  font-size: 38px;
}

.font-30 {
  font-size: 30px;
}

.font-28 {
  font-size: 28px;
}

.font-22 {
  font-size: 22px;
}

.font-20 {
  font-size: 20px;
}

.font-18 {
  font-size: 18px;
}

.font-16 {
  font-size: 16px;
}

.font-14 {
  font-size: 14px;
}

/* colors */
.gredientcolor {
  background: linear-gradient(to right, #e2694b, #003996);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.text-primary {
  color: var(--primary-color) !important;
}

.text-secondary {
  color: var(--secondary-color) !important;
}

.title-text {
  color: var(--title-text);
}

.text-color {
  color: var(--text-color);
}

.sub-text {
  color: var(--sub-text);
}

.sub-text-tt {
  color: var(--sub-text-tt);
}

.subtitle {
  color: var(--subtitle);
}

.color-strok {
  color: #ececf1;
}

.desc-color {
  color: var(--desc-color);
}

/* bg */
.blackbg {
  background: var(--bg-blue);
}

.elipse-l-bg:before {
  content: "";
  position: absolute;
  width: 463px;
  height: 463px;
  left: -169px;
  bottom: -203px;
  background: rgba(104, 40, 167, 0.6);
  filter: blur(262px);
}

.gredient-block:after {
  content: "";
  position: absolute;
  width: 439px;
  height: 439px;
  right: -155px;
  top: -195px;
  background: #017ce2;
  filter: blur(200px);
}

.bg-gray {
  background: var(--bg-gray) !important;
}

/* btn */
.fill-btn svg {
  display: inline-block;
  transition: transform 0.8s ease-out;
}

.fill-btn:hover svg {
  transform: translateX(10px);
  width: 32px;
  height: 32px;
  background: #fff;
  border-radius: 50%;
}

.fill-btn:hover svg path {
  fill: #14213d;
}

.fill-btn:hover {
  color: #fff;
  text-decoration: none;
}

.fill-btn {
  background-image: linear-gradient(
    to right,
    #e55a37,
    #003996,
    #003996,
    #e55a37
  );
  /* box-shadow: inset 0px 4px 6px rgba(0, 0, 0, 0.4); */
  transition: all 0.4s ease-in-out;
  background-size: 300% 100%;
  border-radius: 10px;
  padding: 10px 22px;
  border: 0;
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  vertical-align: middle;
}

.fill-btn:hover {
  background-position: 98% 0;
  transition: all 0.4s ease-in-out;
}

.outline-btn svg {
  display: inline-block;
  transition: transform 0.8s ease-out;
}

.outline-btn:hover svg {
  transform: translateX(10px);
  width: 32px;
  height: 32px;
  background: #ffffff;
  border-radius: 50%;
}

.outline-btn:hover svg path {
  fill: #14213d;
}

.outline-btn:hover {
  color: #fff;
}

.outline-btn {
  position: relative;
  border-radius: 12px;
  padding: 10px 22px;
  background: #070d13;
  border: 0;
  color: #fff;
  /* box-shadow: 0px 0px 8px rgb(232 231 231 / 75%); */
  font-weight: 600;
  font-size: 18px;
  text-decoration: none;
  display: inline-block;
  vertical-align: middle;
  transition: box-shadow 0.8s ease-out;
}

.outline-btn:hover {
  box-shadow: 5px 5px 16px rgba(229, 90, 55, 0.4);
}

.outline-btn:before {
  content: "";
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  z-index: -1;
  border-radius: inherit;
  background: linear-gradient(90deg, #e55a37, #003996);
}

.outline-btn:hover:before {
  content: "";
  position: absolute;
  top: -2px;
  right: -2px;
  left: -2px;
  top: -2px;
  z-index: -1;
  border-radius: inherit;
  background: linear-gradient(90deg, #003996, #e55a37);
  -webkit-animation: animate 0.8s ease-in;
}

@-webkit-keyframes animate {
  0% {
    background-position: 0px;
  }

  100% {
    background-position: 180px;
  }
}

.fw-extra-dark {
  font-weight: 800;
}

.box-pd {
  padding: 90px 0;
}

.box-pd-big {
  padding: 120px 0;
}

.cursor-pointer {
  cursor: pointer;
}

.resize-none {
  resize: none;
}

/* BLOG STYLE */
.search-line {
  border-bottom: 1px solid #ececf1;
  margin-bottom: 20px;
  padding-bottom: 20px;
}

/* .white-select .form-select:focus {
  background: #f5f5fa;
  border: 1px solid #ececf1 !important;
  border: 35px;
}
.white-select .form-select {
  --bs-form-select-bg-img: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23AEB3BF' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
  background-image: var(--bs-form-select-bg-img);
  background-repeat: no-repeat;
  background-position: right 15px center;
  background-size: 16px 12px;
  background-color: #f5f5fa;
  border-color: #ececf1;
  border-radius: 35px;
}

.white-input .form-control {
  border: 1px solid #ececf1;
  border-radius: 35px;
  background: #f5f5fa;
  padding-left: 70px;
}
.white-input .form-control:focus {
  border: 1px solid #ececf1;
  border-radius: 35px;
  background: #f5f5fa;
}
.white-input {
  width: 30%;
  position: relative;
}
.white-select {
  width: 43%;
}
.white-input img {
  position: absolute;
  top: 10px;
  left: 20px;
} */

/* HEADER STYLE */
.navbar-brand:focus-visible {
  outline: none;
}

.logo_def:focus-visible {
  outline: none;
}

header.fixed {
  position: fixed;
  top: 0;
  width: 100%;
  background-color: #fff;
  z-index: 99999;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

header.hidden {
  transform: translateY(-100%);
  opacity: 0;
}

header {
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.ss_header {
  -webkit-box-shadow: 0 3px 15px -1px rgba(0, 0, 0, 0.05);
  box-shadow: 0 3px 15px -1px rgba(0, 0, 0, 0.05);
  background: #fff;
  position: fixed;
  z-index: 9999;
  top: 0;
}

.ss_header .navbar-light .navbar-nav .nav-link {
  color: var(--main-text);
  font-size: 18px;
}

.ss_header a.nav-link {
  padding-left: 15px !important;
  padding-right: 15px !important;
}

.ss_header a.nav-link.active {
  color: var(--secondary-color) !important;
}

.ss_header a.nav-link:hover {
  color: var(--secondary-color) !important;
}

.navbar-light .navbar-toggler {
  color: transparent;
  border-color: transparent;
  padding: 0;
}

.navbar-toggler:focus {
  text-decoration: none;
  outline: 0;
  box-shadow: 0 0;
}

.ss_main_logo_des {
  padding-left: 0;
  transition: 1s all;
}

.fixed .ss_main_logo_des {
  -webkit-transform: translateX(-50px) scale(0.5);
  -ms-transform: translateX(-50px) scale(0.5);
  transform: translateX(-50px) scale(0.5);
  opacity: 0;
}

.ss_mobiles_logo img {
  position: absolute;
  height: 42px;
  opacity: 0;
  transition: 0.5s all;
  left: 49px;
  top: 15px;
  -webkit-transform: translateX(-26px) scale(0.5);
  -ms-transform: translateX(-26px) scale(0.5);
  transform: translateX(-26px) scale(0.5);
}

.ss_main_logo {
  position: relative;
}

.ss_main_logo .logoiconA > img {
  height: 60px;
  position: relative;
  z-index: 15;
  top: 3px;
}

.logoiconA {
  position: relative;
  padding: 10px;
  z-index: 10;
}

.desktop_menu {
  display: block;
}

.ss_headmenu {
  padding: 0;
}

.navbar-light {
  padding: 0;
}

.ss_hand_logo {
  position: absolute;
  bottom: -20px;
  left: 7px;
  height: 70px;
}

.ss_aye_logo,
.ss_hand_logo {
  opacity: 0;
  transition: 0.5s all;
}

.ss_aye_logo {
  position: absolute;
  right: 20px;
  top: -11px;
  z-index: 15;
}

.ss_main_logo_des > img {
  height: 40px;
}

.fixed .ss_mobiles_logo img {
  opacity: 1;
  left: 79px;
  top: 4px;
  height: 90px;
  z-index: 13;
}

.fixed .ss_aye_logo,
.fixed .ss_hand_logo {
  opacity: 1;
}

.navbar-collapse {
  flex-basis: 100%;
  flex-grow: 1;
  align-items: center;
}

/* HEADER MENU STYLE */
.menu-img-desc {
  position: absolute;
  left: 20px;
  bottom: 20px;
  z-index: 1;
}

.down-arrow-custom .dropdown-toggle:hover::after {
  background: url('data:image/svg+xml,<svg width="9" height="7" viewBox="0 0 9 7" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M8.64766 1.14174C8.49153 0.986532 8.28032 0.899414 8.06016 0.899414C7.84001 0.899414 7.6288 0.986532 7.47266 1.14174L4.481 4.09174L1.531 1.14174C1.37486 0.986532 1.16365 0.899414 0.943496 0.899414C0.723341 0.899414 0.512131 0.986532 0.355996 1.14174C0.277889 1.21921 0.215893 1.31138 0.173586 1.41293C0.131279 1.51448 0.109497 1.6234 0.109497 1.73341C0.109497 1.84342 0.131279 1.95234 0.173586 2.05389C0.215893 2.15544 0.277889 2.24761 0.355996 2.32507L3.88933 5.85841C3.9668 5.93651 4.05897 5.99851 4.16051 6.04082C4.26206 6.08312 4.37099 6.10491 4.481 6.10491C4.59101 6.10491 4.69993 6.08312 4.80148 6.04082C4.90303 5.99851 4.99519 5.93651 5.07266 5.85841L8.64766 2.32507C8.72577 2.24761 8.78776 2.15544 8.83007 2.05389C8.87238 1.95234 8.89416 1.84342 8.89416 1.73341C8.89416 1.6234 8.87238 1.51448 8.83007 1.41293C8.78776 1.31138 8.72577 1.21921 8.64766 1.14174Z" fill="%23E55A37"/></svg>')
    no-repeat;
}

.list-group-item:hover {
  background: linear-gradient(to right, #f8f9fa, #e9ecef);
  transition: background 0.3s ease;
}

.nav-link.dropdown-toggle::after {
  transition: transform 0.3s ease;
}

.nav-link[aria-expanded="true"]::after {
  transform: rotate(180deg);
  top: 16px !important;
}

.menu-icon {
  width: 52px;
  height: 52px;
  background: #f5f5fa;
  border-radius: 500px;
  border: 1px solid #ececf1;
  text-align: center;
  vertical-align: middle;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 16px;
}

.menu-list-items .list-group-item {
  border-top: 0;
  border-right: 0;
  border-left: 0;
  padding: 20px 0;
  border-color: #ececf1;
  border-radius: 0;
}

.menu-list-items .list-group-item:last-child {
  border: 0;
}

.menu-tag {
  padding: 5px 12px;
  border-radius: 500px;
  font-size: 14px;
  background: #f9e1db;
}

.menu-list-items {
  box-shadow: 0px 0px 40px rgba(1, 57, 150, 0.06) !important;
  border-radius: 20px;
  border: 0;
  top: 98% !important;
}

.item-desc {
  width: calc(100% - 52px);
}

.down-arrow-custom .dropdown-toggle::after {
  background: url("../svg/down-arrow.svg") no-repeat;
  width: 10px;
  height: 10px;
  content: "";
  position: absolute;
  border: 0;
  right: 0;
  top: 20px;
}

.down-arrow-custom .nav-link {
  position: relative;
}

.white-tag {
  border: 1px solid #ececf1;
  background: #f5f5fa;
  border-radius: 50px;
  font-size: 18px;
  padding: 3px 20px;
}

.w-90 {
  width: 90px;
}

/* .menu-list-items.show {
    position: relative;
    width: 100%;
    height: 50px; 
    background-color: transparent; 
    box-shadow: none;
  }
  
  .menu-list-items.show::after {
    content: '';
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
    border-bottom: 15px solid #ffffff;
} */

/* .mega-content:before {
  width: 0;
  height: 0;
  border-left: 40px solid transparent;
  border-right: 40px solid transparent;
  border-bottom: 40px solid #1ef2ff;
  margin: 0 auto;
  content: '';
  top: -50px;
  position: absolute;
  left: 30%;
}
.mega-content {
  position: relative;
} */
/* FOOTER STYLE */
.blue-fo-desc {
  max-width: 960px;
  word-break: break-word;
}

.gredient-block {
  background: var(--bg-blue);
}

#fo-video-background {
  border-radius: 20px;
  border: 1px solid #1c2734;
  background-color: #08152f;
  box-sizing: border-box;
  width: 100%;
  height: 380px;
  object-fit: cover;
  background-position: right center;
}

.fo-margin {
  margin-bottom: -150px;
  z-index: 1;
}

.top-footer-bg-desc {
  position: absolute;
  left: 60px;
  top: 50%;
  transform: translateY(-50%);
}

.social-icons li a img {
  transition: 0.5s;
  z-index: 3;
  position: relative;
}

.social-icons li a:hover img {
  transform: rotateY(360deg);
}

.social-icons li a:hover:before {
  top: 0;
}

.social-icons li:nth-child(1) a:before {
  background: #106aff;
}

.social-icons li:nth-child(2) a:before {
  background: #0077b7;
}

.social-icons li:nth-child(3) a:before {
  background: #0057ff;
}

.social-icons li:nth-child(4) a:before {
  background: #ed4989;
}

.social-icons li a:before {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: #f00;
  transition: 0.5s;
  z-index: 2;
}

.link-z-index {
  position: relative;
  z-index: 2;
}

.social-icons li a:hover {
  border: 2px solid #fff;
}

.fo-page-link li a:hover {
  color: var(--secondary-color) !important;
}

.round-bg {
  padding: 10px;
  border: 1px solid #121a22;
  background: var(--tag-bg);
  border-radius: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-abt .round-bg {
  margin: 0 2px;
  width: 42px;
  height: 42px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.footer-abt a img {
  margin-bottom: 16px;
}

.footer-abt .round-bg img {
  margin-bottom: 0;
}

.footer-top {
  background: #070d13;
  padding: 80px 0 60px;
  position: relative;
}

.footer-top:after {
  content: "";
  position: absolute;
  width: 600px;
  height: 600px;
  right: -15%;
  top: 0;
  background: radial-gradient(
    56% 50% at 60% 13%,
    #017ce2 0%,
    rgba(1, 127, 203, 0) 100%
  );
}

.footer-bottom {
  position: relative;
  width: 100%;
  height: 100%;
}

.fo-video-desc {
  position: absolute;
  top: 80px;
}

.fo-video {
  overflow: hidden;
  width: 100%;
  max-height: 493px;
}

.fo-video video {
  min-width: 100%;
  min-height: 50vh;
}

.cmn-text-hover:hover {
  background-size: 100% 100%, 100% 100%;
}

.cmn-text-hover {
  transition: 0.5s ease-out;
  background-image: linear-gradient(to bottom, #34415c, #34415c),
    linear-gradient(to bottom, #fff, #fff);
  background-size: 0% 100%, 100% 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-clip: text;
  color: transparent !important;
}

.main-foo ul li a {
  transition: 0.5s ease-out;
  background-image: linear-gradient(to bottom, #34415c, #34415c),
    linear-gradient(to bottom, #fff, #fff);
  background-size: 0% 100%, 100% 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-clip: text;
  color: transparent;
}

.main-foo ul li a:hover {
  background-size: 100% 100%, 100% 100%;
}

.fo-link-hover:hover {
  color: var(--secondary-color);
}

.footer-main {
  padding-top: 200px;
  position: relative;
  overflow: hidden;
}

.border-color {
  border-top: 1px solid #121a22;
}

.left-foo {
  width: 57%;
  display: flex;
  justify-content: start;
  gap: 20px;
}

.link-col1 {
  width: 45%;
  position: relative;
}

.right-foo {
  width: 43%;
  display: flex;
  justify-content: end;
}

.link-col5 {
  width: 45%;
  margin-right: 10px;
  z-index: 1;
}

/* START HOME PAGE STYLE */
.elevate-block {
  margin-top: 90px;
  background: #f6f8fe;
  position: relative;
}

/* .elevate-block:before {
    background: url('../../assets/img/hero-bg.jpg') no-repeat;
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    z-index: -1;
    background-position: top;
    background-size: 100%;
    object-fit: cover;
} */
.sub-round {
  position: relative;
  display: inline-block;
  color: var(--title-text);
  font-size: 14px;
  font-weight: 600;
  padding: 7px 22px;
  border-radius: 50px;
  background: #fff;
  z-index: 1;
  text-transform: uppercase;
}

.sub-round::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 50px;
  padding: 1px;
  background: linear-gradient(to right, #e2694b, #003996);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  z-index: -1;
}

/* TRUSTED VIDEO ANIMATION STYLE */
.glob-logo-block {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.circle-container {
  position: relative;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  background: transparent;
}

.circle-container .icon img {
  /* width: 140px; */
  width: 100%;
}

.circle-container .icon {
  position: absolute;
  width: 140px;
  height: 95px;
  background: #fff;
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  animation: fadeInIcon 2s forwards;
  animation-delay: var(--delay);
}

.circle-container .icon:nth-child(1) {
  top: -7%;
  left: 50%;
  transform: translate(-50%, 0);
  animation-delay: var(--delay, 2s);
}

.circle-container .icon:nth-child(2) {
  top: 44%;
  left: 90%;
  transform: translate(-50%, 0);
  animation-delay: var(--delay, 4s);
}

.circle-container .icon:nth-child(3) {
  top: 90%;
  left: 75%;
  transform: translate(-50%, -50%);
  animation-delay: var(--delay, 6s);
}

.circle-container .icon:nth-child(4) {
  top: 120%;
  left: 24%;
  transform: translate(-50%, -50%);
  animation-delay: var(--delay, 8s);
}

.circle-container .icon:nth-child(5) {
  bottom: -21%;
  left: -23%;
  transform: translate(-50%, 0);
  animation-delay: var(--delay, 10s);
}

.circle-container .icon:nth-child(6) {
  top: 47%;
  left: -38%;
  transform: translate(-50%, -50%);
  animation-delay: var(--delay, 12s);
}

.circle-container .icon:nth-child(7) {
  top: 3%;
  left: -12%;
  transform: translate(-50%, -50%);
  animation-delay: var(--delay, 14s);
}

.circle-container .center-icon {
  top: 47%;
  left: 28%;
  transform: translate(-50%, -50%);
  animation-delay: var(--delay, 16s);
}

@keyframes fadeInIcon {
  0% {
    opacity: 0;
    transform: scale(0.5);
  }

  100% {
    opacity: 1;
    transform: scale(1);
  }
}

/* THREE STEP PROCESS STYLE  */
.process-container {
  position: relative;
  padding: 20% 0;
}

.zigzag-line {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.graph-block.active .zigzag-line path {
  stroke-dasharray: 2000;
  stroke-dashoffset: 2000;
  animation: draw-line 6s ease-in-out forwards;
}

.chart-mb-head {
  margin-bottom: 17% !important;
}

@keyframes draw-line {
  to {
    stroke-dashoffset: 0;
  }
}

.dot {
  position: absolute;
  width: 18px;
  height: 18px;
  background-color: #ff4c4c;
  border-radius: 50%;
  opacity: 0;
  animation: pop-in 1s forwards ease-out;
}

@keyframes pop-in {
  to {
    opacity: 1;
  }
}

.dot:before {
  border-left: 1px solid #e9eef1;
  content: "";
  position: absolute;
  bottom: 18px;
  left: 8px;
  width: 10px;
  height: 100px;
}

.dot:nth-child(4) {
  top: 25%;
  right: 13%;
  animation-delay: 4s;
}

.dot:nth-child(2) {
  bottom: 2%;
  left: 6%;
  animation-delay: 3s;
}

.dot:nth-child(3) {
  bottom: 34%;
  left: 50%;
  animation-delay: 4s;
}

.info-box {
  position: absolute;
  background-color: #131c25;
  color: #fff;
  padding: 20px;
  width: 350px;
  border-radius: 16px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  opacity: 0;
  transform: translateY(30px);
  animation: slide-in 1s forwards ease-out;
  right: 0;
  border: 1px solid #121a22;
  z-index: 1;
  word-break: break-word;
  transition: transform 0.4s ease, box-shadow 0.4s ease,
    background-color 0.4s ease;
  transform: translateZ(0);
  /* improves GPU performance */
}

.info-box:hover {
  transform: scale(1.05);
  box-shadow: 0 20px 30px rgba(0, 0, 0, 0.35);
  background-color: #2c2c40;

  /* Slightly lighter or different tone */
}

.dot:nth-child(7):hover + .info-box {
  transform: scale(1.05);
  box-shadow: 0 20px 30px rgba(0, 0, 0, 0.35);
  background-color: #2c2c40;
}

.word-break {
  word-break: break-word;
}

@keyframes slide-in {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.info-box:nth-child(5) {
  top: 45%;
  left: 0;
  animation-delay: 2s;
}

.info-box:nth-child(6) {
  top: 12%;
  left: 38%;
  animation-delay: 5s;
}

.info-box:nth-child(7) {
  top: -38%;
  right: 0;
  animation-delay: 5s;
}

.map-tag {
  padding: 5px 12px;
  border-radius: 500px;
  font-size: 14px;
  background: #331f1e;
  color: var(--secondary-color);
  font-weight: 500;
  margin-left: 10px;
}

.graph-block {
  background: #070d13 url("../../assets/img/graph-bg.png") no-repeat;
  width: 100%;
  height: 100%;
  background-size: 100%;
}

/* WE UNDERTSAND BLOCK SLIDER STYLE */
.worries-slider-block p {
  margin-bottom: 60px;
}

.worries-slider {
  position: relative;
}

.cluth-block img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
}

.clutch-inside-text {
  position: absolute;
  top: 45%;
  left: 50%;
  right: 0;
  margin: auto;
  text-align: center;
  transform: translate(-50%, -50%);
  /* height: 100%; */
  width: 100%;
}

.clutch-inside-text h2 {
  color: #fff;
  font-weight: 800;
  font-size: 100px;
  line-height: 120px;
  margin-bottom: 12px;
}

.clutch-inside-text span {
  font-weight: 600;
  font-size: 18px;
  line-height: 27px;
  color: #d5dbe2;
  margin-bottom: 30px;
  display: block;
}

.clutch-inside-text img {
  width: 20px;
  height: 20px;
  display: block;
  margin: auto;
  text-align: center;
  border-radius: 0;
}

.clutch-inside-text .rate-block {
  width: 100%;
}

.clutch-inside-text .rate-block img {
  width: 20px;
  margin: 0;
}

.cl-logo {
  width: 200px !important;
  height: 58px !important;
}

.cluth-block {
  position: relative;
  height: 100%;
}

.clutch-bg {
  z-index: 1;
  position: relative;
  width: 300px;
  text-align: center;
  padding-top: 50px;
}

.clutch-bg h2 {
  font-size: 100px;
  line-height: 120px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 12px;
}

.clutch-bg p {
  font-size: 18px;
  line-height: 27px;
  color: #d5dbe2;
  font-weight: 600;
  margin-bottom: 30px;
}

.slider-big-cards {
  margin-bottom: 0 !important;
}

.worries-slider .slick-list {
  padding-left: 0 !important;
}

.clutch-card {
  border: 1px solid #ececf1;
  background: #f5f5fa;
  border-radius: 20px;
  padding: 25px;
  margin: 0 20px 0 0;
}

.clutch-card img {
  width: auto;
  height: 83px;
}

.exp-rate img {
  width: 20px;
  height: 20px;
  margin: 0 1px;
}

.clutch-card h3 {
  color: var(--primary-color);
  margin-bottom: 8px;
  /* height: 70px; */
}

.clutch-card p {
  margin-bottom: 24px;
  height: 108px;
}

.clutch-card h4 {
  color: var(--text-color);
  margin-bottom: 0px;
}

.worries-slider .slick-arrow {
  background: #191c2899;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  z-index: 1;
  opacity: 0;
}

.worries-slider:hover .slick-arrow {
  opacity: 1;
}

.worries-slider .slick-next {
  right: 190px;
}

.worries-slider .slick-prev {
  left: -10px;
}

#clutch-video-background {
  background-color: #0f151c;
  box-sizing: border-box;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 24px;
}

.go-corner {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  width: 32px;
  height: 32px;
  overflow: hidden;
  bottom: 0;
  right: 0;
  background-color: transparent;
  border-radius: 25px 2px 0 0px;
}

.clutch-card {
  display: block;
  position: relative;
  background-color: #f5f5fa;
  border-radius: 4px;
  padding: 32px 24px;
  margin: 0 12px;
  text-decoration: none;
  z-index: 0;
  overflow: hidden;
  border: 1px solid #ececf1;
  border-radius: 20px;
  word-break: break-word;
}

.clutch-card:before {
  content: "";
  position: absolute;
  z-index: -1;
  bottom: -25px;
  right: -28px;
  background: linear-gradient(244.54deg, #070d13 43.79%, #1a0232 100.78%);
  height: 32px;
  width: 32px;
  border-radius: 32px;
  transform: scale(1);
  transform-origin: 50% 50%;
  transition: transform 0.5s ease-out;
}

.clutch-card:hover:before {
  transform: scale(60);
}

.clutch-card:hover p {
  transition: all 0.3s ease-out;
  color: rgba(255, 255, 255, 0.8);
}

.clutch-card:hover h3 {
  transition: all 0.3s ease-out;
  color: #fff;
}

.clutch-card:hover p {
  color: #fff;
  transition: all 0.3s ease-out;
}

.clutch-card:hover h3 {
  color: #e2694b;
  transition: all 0.3s ease-out;
}

.clutch-card:hover h4,
.clutch-card:hover span {
  color: #fff;
  transition: all 0.3s ease-out;
}

.clutch-card:hover .exp-rate span {
  color: #fff !important;
  transition: all 0.3s ease-out;
}

.clutch-card:hover .hover-hide-logo {
  display: none;
}

.clutch-card:hover .show-logo {
  display: block !important;
  transform: translateY(0);
}

.clutch-card .show-logo {
  transform: translateY(100%);
  transition: all 0.35s ease;
}

/* SOFTWARE DEVELOMENT SECTION STYLE */
.strategy-block {
  background-image: linear-gradient(rgb(20 33 61 / 22%), #070d13cc),
    url("../img/strategy-bg.jpg");
}

.brand-block {
  background-image: linear-gradient(rgb(20 33 61 / 22%), #070d13cc),
    url("../img/brand-bg.png");
}

.mobile-app-block {
  background-image: linear-gradient(rgb(20 33 61 / 22%), #070d13cc),
    url("../img/mobile-app-bg.png");
}

.software-img-gredient {
  border-radius: 40px;
  border: 1px solid #d5dbe2;
  width: 100%;
  height: auto;
  background-size: cover;
  background-position: center;
  padding: 20px 100px;
  position: relative;
  background-repeat: no-repeat;
  margin-bottom: 40px;
  position: sticky;
  box-sizing: border-box;
}

.service-card-main {
  top: 0;
  display: flex;
  flex-direction: column;
  height: 400px;
}

.service-card-1 {
  /*top: 20%;*/

  top: 44%;
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

.service-card-2 {
  /*top: 24%;*/

  top: 46%;
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

.service-card-3 {
  /*top: 28%;*/

  top: 50%;
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

.service-card-4 {
  /*top: 32%;*/

  top: 50%;
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  margin-bottom: 60px;
}

.key-service {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
}

.sds-padding {
  margin-bottom: -260px;
}

/* KEY SUCCESS SLIDER STYLE */
.testimonial-tag {
  background: #f9e1db;
  color: #e55a37;
  font-size: 16px;
  font-weight: 600;
  border-radius: 500px;
  padding: 5px 12px;
  position: relative;
  bottom: 42px;
  z-index: 1;
}

.key-description {
  position: sticky;
  top: 0;
  height: 100dvh;
  display: flex;
  align-items: center;
}

.product-testimonial-bg {
  position: relative;
  padding: 30px;
  margin-bottom: 100px;
  margin-top: 30px;
  height: 518px !important;
}

.product-testimonial-bg:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background: #f5f5fa url("../../assets/svg/we-bg.svg") no-repeat;
  width: 100%;
  height: 100%;
  border: 1px solid #ececf1;
  border-radius: 20px;
  z-index: -1;
  background-position: bottom right;
}

.left-testimonial-txt h4 {
  margin-bottom: 6px;
}

.left-testimonial-txt h3 {
  margin-bottom: 12px;
}

.left-testimonial-txt p {
  margin-bottom: 32px;
}

.product-testimonial-bg img {
  width: 420px;
  margin: 0 auto 32px;
}

.product-testimonial-bg h3 {
  margin-bottom: 6px;
}

.product-testimonial-bg:before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  border-radius: 20px;
  width: 6px;
  height: 20%;
  bottom: -102px;
  background: linear-gradient(to bottom, #e2694b, #003996);
}

.product-testimonial-bg:last-child:before {
  display: none;
}

/* mob app slider */
.mob-app-dev-slider img {
  padding: 0 10px;
  border-radius: 20px;
  height: 232px;
  object-fit: cover;
}

.mob-app-dev-slider {
  background: var(--bg-blue);
  box-shadow: inset 0px 5.79px 11.58px 0px rgba(255, 255, 255, 0.12);
  padding: 20px 0;
  border-radius: 20px;
  cursor: pointer;
}

/* VIDEO STYLE */
.block-pd.position-relative.video-block-main .right-rmn {
  justify-content: end;
}

.rmn-main-video {
  position: absolute;
  top: 40%;
  transform: translateY(-50%);
}

.rmn-video video {
  height: 80vh;
}

.all-comman-height video {
  height: 80vh;
}

.video-block-main {
  position: relative;
}

.video-container {
  transition: all 1s ease-in-out;
}

.vdtext-container,
.more-video-btn {
  transition: all 1s ease-in-out;
}

.show-text .vdtext-container {
  display: block !important;
  opacity: 1;
}

.show-text .more-video-btn {
  display: block !important;
  opacity: 1;
  transform: translateY(0);
}

.more-video-btn {
  transform: translateY(60%);
}

.vd-right-tx {
  right: 0;
}

.hoby-tag {
  border-radius: 50px;
  background: #131c25;
  border: 1px solid #121a22;
  color: #ececf1;
  padding: 5px 20px;
  font-size: 18px;
  line-height: 27px;
  font-weight: 400;
  text-transform: uppercase;
}

/* WORK WITH US STYLE */
.platform-logos {
  border: 1px solid #ececf1;
  border-radius: 20px;
  padding: 20px;
  text-align: center;
  display: block;
  vertical-align: middle;
  text-decoration: none;
}

.star-rate img {
  margin: 0 2px;
  width: 14px;
  height: 14px;
}

.anim-clutch {
  width: 90px;
  height: auto;
}

/* HOME PAGE TOP SECTION STYLE */
#clutch-bg {
  background-color: #0f151c;
  box-sizing: border-box;
  object-fit: cover;
  border-radius: 12px;
  width: 220px;
}

.cltch-bg-desc {
  position: absolute;
  top: 50%;
  left: 50%;
  right: 0;
  margin: auto;
  transform: translate(-50%, -50%);
  justify-content: space-between;
  width: 100%;
  padding: 0 20px;
}

.elevate-clutch {
  width: 220px;
}

.end-cltch {
  position: absolute;
  bottom: 17%;
}

/* HOME TOP SECTION ANIMATION STYLE */

.client-anim {
  position: relative;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  background: transparent;
}

.client-anim .icon img {
  width: 80%;
}

.wave {
  animation-name: wave-animation;
  animation-duration: 2.5s;
  animation-iteration-count: infinite;
  transform-origin: 70% 70%;
  display: inline-block;
}

@keyframes wave-animation {
  0% {
    transform: rotate(0deg);
  }

  10% {
    transform: rotate(14deg);
  }

  20% {
    transform: rotate(-8deg);
  }

  30% {
    transform: rotate(14deg);
  }

  40% {
    transform: rotate(-4deg);
  }

  50% {
    transform: rotate(10deg);
  }

  60% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(0deg);
  }
}

.client-anim .icon {
  position: absolute;
  width: 100%;
  height: 95px;
  /* background: #fff; */
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  animation: fadeInIcon 2s forwards;
  animation-delay: var(--delay);
}

.client-anim .icon:nth-child(1) {
  top: 52%;
  left: -2%;
  transform: translate(-50%, 0);
  animation-delay: var(--delay, 2s);
}

.client-anim .icon:nth-child(2) {
  top: 65%;
  left: 65%;
  transform: translate(-50%, 0);
  animation-delay: var(--delay, 6s);
  width: 150px;
}

.client-anim .icon:nth-child(3) {
  bottom: -5%;
  left: 90%;
  transform: translate(-50%, -50%);
  animation-delay: var(--delay, 4s);
}

.client-anim .icon:nth-child(4) {
  top: 120%;
  left: 24%;
  transform: translate(-50%, -50%);
  animation-delay: var(--delay, 8s);
}

.client-anim .center-icon {
  top: 47%;
  left: 28%;
  transform: translate(-50%, -50%);
  animation-delay: var(--delay, 16s);
}

@keyframes fadeInIcon {
  0% {
    opacity: 0;
    transform: scale(0.5);
  }

  100% {
    opacity: 1;
    transform: scale(1);
  }
}

.clutch-bg-bottom {
  position: absolute;
  bottom: -45%;
  left: 68px;
}

/* START APPROACH STRATEGIES STYLE */
.left-approach span {
  background: #070d13;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50px;
  z-index: 1;
  position: relative;
  margin-bottom: 12px;
}

.left-approach {
  border: 1px solid #121a22 !important;
  border-radius: 20px;
  padding: 20px;
  background: #131c25;

  height: 350px;
  display: flex;
  align-items: start;
  flex-direction: column;
  justify-content: center;
}

.img-pd-left {
  padding-left: 50%;
  position: absolute;
  right: 0;
}

.approch-line:before {
  content: "";
  display: block;
  padding: 3px;
  color: #000;
  background: linear-gradient(#e2694b, #121a22);
  border-radius: 8px;
  border-top: 2px solid transparent;
  background-origin: border-box;
  background-clip: border-box;
  right: 0;
  position: absolute;
  height: 100%;
}

.approch-line {
  margin-bottom: 50px;
  padding-right: 30px;
}

/* SERVICE */
/* .transition2s{
  transition: all 1.2s;
}
.anim-top {
  transform: translate(0, -300px);
}
.anim-left{
	transform: translate(-300px,0);
}
.anim-right {
  transform: translate(80%, 80px);
}
.anim-bottom {
  transform: translate(0, 300px);
}
.anim .anim-left,
.anim .anim-right,
.anim .anim-top,
.anim .anim-bottom {
	transform: translate3d(0, 0, 0);	
}
.scrollAnim.anim{
	opacity: 1;
}
.scrollAnim{
	height: 100%;
	opacity: 0;
	transition: 0.8s;
}
@keyframes fadeIn {
	from{ 
		opacity:  0; 
	}
	to{
		opacity: 1;
	}
}
@keyframes fadeInOut {
	0%{ 
		opacity:  0; 
	}
	50%{
		opacity: 1;
	}
	100%{
		opacity: 0;
	}
} */

/* text anim */
.strategy-tt {
  margin-bottom: 60px;
}

.text-animation-block h2 {
  margin-bottom: 80px;
}

.by-block {
  border: 1px solid #ececf1;
  height: 290px;
  /* margin: 0 10px; */
  word-break: break-word;
  width: 405px;
}

.by-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

/* .by-slider {
  margin: 0 0 0 92px !important;
} */

/* FAQS */
.footer-accordian {
  position: relative;
  z-index: 1;
}

.footer-accordian .accordion-button:focus {
  box-shadow: none;
}

.footer-accordian .accordion-button {
  font-size: 22px;
  line-height: 33px;
  font-weight: 700;
  background: #f5f5fa;
  color: #14213d;
}

.footer-accordian .accordion-item {
  border: 1px solid #ececf1;
  margin-bottom: 30px;
  overflow: hidden;
  border-radius: 12px;
  word-break: break-word;
}

.footer-accordian .accordion-item:focus {
  outline: none;
}

.footer-accordian .accordion-header {
  background: #f5f5fa;
}

.footer-accordian .accordion-body {
  background: #f5f5fa;
  color: #7d8594;
  font-size: 20px;
  line-height: 33px;
  font-weight: 500;
  border-top: 1px solid #ececf1;
  border-bottom: 2px solid #e2694b;
  border-left: 2px solid #e2694b;
  border-right: 2px solid #e2694b;
  border-radius: 0 0 12px 12px;
  box-shadow: 0px 4px 16px 0px rgba(226, 105, 75, 0.3);
}

.footer-accordian .accordion-button::after {
  background-image: url("../../assets/svg/plus.svg");
}

.footer-accordian .accordion-button:not(.collapsed)::after {
  background-image: url("../../assets/svg/minus.svg");
}

.footer-accordian .accordion-button:not(.collapsed) {
  box-shadow: none;
  color: #e2694b;
  border-top: 2px solid #e2694b;
  border-radius: 12px 12px 0 0;
  border-left: 2px solid #e2694b;
  border-right: 2px solid #e2694b;
}

.footer-accordian .accordion-button:not(.collapsed):focus {
  outline: none !important;
  box-shadow: none !important;
}

.footer-accordian .accordion-button:not(.collapsed):focus {
  border-radius: 12px 12px 0 0;
}

.footer-accordian
  .accordion-item:first-of-type
  > .accordion-header
  .accordion-button {
  border-radius: 12px 12px 0 0;
}

/* SLIDER ARROW */
.by-slider:hover .slick-arrow {
  opacity: 1;
}

.by-slider .slick-arrow {
  background: #191c2899;
  border-radius: 500px;
  width: 60px;
  height: 60px;
  z-index: 1;
  opacity: 0;
  transition: all 0.5s linear;
}

.by-slider .slick-next {
  right: 174px;
}

/* CURSOUR POINT */
.cursor-circle {
  position: fixed;
  top: 0;
  left: 0;
  width: 16px;
  height: 16px;
  background: linear-gradient(to bottom, #017ce2, #070d13);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: transform 0.1s ease;
}

.sparkle {
  position: absolute;
  width: 6px;
  height: 6px;
  background: linear-gradient(to bottom, #e2694b, #003996);
  border-radius: 50%;
  box-shadow: 0 0 8px rgba(0, 57, 150, 0.8);
  animation: sparkle-animation 1.5s infinite ease-in-out;
  transform: translate(30px, -10px);
}

@keyframes sparkle-animation {
  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }

  50% {
    transform: scale(1.5);
    opacity: 0.5;
  }
}

/* FLUTTER MAP STYLE */
.right-platform-desc {
  display: flex;
  flex-direction: column;
  align-items: end;
  justify-content: end;
  height: 100%;
}

.orange-progress {
  background: linear-gradient(90deg, #070d13 0%, #e2694b 100%);
  width: 100%;
  padding: 10px;
  display: block;
  border-radius: 0 6px 6px 0;
  text-align: right;
  color: #fff;
  font-weight: 600;
}

.blue-progress {
  background: linear-gradient(90deg, #070d13 0%, #003996 100%);
  width: 100%;
  padding: 10px;
  display: block;
  border-radius: 0 6px 6px 0;
  text-align: right;
  color: #fff;
  font-weight: 600;
}

.map-naming {
  background: #191c2899;
  padding: 18px;
  border-radius: 8px;
}

.map-naming .orange {
  background: #e2694b;
  border-radius: 6px;
  width: 26px;
  height: 26px;
  display: inline-block;
  margin-right: 10px;
}

.map-naming .blue {
  background: #003996;
  border-radius: 6px;
  width: 26px;
  height: 26px;
  display: inline-block;
  margin-right: 10px;
}

/* TECHNOLOGIES VIDEO */
/* .tech-work-block{
  height: 70vh;
} */
.tecno-title {
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  text-align: center;
  padding-top: 90px;
}

/* REVOLUTION BLOCK STYLE*/
.revolution-block {
  /* width: 510px; */
  margin: 0 20%;
}

.revolution-block .slick-dots li button::before {
  font-size: 24px;
}

.hand-tag {
  backdrop-filter: blur(25px);
  background: rgba(255, 255, 255, 0.7);
  border-radius: 500px;
  padding: 10px 15px;
  border: 1px solid #ececf1;
  position: absolute;
  /* animation: blinker 3s linear infinite; */
}

.rv-1 {
  bottom: 10%;
  left: 20%;
}

.rv-2 {
  margin: auto;
  top: 48%;
  left: 48%;
  transform: translate(-50%, -50%);
}

.rv-3 {
  right: -70px;
  top: 62%;
}

/* VIDEO TITLE SCROLL */
.txt-mb-300 {
  margin-bottom: 300px;
}

/* FOOTER BUSINESS CARD STYLE */
.f-business-card h3 {
  width: 820px;
  margin: auto;
}

.journey-desc {
  padding: 0 50px;
}

.f-business-card {
  padding: 20px;
}

.f-business-card:before {
  background: url("../img/mobile-app/mobile-app-fo-bg.png") no-repeat;
  width: 100%;
  height: 100%;
  border-radius: 20px;
  content: "";
  background-size: 100%;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  margin: auto;
  z-index: -1;
  background-size: cover;
}

/* ARROW SACLE STYLE */
.expand-arrow-desc {
  transition: transform 1s ease, opacity 1s ease;
  opacity: 1;
  transform: scale(1);
}

.expand-arrow-desc.hidden {
  opacity: 1;
  transform: scale(0.9);
}

/* .data-box {
  padding: 100px 0;
  display: none;
  transform: scale(0.6);
  transition: transform 1s ease, opacity 1s ease;
  opacity: 0;
}
.data-box.visible {
  display: block;
  transform: scale(1);
  opacity: 1;
}
.scaling-image {
  transition: transform 1s ease;
  width: 100%;
}

.scaling-image.scaled {
  transform: scale(2.1);
} */

.z-index-position {
  position: relative;
  z-index: 1;
}

/* BINARY EYE ANIMATION STYLE */
/* ._bev{
  padding: 100px;
}
._bev video{
  object-fit: cover;
} */
.eye-main {
  clip-path: polygon(20% 55%, 42% 19%, 56% 15%, 80% 47%, 66% 80%, 51% 93%);
  color: #d5dbe2;
  font-family: "PT Mono", "Courier";
  font-weight: 400;
  letter-spacing: 1px;
  font-size: 20px;
  width: 100%;
  height: 300px;
  /* Adjusted for eyeball space */
  overflow: hidden;
  text-shadow: 0 0 2px #fff;
  line-height: 25px;
  margin: auto;
  position: relative;
}

.eye-main::before {
  content: "";
  position: absolute;
  inset: 0;
  background: none;
  border: 2px solid white;
  /* White border */
  clip-path: inherit;
  /* Use the same polygon shape for the border */
  pointer-events: none;
  /* Ensure it doesn’t interfere with other elements */
}

.num {
  clear: both;
  transform: rotateY(0deg);
}

.devider {
  position: absolute;
  top: 0;
  width: 14px;
  height: 100%;
}

.d00 {
  left: 103px;
}

.d01 {
  left: 219px;
}

.d02 {
  left: 337px;
}

.d03 {
  left: 453px;
}

.d04 {
  left: 557px;
}

.eyeball {
  border: 1px solid #eee;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100px;
  height: 100px;
  background: #070d13;
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.eyeball-img {
  position: relative;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  animation: eyeball-move 2s ease-in-out infinite;
  color: #000;
}

@keyframes eyeball-move {
  0% {
    transform: translateX(-20px);
  }

  50% {
    transform: translateX(20px);
  }

  100% {
    transform: translateX(-20px);
  }
}

/* START CONTACT US STYLE */
.message-box {
  background: url("../img/contact-us/contact-us.png") no-repeat;
  border-radius: 20px;
  background-position: right;
}

.form-box form {
  padding: 40px;
}

.message-box-detail {
  width: 70%;
}

.form-box {
  border-radius: 20px 0 0 20px;
  box-shadow: 0px 16px 68px #000000;
}

.brown-line-bottom {
  border-radius: 0 0 0 20px;
  background: #331f1e;
  padding: 16px;
}

.form-control {
  background: #232f3b;
  border: 1px solid #121a22;
  padding: 14px 20px;
  border-radius: 12px;
  color: #aeb3bf;
  font-weight: 600;
}

.form-control::placeholder {
  color: #aeb3bf;
  font-weight: 600;
  font-size: 18px;
}

.prefer-box {
  border: 1px solid #121a22;
  background: #232f3b;
  border-radius: 12px;
  padding: 20px;
}

.form-control:focus {
  background: #232f3b;
  border: 1px solid #121a22;
  color: #aeb3bf;
  box-shadow: none;
  outline: none;
}

/* .form-select {
  border: 1px solid #121a22;
  background: #232f3b;
  border-radius: 12px;
  padding: 12px 20px;
  color: #aeb3bf;
  font-weight: 600;
  font-size: 18px;
}
.form-select:focus {
  background: #232f3b;
  border: 1px solid #121a22;
  color: #aeb3bf;
  font-weight: 600;
  font-size: 18px;
  box-shadow: none;
} */
.reach-box {
  background: #fff;
  border-radius: 17px;
  box-shadow: 0px 4.4387px 22.1935px rgba(0, 57, 150, 0.06);
  backdrop-filter: blur(66.5804px);
  padding: 17px;
  width: 400px;
  position: absolute;
}

.round-bg-white {
  background: #f5f5fa;
  border: 1px solid #ececf1;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.reach-box .flag-icon {
  width: 46px;
}

.mp-1 {
  top: 100px;
  left: 50%;
  transform: translate(-50%, -50%);
}

.mp-2 {
  top: 27%;
  position: absolute;
  left: 48%;
}

.mp-3 {
  position: absolute;
  top: 47%;
  left: 64%;
}

.mp-4 {
  bottom: 18%;
  right: 25%;
}

.social-box {
  background: #f5f5fa;
  border: 1px solid #ececf1;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 24px;
}

.gray-border {
  border: 1px solid #ececf1;
}

.border-b-gray {
  border-bottom: 1px solid #ececf1;
}

.faq-bg-img {
  background: #f5f5fa url("../../assets/img/graph-bg.png") no-repeat;
  background-size: 100%;
  background-position: bottom;
}

.form-box .form-select {
  --bs-form-select-bg-img: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23AEB3BF' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
  background-image: var(--bs-form-select-bg-img);
  background-repeat: no-repeat;
  background-position: right 15px center;
  background-size: 16px 12px;
}

/* BLOG DETAIL SCROLL SECTION STYLE */
.season_tabs {
  display: flex;
  min-height: 100vh;
  /* overflow: hidden; */
}

.season_tab {
  width: 400px;
  position: sticky;
  top: 0;
  background-color: #070d13;
  padding: 24px;
  border-radius: 20px;
  overflow: hidden;
  height: fit-content;
}

.season_tab:before {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  right: 0;
  background: radial-gradient(
    100% 100% at 100% -6%,
    #017ce2bd 0%,
    rgba(1, 97, 203, 0) 100%
  );
  filter: blur(50px);
  top: 0;
}

/* .season_tab:after {
  content: "";
  position: absolute;
  width: 250px;
  height: 250px;
  left: 0;
  background: rgb(104 40 167 / 44%);
  filter: blur(262px);
  bottom: 0;
} */
.season_tab ul {
  position: relative;
  z-index: 1;
  list-style: none;
  padding: 0;
  margin: 0;
}

.tab-count {
  border: 1px solid #e2694b1f;
  height: 39px;
  width: 54px;
  text-align: center;
  line-height: 39px;
  border-radius: 500px;
  background: #353535;
  color: #e55a37;
  font-size: 18px;
  font-weight: 700;
}

.outline-btn.round-btn:hover svg {
  transform: none;
  background: transparent;
  width: auto;
  height: auto;
}

.outline-btn.round-btn:hover svg path {
  fill: #fff;
}

.outline-btn.round-btn {
  margin-right: 10px;
  border-radius: 50px;
  padding: 0;
  width: 50px;
  height: 50px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 10px;
}

.season_tab li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 24px;
  cursor: pointer;
  transition: background-color 0.3s;
  color: #d5dbe2;
  font-weight: 600;
  font-size: 18px;
  border-bottom: 1px solid #121a22;
}

.season_tab li.active {
  color: #e55a37;
  border-bottom: 1px solid #e55a37;
}

.season_contents {
  flex: 1;
  height: 100vh;
  overflow-y: scroll;
  padding: 1rem;
}

.season_contents::-webkit-scrollbar {
  width: 0;
  background: transparent;
}

.season_content {
  /* height: 100vh;  */
  padding: 0 10px;
}

/* USECASE PAGE STYLE */
.usecase-clutch-bg {
  height: auto !important;
}

.tech-use-block {
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  left: 50%;
  width: 100%;
}

.weguide-clutch video {
  height: 450px !important;
}

.duration-card {
  /* background: rgba(255, 255, 255, 0.44); */
  border-radius: 12px;
  padding: 16px;
  width: 100%;
  background-blend-mode: overlay;
  backdrop-filter: blur(20px);
  border-image-source: linear-gradient(to bottom, #ffffff 100%, #000000 0%);
  border: 1px solid;
  border-image-slice: 1;
}

.border-b-1 {
  border-bottom: 1px solid #232f3b;
  padding-bottom: 15px;
}

.tec-line {
  border-right: 3px solid #ffffff5e;
  margin-right: 5px;
  display: inline-block;
  padding-right: 5px;
}

li::marker {
  content: none;
  display: none;
}

.gredient-bullets li:before {
  background: url("../svg/bullet.svg") no-repeat;
  width: 20px;
  height: 22px;
  content: "";
  position: absolute;
  left: -30px;
  top: 6px;
}

/* BLACK SELECT STYLE */
.blackselect .select2-container--default .select2-selection--single {
  background-color: #232f3b;
  color: #ffffff;
  border: 1px solid #121a22;
  border-radius: 12px;
  padding: 8px 15px;
  font-size: 14px;
  min-width: 300px;
}

.blackselect
  .select2-container--default
  .select2-selection--single
  .select2-selection__arrow {
  color: #d5dbe2;
}

.blackselect .select2-container--default .select2-results__option {
  background-color: #232f3b;
  color: #aeb3bf;
  padding: 10px;
  font-size: 18px;
}

.blackselect .select2-container--default .select2-results__option--highlighted {
  background-color: #070d13;
  color: #aeb3bf;
}

.blackselect
  .select2-container--default.select2-container--open.select2-container--below
  .select2-selection--single,
.blackselect
  .select2-container--default.select2-container--open.select2-container--below
  .select2-selection--multiple {
  border-bottom: 0;
}

.blackselect .custom-dropdown {
  background-color: #232f3b;
  border-radius: 0 0 12px 12px;
  padding: 10px;
  border: 1px solid #121a22;
}

.blackselect
  .select2-container--default
  .select2-selection--single
  .select2-selection__rendered {
  color: #d5dbe2;
  line-height: 36px;
  font-weight: 600;
  font-size: 18px;
}

.blackselect .select2-container .select2-selection--single {
  height: 55px;
}

.blackselect
  .select2-container--default
  .select2-selection--single
  .select2-selection__arrow {
  height: 55px;
  right: 15px;
}

.blackselect .select2-container {
  width: 100% !important;
}

.blackselect
  .select2-container--default
  .select2-results
  > .select2-results__options {
  background: #131c25;
  color: #aeb3bf;
}

.blackselect
  .select2-container--default
  .select2-selection--single
  .select2-selection__arrow
  b {
  border: 0;
  background: url("../svg/select-arrow.svg");
  border: 0;
  width: 11px;
  height: 6px;
  background-size: 100%;
  background-repeat: no-repeat;
}

.blackselect
  .select2-container--default.select2-container--open
  .select2-selection--single
  .select2-selection__arrow
  b {
  transform: rotate(180deg);
}

/* black search */
.black-input .form-control {
  border: 1px solid #121a22;
  border-radius: 12px;
  background: #131c25;
  padding-left: 50px;
}

.black-input .form-control::placeholder {
  color: #aeb3bf;
}

.black-input .form-control:focus {
  border: 1px solid #121a22;
  background: #131c25;
}

.black-input {
  width: 30%;
  position: relative;
}

.black-select {
  width: 43%;
}

.black-input img {
  position: absolute;
  top: 50%;
  left: 30px;
  transform: translate(-50%, -50%);
}

/* START USECASE DDETAIL PAGE STYLE */
.usecase-video-bg {
  /* filter: drop-shadow(0px 4px 50px rgba(0, 0, 0, 0.12));
  border-radius: 20px;
  background: #070d13; */
}

.tab-profile {
  border-radius: 20px;
  backdrop-filter: blur(60px);
  background: #34415c;
  padding: 12px 24px;
}

.tab-by-box {
  height: 370px;
  margin: 0 0 20px;
}

.outline-tag {
  border: 1px solid #14213d;
  padding: 11px 20px;
  border-radius: 35px;
  background: #fafbff;
}

/* tab graph style */
.tab-graph {
  height: 700px;
  margin-bottom: 30px;
}

.tab-graph.active .zigzag-line path {
  stroke-dasharray: 2000;
  stroke-dashoffset: 2000;
  animation: draw-line 6s ease-in-out forwards;
}

.goal-graph .info-box {
  width: auto;
}

.goal-graph .dot:nth-child(2) {
  bottom: 37%;
  left: 28%;
  animation-delay: 5s;
}

.goal-graph .dot:nth-child(3) {
  bottom: 43%;
  left: 45%;
  animation-delay: 6s;
}

.goal-graph .dot:nth-child(4) {
  bottom: 49%;
  left: 68%;
  animation-delay: 7s;
  top: auto;
}

.goal-graph .dot:nth-child(5) {
  right: 12%;
  left: unset;
  top: 40%;
  animation-delay: 8s;
}

.goal-graph .dot:nth-child(6) {
  left: 6%;
  bottom: 33%;
  animation-delay: 4s;
}

.goal-graph .info-box:nth-child(7) {
  bottom: 45%;
  left: 0;
  animation-delay: 4s;
  right: unset;
  top: auto;
}

.goal-graph .info-box:nth-child(8) {
  bottom: 56%;
  left: 20%;
  animation-delay: 5s;
  right: unset;
  top: auto;
}

.goal-graph .info-box:nth-child(9) {
  bottom: 67%;
  left: 35%;
  animation-delay: 6s;
  right: unset;
  top: auto;
}

.goal-graph .info-box:nth-child(10) {
  bottom: 78%;
  right: 24%;
  animation-delay: 7s;
  left: unset;
  top: auto;
}

.goal-graph .info-box:nth-child(11) {
  top: 1%;
  right: 10%;
  animation-delay: 8s;
}

.goal-graph .process-container {
  padding: 100% 0 10%;
  /* height: 100vh; */
}

.goal-graph .dot:before {
  height: 40px;
}

/* OUTLINE ACCORDIAN STYLE */
.outline-accordian .accordion-button span {
  color: #ececf1;
  font-size: 48px;
  font-weight: 800;
  margin-right: 20px;
}

.outline-accordian .accordion-button:not(.collapsed) {
  background-color: #fafbff;
  box-shadow: none;
  border-bottom: 2px solid transparent;
  border-image: linear-gradient(to right, #e55a37, #003996) 1;
  color: #14213d;
}

.outline-accordian .accordion-button:focus {
  box-shadow: none;
}

.outline-accordian .accordion-button {
  background-color: #fafbff;
}

.outline-accordian
  .accordion-flush
  > .accordion-item
  > .accordion-header
  .accordion-button,
.accordion-flush
  > .accordion-item
  > .accordion-header
  .accordion-button.collapsed {
  background-color: #fafbff;
}

.outline-accordian .accordion-body {
  background-color: #fafbff;
}

/* TRANSITION TAB */
.session-future .nav .nav-item button.active {
  background-color: #e55a37;
  color: #fff !important;
  border-radius: 35px;
}

.session-future .nav {
  border: 1px solid #ececf1;
  border-radius: 500px;
  background: #f5f5fa;
  padding: 12px;
}

.session-future .nav-link:focus,
.session-future .nav-link:hover {
  color: #e55a37;
  border-radius: 35px;
}

.session-future .nav-pills .nav-link {
  border-radius: 35px;
}

.fadeInUp {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

@-webkit-keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }

  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }

  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

.portfolio-card {
  border: 1px solid #ececf1;
  background: #f5f5fa url("../../assets/svg/we-bg.svg") no-repeat;
  border-radius: 20px;
  padding: 20px;
  position: relative;
  background-position: center right;
  background-size: 100%;
  height: 100%;
}

.portfolio-card .fill-btn {
  position: absolute;
  bottom: 20px;
}

.black-bullet li {
  position: relative;
}

.black-bullet li:before {
  position: absolute;
  left: -20px;
  content: "";
  width: 5px;
  height: 5px;
  background: #4d5461;
  border-radius: 50px;
  top: 14px;
}

/* ABOUT US STYLE */
.black-card {
  border: 1px solid #121a22;
  width: 500px;
  display: inline-block;
  margin: 0 10px 30px;
  z-index: 1;
  position: relative;
  background: #131c25;
  word-break: break-word;
}

.black-card span {
  background: #070d13;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50px;
  z-index: 1;
  position: relative;
  margin-bottom: 12px;
}

.black-card:nth-child(4) {
  position: relative;
  top: 100px;
}

.black-card:nth-child(2) {
  position: relative;
  top: 100px;
}

.arrow-list ul li {
  position: relative;
  width: 100%;
  padding-right: 40px;
}

.arrow-list ul li:before {
  content: "";
  background: url("../svg/white-bullets.svg") no-repeat;
  width: 24px;
  height: 24px;
  position: absolute;
  left: -30px;
  top: 0;
}

.arrow-list {
  border: 2px solid transparent;
  position: relative;
  transition: 0.5s ease-out;
}

/* .arrow-list:hover {
  transition: 0.5s ease-out;
} */
.arrow-list:hover:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background-image: linear-gradient(to right, #e55a37, #003996);
}

@-webkit-keyframes fadeInUpBig {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 1000px, 0);
  }

  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes fadeInUpBig {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 1000px, 0);
    transform: translate3d(0, 1000px, 0);
  }

  80% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

.reach-card {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.reach-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.divscroll {
  height: 50px;
}

.black-arrow {
  transform: scale(1);
  opacity: 1;
  transition: transform 0.8s ease-in-out, opacity 0.5s ease-in-out;
}

.black-arrow.scale-fullscreen {
  transform: scale(3);
  opacity: 0;
  pointer-events: none;
}

.ar {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}

.ar.visible {
  opacity: 1;
  transform: translateY(0);
  /* -webkit-animation-name: fadeInUpBig;
  animation-name: fadeInUpBig;
  -webkit-animation-duration: 0.5s;
  animation-duration: 0.5s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;   */
}

.profile-img-wd {
  width: 100px;
  height: 100px;
  border-radius: 50px;
  object-fit: cover;
}

/* SPIN CARD STYLE */
.client-card.visible {
  opacity: 1;
  animation-play-state: running;
}

.client-card {
  background: #f5f5fa url("../svg/we-bg.svg") no-repeat;
  background-size: 100%;
  border-radius: 20px;
  margin: auto;
  opacity: 0;
  transform: rotate(0deg);
  transition: opacity 0.5s ease-out;
  overflow: hidden;
  border: 1px solid #ececf1;
  padding: 20px 30px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.card-lines {
  background: url("../img/card-line.gif") no-repeat;
  width: 100%;
  height: 100%;
  background-position: center;
}

@keyframes clockwiseSpin {
  0% {
    transform: translateX(-100%) rotate(-180deg);
  }

  100% {
    transform: translateX(0%) rotate(0);
  }
}

@keyframes antiClockwiseSpin {
  0% {
    transform: translateX(100%) rotate(-180deg);
  }

  100% {
    transform: translateX(0%) rotate(-360deg);
  }
}

.clockwiseSpin {
  animation: clockwiseSpin 2s ease-in-out forwards;
}

.antiClockwiseSpin {
  animation: antiClockwiseSpin 2s ease-in-out forwards;
}

.client-card h2 {
  font-size: 80px;
  font-weight: 800;
  margin-right: 24px;
}

.client-card:before {
  content: "";
  position: absolute;
  z-index: -1;
  bottom: -25px;
  right: -28px;
  background: linear-gradient(244.54deg, #070d13 43.79%, #1a0232 100.78%);
  height: 32px;
  width: 32px;
  border-radius: 32px;
  transform: scale(1);
  transform-origin: 50% 50%;
  transition: transform 0.5s ease-out;
}

.client-card:hover:before {
  transform: scale(50);
}

.client-card:hover h2 {
  background: transparent;
  -webkit-text-fill-color: #fff;
}

.client-card:hover p {
  color: #fff;
}

.client-card:hover .fadeInUpBig {
  -webkit-animation-name: fadeInUpBig;
  animation-name: fadeInUpBig;
  -webkit-animation-duration: 0.5s;
  animation-duration: 0.5s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

@-webkit-keyframes fadeInUpBig {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 1000px, 0);
  }

  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes fadeInUpBig {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 1000px, 0);
    transform: translate3d(0, 1000px, 0);
  }

  80% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

/* STARTUP PAGE STYLE */

.startup-black-card .black-card {
  width: 31.33% !important;
}

.startup-black-card .black-card:nth-child(2) {
  top: 100px;
}

.startup-black-card .black-card:nth-child(4) {
  top: 0px;
}

.startup-black-card .black-card:nth-child(5) {
  top: 100px;
}

.profile-img {
  width: 70px !important;
  height: 70px !important;
  border-radius: 50%;
  object-fit: cover;
}

.stiky-block {
  position: sticky;
  top: 0;
  height: 100dvh;
  display: flex;
  align-items: center;
}

.slide-height {
  height: 400px;
}

.revolution-block .slide-height {
  height: 300px;
}

/* TYPE EFFECT TEXT */

.text-output {
  text-align: center;
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cursor::after {
  content: "";
  display: inline-block;
  margin-left: 3px;
  animation-name: blink;
  animation-duration: 0.5s;
  animation-iteration-count: infinite;
}

@keyframes blink {
  0% {
    opacity: 1;
  }

  49% {
    opacity: 1;
  }

  50% {
    opacity: 0;
  }

  100% {
    opacity: 0;
  }
}

/* white SELECT STYLE */
.whiteselect
  .select2-container--default.select2-container--open.select2-container--below
  .select2-selection--single,
.whiteselect
  .select2-container--default.select2-container--open.select2-container--below
  .select2-selection--multiple {
  border-bottom: 0;
}

.whiteselect .select2-container--default .select2-selection--single {
  background-color: #f5f5fa;
  color: #7d8594;
  border: none;
  border-radius: 35px;
  padding: 8px 15px;
  font-size: 14px;
  min-width: 300px;
  border: 1px solid #ececf1;
}

.whiteselect
  .select2-container--default
  .select2-selection--single
  .select2-selection__arrow {
  color: #d5dbe2;
}

.whiteselect .select2-container--default .select2-results__option {
  background-color: #f5f5fa;
  color: #7d8594;
  padding: 10px;
  font-size: 18px;
}

.whiteselect .select2-container--default .select2-results__option--highlighted {
  background-color: #7d8594;
  color: #fff;
}

.whiteselect .custom-dropdown {
  background-color: #f5f5fa;
  border-radius: 0 0 35px 35px;
  padding: 10px;
  border: 1px solid #ececf1;
}

.whiteselect
  .select2-container--default
  .select2-selection--single
  .select2-selection__rendered {
  color: #7d8594;
  line-height: 36px;
  font-weight: 600;
  font-size: 18px;
}

.whiteselect .select2-container .select2-selection--single {
  height: 55px;
}

.whiteselect
  .select2-container--default
  .select2-selection--single
  .select2-selection__arrow {
  height: 55px;
  right: 15px;
}

.whiteselect .select2-container {
  width: 100% !important;
}

.whiteselect
  .select2-container--default
  .select2-results
  > .select2-results__options {
  background: #f5f5fa;
  color: #7d8594;
}

.whiteselect
  .select2-container--default
  .select2-selection--single
  .select2-selection__arrow
  b {
  border: 0;
  /* background: url("../svg/select-arrow.svg"); */
  background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23AEB3BF' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e")
    no-repeat;
  border: 0;
  width: 11px;
  height: 6px;
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: center;
}

.whiteselect
  .select2-container--default.select2-container--open
  .select2-selection--single
  .select2-selection__arrow
  b {
  transform: rotate(180deg);
}

/* white search */
.white-input .form-control {
  border: 1px solid #ececf1;
  border-radius: 35px;
  background: #f5f5fa;
  padding-left: 50px;
  color: #7d8594;
}

.white-input .form-control::placeholder {
  color: #7d8594;
}

.white-input .form-control:focus {
  border: 1px solid #ececf1;
  border-radius: 35px;
  background: #f5f5fa;
}

.white-input {
  width: 30%;
  position: relative;
}

.black-select {
  width: 43%;
}

.white-input img {
  position: absolute;
  top: 50%;
  left: 20px;
  transform: translateY(-50%);
}

/* BINARY EYE VIDEO STYLE */

/* success story animation  */
.sstext-box {
  opacity: 0;
  transform: translateX(100%);
  transition: all 0.6s ease-out;
}

.sstext-box.left {
  transform: translateX(-100%);
}

.sstext-box.visible {
  opacity: 1;
  transform: translateX(0);
}

.more-work {
  z-index: 1;
  position: relative;
}

.platform-logos .star-rate img {
  width: 18px;
  height: 18px;
}

.blue-gredient {
  background: linear-gradient(
    257.63deg,
    #083560 1.42%,
    #020f24 43.82%,
    #1f1c41 102.96%
  );
}

/* .by-block:hover.blue-gredient{
  transform: translateX(10px);
}
.by-block.blue-gredient{
  display: inline-block;
  transition: transform 0.8s ease-out;
} */

/* START MEDIA QUERY */
@media (max-width: 1200px) {
  .by-block {
    width: 47%;
  }
}

@media (min-width: 1400px) {
  .worries-slider {
    padding-left: 140px;
  }

  /* .by-slider {
    padding-left: 18px;
  } */
}

@media (min-width: 1600px) {
  /* .by-slider {
    padding-left: 210px;
  } */
  .by-slider .slick-prev {
    left: 190px;
  }

  #clutch-video-background {
    height: 399px;
  }

  .worries-slider {
    padding-left: 305px;
    /* padding-left: 18%; */
  }
}

@media (max-width: 1024px) {
  .main-foo {
    display: block !important;
    margin-bottom: 10px !important;
  }

  .left-foo {
    width: 100%;
    margin-bottom: 10px;
  }

  .right-foo {
    width: 100%;
    justify-content: start;
  }

  .message-box-detail {
    width: 100%;
  }

  .form-box {
    border-radius: 20px;
  }

  .blue-fo-desc {
    max-width: 100%;
  }

  .c-map-img {
    width: 100%;
  }

  /* tab style */
  .season_tabs {
    display: block;
  }

  .season_tab ul {
    display: flex;
    overflow: auto;
    width: 100%;
  }

  .season_tab li {
    min-width: 80%;
    font-size: 16px;
    padding: 10px 20px;
    background: #121a2278;
    margin-right: 20px;
    border-radius: 20px;
  }

  .season_tab li.active {
    background: #e55a3712;
    border-radius: 20px 20px 0 0;
  }

  .tab-count {
    height: 30px;
    width: 45px;
    line-height: 30px;
    font-size: 14px;
  }

  .md-none {
    display: none;
  }

  .outline-btn.round-btn {
    margin-right: 0;
    margin-left: 10px;
  }

  .season_contents {
    padding: 0;
  }
}

@media (max-width: 991px) {
  .mega-content {
    max-height: 500px;
    overflow: auto;
  }

  body {
    overflow-y: auto;
    overflow-x: hidden;
  }
}

@media (max-width: 767px) {
  .container {
    text-align: center;
  }

  .ml-mobile-60 {
    margin-left: 60px;
  }

  .ml-mobile-80 {
    margin-left: 80px;
  }

  .fw-extra-dark {
    font-weight: 700;
  }

  .by-block {
    width: 100%;
    height: auto;
  }

  .whiteselect .select2-container {
    margin-bottom: 10px;
  }

  .whiteselect .select2-container .select2-selection--single {
    margin-bottom: 0;
  }

  .share-tags img {
    width: 32px;
    height: 32px;
  }

  .xs-pt-0 {
    padding-top: 0 !important;
  }

  .tecno-title {
    padding-top: 50px;
  }

  /* .tecno-title .font-58 {
    font-size: 24px;
  } */
  .chart-mb-head {
    margin-bottom: 10% !important;
  }

  .cross-platform-slider .font-38 {
    font-size: 24px;
  }

  .strategy-tt {
    margin-bottom: 40px;
  }

  .approch-line:before {
    width: 100%;
    height: 0px;
    bottom: 0;
    right: auto;
    border-right: none;
    border-bottom: 1px solid transparent;
    border-radius: 0;
    padding: 1px;
  }

  .approch-line {
    margin-bottom: 30px;
    padding-right: 0;
    padding-bottom: 12px;
  }

  .product-testimonial-bg:before {
    bottom: -7%;
    height: 7%;
  }

  .clutch-card p {
    height: auto;
  }

  .xs-w-auto {
    width: auto !important;
  }

  .arrow-list {
    width: 100% !important;
  }

  .video-vh {
    height: auto;
  }

  .container-box {
    display: block;
  }

  .revolution-block .slide-height {
    height: auto;
  }

  .xs-order2 {
    order: 2;
  }

  .sstext-box {
    padding: 20px 0;
  }

  /* .season_contents{
    height: auto;
  } */
  .season_tab li {
    min-width: 200px;
    justify-content: center;
  }

  .season_tab li.active {
    border-radius: 20px;
  }

  .portfolio-card .fill-btn {
    bottom: 0;
    position: relative;
  }

  .profile-img-wd {
    width: 80px;
    height: 80px;
  }

  .left-approach {
    margin-bottom: 20px;
    height: auto;
  }

  .circle-container .icon:nth-child(4) {
    top: 100%;
  }

  .xs-thriv .col-md-5 {
    order: 2;
  }

  .xs-thriv .col-md-7 {
    margin-bottom: 20px;
  }

  .xs-arrow-text .w-50 {
    width: 100% !important;
  }

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

  .startup-black-card .black-card {
    width: 100% !important;
  }

  .startup-black-card .black-card:nth-child(2) {
    top: 0;
  }

  .startup-black-card .black-card:nth-child(5) {
    top: 0;
  }

  .startup-black-card .row {
    padding: 0 10px;
  }

  .white-input .form-control {
    margin-bottom: 10px;
  }

  .key-description {
    text-align: center;
    height: 50dvh;
  }

  .slide-height {
    height: auto;
  }

  .stiky-block {
    height: auto;
  }

  .text-output {
    min-height: 50vh;
  }

  .client-card h2 {
    font-size: 50px;
    margin-bottom: 0 !important;
  }

  .client-card {
    padding: 30px;
  }

  .mob-app-dev-slider img {
    height: auto;
  }

  .cl-logo {
    width: 150px !important;
  }

  .top-anim {
    width: 100%;
  }

  .ss_main_logo_des > img {
    height: 35px;
  }

  .text-animation-block .font-60 {
    font-size: 26px;
  }

  .text-animation-block .font-60:last-child {
    margin: 0;
  }

  .all-comman-height video {
    height: auto;
  }

  /* .mb-order2{
    order: 2 !important;
  } */
  .client-anim .icon img {
    width: 100%;
  }

  .slider-big-cards .slick-dots li button:before {
    font-size: 26px;
  }

  .list-group img {
    max-width: 300px;
  }

  /* footer */
  .top-footer-bg-desc {
    left: 0;
    right: 0;
    padding: 0 20px;
  }

  .left-foo {
    display: block;
  }

  .link-col1 {
    width: 100%;
    margin-bottom: 20px;
  }

  .footer-abt a {
    display: block;
    margin-bottom: 20px;
  }

  .footer-abt .head-4 {
    font-size: 20px;
    line-height: 30px;
  }

  .right-foo {
    display: block;
  }

  .link-col5 {
    width: 100%;
  }

  .link-col1 ul li .text-18,
  .link-col2 ul li .text-18,
  .link-col3 ul li .text-18,
  .link-col4 ul li .text-18,
  .link-col5 ul li .text-18 {
    font-size: 16px;
  }

  .link-col4 {
    width: 100%;
  }

  .link-col4 .mb-4,
  .link-col5 .mb-4 {
    margin-bottom: 10px !important;
  }

  .copyright-block {
    display: block !important;
  }

  .copyright-block p {
    text-align: center;
    margin-bottom: 10px !important;
    font-size: 14px;
  }

  .copyright-block ul {
    gap: 0 !important;
    justify-content: center;
  }

  .copyright-block ul li a {
    font-size: 12px;
    margin: 0 10px;
  }

  .dot {
    display: none;
  }

  .info-box:nth-child(6) {
    top: 0;
    left: 0;
  }

  .info-box:nth-child(7) {
    top: 0;
    right: 0;
  }

  .info-box:nth-child(5) {
    top: 0;
    left: 0;
  }

  .platform-logos {
    margin: 0 0 20px 0;
    height: 260px;
  }

  .software-img-gredient {
    padding: 30px;
    margin-bottom: 0px;
    position: unset;
  }

  .font-100 {
    font-size: 36px;
  }

  .font-80 {
    font-size: 42px;
  }

  .font-68 {
    font-size: 36px;
  }

  .font-60 {
    font-size: 40px;
  }

  .font-58 {
    font-size: 30px;
  }

  .font-30 {
    font-size: 20px;
  }

  .font-22 {
    font-size: 16px;
  }

  .font-18 {
    font-size: 16px;
  }

  .box-pd {
    padding: 30px 0;
  }

  .process-container {
    padding: 0;
  }

  .product-testimonial-bg {
    height: auto !important;
    margin-bottom: 30px;
  }

  .gredient-block:after {
    width: 150px;
    height: 150px;
  }

  .worries-slider-block p {
    margin-bottom: 20px;
  }

  .clutch-card {
    margin: 0px;
  }

  .cluth-block {
    height: auto;
    margin: 0 12px;
  }

  .product-testimonial-bg img {
    width: 100%;
  }

  #fo-video-background {
    height: 380px;
  }

  .rmn-video video {
    height: auto;
    width: 100%;
    padding: 10px 0;
  }

  .rmn-main-video {
    position: relative;
    top: 0;
    transform: none;
  }

  .rmn-desc {
    padding-bottom: 50px;
  }

  .circle-container .icon img {
    width: 50px;
  }

  .circle-container .icon {
    width: 50px;
    height: auto;
    top: 60%;
  }

  .circle-container .icon:nth-child(6) {
    left: -30%;
  }

  .circle-container .icon:nth-child(7) {
    left: 0;
    top: 17%;
  }

  .exp-rate {
    padding-top: 10px;
  }

  /* handsake animation style */
  .client-anim {
    width: auto;
    height: auto;
    padding-bottom: 40%;
    margin-top: 30px;
  }

  .client-anim .icon {
    position: relative;
  }

  .client-anim .icon:nth-child(3) {
    top: 0;
    left: 0;
    transform: none;
  }

  .client-anim .icon:nth-child(2) {
    top: 0;
    left: 0;
    transform: none;
    width: 100px;
  }

  .client-anim .icon:nth-child(3) {
    top: 0;
    left: 0;
    transform: none;
    width: 100px;
  }

  .client-anim .icon:nth-child(1) {
    top: 0;
    left: 0;
    width: 100px;
  }

  .clutch-bg-bottom {
    position: absolute;
    bottom: 20px;
    left: auto;
  }

  .elevate-clutch {
    width: auto;
  }

  .circle-container {
    width: 190px;
    height: 200px;
  }

  .circle-container .icon:nth-child(1) {
    top: 32px;
  }

  .clutch-inside-text h2 {
    font-size: 80px;
    line-height: 100px;
  }

  .by-slider {
    margin: 0 0 0 0 !important;
  }

  .by-slider .slick-dots li button:before {
    font-size: 30px;
    opacity: 0.25;
  }

  .by-slider .slick-dots li.slick-active button:before {
    opacity: 1;
    color: black;
  }

  .by-slider {
    padding-bottom: 50px;
  }

  .by-slider .slick-dots {
    bottom: 10px;
  }

  .font-48 {
    font-size: 30px;
  }

  .font-20 {
    font-size: 16px;
  }

  .text-animation-block h2 {
    margin-bottom: 25px;
  }

  /* .strategy-tt {
    margin-bottom: 50px;
  } */
  .text-animation-block .font-80 {
    font-size: 24px;
    line-height: 40px;
  }

  .text-animation-block .font-48 {
    font-size: 22px;
  }

  .data-box .w-50 {
    width: 100% !important;
  }

  .data-box .font-38 {
    font-size: 22px;
  }

  .data-box .font-20 {
    font-size: 18px;
  }

  .footer-accordian .accordion-item {
    margin-bottom: 20px;
  }

  .footer-accordian .accordion-button {
    font-size: 20px;
    line-height: 30px;
  }

  .f-business-card h3 {
    width: auto;
  }

  .journey-desc {
    padding: 0;
  }

  .info-box {
    width: 100%;
  }

  .revolution-block {
    margin: 0;
  }

  .hand-tag {
    font-size: 14px;
    padding: 5px 10px;
  }

  .rv-3 {
    right: 20px;
  }

  .revolution-block .slick-slide {
    margin-top: 50px;
  }

  .revolution-block h2 {
    font-size: 30px;
  }

  .faq-bg-img {
    margin-bottom: 20px;
  }

  .social-box {
    margin-bottom: 20px;
  }

  .prefer-box {
    width: 100% !important;
    margin-bottom: 20px;
  }

  .form-box form {
    padding: 20px;
  }

  .reach-box {
    width: auto;
  }

  .mp-4 {
    bottom: 0;
    right: 0;
  }

  .mp-1 {
    top: 0;
    left: 0;
    transform: none;
  }

  .reach-box .font-20 {
    font-size: 14px;
  }

  .reach-box .flag-icon {
    width: 30px;
  }

  .round-bg-white {
    width: 30px;
    height: 30px;
  }

  .contcat-map {
    padding: 100px 0;
  }

  .mp-2 img,
  .mp-3 img {
    width: 20px;
  }

  .mp-2 {
    top: 37%;
    left: 47%;
  }

  .white-select {
    width: 100%;
    margin-bottom: 10px;
    display: block !important;
  }

  .white-input {
    width: 100%;
  }

  .white-select .form-select {
    margin-bottom: 10px;
    margin-right: 0 !important;
  }

  .font-28 {
    font-size: 24px;
  }

  .xs-w-100 {
    width: 100%;
  }

  .font-38 {
    font-size: 30px;
  }

  .clh-vd {
    padding: 0;
    margin: 0;
    border: 0;
  }

  /* .clutch-inside-text {
    top: 50%;
  } */
  .clh-vd #clutch-video-background {
    background: transparent !important;
    height: 470px;
  }

  .clh-vd.clutch-card:before {
    background: transparent;
  }

  .slider-big-cards {
    padding: 0 13px;
    margin-bottom: 90px !important;
  }

  .slider-big-cards .slick-dots li.slick-active button:before {
    opacity: 1;
    color: black;
  }

  .slider-big-cards .slick-dots {
    bottom: -40px;
  }

  .slider-big-cards .slick-dots li button:focus {
    opacity: 0.25;
  }

  .season_content:first-child {
    height: auto !important;
  }

  .data-box {
    padding: 0;
  }

  /* .scaling-image.scaled {
    height: 150px;
  } */
  .circle-container .icon:nth-child(5) {
    background: transparent;
  }

  .black-input {
    width: 100%;
  }

  .blackselect .select2-container--default .select2-selection--single {
    min-width: 100%;
  }

  .blackselect .select2-container {
    margin-bottom: 10px;
  }

  .season_tab {
    width: 100%;
    padding: 20px;
  }

  .portfolio-card {
    margin-bottom: 20px;
    height: auto;
  }

  .tab-by-box {
    height: auto;
  }

  .goal-graph .process-container {
    padding: 0;
  }

  .goal-graph .info-box:nth-child(8) {
    left: 0;
  }

  .goal-graph .info-box:nth-child(9) {
    left: 0;
  }

  .goal-graph .info-box:nth-child(10) {
    right: 0;
  }

  .goal-graph .info-box:nth-child(11) {
    right: 0;
  }

  .share-tags {
    display: block !important;
    text-align: center;
  }

  .tab-graph {
    height: auto;
  }

  .outline-accordian .accordion-button span {
    color: #ececf1;
    font-size: 30px;
    font-weight: 800;
    margin-right: 20px;
  }

  .session-future .nav {
    justify-content: start;
    white-space: nowrap;
    flex-direction: row;
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
  }

  .more-work .round-bg {
    display: inline-block;
    margin-bottom: 10px;
  }

  .xs-margin {
    margin: 0 10px;
  }

  .black-card {
    width: 100%;
    margin: 0 0 15px;
  }

  .black-card:nth-child(2) {
    top: 0;
  }

  .black-card:nth-child(4) {
    top: 0;
  }

  .black-card span {
    width: 50px;
    height: 50px;
  }

  .strategy-block,
  .brand-block,
  .mobile-app-block,
  .web-app-block {
    padding: 40px 20px;
    margin-bottom: 30px;
  }

  .strategy-block .row,
  .brand-block .row,
  .mobile-app-block .row,
  .web-app-block .row {
    flex-direction: column;
  }

  .strategy-block .col-lg-6,
  .brand-block .col-lg-6,
  .mobile-app-block .col-lg-6,
  .web-app-block .col-lg-6 {
    width: 100%;
    max-width: 100%;
  }

  .mob-app-dev-slider {
    display: flex;
    flex-direction: column;
    gap: 15px;
  }

  .mobileapp-slide-left,
  .mobileapp-slide-right {
    display: flex;
    gap: 15px;
    overflow-x: auto;
  }

  .mobileapp-slide-left img,
  .mobileapp-slide-right img {
    min-width: 150px;
    height: auto;
  }

  /* Optional: Avoid margin collapse between cards */
  .service-card-1,
  .service-card-2,
  .service-card-3,
  .service-card-4 {
    margin-bottom: 40px;
  }
}
