@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&display=swap');

@font-face {
  font-family: 'Strenx';
  src: url('../fonts/Strenx-Regular.eot');
  src: url('../fonts/Strenx-Regular.eot?#iefix') format('embedded-opentype'),
    url('../fonts/Strenx-Regular.woff2') format('woff2'),
    url('../fonts/Strenx-Regular.woff') format('woff'),
    url('../fonts/Strenx-Regular.ttf') format('truetype'),
    url('../fonts/Strenx-Regular.svg#Strenx-Regular') format('svg');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}


:root {
  --primary: #0728C5;
  --bgDark: #060606;
  --white: #ffffff;
  --primary_gradient: linear-gradient(180deg, #12ffa8 0%, #007b4d 100%);
  --borderColor: #1C1C1C;
  --black: #000000;
}

::selection {
  background: var(--primary);
  color: var(--white);
  text-shadow: none;
}

::-moz-selection {
  background: var(--primary);
  color: var(--white);
  text-shadow: none;
}

.text_primary {
  color: var(--primary);
}

.text_dark {
  color: var(--bgDark) !important;
}

.text_white {
  color: var(--white) !important;
}


body {
  font-family: "Manrope", sans-serif;
}

button {
  background-color: transparent;
  border: 0;
  padding: 0;
}

.fw_400 {
  font-weight: 400 !important;
}

.fw_500 {
  font-weight: 500 !important;
}

.fw_600 {
  font-weight: 600 !important;
}

.fw_700 {
  font-weight: 700 !important;
}

img {
  user-select: none;
}

h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5,
h6,
.h6 {
  font-weight: 700;
}

h1,
.h1 {
  font-size: 65px;
  line-height: 75px;
  font-family: 'Strenx';
  font-weight: 400;
}

h2,
.h2 {
  font-size: 60px;
  font-family: 'Strenx';
  font-weight: 400;
}

h3,
.h3 {
  font-size: 38px;
  font-weight: 600;
}

h4,
.h4 {
  font-size: 30px;
  font-weight: 600;
}

h5,
.h5 {
  font-size: 24px;
  font-weight: 600;
}

h6,
.h6 {
  font-size: 18px;
  font-weight: 600;
}

p {
  font-size: 16px;
  margin: 0 0 15px;
}

ul li {
  font-size: 16px;
}

p:last-child {
  margin: 0;
}

.p_14 {
  font-size: 14px;
}

.p_16 {
  font-size: 16px;
}

.p_18 {
  font-size: 18px;
}

.p_20 {
  font-size: 20px;
}

.p_22 {
  font-size: 22px;
}

.p_24 {
  font-size: 24px;
}

label {
  font-size: 14px;
}

a {
  color: var(--primary);
  transition: 0.5s ease;
  text-decoration: none;
}

a:hover {
  color: var(--primary);
}

img {
  max-width: 100%;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.text_gradient {
  background: linear-gradient(90deg, rgba(7, 40, 197, 1) 0%, rgba(3, 19, 95, 1) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.form-control {
  padding: 17px 20px;
  background: var(--bgDark);
  border: 1px solid rgba(var(--borderColor), 1);
  border-radius: 8px;
  font-size: 14px;
  color: rgba(var(--white), 1);
}

.form-control:focus {
  background: var(--bgDark);
  border-color: rgba(var(--primary), 1);
  box-shadow: none !important;
  color: rgba(var(--white), 1);
}

textarea.form-control {
  height: 220px;
}

.form-control::placeholder {
  color: rgba(var(--white), 1);
}

.btn_primary {
  background: rgba(var(--primary), 1);
  color: var(--primarydark);
  padding: 13px 28px;
  border-radius: 30px;
  font-size: 16px;
  font-weight: 500;
  border: 1px solid rgba(var(--primary), 1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: 0.5s ease;
}

.btn_primary img {
  transition: 0.5s ease;
}

.btn_primary:hover {
  background: transparent;
  color: rgba(var(--primary), 1);
}

.btn_primary:hover img {
  filter: hue-rotate(185deg) invert(1);
}

.btn_border_white {
  background: transparent;
  border: 1px solid var(--white);
  padding: 10px 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--white);
  text-transform: uppercase;
  transition: 0.5s ease;
}

.btn_border_white:hover {
  background: linear-gradient(90deg, rgba(7, 40, 197, 1) 0%, rgba(3, 19, 95, 1) 100%);
  border-color: var(--primary);
  color: var(--white);
}

.btn_border_white img {
  transition: 0.5s ease;
}

.btn_border_white:hover img {
  transform: rotate(45deg);
}

.btn_border_black {
  background: transparent;
  border: 1px solid var(--black);
  padding: 10px 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--black);
  text-transform: uppercase;
  transition: 0.5s ease;
}

.btn_border_black:hover {
  background: linear-gradient(90deg, rgba(7, 40, 197, 1) 0%, rgba(3, 19, 95, 1) 100%);
  border-color: var(--primary);
  color: var(--white);
}

.btn_border_black img {
  transition: 0.5s ease;
  filter: invert(1);
}

.btn_border_black:hover img {
  transform: rotate(45deg);
  filter: inherit;
}

.btn_border {
  background: transparent;
  color: rgba(var(--primary), 1);
  padding: 13px 28px;
  border-radius: 30px;
  font-size: 16px;
  font-weight: 500;
  border: 1px solid rgba(var(--primary), 1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.btn_border:hover {
  background: rgba(var(--primary), 1);
  color: var(--primarydark);
}

.btn_light_dark {
  width: 48px;
  height: 48px;
  border-radius: 0;
  border: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
}


header {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 999;
  padding: 30px 0;
  transition: 0.5s ease;
}

header.fixed {
  background: var(--bgDark);
  padding: 20px 0;
}

.navbar-nav {
  gap: 40px;
}

.navbar-nav .nav-item .nav-link {
  color: #AAAAAA;
  text-transform: uppercase;
  padding: 10px;
  font-size: 16px;
  font-weight: 400;
}

.navbar-nav .nav-item .nav-link.active,
.navbar-nav .nav-item .nav-link:hover {
  color: #fff;
}

.navbar-nav .nav-item .nav-link.btn_border_white {
  margin-left: auto;
}

.navbar-brand {
  padding: 0;
  margin: 0;
}

.banner_wrapper {
  background-color: var(--bgDark);
  padding: 300px 0;
  position: relative;
  height: 100vh;
  overflow: hidden;
  z-index: 9;
}

.banner_wrapper:before {
  content: "";
  width: 60%;
  aspect-ratio: 1/1;
  position: absolute;
  top: 250px;
  left: 50%;
  border-radius: 50%;
  transform: translateX(-50%);
  background: linear-gradient(180deg, rgba(7, 40, 197, 1) 0%, rgba(7, 40, 197, 0) 100%);
  filter: blur(300px);
  z-index: -1;
}

.hero-img {
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 600px;
  z-index: 2;
}

.hero-text {
  position: relative;
  font-weight: 400;
  letter-spacing: 1.3px;
}

.text-fill {
  color: #fff;
  position: relative;
  z-index: 1;
}

.text-stroke {
  position: absolute;
  inset: 0;
  color: transparent;
  -webkit-text-stroke: 1px #fff;
  z-index: 3;
  clip-path: inset(0 0 0 0);
}

.banner_description {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 180px;
}

.banner_description .left_desc {
  max-width: 450px;
}

.banner_description p {
  font-size: 18px;
  font-weight: 600;
  color: var(--white);
  margin: 0 0 20px;
}

.banner_description .right_desc {
  max-width: 450px;
}

.banner_description h3 {
  font-size: 38px;
  color: var(--white);
  margin: 0 0 20px;
  font-weight: 600;
}

.banner_description .user_img_wrap {
  display: flex;
  align-items: center;
}

.banner_description .user_img_wrap img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  margin-left: -25px;
}

.banner_description .user_img_wrap img:first-child {
  margin: 0;
}

.banner_description .user_total p {
  padding-left: 20px;
  font-size: 22px;
  font-weight: 500;
  color: var(--white);
  margin: 0;
}

.banner_description .user_total p span {
  display: block;
  font-size: 30px;
  font-weight: 700;
}

.about_wrapper {
  position: relative;
}

.about_wrapper .logo_text {
  position: absolute;
  right: 60%;
  top: 100px;
}

.about_number ul {
  display: flex;
  flex-direction: column;
  gap: 50px;
}

.about_number ul li {
  font-size: 22px;
  font-weight: 500;
  display: flex;
  align-items: flex-end;
  gap: 15px;
}

.about_number ul li span {
  font-size: 80px;
  font-weight: 400;
  font-family: 'Strenx';
  line-height: 1.1;
  margin-bottom: -11px;
}

.about_content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}

.about_content>* {
  margin: 0;
}

.service_wrapper .title_wrapper {
  max-width: 1300px;
  margin: 0 auto;
}

.service_wrapper {
  background: var(--bgDark);
  position: relative;
  z-index: 9;
  overflow: hidden;
}

.service_wrapper:before {
  content: "";
  position: absolute;
  right: -5%;
  top: 0;
  width: 80%;
  aspect-ratio: 1/1;
  background: url(../images/bg-shape1.svg);
  background-size: contain;
  background-repeat: no-repeat;
  z-index: -1;
}

.service_wrapper:after {
  content: "";
  width: 60%;
  aspect-ratio: 1/1;
  position: absolute;
  top: 250px;
  left: 50%;
  border-radius: 50%;
  transform: translateX(-50%);
  background: linear-gradient(180deg, rgba(7, 40, 197, 1) 0%, rgba(7, 40, 197, 0) 100%);
  filter: blur(300px);
  z-index: -1;
}

.service_inner_Wrapper {
  max-width: 960px;
  margin: 0 auto;
}

.bottom_shape {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  user-select: none;
  -webkit-user-drag: none;
}

.service_box {
  padding: 20px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.01);
  backdrop-filter: blur(120px);
  box-shadow: 5px 4px 24px 0 rgba(0, 0, 0, 0.35);
  color: var(--white);
  position: relative;
  height: 100%;
}

.service_box:before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(146deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 62%);
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}

.nav-tabs {
  border: 0;
  display: flex;
  align-items: center;
  gap: 30px;
}

.nav-tabs .nav-item {
  flex-grow: 1;
  width: calc(20% - 24px);
}

.nav-tabs .nav-item .nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  position: relative;
  z-index: 9;
  background: rgba(255, 255, 255, 0.01);
  backdrop-filter: blur(120px);
  box-shadow: 5px 4px 24px 0 rgba(0, 0, 0, 0.15);
  border-radius: 18px;
  color: var(--white);
  width: 100%;
  text-align: left;
  border: 0;
}

.nav-tabs .nav-item .nav-link img {
  width: 60px;
  height: 60px;
  object-fit: contain;
}

.nav-tabs .nav-item .nav-link span {
  width: calc(100% - 60px);
  padding-left: 20px;
  font-size: 18px;
  font-weight: 700;
  display: block;
  line-height: 1.3;
}

.nav-tabs .nav-item .nav-link:before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(167deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 82%);
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  z-index: -1;
}

.nav-tabs .nav-item .nav-link.active {
  background: var(--primary);
  border: 0;
}

.tab-content {
  position: relative;
  z-index: 9;
  border-radius: 40px;
  padding: 50px 100px;
}

.tab-content:before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(160deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 47%);
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  z-index: -1;
}

.tab-content:after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(343deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 47%);
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  z-index: -1;
}

.pricing_box {
  padding: 50px 100px;
  position: relative;
  z-index: 9;
  border-radius: 40px;
}

.pricing_box:before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(142deg, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 47%);
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  z-index: -1;
}

.pricing_box:after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(298deg, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 47%);
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  z-index: -1;
}

.pricing_box ul {
  list-style: disc;
  padding-left: 20px;
}

.plan_price {
  text-align: center;
}

.pricing_box .poppular {
  background: var(--primary);
  color: var(--white);
  padding: 4px 27px;
  font-size: 16px;
  font-weight: 600;
  display: inline-block;
  position: absolute;
  left: 43px;
  top: -6px;
  border-radius: 0 0 14px 14px;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
}

.pricing_box .poppular:before {
  content: "";
  position: absolute;
  left: -6px;
  top: 0;
  border-bottom: 6px solid #03135F;
  border-right: 0px solid #03135F;
  border-left: 6px solid transparent;
}

.pricing_box .poppular:after {
  content: "";
  position: absolute;
  right: -6px;
  top: 0;
  border-bottom: 6px solid #03135F;
  border-left: 0px solid #03135F;
  border-right: 6px solid transparent;
}

.dark_bg {
  background: var(--bgDark);
  position: relative;
  z-index: 9;
  overflow: hidden;
}

.shape_top {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
}

.dark_bg:before {
  content: "";
  position: absolute;
  right: -5%;
  top: 0;
  width: 80%;
  aspect-ratio: 1/1;
  background: url(../images/bg-shape1.svg);
  background-size: contain;
  background-repeat: no-repeat;
  z-index: -1;
}

.dark_bg:after {
  content: "";
  width: 60%;
  aspect-ratio: 1/1;
  position: absolute;
  top: 250px;
  left: 50%;
  border-radius: 50%;
  transform: translateX(-50%);
  background: linear-gradient(180deg, rgba(7, 40, 197, 1) 0%, rgba(7, 40, 197, 0) 100%);
  filter: blur(300px);
  z-index: -1;
}


.key_function_inner {
  position: relative;
  overflow: hidden;
  z-index: 9;
  border-radius: 30px;
  padding: 50px 100px;
}

.key_function_inner:before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(165deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 37%);
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  z-index: -1;
}

.key_function_inner:after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(348deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 47%);
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  z-index: -1;
}

.key_function_inner ul {
  display: flex;
  flex-wrap: wrap;
  gap: 100px;
}

.key_function_inner ul li {
  width: calc(25% - 75px);
  position: relative;
}

.key_function_inner ul li:before {
  content: "";
  position: absolute;
  left: -50px;
  top: 0;
  width: 1px;
  height: 100%;
  background: url(../images/line-gradient.svg);
  background-size: contain;
  background-repeat: no-repeat;
}

.key_function_inner ul li:first-child:before {
  display: none;
}

.key_function_inner ul li h4 {
  font-size: 22px;
}

.list_check {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.list_check li {
  padding-left: 25px;
  position: relative;
}

.list_check li:before {
  content: "";
  position: absolute;
  left: 0;
  top: 3px;
  width: 20px;
  height: 20px;
  background: url(../images/check.svg);
  background-size: 20px;
  background-repeat: no-repeat;
}

.number_choose {
  max-width: 280px;
  margin-left: auto;
  display: flex;
  flex-direction: column;
  gap: 50px;
  position: relative;
  padding-left: 80px;
}

.number_choose:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 1px;
  height: 100%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 50%, rgba(255, 255, 255, 0) 100%);
}

.number_choose li {
  font-size: 18px;
  font-weight: 400;
}

.number_choose li span {
  display: block;
  font-size: 46px;
  font-family: 'Strenx';
  line-height: 1;
}

.key_function_wrapper .logo_text {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  z-index: -1;
}

.key_function_wrapper .logo_text img {
  width: 100%;
}

.testimonial_slider {
  padding: 30px 20px;
}

.testimonial_box {
  padding: 30px 50px;
  border-radius: 50px;
  border: 1px solid #1C1C1C;
  box-shadow: 0 4px 16px 0 rgba(0, 0, 0, 0.25);
  background: var(--white);
}

.testimonial_box h5 {
  color: var(--primary);
  font-size: 24px;
  font-weight: 700;
}

.testimonial_box .rating {
  margin: 10px 0;
  display: flex;
  align-items: center;
  gap: 5px;
}

.testimonial_slider .swiper-wrapper .swiper-slide:nth-child(odd) {
  transform: rotate(2deg);
}

.testimonial_slider .swiper-wrapper .swiper-slide:nth-child(even) {
  transform: rotate(-2deg);
}

.testimonial_slider_wrapper {
  position: relative;
  z-index: 9;
}

.testimonial_line {
  position: absolute;
  left: 0;
  top: 40%;
  transform: translateY(-50%);
  z-index: -1;
}

.blog_box {
  border: 1px solid rgba(59, 59, 59, 0.3);
  border-radius: 20px;
  overflow: hidden;
}

.blog_box .blog_img {
  overflow: hidden;
  aspect-ratio: 53/40;
  width: 100%;
}

.blog_box .blog_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.5s ease;
}

.blog_box:hover .blog_img img {
  transform: scale(1.08);
}

.blog_box .blog_content {
  padding: 20px;
}

.blog_content h4 {
  font-size: 20px;
  font-weight: 600;
}

.blog_content h4 a {
  color: var(--bgDark);
}

.blog_content h4 a:hover {
  color: var(--primary);
}

.accrdian_wrapper {
  max-width: 1150px;
  margin: 0 auto;
}

.accordion-item {
  border: 0;
  padding: 40px 0;
  border-bottom: 1px solid rgba(59, 59, 59, 0.2);
  position: relative;
}

.accordion-item:before {
  content: attr(data-num);
  font-size: 26px;
  font-weight: 700;
  position: absolute;
  left: 0;
  top: 32px;
}

.accordion-item:after {
  content: "";
  position: absolute;
  right: 0;
  top: 48px;
  border-right: 7px solid transparent;
  border-left: 7px solid transparent;
  border-bottom: 8px solid var(--bgDark);
  transform: rotate(135deg);
  transform: 0.5s ease;
}

.accordion-button:not(.collapsed) {
  color: var(--bs-accordion-active-color);
  background-color: transparent;
  box-shadow: none;
}

.accordion-header {
  max-width: 740px;
  margin: 0 auto;
  padding: 0 40px;
}

.accordion-button {
  padding: 0;
  font-size: 20px;
  font-family: "Manrope", sans-serif;
  font-weight: 700;
  box-shadow: none !important;
}

.accordion-body {
  padding: 20px 40px 0;
  max-width: 740px;
  margin: 0 auto;
}

.accordion-button::after {
  display: none;
}

.accordion-item:has(.accordion-button:not(.collapsed)):after {
  transform: rotate(45deg);
}

.address_box {
  padding: 30px 50px;
  position: relative;
  overflow: hidden;
  z-index: 9;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
}

.address_box:before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(165deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 37%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  z-index: -1;
}

.address_box:after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(348deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 47%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  z-index: -1;
}

.address_box>ul {
  display: flex;
  flex-wrap: wrap;
  gap: 60px 100px;
  position: relative;
}

.address_box>ul:before {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 0;
  width: 1px;
  height: 100%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 50%, rgba(255, 255, 255, 0) 100%);
}

.address_box>ul:after {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  height: 1px;
  background: linear-gradient(4deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 50%, rgba(255, 255, 255, 0) 100%);
}

.address_wrapper {
  position: relative;
}

.address_wrapper:before {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: 1px;
  height: 100%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 50%, rgba(255, 255, 255, 0) 100%);
}

.address_box>ul>li {
  width: calc(50% - 50px);
}

.address_box>ul>li h5 {
  font-size: 20px;
  font-weight: 600;
}

.address_list {
  display: flex;
  align-items: center;
}

.address_list .icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
}

.address_list .content {
  width: calc(100% - 36px);
  padding-left: 10px;
}

.address_list .content a {
  font-size: 18px;
  font-weight: 400;
  color: var(--white);
}

.address_list .content a:hover {
  opacity: 0.6;
}

.social_wrap {
  display: flex;
  align-items: center;
  gap: 20px;
}

.social_wrap li a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact_form_wrapper {
  padding: 50px;
  position: relative;
  z-index: 9;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
}

.contact_form_wrapper:before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(165deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 37%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  z-index: -1;
}

.contact_form_wrapper:after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(348deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 47%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  z-index: -1;
}

.form_group label {
  font-size: 14px;
  font-weight: 500;
  color: var(--white);
  margin: 0 0 10px;
}

.form_group .form-control {
  background-color: transparent;
  border: 1px solid var(--white);
  color: var(--white);
  border-radius: 0;
  box-shadow: none !important;
  padding: 13px 20px;
}

.form_group textarea.form-control {
  border: 0;
  border-bottom: 1px solid var(--white);
  height: 80px;
  padding: 0;
}

.contact_main {
  position: relative;
}

.contact_main .top_img {
  position: absolute;
  right: -130px;
  top: -140px;
  max-width: 350px;
}

.footer_link h5 {
  margin: 0 0 20px;
  color: var(--white);
  font-size: 20px;
  font-weight: 700;
}

.footer_link>ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer_link ul li a {
  font-size: 18px;
  font-weight: 400;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer_link>ul li a:hover {
  opacity: 0.7;
}

.contact_footer,
.main_footer {
  position: relative;
}

.contact_footer:after,
.main_footer:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(4deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 50%, rgba(255, 255, 255, 0) 100%);
}

footer .logo_text {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  z-index: -1;
}

footer .logo_text img {
  width: 100%;
}

.inner_banner_wrapper {
  background: url(../images/inner-banner.jpg);
  background-size: cover;
  background-position: center;
  padding: 240px 0 180px;
  overflow: hidden;
  position: relative;
  z-index: 9;
}

.inner_banner_wrapper .light_text {
  position: absolute;
  left: 0;
  color: var(--white);
  opacity: 0.05;
  width: 100%;
  bottom: -40px;
  z-index: 9;
  font-size: clamp(2rem, 16vw, 20rem);
  text-align: center;
  font-family: 'Strenx';
  line-height: 0.7;
  z-index: -1;
  user-select: none;
}

.inner_banner_wrapper.ai_stratagy .light_text {
  font-size: clamp(2rem, 20vw, 24rem);
}

.inner_banner_wrapper.solutions .light_text {
  font-size: clamp(2rem, 24vw, 29rem);
}

.inner_banner_wrapper.what_we_do .light_text {
  font-size: clamp(2rem, 18vw, 22rem);
}

.inner_banner_wrapper.insights .light_text {
  font-size: clamp(2rem, 29vw, 34rem);
  bottom: -160px;
}

.inner_banner_wrapper.contact .light_text {
  font-size: clamp(2rem, 20vw, 24rem);
  bottom: -80px;
}

.inner_banner_wrapper.termsConditions .light_text {
  font-size: clamp(2rem, 20vw, 24rem);
  bottom: -80px;
}

.inner_banner_wrapper.primacy .light_text {
  font-size: clamp(2rem, 29vw, 34rem);
  bottom: -120px;
}

.service_box_main {
  border-radius: 30px;
  color: var(--white);
  aspect-ratio: 50/52;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  overflow: hidden;
  position: relative;
  z-index: 9;
}

.service_box_main.small {
  aspect-ratio: 50/25;
}

.service_logo {
  width: 100%;
}

.service_box_main.large {
  aspect-ratio: 155/40;
  align-items: center;
  justify-content: center;
}

.service_box_main .social_wrap li a {
  width: 70px;
  height: 70px;
}

.service_box_main .social_wrap li a img {
  width: 40px;
}

.service_box_main.large .logo_text {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: -1;
  width: 100%;
}

.service_box_main.large .logo_text img {
  width: 100%;
}

.service_tab_wrapper .nav-tabs .nav-item .nav-link {
  color: var(--bgDark);
  box-shadow: none;
}

.service_tab_wrapper .nav-tabs .nav-item .nav-link.active {
  color: var(--white);
}

.service_tab_wrapper .nav-tabs .nav-item .nav-link:before {
  background: linear-gradient(167deg, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 82%);
}

.service_tab_wrapper .tab-content:before {
  background: linear-gradient(108deg, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 47%);
}

.service_tab_wrapper .tab-content:after {
  background: linear-gradient(305deg, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 47%);
}

.service_detail_top {
  padding-bottom: 30px;
  margin-bottom: 30px;
  border-bottom: 1px solid #ddd;
}

.servvice_link_wrap ul {
  position: relative;
  overflow: hidden;
  z-index: 9;
  border-radius: 20px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.servvice_link_wrap ul:before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(116deg, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 37%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  z-index: -1;
}

.servvice_link_wrap ul:after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(313deg, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 47%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  z-index: -1;
}

.servvice_link_wrap ul li a {
  font-size: 16px;
  font-weight: 400;
  color: var(--bgDark);
  position: relative;
  transition: 0.5s ease;
}

.servvice_link_wrap ul li a:before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%) scale(0);
  width: 16px;
  height: 16px;
  background: url(../images/arrow-top-up.svg);
  background-repeat: no-repeat;
  background-size: 16px;
  transition: 0.5s ease;
}

.servvice_link_wrap ul li a:hover,
.servvice_link_wrap ul li a.active {
  padding-left: 20px;
  color: var(--primary);
}

.servvice_link_wrap ul li a:hover:before,
.servvice_link_wrap ul li a.active:before {
  transform: translateY(-50%) scale(1);
}

.video_wrapper {
  aspect-ratio: 135/55;
  overflow: hidden;
  border-radius: 20px;
  margin: 30px 0;
  position: relative;
}

.video_wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video_wrapper .btn_video {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.service_feature_wrap ul {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.service_feature_wrap ul li {
  padding-left: 35px;
  position: relative;
}

.service_feature_wrap ul li:before {
  content: "";
  position: absolute;
  left: 0;
  top: 5px;
  width: 16px;
  height: 16px;
  background: url(../images/arrow-top-up.svg);
  background-repeat: no-repeat;
  background-size: 16px;
  transition: 0.5s ease;
}

.service_feature_wrap ul li h5 {
  font-size: 18px;
  font-weight: 600;
  color: var(--primary);
}

.list_check.dark li:before {
  filter: invert(1);
}

.key_feature_solutions .key_function_inner:before {
  background: linear-gradient(115deg, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 37%);
}

.key_feature_solutions .key_function_inner:after {
  background: linear-gradient(305deg, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 47%);
}

.mission_box {
  padding: 100px 60px;
  border-radius: 30px;
  background: url(../images/mission-bg.jpg);
  background-size: cover;
  height: 100%;
}

.mission_inner_box {
  max-width: 540px;
}

.what_we_do_box {
  padding: 50px;
  border-radius: 30px;
  overflow: hidden;
  position: relative;
  z-index: 9;
}

.what_we_do_box:before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(116deg, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 37%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  z-index: -1;
}

.what_we_do_box:after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(313deg, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 47%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  z-index: -1;
}

.what_we_do_box ul {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.what_we_do_box ul li,
.what_we_do_box h5 {
  display: flex;
  justify-content: space-between;
  gap: 10px;
}

.what_we_do_box ul li b,
.what_we_do_box h5 b {
  width: calc(40% - 10px);
  font-weight: 400;
}

.what_we_do_box ul li span,
.what_we_do_box h5 span {
  width: 60%;
  display: block;
}

.what_we_do_Wrapper .service_box_main.large {
  aspect-ratio: 87/30;
}

.what_we_do_Wrapper .service_box_main .social_wrap li a {
  width: 45px;
  height: 45px;
}

.what_we_do_Wrapper .service_box_main .social_wrap li a img {
  width: 24px;
}

.indight_box {
  border: 1px solid rgba(59, 59, 59, 0.3);
  border-radius: 20px;
  overflow: hidden;
}

.indight_box .insight_img {
  aspect-ratio: 1070/500;
  overflow: hidden;
}

.indight_box .insight_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.5s ease;
}

.indight_box:hover .insight_img img {
  transform: scale(1.08) rotate(2deg);
}

.indight_box .insight_content {
  padding: 20px 20px 20px 30px;
}

.indight_box .insight_content h3 {
  font-size: 28px;
  font-weight: 600;
  margin: 0 0 20px;
}

.indight_box .insight_content h3 a {
  color: var(--bgDark);
}

.indight_box .insight_content h3 a:hover {
  color: var(--primary);
}

.indight_box .insight_content .insight_category {
  display: flex;
  flex-direction: column;
  height: 100%;
  align-items: flex-end;
  justify-content: space-between;
}

.indight_box .insight_content .insight_category a,
.indight_box .insight_content .insight_category span {
  color: #AAAAAA;
  font-size: 16px;
}

.insight_sidebar_wrapper {
  max-width: 370px;
}

.title_sidebar h5 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 0 15px;
  padding: 0 0 15px;
  border-bottom: 1px solid rgba(59, 59, 59, 0.3);
}

.service_box_sidebar {
  display: flex;
  align-items: center;
  margin: 0 0 20px;
  padding: 0 0 20px;
  border-bottom: 1px solid rgba(59, 59, 59, 0.3);
}

.service_box_sidebar .img {
  width: 150px;
  aspect-ratio: 1/1;
  border-radius: 20px;
  overflow: hidden;
}

.service_box_sidebar .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.5s ease;
}

.service_box_sidebar:hover .img img {
  transform: scale(1.05);
}

.service_box_sidebar .content {
  width: calc(100% - 150px);
  padding-left: 20px;
}

.service_box_sidebar .content h6 {
  margin: 0 0 10px;
  color: #AAAAAA;
  font-size: 16px;
}

.service_box_sidebar .content h4 {
  font-size: 16px;
  font-weight: 400;
  margin: 0;
}

.service_box_sidebar .content h4 a {
  color: var(--bgDark);
}

.service_box_sidebar .content h4 a:hover {
  color: var(--primary);
}

.tags_list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.tags_list li a {
  padding: 10px 16px;
  background: #F9F9F9;
  border: 1px solid rgba(59, 59, 59, 0.3);
  border-radius: 40px;
  font-size: 16px;
  font-weight: 400;
  color: var(--bgDark);
  display: block;
}

.tags_list li a:before {
  content: "/";
  padding-right: 3px;
}

.tags_list li a:after {
  content: "/";
  padding-left: 3px;
}

.pagination_wrapper ul {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.pagination_wrapper ul li a {
  width: 60px;
  height: 60px;
  border-radius: 50px;
  border: 1px solid #0728C5;
  color: #0728C5;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 700;
  font-family: 'Strenx';
}

.pagination_wrapper ul li a.next {
  width: inherit;
  color: #060606;
  border-color: #060606;
  padding: 0 28px;
  font-family: "Manrope", sans-serif;
  gap: 10px;
  font-size: 20px;
  text-transform: uppercase;
  font-weight: 400;
}

.blog_image_large {
  aspect-ratio: 1070 / 500;
  overflow: hidden;
  border-radius: 20px 20px 0 0;
  margin: 0 0 30px;
}

.blog_image_large img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.5s ease;
}

.blog_detail h1 {
  font-size: 36px;
  line-height: 1.2;
  font-weight: 600;
  margin: 0 0 20px;
  font-family: "Manrope", sans-serif;
}

.comment_wrapper {
  padding: 50px;
  background: #F9F9F9;
  border: 1px solid rgba(59, 59, 59, 0.3);
  border-radius: 30px;
}

.comment_wrapper .form-control {
  color: var(--bgDark);
  border: 0;
  border-bottom: 1px solid var(--bgDark);
  padding: 10px 0;
}

.comment_wrapper textarea.form-control {
  border: 0;
  border-bottom: 1px solid var(--bgDark);
}

.form-check .form-check-label {
  font-size: 16px;
  font-weight: 500;
  color: var(--bgDark);
}

.form-check .form-check-input {
  width: 18px;
  height: 18px;
  background-color: transparent;
  border: 2px solid var(--bgDark);
  border-radius: 3px;
  box-shadow: none !important;
}

.form-check-input:checked[type=checkbox] {
  filter: brightness(0);
}

.privacy_wrapper h4 {
  font-size: 22px;
  font-weight: 600;
  margin: 30px 0 20px;
}

.privacy_wrapper ul {
  list-style: disc;
  padding-left: 20px;
}