/* ---------------------------------------------------------
    Codrenic AI Agency
    Version: 1.0.0
 --------------------------------------------------------- */
/*--------- Abstracts variable --------- */
:root {
  --white: #FFFFFF;
  --black: #000000;
  --ai-agency-orange: #FC7028;
  --ai-agency-gray: #F2F2F2;
  --ai-startup-light-dark: #131313;
  --ai-startup-gradient: linear-gradient(90deg, #A291FE 0%, #5C57E7 50%, #71BBF9 100%);
  --ai-startup-blue: #5C57E7;
  --color-title: #111827;
  --color-paragraph: #71717A;
  --color-text-1: #FFFFFF80;
  --color-text-2: #FFFFFFA6;
  --color-text-3: #FFFFFFB2;
  --color-text-4: #FFFFFF8C;
  --color-text-5: #FFFFFFBF;
  --color-border-1: #5C57E71A;
  --color-border-2: #1313131A;
  --color-border-3: #FFFFFF12;
  --color-border-4: #0000001A;
  --color-border-5: #FFFFFF1A;
  --color-border-6: #1F1E1E;
  --color-border-7: #00000012;
  --color-border-8: #1414141A;
  --color-bg-1: #5C57E71A;
  --color-bg-2: #2D2832;
  --color-bg-3: #FFFFFF08;
}

/*------------ Core CSS ------------ */
/*--------- Abstracts variable --------- */
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  font-family: inherit;
  font-size: 100%;
  font-style: inherit;
  font-weight: inherit;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

/* Elements
-------------------------------------------------------------- */
html {
  margin-right: 0 !important;
  scroll-behavior: smooth;
}

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

body {
  font-family: "Bai Jamjuree", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
  background-color: var(--white);
  height: 100%;
}

body::-webkit-scrollbar {
  display: none;
}

p {
  font-family: "Bai Jamjuree", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
}

img {
  max-width: 100%;
  height: auto;
  transform: scale(1);
  vertical-align: middle;
  -ms-interpolation-mode: bicubic;
}

ul,
li {
  list-style-type: none;
  margin-bottom: 0;
  padding-left: 0;
  list-style: none;
}

table {
  width: 100%;
  overflow-x: auto;
  table-layout: auto;
  border-collapse: collapse;
}

td,
th {
  padding: 12px 16px;
}

@media (min-width: 1200px) {

  td,
  th {
    padding: 16px 24px;
  }}

svg path {
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

button {
  background: transparent;
  border: 0;
  display: inline-flex;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

select,
option {
  all: unset;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background: transparent;
  border: none;
  padding: 0;
  margin: 0;
  font: inherit;
  color: inherit;
  cursor: pointer;
}

:-ms-input-placeholder {
  color: var(--secondary-2);
}

b,
strong {
  font-weight: bolder;
}

video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

a {
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  text-decoration: none;
  cursor: pointer;
  display: inline-block;
  font-family: "Bai Jamjuree", sans-serif;
  color: var(--text);
}

a:focus,
a:hover {
  text-decoration: none;
  outline: 0;
}

[data-grid=grid-1] {
  display: grid;
  gap: 30px;
  grid-template-columns: 1fr;
}

[data-grid=grid-2] {
  display: grid;
  gap: 30px;
  grid-template-columns: 1fr 1fr;
}

[data-grid=grid-3] {
  display: grid;
  gap: 30px;
  grid-template-columns: repeat(3, 1fr);
}

[data-grid=grid-4] {
  display: grid;
  gap: 30px;
  grid-template-columns: repeat(4, 1fr);
}

[data-grid=grid-5] {
  display: grid;
  gap: 30px;
  grid-template-columns: repeat(5, 1fr);
}

[data-grid=grid-6] {
  display: grid;
  gap: 30px;
  grid-template-columns: repeat(6, 1fr);
}

[data-grid=grid-7] {
  display: grid;
  gap: 30px;
  grid-template-columns: repeat(7, 1fr);
}

#scroll-top {
  position: fixed;
  display: block;
  width: 48px;
  height: 48px;
  line-height: 50px;
  border-radius: 4px;
  z-index: 1;
  border-radius: 50%;
  opacity: 0;
  visibility: hidden;
  cursor: pointer;
  overflow: hidden;
  z-index: 100;
  background-color: var(--main);
  border: 0;
  bottom: 92px;
  right: 20px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

#scroll-top.show {
  opacity: 1;
  visibility: visible;
}

#scroll-top:hover {
  transform: translateY(-5px);
  background-color: var(--primary);
}

/* Preload 
------------------------------------------- */
.preload-container {
  display: flex;
  position: relative;
  width: 100%;
  height: 100%;
  background: #ffffff;
  position: fixed;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  z-index: 99999999999;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }}

.tf-swiper .swiper-slide {
  height: auto;
}

.tf-swiper .swiper-slide>* {
  height: 100%;
}

.opacity-100 {
  opacity: 1 !important;
}

[data-background] {
  background-size: cover;
  background-repeat: no-repeat;
}

/*--------- Abstracts variable --------- */
/* Typography
============================================================== */
/* Heading */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Bai Jamjuree", sans-serif;
  text-rendering: optimizeLegibility;
  font-weight: 500;
  margin-bottom: 0;
  letter-spacing: 0;
}

.h1,
.h2,
.h3,
.h4,
.h5 {
  font-family: "Bai Jamjuree", sans-serif;
  text-rendering: optimizeLegibility;
  font-weight: 400;
  margin-bottom: 0;
  letter-spacing: 0;
}

h1,
.h1 {
  font-size: clamp(48px, 4.17vw, 60px) !important;
  line-height: clamp(56px, 4.51vw, 65px) !important;
  letter-spacing: -0.03em;
}

h2,
.h2 {
  font-size: clamp(32px, 3.47vw, 50px) !important;
  line-height: clamp(40px, 3.96vw, 57px) !important;
  letter-spacing: -0.03em !important;
}

h3,
.h3 {
  font-size: clamp(18px, 1.53vw, 22px) !important;
  line-height: clamp(26px, 2.22vw, 32px) !important;
  letter-spacing: -0.03em;
}

h4,
.h4 {
  font-size: clamp(18px, 1.39vw, 20px) !important;
  line-height: clamp(26px, 2.08vw, 30px) !important;
  letter-spacing: -0.03em;
}

h5,
.h5 {
  font-size: 18px;
  line-height: clamp(26px, 1.94vw, 28px) !important;
  letter-spacing: -0.03em;
}

/* Text Design */
.text-title-1 {
  font-size: clamp(18px, 2vw, 24px);
  line-height: clamp(26px, 2.08vw, 30px);
}

.text-title-2 {
  font-size: clamp(22px, 2.5vw, 30px);
  line-height: clamp(30px, 3vw, 38px);
}

.text-title-3 {
  font-size: clamp(28px, 3.5vw, 40px);
  line-height: clamp(34px, 4vw, 47px);
}

.text-body-1 {
  font-size: clamp(16px, 1.67vw, 20px);
  line-height: 26px;
}

.text-body-2 {
  font-size: clamp(16px, 1.67vw, 18px);
  line-height: 26px;
}

.text-caption {
  font-size: 14px;
  line-height: 100%;
}

.ff-2 {
  font-family: "DM Sans", sans-serif !important;
}

.fw-5 {
  font-weight: 500 !important;
}

.fw-6 {
  font-weight: 600 !important;
}

.fw-7 {
  font-weight: 700 !important;
}

/* Font custom */
/* Font size */
.fs-70 {
  font-size: clamp(40px, 5.5vw, 70px) !important;
}

/* Line height */
.lh-35 {
  line-height: clamp(26px, 2.08vw, 35px) !important;
}

.lh-72 {
  line-height: clamp(56px, 4.51vw, 72px) !important;
}

.lh-100 {
  line-height: 100% !important;
}

/* Responsive */
/*--------- Abstracts variable --------- */
/* General
============================================================== */
.flat-spacing-1 {
  padding-top: 130px;
  padding-bottom: 130px;
}

@media (max-width: 1439px) {
  .flat-spacing-1 {
    padding-top: 80px;
    padding-bottom: 80px;
  }}

@media (max-width: 991px) {
  .flat-spacing-1 {
    padding-top: 60px;
    padding-bottom: 60px;
  }}

.flat-spacing-2 {
  padding-top: 136px;
  padding-bottom: 130px;
}

@media (max-width: 1439px) {
  .flat-spacing-2 {
    padding-top: 80px;
    padding-bottom: 80px;
  }}

@media (max-width: 991px) {
  .flat-spacing-2 {
    padding-top: 60px;
    padding-bottom: 60px;
  }}

.flat-spacing-3 {
  padding-top: 0;
  padding-bottom: 132px;
}

@media (max-width: 1439px) {
  .flat-spacing-3 {
    padding-top: 0;
    padding-bottom: 80px;
  }}

@media (max-width: 991px) {
  .flat-spacing-3 {
    padding-top: 0;
    padding-bottom: 60px;
  }}

.flat-spacing-6 {
  padding-top: 0;
  padding-bottom: 130px;
}

@media (max-width: 1439px) {
  .flat-spacing-6 {
    padding-top: 0;
    padding-bottom: 80px;
  }}

@media (max-width: 991px) {
  .flat-spacing-6 {
    padding-top: 0;
    padding-bottom: 60px;
  }}

.flat-spacing-8 {
  padding-top: 0;
  padding-bottom: 141px;
}

@media (max-width: 1439px) {
  .flat-spacing-8 {
    padding-top: 0;
    padding-bottom: 80px;
  }}

@media (max-width: 991px) {
  .flat-spacing-8 {
    padding-top: 0;
    padding-bottom: 60px;
  }}

.flat-spacing-9 {
  padding-top: 0;
  padding-bottom: 102px;
}

@media (max-width: 1439px) {
  .flat-spacing-9 {
    padding-top: 0;
    padding-bottom: 80px;
  }}

@media (max-width: 991px) {
  .flat-spacing-9 {
    padding-top: 0;
    padding-bottom: 60px;
  }}

.mt-30 {
  margin-top: 30px;
}

.mt-70 {
  margin-top: 70px;
}

.mb-6 {
  margin-bottom: 6px !important;
}

.mb-8 {
  margin-bottom: 8px !important;
}

.mb-9 {
  margin-bottom: 9px !important;
}

.mb-10 {
  margin-bottom: 10px !important;
}

.mb-20 {
  margin-bottom: 20px !important;
}

.mb-30 {
  margin-bottom: 30px !important;
}

.mb-50 {
  margin-bottom: 50px !important;
}

.mb-52 {
  margin-bottom: 52px;
}

.mb-53 {
  margin-bottom: 53px;
}

.mb-56 {
  margin-bottom: 56px !important;
}

.mb-58 {
  margin-bottom: 58px;
}

.mb-70 {
  margin-bottom: 70px !important;
}

.mb-73 {
  margin-bottom: 73px;
}

/* Padding */
/* Gap */
.g-7 {
  gap: 7px;
}

.g-10 {
  gap: 10px !important;
}

.g-20 {
  gap: 20px !important;
}

.g-30 {
  gap: 30px !important;
}

.rg-15 {
  row-gap: 15px !important;
}

.rg-30 {
  row-gap: 30px !important;
}

.rg-50 {
  row-gap: 50px;
}

.rg-60 {
  row-gap: 60px;
}

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

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

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

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

.letter-space-0 {
  letter-spacing: 0em !important;
}

.letter-space--2 {
  letter-spacing: -0.02em;
}

.letter-space--3 {
  letter-spacing: -0.03em;
}

.letter-space--5 {
  letter-spacing: -0.05em;
}

.border-radius-30 {
  border-radius: 30px !important;
}

.container {
  position: relative;
  margin-left: auto;
  margin-right: auto;
  padding-right: 15px;
  padding-left: 15px;
  max-width: 1320px;
  width: 100%;
}

.container .row {
  margin-left: -15px !important;
  margin-right: -15px !important;
}

.container .row>* {
  padding-left: 15px !important;
  padding-right: 15px !important;
}

.container.w-975 {
  max-width: 975px;
}

.container.w-1220 {
  max-width: 1220px;
}

.container.w-1222 {
  max-width: 1222px;
}

.container.w-1302 {
  max-width: 1302px;
}

.container.w-1810 {
  max-width: 1810px;
}

/* ------------ Header ---------------- */
/*--------- Abstracts variable --------- */
.header .header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

@media (max-width: 1199px) {
  .header .header-content {
    padding: 15px 0;
  }}

@media (min-width: 1200px) {
  .header .header-content {
    margin-top: 20px;
  }}

@media (min-width: 1200px) {
  .header.style-2 .header-content {
    margin-top: 15px;
    padding: 0 10px 0 20px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.15) 0%, rgba(153, 153, 153, 0.021) 100%);
    border: 1px solid var(--color-border-5);
    border-radius: 30px;
  }}

@media (max-width: 1199px) {
  .header.style-2 .header-content {
    padding: 15px 0;
  }}

.logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none !important;
}

.logo img {
  height: 30px;
  width: auto;
  object-fit: contain;
}

.logo.logo-text,
.logo-text,
.logo-footer.logo-text,
.logo-site.logo-text {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none !important;
}

.logo-text .logo-text-title {
  font-family: "Bai Jamjuree", sans-serif;
  font-weight: 700;
  font-size: 22px;
  letter-spacing: 0.08em;
  color: var(--color-title);
  text-transform: uppercase;
  line-height: 1;
  transition: all 0.3s ease;
}

.logo-text:hover .logo-text-title {
  opacity: 0.85;
}

.header.style-2 .logo-text .logo-text-title,
.header-fixed.header-sticky .logo-text .logo-text-title {
  color: var(--white) !important;
}

.about-footer .logo-footer.logo-text .logo-text-title {
  color: var(--white) !important;
  font-size: 24px;
}

.pop-up-nav-mobile .canvas-header .logo-site.logo-text .logo-text-title {
  color: var(--white) !important;
  font-size: 20px;
}

@media (max-width: 991px) {
  .logo {
    max-width: 150px;
  }

  .logo-text .logo-text-title {
    font-size: 19px;
  }}

.header-fixed {
  position: sticky;
  top: 0px;
  z-index: 999;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.header-fixed.header-sticky {
  background-color: var(--ai-startup-light-dark);
}

.header-fixed.header-sticky .box-nav-menu {
  background: transparent;
  /* keep the border solid+1px in both states so only its (transparent)
     colour transitions - "border: unset" flipped border-style none->solid
     instantly while animating currentColor->transparent, which flashed a
     dark outline when scrolling back up past the sticky threshold */
  border-color: transparent;
  backdrop-filter: unset;
}

.header-fixed.header-sticky.style-2 .header-content {
  background: transparent;
  border-color: transparent;
}

.box-nav-menu {
  display: flex;
  gap: 14.8px;
  padding: 0 20px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.15) 0%, rgba(153, 153, 153, 0.021) 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 50px;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.box-nav-menu .item-link {
  display: flex;
  align-items: center;
  gap: 5px;
  position: relative;
}

.box-nav-menu .item-link .icon {
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  font-size: 16px;
}

.box-nav-menu.style-2 {
  background: transparent;
  border-color: transparent;
  gap: 40px;
  padding: 0;
}

.menu-item .item-link {
  color: var(--color-text-1);
  padding: 21px 20px;
  border-radius: 30px;
}

.menu-item .item-link span {
  font-weight: 600;
  position: relative;
  z-index: 2;
  text-decoration-line: underline;
  text-decoration-color: transparent;
  text-underline-offset: 1px;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.menu-item .item-link::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0%;
  height: 0%;
  transform: translateY(-50%);
  background-image: var(--ai-startup-gradient);
  border-radius: 30px;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  opacity: 0;
  visibility: hidden;
}

.menu-item .item-link.active {
  padding-left: 20px;
  padding-right: 20px;
}

.menu-item .item-link.active span {
  color: var(--white);
  text-decoration-color: var(--white);
}

.menu-item .item-link.active::before {
  left: 0;
  width: 100%;
  height: 40px;
  opacity: 1;
  visibility: visible;
}

.menu-item.has-sub_menu {
  position: relative;
}

.menu-item:hover .item-link span {
  color: var(--white);
  text-decoration-color: var(--white);
}

.menu-item:hover .item-link::before {
  left: 0;
  width: 100%;
  height: 40px;
  opacity: 1;
  visibility: visible;
}

.menu-item:hover .sub-menu {
  transform: scale(1);
  pointer-events: all;
  opacity: 1;
  visibility: visible;
}

.menu-item.style-2 .item-link {
  padding: 17px 0 !important;
}

.menu-item.style-2 .item-link span {
  text-decoration-line: none;
}

.menu-item.style-2 .item-link::before {
  display: none;
}

.sub-menu {
  position: absolute;
  top: 100%;
  background-color: var(--white);
  box-shadow: 0px 12px 46px 0px rgba(0, 0, 0, 0.1019607843);
  min-width: 180px;
  left: 0;
  transform: scale(0.9);
  transform-origin: top;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -ms-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.sub-menu_list {
  padding: 18px 0px;
}

.mb-menu-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 500;
  font-size: 16px;
  line-height: 22px;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.mb-menu-link .icon {
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.mb-menu-link:not(.collapsed) .icon {
  transform: rotate(180deg);
}

.mb-menu-link.active span {
  color: var(--white) !important;
}

.sub-nav-link {
  padding: 6px 0 6px 12px;
  color: var(--color-text-1);
}

.sub-nav-link.active {
  color: var(--white);
}

.nav-ul-mb li .mb-menu-link {
  padding: 6px 0;
}

.nav-ul-mb li .mb-menu-link span {
  color: var(--color-text-1);
}

.mobile-button {
  display: block;
  width: 24px;
  height: 18px;
  position: relative;
  cursor: pointer;
}

.mobile-button span {
  position: absolute;
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--white);
}

.mobile-button span:first-child {
  top: 0;
}

.mobile-button span:nth-child(2) {
  top: 50%;
  transform: translateY(-50%);
}

.mobile-button span:last-child {
  bottom: 0;
}

@media (max-width: 1199px) {
  .sidebar-filter {
    position: fixed;
    bottom: 0;
    z-index: 3000;
    display: flex;
    flex-direction: column;
    background-clip: padding-box;
    outline: 0;
    background-color: var(--white) !important;
    padding: 30px 15px !important;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    overflow: auto;
    max-width: 400px;
    width: 100%;
  }

  .sidebar-filter.left {
    top: 0;
    left: 0;
    transform: translateX(-100%);
  }

  .sidebar-filter.right {
    top: 0;
    right: 0;
    transform: translateX(100%);
  }

  .sidebar-filter.show {
    transform: none;
  }}

/* ------------ Element ---------------- */
/*--------- Abstracts variable --------- */
/* Chrome, Safari, Edge, Opera */
input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type=number] {
  -moz-appearance: textfield;
}

form {
  position: relative;
  z-index: 30;
}

form textarea,
form input[type=text],
form input[type=password],
form input[type=datetime],
form input[type=datetime-local],
form input[type=date],
form input[type=month],
form input[type=time],
form input[type=week],
form input[type=number],
form input[type=email],
form input[type=url],
form input[type=search],
form input[type=tel],
form input[type=color] {
  outline: 0;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  max-width: 100%;
  padding: 15px 23px;
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
  overflow: hidden;
  margin-bottom: 0;
  border: 1px solid transparent;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  width: 100%;
}

form textarea::placeholder,
form input[type=text]::placeholder,
form input[type=password]::placeholder,
form input[type=datetime]::placeholder,
form input[type=datetime-local]::placeholder,
form input[type=date]::placeholder,
form input[type=month]::placeholder,
form input[type=time]::placeholder,
form input[type=week]::placeholder,
form input[type=number]::placeholder,
form input[type=email]::placeholder,
form input[type=url]::placeholder,
form input[type=search]::placeholder,
form input[type=tel]::placeholder,
form input[type=color]::placeholder {
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
  color: var(--color-paragraph);
}

form button,
form input[type=button],
form input[type=reset],
form input[type=submit] {
  background-color: transparent;
  overflow: hidden;
  padding: 0;
}

.form-newsletter {
  position: relative;
}

.form-newsletter input {
  padding: 15px 55px 16px 24px !important;
  border-radius: 14px;
  color: var(--white);
  background-color: var(--color-bg-2);
  border-color: var(--color-border-3) !important;
  font-size: 15px !important;
  font-family: "DM Sans", sans-serif;
}

.form-newsletter input::placeholder {
  font-size: 15px !important;
  color: var(--color-text-1) !important;
}

.form-newsletter input.style-color-bg-3 {
  background-color: var(--color-bg-3);
}

.form-newsletter .send-btn {
  position: absolute;
  top: 50%;
  right: 5px;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background-image: var(--ai-startup-gradient);
  border-radius: 14px;
}

.form-newsletter .send-btn i {
  color: var(--white);
  font-size: 24px;
}

.col {
  display: flex;
  align-items: center;
  gap: 30px;
}

.col .col-item {
  width: 100%;
  max-width: 100%;
}

@media (max-width: 767px) {
  .col {
    flex-direction: column;
  }}

.form-contact {
  position: relative;
  padding: 30px 40px 48px;
  background-color: var(--black);
  border-radius: 20px;
  max-width: 580px;
  width: 100%;
}

.form-contact .img-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 20px;
  overflow: hidden;
}

.form-contact .img-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.form-contact .img-bg::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.1) 78.15%);
}

.form-contact .form-content {
  position: relative;
  z-index: 2;
}

.form-contact input {
  padding: 16px 18px !important;
  font-size: 15px !important;
  line-height: 100%;
  letter-spacing: -0.05em;
  font-family: "DM Sans", sans-serif;
  border-radius: 14px;
}

.form-contact .nice-select {
  border-radius: 14px;
  padding: 16px 18px !important;
}

.form-contact .nice-select::before {
  right: 13px;
}

.form-contact .nice-select>span {
  font-size: 15px;
  line-height: 100%;
  letter-spacing: -0.02em;
  font-family: "DM Sans", sans-serif;
}

.form-contact textarea {
  padding: 13px 20px !important;
  font-size: 18px !important;
  line-height: 100%;
  height: 130px;
  font-family: "DM Sans", sans-serif;
  border-radius: 14px;
}

.form-contact textarea::placeholder {
  letter-spacing: 1px;
}

.form-contact .title-form {
  color: var(--white);
  text-align: center;
  margin-bottom: 28px;
}

.form-contact .title-input {
  color: var(--white);
  margin-bottom: 13px;
}

.form-contact fieldset {
  margin-bottom: 29px;
}

.form-contact fieldset.mess-input {
  margin-bottom: 22px;
}

@media (max-width: 991px) {
  .form-contact {
    max-width: 100%;
    padding: 30px 15px;
  }}

@keyframes ripple {
  0% {
    width: 100%;
    height: 100%;
    opacity: 0.9;
  }

  100% {
    width: 150%;
    height: 150%;
    opacity: 0;
  }}

@keyframes morph {
  0% {
    border-radius: 60% 40% 55% 45%/55% 60% 40% 45%;
  }

  25% {
    border-radius: 50% 60% 40% 70%/60% 40% 70% 50%;
  }

  50% {
    border-radius: 65% 35% 60% 40%/45% 65% 35% 55%;
  }

  75% {
    border-radius: 40% 60% 50% 70%/70% 50% 60% 40%;
  }

  100% {
    border-radius: 55% 45% 65% 35%/50% 70% 30% 60%;
  }}

@keyframes float {
  0% {
    transform: translateY(0px) scale(1);
  }

  50% {
    transform: translateY(-30px) scale(1.05);
  }

  100% {
    transform: translateY(0px) scale(1);
  }}

.spinner-circle {
  width: 40px;
  height: 40px;
  position: relative;
}

.spinner-circle .spinner-child {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
}

.spinner-circle .spinner-child::before {
  content: "";
  display: block;
  margin: 0 auto;
  width: 20%;
  height: 20%;
  background-color: var(--digital-marketing-blue);
  border-radius: 100%;
  -webkit-animation: spinner-circleBounceDelay 1s infinite ease-in-out both;
  animation: spinner-circleBounceDelay 1s infinite ease-in-out both;
}

.spinner-circle .spinner-circle2 {
  -webkit-transform: rotate(40deg);
  -ms-transform: rotate(40deg);
  transform: rotate(40deg);
}

.spinner-circle .spinner-circle2::before {
  -webkit-animation-delay: -1.1s;
  animation-delay: -1.1s;
}

.spinner-circle .spinner-circle3 {
  -webkit-transform: rotate(80deg);
  -ms-transform: rotate(80deg);
  transform: rotate(80deg);
}

.spinner-circle .spinner-circle3::before {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}

.spinner-circle .spinner-circle4 {
  -webkit-transform: rotate(120deg);
  -ms-transform: rotate(120deg);
  transform: rotate(120deg);
}

.spinner-circle .spinner-circle4::before {
  -webkit-animation-delay: -0.9s;
  animation-delay: -0.9s;
}

.spinner-circle .spinner-circle5 {
  -webkit-transform: rotate(160deg);
  -ms-transform: rotate(160deg);
  transform: rotate(160deg);
}

.spinner-circle .spinner-circle5::before {
  -webkit-animation-delay: -0.8s;
  animation-delay: -0.8s;
}

.spinner-circle .spinner-circle6 {
  -webkit-transform: rotate(200deg);
  -ms-transform: rotate(200deg);
  transform: rotate(200deg);
}

.spinner-circle .spinner-circle6::before {
  -webkit-animation-delay: -0.7s;
  animation-delay: -0.7s;
}

.spinner-circle .spinner-circle7 {
  -webkit-transform: rotate(240deg);
  -ms-transform: rotate(240deg);
  transform: rotate(240deg);
}

.spinner-circle .spinner-circle7::before {
  -webkit-animation-delay: -0.6s;
  animation-delay: -0.6s;
}

.spinner-circle .spinner-circle8 {
  -webkit-transform: rotate(280deg);
  -ms-transform: rotate(280deg);
  transform: rotate(280deg);
}

.spinner-circle .spinner-circle8::before {
  -webkit-animation-delay: -0.5s;
  animation-delay: -0.5s;
}

.spinner-circle .spinner-circle9 {
  -webkit-transform: rotate(320deg);
  -ms-transform: rotate(320deg);
  transform: rotate(320deg);
}

.spinner-circle .spinner-circle9::before {
  -webkit-animation-delay: -0.4s;
  animation-delay: -0.4s;
}

.spinner-circle.lg {
  width: 50px;
  height: 50px;
}

@-webkit-keyframes spinner-circleBounceDelay {

  0%,
  80%,
  100% {
    -webkit-transform: scale(0);
    transform: scale(0);
  }

  40% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }}

@keyframes spinner-circleBounceDelay {

  0%,
  80%,
  100% {
    -webkit-transform: scale(0);
    transform: scale(0);
  }

  40% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }}

@-webkit-keyframes spinner-redGrowing {

  0%,
  80%,
  100% {
    opacity: 0.2;
  }

  40% {
    opacity: 1;
  }}

@keyframes spinner-redGrowing {

  0%,
  80%,
  100% {
    opacity: 0.2;
  }

  40% {
    opacity: 1;
  }}

@keyframes tranform-left-to-right {
  0% {
    transform: translateX(0);
  }

  33% {
    transform: translateX(-30px);
  }

  66% {
    transform: translateX(30px);
  }

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

@keyframes tranform-right-to-left {
  0% {
    transform: translateX(0);
  }

  33% {
    transform: translateX(30px);
  }

  66% {
    transform: translateX(-30px);
  }

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

@keyframes rotate-2 {
  0% {
    transform: rotate(0);
  }

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

.tf-animate-1 {
  clip-path: inset(0 100% 0 0);
  opacity: 0;
  -webkit-transition: 1s cubic-bezier(0.63, 0.25, 0.25, 1);
  -khtml-transition: 1s cubic-bezier(0.63, 0.25, 0.25, 1);
  -moz-transition: 1s cubic-bezier(0.63, 0.25, 0.25, 1);
  -ms-transition: 1s cubic-bezier(0.63, 0.25, 0.25, 1);
  -o-transition: 1s cubic-bezier(0.63, 0.25, 0.25, 1);
  transition: 1s cubic-bezier(0.63, 0.25, 0.25, 1);
}

.tf-animate-1.active-animate {
  clip-path: inset(0 0 0 0);
  opacity: 1;
  transform: translateX(0);
}

.tf-animate-2 {
  clip-path: inset(0 0 100% 0);
  opacity: 0;
  -webkit-transition: 1s cubic-bezier(0.63, 0.25, 0.25, 1);
  -khtml-transition: 1s cubic-bezier(0.63, 0.25, 0.25, 1);
  -moz-transition: 1s cubic-bezier(0.63, 0.25, 0.25, 1);
  -ms-transition: 1s cubic-bezier(0.63, 0.25, 0.25, 1);
  -o-transition: 1s cubic-bezier(0.63, 0.25, 0.25, 1);
  transition: 1s cubic-bezier(0.63, 0.25, 0.25, 1);
}

.tf-animate-2.active-animate {
  clip-path: inset(0 0 0 0);
  opacity: 1;
  transform: translateX(0);
}

.tf-animate-3 {
  clip-path: inset(100% 0 0 0);
  opacity: 0;
  -webkit-transition: 1s cubic-bezier(0.63, 0.25, 0.25, 1);
  -khtml-transition: 1s cubic-bezier(0.63, 0.25, 0.25, 1);
  -moz-transition: 1s cubic-bezier(0.63, 0.25, 0.25, 1);
  -ms-transition: 1s cubic-bezier(0.63, 0.25, 0.25, 1);
  -o-transition: 1s cubic-bezier(0.63, 0.25, 0.25, 1);
  transition: 1s cubic-bezier(0.63, 0.25, 0.25, 1);
}

.tf-animate-3.active-animate {
  clip-path: inset(0 0 0 0);
  opacity: 1;
  transform: translateX(0);
}

.tf-animate-4 {
  clip-path: inset(0 0 0 100%);
  opacity: 0;
  -webkit-transition: 1s cubic-bezier(0.63, 0.25, 0.25, 1);
  -khtml-transition: 1s cubic-bezier(0.63, 0.25, 0.25, 1);
  -moz-transition: 1s cubic-bezier(0.63, 0.25, 0.25, 1);
  -ms-transition: 1s cubic-bezier(0.63, 0.25, 0.25, 1);
  -o-transition: 1s cubic-bezier(0.63, 0.25, 0.25, 1);
  transition: 1s cubic-bezier(0.63, 0.25, 0.25, 1);
}

.tf-animate-4.active-animate {
  clip-path: inset(0 0 0 0);
  opacity: 1;
  transform: translateX(0);
}

/*--------- Abstracts variable --------- */
.hover-img .image {
  overflow: hidden;
  display: block;
}

.hover-img .image>img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  -webkit-transition: opacity 0.5s ease, transform 1.5s cubic-bezier(0, 0, 0.44, 1.18);
  transition: opacity 0.5s ease, transform 1.5s cubic-bezier(0, 0, 0.44, 1.18);
}

.hover-img:hover .image>img {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}

.offcanvas-mobile {
  background-color: var(--ai-startup-light-dark);
}

.pop-up-nav-mobile {
  padding: 15px;
  overflow: auto;
}

.pop-up-nav-mobile .canvas-header {
  padding-bottom: 15px;
  margin-bottom: 15px;
  border-bottom: 1px solid var(--color-border-1);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.pop-up-nav-mobile .canvas-header .logo-site {
  max-width: 180px;
}

.pop-up-nav-mobile .icon-close {
  color: var(--white);
}

.overlay-filter {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 2000;
  width: 100vw;
  height: 100vh;
  background-color: var(--black);
  visibility: hidden;
  opacity: 0;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.overlay-filter.show {
  visibility: visible;
  opacity: 0.3;
}

/*--------- Abstracts variable --------- */
/*--------- Abstracts variable --------- */
.progress-wrap {
  position: fixed;
  bottom: 40px;
  right: 20px;
  height: 40px;
  width: 40px;
  cursor: pointer;
  display: block;
  border-radius: 50%;
  -webkit-box-shadow: inset 0 0 0 2px rgba(11, 27, 230, 0.2);
  box-shadow: inset 0 0 0 2px rgba(11, 27, 230, 0.2);
  z-index: 99999;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateX(20px);
  -ms-transform: translateX(20px);
  transform: translateX(20px);
  -webkit-transition: all 300ms linear;
  -o-transition: all 300ms linear;
  transition: all 300ms linear;
  background: var(--white);
}

.progress-wrap::after {
  position: absolute;
  content: "\e910";
  font-family: "icomoon";
  transform: rotate(-90deg);
  text-align: center;
  line-height: 40px;
  font-size: 17px;
  color: var(--color-title);
  left: 0;
  top: 0;
  height: 40px;
  width: 40px;
  cursor: pointer;
  display: block;
  z-index: 1;
  -webkit-transition: all 400ms linear;
  -o-transition: all 400ms linear;
  transition: all 400ms linear;
}

.progress-wrap.active-progress {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateX(0);
  -ms-transform: translateX(0);
  transform: translateX(0);
}

.progress-wrap svg path {
  fill: none;
}

.progress-wrap svg.progress-circle path {
  box-sizing: border-box;
  stroke: var(--ai-startup-blue);
  stroke-width: 5;
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
  transition-duration: 0.4s;
  transition-timing-function: linear;
}

/*--------- Abstracts variable --------- */
.tf-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 22px 10px 24px;
  background: linear-gradient(90deg, #00bc7d 0%, #059669 100%);
  box-shadow: 0 8px 18px -2px rgba(0, 188, 125, 0.35), 0 4px 6px -2px rgba(0, 188, 125, 0.2);
  border-radius: 9999px;
  position: relative;
  overflow: hidden;
  max-width: max-content;
  text-decoration: none !important;
  transition: all 0.3s ease;
}

.tf-btn span {
  position: relative;
  z-index: 2;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.tf-btn .text-btn {
  color: var(--white);
  font-size: 14px;
  font-weight: 700;
  line-height: 22px;
  letter-spacing: -0.005em;
  text-transform: uppercase;
}

.tf-btn .icon-btn {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: 2px;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.tf-btn i {
  font-size: 14px;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.tf-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, #059669 0%, #00bc7d 100%);
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  z-index: 1;
}

.tf-btn:hover {
  box-shadow: 0 12px 24px -2px rgba(0, 188, 125, 0.55), 0 6px 10px -3px rgba(0, 188, 125, 0.3);
  transform: translateY(-2px);
}

.tf-btn:hover::before {
  width: 100%;
}

.tf-btn:hover .text-btn {
  transform: translateX(3px);
}

.tf-btn:hover .icon-btn {
  background: rgba(255, 255, 255, 0.3);
  transform: translateX(2px) scale(1.05);
}

.tf-btn.style-big {
  padding: 13px 28px 13px 30px;
}

.tf-btn.style-big .text-btn {
  font-size: 16px;
  line-height: 24px;
}

.tf-btn.style-big .icon-btn {
  width: 32px;
  height: 32px;
}

.tf-btn.style-big i {
  font-size: 18px;
}

.tf-btn.style-w-full {
  max-width: 100%;
  justify-content: center;
}

.tf-btn.style-color-black {
  background: var(--black);
}

.tf-btn.style-color-black::before {
  background-color: transparent;
  background: linear-gradient(90deg, #00bc7d 0%, #059669 100%);
}

.tf-btn.style-gradient-2 {
  background: linear-gradient(90deg, #00bc7d 0%, #059669 100%);
  box-shadow: 0 8px 18px -2px rgba(0, 188, 125, 0.35), 0 4px 6px -2px rgba(0, 188, 125, 0.2);
}

/* WhatsApp Nav Button (Green Gradient) */
.tf-btn-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 9px 22px;
  background: linear-gradient(90deg, #00bc7d 0%, #059669 100%);
  border: none;
  border-radius: 9999px;
  color: #ffffff !important;
  font-family: "Bai Jamjuree", sans-serif;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.02em;
  text-decoration: none !important;
  transition: all 0.3s ease;
  line-height: 1;
  box-sizing: border-box;
  box-shadow: 0 8px 18px -2px rgba(0, 188, 125, 0.35), 0 4px 6px -2px rgba(0, 188, 125, 0.2);
}

.tf-btn-whatsapp .whatsapp-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  fill: #ffffff;
  transition: transform 0.3s ease;
}

.tf-btn-whatsapp .text-btn {
  color: #ffffff !important;
  line-height: 1;
  font-weight: 700;
}

.tf-btn-whatsapp:hover {
  background: linear-gradient(90deg, #059669 0%, #00bc7d 100%);
  box-shadow: 0 12px 24px -2px rgba(0, 188, 125, 0.55), 0 6px 10px -3px rgba(0, 188, 125, 0.3);
  transform: translateY(-2px);
  color: #ffffff !important;
}

.tf-btn-whatsapp:hover .whatsapp-icon {
  transform: scale(1.1);
}

.tf-btn.style-color-bg-1 {
  background: var(--color-bg-1);
  border: 1px solid var(--color-border-1);
  box-shadow: unset;
}

.tf-btn.style-color-bg-1 .text-btn,
.tf-btn.style-color-bg-1 i {
  color: var(--color-paragraph);
}

.tf-btn.style-color-bg-1:hover .text-btn,
.tf-btn.style-color-bg-1:hover i {
  color: var(--white);
}

.tf-btn.style-border {
  border: 1px solid transparent;
  background: transparent;
}

.tf-btn.style-border i,
.tf-btn.style-border .text-btn {
  color: var(--color-title);
}

.tf-btn.style-border:hover {
  border-color: transparent;
}

.tf-btn.style-border:hover .text-btn {
  color: var(--white);
}

.tf-btn-reply {
  display: flex;
  align-items: center;
  gap: 3px;
  color: var(--color-paragraph);
  width: max-content;
}

.tf-btn-reply span {
  font-family: "DM Sans", sans-serif;
}

.tf-btn-reply:hover {
  color: var(--ai-startup-blue);
}

.tf-btn-arrow {
  width: 100%;
  max-width: 50px;
  height: 50px;
  border: 1px solid var(--color-border-4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.tf-btn-arrow i {
  font-size: 24px;
  color: var(--color-paragraph);
  position: relative;
  z-index: 2;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.tf-btn-arrow::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: linear-gradient(90deg, #00bc7d 0%, #059669 100%);
  border-radius: 50%;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.tf-btn-arrow:hover {
  border-color: transparent;
  box-shadow: 0 6px 16px rgba(0, 188, 125, 0.35);
}

.tf-btn-arrow:hover i {
  color: var(--white);
  transform: rotate(45deg);
}

.tf-btn-arrow:hover::before {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.tf-btn-arrow.style-2 {
  border-radius: 14px;
  background: var(--white);
  border: unset;
  max-width: 60px;
  height: 60px;
}

.tf-btn-arrow.style-2:before {
  border-radius: 14px;
}

.tf-btn-arrow.style-2:hover i {
  transform: unset !important;
}

.nav-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  border: 1px solid var(--color-border-7);
  position: relative;
  transition: all 0.3s ease;
}

.nav-btn i {
  font-size: 24px;
  color: var(--color-paragraph);
  position: relative;
  z-index: 2;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.nav-btn::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: linear-gradient(90deg, #00bc7d 0%, #059669 100%);
  border-radius: 50%;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.nav-btn:hover {
  border-color: transparent;
  box-shadow: 0 6px 16px rgba(0, 188, 125, 0.35);
}

.nav-btn:hover i {
  color: var(--white);
}

.nav-btn:hover::before {
  top: -1px;
  left: -1px;
  width: calc(100% + 2px);
  height: calc(100% + 2px);
}

.nav-btn.style-white {
  background-color: var(--white);
}

.nav-btn.style-white:hover {
  border-color: transparent;
}

/*--------- Abstracts variable --------- */
.page-title {
  margin-top: -90px;
  position: relative;
}

.page-title .image-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.page-title .image-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-title .image-bg::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(19, 19, 19, 0) 0%, #131313 86.52%);
}

.page-title .page-title-content {
  text-align: center;
  padding: 170px 0 100px;
}

.page-title .page-title-content .title-page {
  font-size: clamp(42px, 6vw, 75px);
  line-height: clamp(48px, 6.5vw, 80px);
  font-weight: 600;
  letter-spacing: -0.05em;
  color: var(--white);
  margin-bottom: 20px;
}

@media (min-width: 1200px) {
  .page-title .page-title-content {
    padding: 250px 0 172px;
  }}

.wg-hero-area {
  padding-top: 105px;
  position: relative;
  margin-top: -90px;
}

.wg-hero-area .image-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.wg-hero-area .image-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.wg-hero-area .line {
  width: 100%;
  height: 1px;
  background-color: var(--color-border-3);
  position: relative;
}

.wg-hero-area .text-big-gradient {
  padding: 30px 0;
  border-bottom: 1px solid var(--color-border-3);
}

@media (min-width: 1200px) {
  .wg-hero-area .text-big-gradient {
    padding: 50px 6px 50px 0px;
  }}

.wg-hero-area .top-hero-area {
  position: relative;
  z-index: 2;
}

.wg-hero-area .top-hero-area .dot {
  width: 5px;
  height: 5px;
  background-color: var(--white);
  position: absolute;
}

.wg-hero-area .top-hero-area .dot.dot-1 {
  top: -3px;
  left: -3px;
}

.wg-hero-area .top-hero-area .dot.dot-2 {
  bottom: -3px;
  left: -3px;
}

.wg-hero-area .top-hero-area .dot.dot-3 {
  top: -3px;
  right: -3px;
}

.wg-hero-area .top-hero-area .dot.dot-4 {
  bottom: -3px;
  right: -3px;
}

.wg-hero-area .hero-area-content {
  padding: 15px 0 50px;
  position: relative;
  display: flex;
  justify-content: space-between;
  gap: 30px;
}

.wg-hero-area .hero-area-content .wg-quote-2 {
  margin-top: 34px;
}

@media (min-width: 1200px) {
  .wg-hero-area .hero-area-content {
    padding: 77px 0 70px;
    align-items: start;
    max-width: 1190px;
    margin-left: auto;
    margin-right: auto;
  }}

@media (max-width: 767px) {
  .wg-hero-area .hero-area-content {
    flex-direction: column;
  }

  .wg-hero-area .hero-area-content .wg-quote-2 {
    margin-top: 0;
  }}

.wg-hero-area .left-content {
  position: relative;
}

.wg-hero-area .left-content .sub-title {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--white);
  margin-bottom: 16px;
  padding-left: 2px;
}

.wg-hero-area .left-content .sub-title i {
  font-size: 14.25px;
}

.wg-hero-area .left-content .title {
  color: var(--white);
  margin-bottom: 129px;
}

@media (max-width: 1199px) {
  .wg-hero-area .left-content .title {
    margin-bottom: 80px;
  }}

@media (max-width: 991px) {
  .wg-hero-area .left-content .title {
    margin-bottom: 50px;
  }}

@media (max-width: 575px) {
  .wg-hero-area .left-content .title {
    margin-bottom: 15px;
  }}

.wg-hero-area .left-content .desc {
  color: var(--white);
  margin-bottom: 30px;
}

@media (max-width: 575px) {
  .wg-hero-area .left-content .desc {
    margin-bottom: 15px;
  }}

@media (min-width: 992px) {
  .wg-hero-area .left-content {
    max-width: 385px;
  }}

.wg-hero-area .image-hero {
  max-width: 398px;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

.wg-hero-area .image-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.wg-hero-area .image-absolute {
  position: absolute;
  bottom: 6px;
  right: 15px;
  max-width: 673px;
}

.wg-hero-area .image-absolute img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.wg-hero-area.style-2 {
  padding-top: 220px;
  padding-bottom: 155px;
}

@media (max-width: 1439px) {
  .wg-hero-area.style-2 {
    padding-top: 170px;
    padding-bottom: 80px;
  }}

@media (max-width: 991px) {
  .wg-hero-area.style-2 {
    padding-top: 134px;
    padding-bottom: 60px;
  }}

.wg-hero-area.style-2 .title {
  color: var(--white);
  margin-bottom: 241px;
}

.wg-hero-area.style-2 .desc {
  color: var(--color-text-5);
  margin-bottom: 30px;
}

.wg-hero-area.style-2 .text {
  max-width: 563px;
  padding: 50px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06) 0%, rgba(153, 153, 153, 0.021) 100%);
  backdrop-filter: blur(20px);
  border-radius: 50px;
  color: var(--white);
  margin-top: 25px;
  margin-bottom: 75px;
  position: relative;
}

.wg-hero-area.style-2 .text::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 1px;
  border-radius: inherit;
  background: linear-gradient(100.62deg, #A291FE 5.09%, rgba(255, 255, 255, 0.1) 42.59%);
  pointer-events: none;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}

@media (min-width: 1440px) {
  .wg-hero-area.style-2 .text {
    margin-right: 7px;
  }}

@media (max-width: 575px) {
  .wg-hero-area.style-2 .text {
    padding: 30px 15px;
    border-radius: 20px;
  }}

.wg-hero-area.style-2 .image {
  overflow: hidden;
  border-radius: 20px;
  max-width: 925px;
}

@media (min-width: 1440px) {
  .wg-hero-area.style-2 .image {
    position: relative;
    z-index: 3;
    margin-bottom: -170px;
  }}

.wg-hero-area.style-2 .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.breadkcum {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
}

.breadkcum span {
  color: var(--white);
}

.breadkcum a {
  color: var(--white);
}

.breadkcum a:hover {
  color: var(--ai-startup-blue);
}

.breadkcum .text-in-page {
  text-decoration-line: underline;
  text-underline-offset: 1px;
  text-decoration-color: var(--white) !important;
}

.line-page {
  position: absolute;
  inset: 0;
  max-width: 1292px;
  margin-left: auto;
  margin-right: auto;
  z-index: 1;
  pointer-events: none;
}

.line-page.line-1 {
  border-left: 1px solid rgba(255, 255, 255, 0.0705882353);
  border-right: 1px solid rgba(255, 255, 255, 0.0705882353);
}

.line-page.line-2 {
  border-left: 1px solid var(--color-border-4);
  border-right: 1px solid var(--color-border-4);
}

@media (max-width: 1199px) {
  .line-page {
    max-width: unset;
    width: calc(100% - 15px);
  }}

.heading-section .sub-title {
  display: flex;
  gap: 7px;
  align-items: center;
  color: var(--color-paragraph);
}

.heading-section .sub-title i {
  font-size: 18px;
  color: transparent;
  background-image: var(--ai-startup-gradient);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.heading-section.style-center .sub-title {
  justify-content: center;
}

.heading-section.style-center .title {
  text-align: center;
}

.heading-section.style-white p {
  color: var(--white);
}

.heading-section.heading-h2 .sub-title {
  color: var(--color-title);
}

@media (max-width: 1199px) {
  .heading-section br {
    display: none;
  }}

@media (max-width: 991px) {
  .heading-section {
    margin-bottom: 30px !important;
  }}

.section-line {
  position: relative;
}

.section-features {
  position: relative;
}

.section-features.h-1 .features-content {
  display: flex;
}

@media (max-width: 991px) {
  .section-features.h-1 .features-content {
    flex-direction: column;
  }}

.section-features.h-1 .image {
  border-radius: 14px;
  overflow: hidden;
}

.section-features.h-1 .image img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.section-features.h-2 .img-shape {
  position: absolute;
  bottom: -296px;
  left: 49.5%;
  transform: translateX(-50%);
  max-width: 1150px;
  width: 100%;
}

.section-features.h-2 .img-shape img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.section-features.p-service .text-heading {
  max-width: 482px;
}

.section-about.h-1 .heading-section {
  margin-bottom: 79px;
}

@media (min-width: 1200px) {
  .section-about.h-1 .heading-section {
    padding-left: 50px;
  }}

.section-about.h-1 .section-about-inner {
  position: relative;
}

@media (min-width: 1200px) {
  .section-about.h-1 .section-about-inner {
    padding-left: 50px;
    padding-right: 10px;
  }}

@media (max-width: 767px) {
  .section-about.h-1 .section-about-inner {
    flex-direction: column;
  }}

.section-about.h-1 .box-fact {
  position: absolute;
  top: -220px;
  right: 81px;
}

@media (max-width: 1199px) {
  .section-about.h-1 .box-fact {
    display: none;
  }}

.section-about.h-1 .image-section {
  max-width: 730px;
  border-radius: 14px;
  overflow: hidden;
}

.section-about.h-1 .image-section img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.section-about.h-1 .section-about-content .text {
  margin-bottom: 90px;
}

@media (max-width: 1199px) {
  .section-about.h-1 .section-about-content .text {
    margin-bottom: 50px;
  }}

@media (max-width: 991px) {
  .section-about.h-1 .section-about-content .text {
    margin-bottom: 20px;
  }}

.section-about.h-1 .section-about-content .desc {
  color: var(--color-paragraph);
  margin-bottom: 30px;
}

@media (min-width: 768px) {
  .section-about.h-1 .section-about-content {
    padding-top: 51px;
    padding-bottom: 45px;
  }}

.section-about.h-1 .img-shape {
  position: absolute;
  top: -20px;
  right: 0;
  max-width: 780px;
}

.section-about.h-1 .img-shape img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

@media (max-width: 991px) {
  .section-about.h-1 .img-shape {
    display: none;
  }}

.section-about.h-2 .left {
  position: relative;
  height: 100%;
}

.section-about.h-2 .left .image {
  border-radius: 20px;
  overflow: hidden;
  height: 100%;
}

.section-about.h-2 .left .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.section-about.h-2 .left .box-fact {
  position: absolute;
  bottom: 20px;
  right: 20px;
  z-index: 2;
}

@media (max-width: 767px) {
  .section-about.h-2 .left .box-fact {
    display: none;
  }}

.section-about.h-2 .right .text {
  margin-bottom: 55px;
}

.section-about.h-2 .right .list-counter {
  margin-bottom: 47px;
}

@media (min-width: 1200px) {
  .section-about.h-2 .right {
    margin-left: 70px;
    margin-right: 70px;
  }

  .section-about.h-2 .right .list-counter {
    margin-right: 29px;
  }}

@media (max-width: 1199px) {
  .section-about.h-2 .right br {
    display: none;
  }

  .section-about.h-2 .right .counter-item {
    max-width: 50%;
    width: 100%;
  }}

@media (max-width: 991px) {
  .section-about.h-2 .right .text {
    margin-bottom: 20px;
  }

  .section-about.h-2 .right .list-counter {
    margin-bottom: 20px;
  }}

.section-about.p-about .right-content {
  position: relative;
  height: 100%;
}

.section-about.p-about .right-content .box-fact {
  position: absolute;
  top: -212px;
  right: 70px;
  z-index: 5;
}

@media (max-width: 1199px) {
  .section-about.p-about .right-content .box-fact {
    display: none;
  }}

.section-about.p-about .image {
  border-radius: 14px;
  height: 100%;
  overflow: hidden;
}

.section-about.p-about .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 1199px) {
  .section-about br {
    display: none;
  }}

.section-services {
  position: relative;
}

.section-services.h-1 {
  background-color: var(--ai-startup-light-dark);
}

.section-services.h-1 .heading-section {
  margin-bottom: 76px;
}

.section-services.h-1 .section-services-inner {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  position: relative;
}

.section-services.h-1 .section-services-inner .box-services-icon {
  max-width: 354px;
}

@media (max-width: 767px) {
  .section-services.h-1 .section-services-inner {
    flex-direction: column;
  }

  .section-services.h-1 .section-services-inner .box-services-icon {
    max-width: 100%;
  }}

.section-services.h-1 .image-shape {
  position: absolute;
}

.section-services.h-1 .image-shape img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.section-services.h-1 .image-shape.shape-1 {
  top: 0;
  left: 0;
}

.section-services.h-1 .image-shape.shape-2 {
  bottom: 0;
  right: 0;
}

.section-services.h-1 .image-shape.image-shape-middle {
  display: flex;
  align-items: center;
  justify-content: center;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 700px;
}

.section-services.h-1 .image-shape.image-shape-middle .logo-shape {
  position: absolute;
  top: 49.3%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}

/* the generic ".image-shape img { width:100% }" above is for the big backdrop
   shape - keep the small centre logo mark at its own size */
.section-services.h-1 .image-shape .logo-shape img {
  width: 95px;
  height: 95px;
  object-fit: contain;
}

.section-services.h-1 .image-shape.image-shape-middle .logo-shape .logo-text-title {
  color: var(--white);
  font-size: 25px;
  white-space: nowrap;
}

@media (max-width: 767px) {
  .section-services.h-1 .image-shape.image-shape-middle {
    display: none;
  }}

.section-services.h-2 {
  background-color: var(--color-bg-1);
}

.section-services.h-2 .img-shape {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}

@media (min-width: 1600px) {
  .section-services.h-2 {
    margin-left: 70px;
    margin-right: 70px;
    border-radius: 20px;
  }}

.section-services.p-service {
  background-color: var(--color-bg-1);
}

@media (min-width: 1440px) {
  .section-services.p-service {
    margin-left: 70px;
    margin-right: 70px;
    border-radius: 20px;
  }}

.section-project.h-1 .heading-section {
  margin-bottom: 54px;
}

@media (min-width: 1200px) {
  .section-project.h-1 .heading-section {
    padding-left: 50px;
    padding-right: 17px;
  }}

.section-fun-fact.h-1 .section-fun-fact-inner {
  padding: 10px 10px 12px;
}

@media (max-width: 1199px) {
  .section-fun-fact.h-1 .section-fun-fact-inner {
    padding: 10px 0;
  }}

.section-dot {
  position: relative;
}

.section-dot .dot {
  width: 5px;
  height: 5px;
  background-color: var(--black);
  position: absolute;
}

.section-dot .dot.dot-1 {
  top: -3px;
  left: -3px;
}

.section-dot .dot.dot-2 {
  bottom: -3px;
  left: -3px;
}

.section-dot .dot.dot-3 {
  top: -3px;
  right: -3px;
}

.section-dot .dot.dot-4 {
  bottom: -3px;
  right: -3px;
}

.section-dot.style-border {
  border-top: 1px solid var(--color-border-7);
  border-bottom: 1px solid var(--color-border-7);
}

.section-testimonials.h-1 .sw-testimonials {
  max-width: 376px;
}

.section-testimonials.h-1 .tes-item {
  max-width: 806px;
}

@media (max-width: 991px) {
  .section-testimonials.h-1 .section-testimonials-inner {
    flex-direction: column;
    row-gap: 30px;
  }

  .section-testimonials.h-1 .section-testimonials-inner .sw-testimonials,
  .section-testimonials.h-1 .section-testimonials-inner .tes-item {
    max-width: 100%;
  }}

.section-testimonials.p-service .sw-testimonials {
  height: 100%;
}

.section-contact {
  position: relative;
}

.section-contact.h-1 .img-bg-contact {
  position: absolute;
  max-width: 1290px;
  width: 100%;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}

.section-contact.h-1 .img-bg-contact img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.section-contact.h-1 .infiniteSlide-app {
  margin-bottom: 132px;
}

@media (max-width: 1439px) {
  .section-contact.h-1 .infiniteSlide-app {
    margin-bottom: 80px;
  }}

@media (max-width: 991px) {
  .section-contact.h-1 .infiniteSlide-app {
    margin-bottom: 60px;
  }}

.section-contact.h-1 .section-contact-inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
}

@media (max-width: 991px) {
  .section-contact.h-1 .section-contact-inner {
    align-items: start;
    flex-direction: column;
  }

  .section-contact.h-1 .section-contact-inner .text-section,
  .section-contact.h-1 .section-contact-inner .letf {
    max-width: 100%;
  }}

.section-contact.h-1 .text-section {
  color: var(--color-paragraph);
  padding-left: 23px;
  position: relative;
  max-width: 494px;
  margin-bottom: 70px;
}

@media (max-width: 1199px) {
  .section-contact.h-1 .text-section {
    margin-bottom: 30px;
  }}

.section-contact.h-1 .text-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 100%;
  background: var(--ai-startup-gradient);
}

.section-contact.h-1 .letf {
  padding-bottom: 6px;
}

.section-contact.p-contact .form-contact {
  margin-left: auto;
}

.section-contact.p-contact .section-content {
  height: 100%;
}

.section-contact.p-contact .list-contact-item .contact-item {
  max-width: 50%;
  width: 100%;
}

@media (max-width: 575px) {
  .section-contact.p-contact .list-contact-item {
    flex-direction: column;
  }

  .section-contact.p-contact .list-contact-item .contact-item {
    max-width: 100%;
  }}

.line-section-2 {
  width: 100%;
  height: 1px;
  background-color: var(--color-border-7);
  position: relative;
}

.line-section-2.style-dot .dot {
  width: 5px;
  height: 5px;
  background-color: var(--black);
  position: absolute;
}

.line-section-2.style-dot .dot.dot-1 {
  top: -3px;
  left: -3px;
}

.line-section-2.style-dot .dot.dot-2 {
  top: -3px;
  right: -3px;
}

.section-process {
  position: relative;
}

.section-process.h-2 .img-shape {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}

.section-process.h-2 .list-process-item {
  position: relative;
}

.section-process.h-2 .list-process-item .line {
  position: absolute;
  top: 40px;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--color-border-2);
}

@media (max-width: 767px) {
  .section-process.h-2 .list-process-item {
    flex-direction: column;
  }

  .section-process.h-2 .list-process-item .line {
    display: none;
  }}

.section-clients.h-2 .text {
  max-width: 596px;
  margin-left: auto;
  margin-right: auto;
}

.section-why.p-about .section-why-inner {
  gap: 100px;
}

@media (max-width: 1199px) {
  .section-why.p-about .section-why-inner {
    gap: 60px 30px;
  }}

@media (max-width: 991px) {
  .section-why.p-about .section-why-inner {
    flex-direction: column;
  }}

@media (min-width: 1200px) {
  .section-why.p-about .section-content {
    padding-top: 50px;
    padding-bottom: 50px;
  }}

@media (min-width: 992px) {
  .section-why.p-about .section-content {
    max-width: 560px;
  }}

.section-why.p-about .text-section {
  padding-bottom: 72px;
  margin-bottom: 68px;
  border-bottom: 1px solid var(--color-border-4);
}

@media (max-width: 991px) {
  .section-why.p-about .text-section {
    padding-bottom: 30px;
    margin-bottom: 30px;
  }}

@media (max-width: 575px) {
  .section-why.p-about .list-box-icon {
    flex-wrap: wrap;
  }}

.section-why.p-about .image {
  border-radius: 20px;
  max-width: 875px;
}

.section-why.p-about .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
}

@media (max-width: 991px) {
  .section-why.p-about .image {
    max-width: 100%;
  }

  .section-why.p-about .image img {
    max-height: 400px;
  }}

@media (min-width: 1200px) {
  .section-team.p-about .heading-section {
    margin-top: 43px;
    max-width: 485px;
  }}

.section-awards {
  background-color: var(--color-bg-1);
}

@media (min-width: 1440px) {
  .section-awards {
    margin-left: 70px;
    margin-right: 70px;
    border-radius: 20px;
  }}

.section-marquee.p-contact .infiniteSlide-app {
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.16) 0%, rgba(200, 200, 200, 0.14) 100%);
  backdrop-filter: blur(20px);
}

/*--------- Abstracts variable --------- */
.sw-dot-pagination {
  display: flex;
  justify-content: center;
  gap: 10px;
  width: auto !important;
  margin-left: auto;
  margin-right: auto;
}

.sw-dot-pagination .swiper-pagination-bullet {
  background: rgba(92, 87, 231, 0.3019607843);
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  width: 5px;
  height: 5px;
  margin-left: 0 !important;
  margin-right: 0 !important;
  position: relative;
  opacity: 1;
}

.sw-dot-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: var(--ai-startup-blue);
}

.sw-dot-pagination .swiper-pagination-bullet::before {
  content: "";
  position: absolute;
  inset: 0;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: calc(100% + 5px);
  height: calc(100% + 5px);
}

.sw-project .sw-dot-pagination {
  margin-top: 50px;
  margin-bottom: 2px;
}

@media (max-width: 1199px) {
  .sw-project .sw-dot-pagination {
    margin-top: 30px;
  }}

/*--------- Abstracts variable --------- */
/*--------- Abstracts variable --------- */
.tes-item {
  display: flex;
  gap: 10px;
  padding: 10px;
  border-radius: 20px;
  background-color: var(--color-bg-1);
  border: 1px solid var(--color-border-1);
}

.tes-item .image {
  max-width: 300px;
  width: 100%;
  border-radius: 14px;
  overflow: hidden;
}

.tes-item .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tes-item .line {
  height: 1px;
  width: 100%;
  background: radial-gradient(50% 50% at 50% 50%, rgba(92, 87, 231, 0.2) 0%, rgba(92, 87, 231, 0) 100%);
  margin-bottom: 40px;
}

.tes-item .item-content {
  max-width: calc(100% - 310px);
}

@media (min-width: 1200px) {
  .tes-item .item-content {
    padding: 40px 40px 40px 40px;
  }}

.tes-item .user-tes {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.tes-item .user-tes .position {
  color: var(--color-paragraph);
}

.tes-item .rating {
  margin-bottom: 9px;
}

.tes-item .title {
  margin-bottom: 37px;
  color: var(--color-title);
}

.tes-item .text-tes {
  margin-bottom: 40px;
}

@media (max-width: 575px) {
  .tes-item {
    flex-direction: column;
  }

  .tes-item .image {
    height: 350px;
    max-width: 100%;
    position: relative;
  }

  .tes-item .item-content {
    max-width: 100%;
    padding: 30px 15px;
  }}

.tes-item.no-img {
  max-width: 100%;
  padding: 50px 40px;
}

.tes-item.no-img .item-content {
  max-width: 100%;
}

@media (min-width: 1200px) {
  .tes-item.no-img .item-content {
    padding: 0;
  }}

.tes-item.no-img.style-no-img-2 {
  padding: 50px;
}

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

.rating i {
  font-size: 24px;
  background-image: var(--ai-startup-gradient);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.rating i.star-opacity {
  opacity: 0.3;
}

.rating .point {
  color: var(--color-paragraph);
  padding-left: 5px;
}

/*--------- Abstracts variable --------- */
.wg-pagination li {
  width: 50px;
  height: 50px;
  cursor: pointer;
  border: 1px solid var(--color-border-1);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  color: var(--color-title);
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.wg-pagination li.active,
.wg-pagination li:hover {
  background-color: var(--ai-startup-blue);
  border-color: var(--ai-startup-blue);
  color: var(--white);
}

.tf-marquee .marquee-item {
  margin-right: 70px;
}

.brand-marque .brand-item {
  margin-right: 30px;
}

.marque-text-item {
  display: flex;
  align-items: center;
  gap: 30px;
}

.marque-text-item i,
.marque-text-item span {
  display: inline-block;
  color: var(--white);
  position: relative;
  background-image: var(--ai-startup-gradient);
  background-repeat: no-repeat;
  background-size: 0% 100%;
  background-position: left center;
  -webkit-background-clip: text;
  -webkit-text-fill-color: var(--white);
  transition: background-size 0.45s ease, -webkit-text-fill-color 0.45s ease;
}

.marque-text-item i {
  font-size: 30px;
}

.marque-text-item.style-color-title i,
.marque-text-item.style-color-title span {
  color: var(--color-title);
  -webkit-text-fill-color: var(--color-title);
}

.marque-text-item:hover i,
.marque-text-item:hover span {
  background-size: 100% 100%;
  -webkit-text-fill-color: transparent;
}

.marque-text-item.style-2 i,
.marque-text-item.style-2 span {
  color: #adadad;
  background-image: unset;
  background-repeat: unset;
  background-size: 100%;
  -webkit-text-fill-color: unset;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.marque-text-item.style-2:hover i,
.marque-text-item.style-2:hover span {
  color: var(--color-title);
}

.infiniteSlide-app.style-border {
  position: relative;
  padding: 30px 0;
}

@media (min-width: 1200px) {
  .infiniteSlide-app.style-border {
    padding: 54px 0 59px;
  }}

.infiniteSlide-app.style-bg-blur {
  backdrop-filter: blur(20px);
}

.infiniteSlide-app.section-dot-2 .dot-1 {
  left: 312px;
}

.infiniteSlide-app.section-dot-2 .dot-2 {
  left: 312px;
}

.infiniteSlide-app.section-dot-2 .dot-3 {
  right: 312px;
}

.infiniteSlide-app.section-dot-2 .dot-4 {
  right: 312px;
}

@media (max-width: 1199px) {
  .infiniteSlide-app.section-dot-2 .dot-1 {
    left: 12px;
  }

  .infiniteSlide-app.section-dot-2 .dot-2 {
    left: 12px;
  }

  .infiniteSlide-app.section-dot-2 .dot-3 {
    right: 12px;
  }

  .infiniteSlide-app.section-dot-2 .dot-4 {
    right: 12px;
  }}

.text-big-gradient {
  font-size: clamp(34px, 10vw, 145px);
  font-weight: 700;
  line-height: 100%;
  letter-spacing: -0.05em;
  text-align: center;
  vertical-align: middle;
  text-transform: uppercase;
  color: transparent;
  background: linear-gradient(90.62deg, #a291fe 2.77%, #ffffff 46.94%, #71bbf9 91.12%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.list-image-avatar {
  display: flex;
  align-items: center;
}

.list-image-avatar .item {
  border-radius: 50%;
  overflow: hidden;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--color-border-6);
  margin-right: -15px;
  z-index: 1;
}

.list-image-avatar .item.text-item {
  border-color: transparent;
  background-image: var(--ai-startup-gradient);
}

.list-image-avatar .item.text-item span {
  font-size: 34px;
  line-height: 100%;
  color: var(--white);
}

.wg-quote-2 {
  position: relative;
  padding: 30px 15px;
  background: linear-gradient(180deg, rgba(39, 39, 39, 0.5) 0%, rgba(77, 77, 77, 0.5) 100%);
  border-radius: 20px;
  width: 100%;
  backdrop-filter: blur(30px);
}

.wg-quote-2 .line {
  height: 1px;
  inline-size: 1;
  background: radial-gradient(50% 50% at 50% 50%, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0) 100%);
  margin-bottom: 27px;
}

@media (min-width: 1200px) {
  .wg-quote-2 .line {
    margin-bottom: 48px;
  }}

.wg-quote-2 .top-wg {
  margin-bottom: 27px;
}

@media (min-width: 1200px) {
  .wg-quote-2 .top-wg {
    margin-bottom: 48px;
  }}

.wg-quote-2 .icon {
  margin-bottom: 27px;
}

.wg-quote-2 .icon i {
  color: var(--white);
  font-size: 55px;
}

.wg-quote-2 .list-image-avatar {
  margin-bottom: 30px;
}

.wg-quote-2::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 1px;
  border-radius: inherit;
  background: linear-gradient(134.16deg, #ffffff 2.68%, rgba(255, 255, 255, 0.1) 30.48%);
  pointer-events: none;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}

@media (min-width: 768px) {
  .wg-quote-2 {
    max-width: 370px;
    padding: 40px;
  }}

.features-card {
  background-color: var(--ai-startup-light-dark);
  padding: 30px 15px;
  border-radius: 14px;
}

.features-card .title {
  color: var(--white);
  margin-bottom: 55px;
  text-align: center;
}

.features-card .middel-icon {
  position: relative;
}

.features-card .middel-icon .icon-item {
  position: absolute;
}

.features-card .middel-icon .icon-item.icon-1 {
  top: -27px;
  left: 50%;
  transform: translateX(-50%);
}

.features-card .middel-icon .icon-item.icon-2 {
  top: 34%;
  left: 35px;
  transform: translateY(-50%);
}

.features-card .middel-icon .icon-item.icon-4 {
  top: 34%;
  right: 35px;
  transform: translateY(-50%);
}

.features-card .middel-icon .icon-item.icon-3 {
  bottom: 40%;
  left: 50%;
  transform: translate(-50%, 50%);
}

.features-card .icon-item {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-image: var(--ai-startup-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
}

.features-card .icon-item i {
  font-size: 30px;
  color: var(--white);
}

.features-card .img-shape {
  max-width: 270px;
  margin-left: auto;
  margin-right: auto;
}

.features-card .img-shape img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.features-card .desc {
  color: var(--color-text-2);
  text-align: center;
  margin-top: 3px;
}

@media (min-width: 992px) {
  .features-card {
    max-width: calc(33.3333333333% - 7px);
    width: 100%;
  }}

.features-card-2 {
  background: var(--ai-startup-gradient);
  position: relative;
  padding: 30px 15px;
  border-radius: 14px;
}

.features-card-2 .image-bg {
  position: absolute;
  top: 14px;
  left: 0;
  width: 100%;
  height: 152px;
}

.features-card-2 .image-bg img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.features-card-2 .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 29px;
}

.features-card-2 .card-content {
  position: relative;
}

.features-card-2 p {
  text-align: center;
  color: var(--white);
}

.features-card-2 .title {
  margin-bottom: 9px;
}

@media (max-width: 1439px) {
  .features-card-2 br {
    display: none;
  }}

.box-fact {
  padding: 30px 40px;
  max-width: 300px;
  width: 100%;
  background: var(--ai-startup-gradient);
  border-radius: 14px;
  text-align: center;
}

.box-fact .line {
  margin: 35px 0 31px;
  height: 1px;
  width: 100%;
  background: radial-gradient(50% 50% at 50% 50%, #ffffff 0%, rgba(255, 255, 255, 0) 100%);
}

.box-fact p {
  color: var(--white);
}

.box-fact.style-bg-blur {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06) 0%, rgba(153, 153, 153, 0.021) 100%);
  position: relative;
  backdrop-filter: blur(20px);
  border-radius: 50px;
}

.box-fact.style-bg-blur::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 1px;
  border-radius: inherit;
  background: linear-gradient(100.62deg, #FFFFFF 5.09%, rgba(255, 255, 255, 0.3) 42.59%);
  pointer-events: none;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}

.box-fact.style-bg-blur .line {
  background: radial-gradient(50% 50% at 50% 50%, #FFFFFF 0%, rgba(255, 255, 255, 0) 100%);
}

.box-services-icon {
  background: linear-gradient(180deg, rgba(6, 6, 6, 0.45) 0%, rgba(56, 56, 56, 0.4) 100%);
  padding: 30px 15px;
  border: 1px solid var(--color-border-5);
  border-radius: 20px;
  backdrop-filter: blur(30px);
  position: relative;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.box-services-icon::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 1px;
  border-radius: inherit;
  background: var(--ai-startup-gradient);
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.box-services-icon .icon {
  width: 100%;
  max-width: 80px;
  height: 80px;
  backdrop-filter: blur(30px);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(6, 6, 6, 0.45) 0%, rgba(56, 56, 56, 0.4) 100%);
}

.box-services-icon .icon i {
  font-size: 40px;
  color: var(--white);
  position: relative;
  z-index: 2;
}

.box-services-icon .icon::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: var(--ai-startup-gradient);
  opacity: 0;
  visibility: hidden;
  border-radius: 20px;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.box-services-icon .icon::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 1px;
  border-radius: inherit;
  background: linear-gradient(134.16deg, rgba(255, 255, 255, 0.5) 2.68%, rgba(255, 255, 255, 0.1) 30.48%);
  pointer-events: none;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  transition: background 0.3s;
}

.box-services-icon .name-box {
  color: var(--white);
}

.box-services-icon .desc {
  color: var(--color-text-4);
}

.box-services-icon .top-box {
  display: flex;
  gap: 15px 25px;
  align-items: center;
  margin-bottom: 20px;
}

.box-services-icon:hover::before {
  opacity: 1;
  visibility: visible;
}

.box-services-icon:hover .icon {
  background: transparent;
}

.box-services-icon:hover .icon::after {
  opacity: 1;
  visibility: visible;
}

.box-services-icon:hover .icon::before {
  background: linear-gradient(134.16deg, #ffffff 2.68%, rgba(255, 255, 255, 0.1) 30.48%);
}

@media (min-width: 768px) {
  .box-services-icon {
    padding: 30px 29px 28px 29px;
  }}

.project-item {
  padding: 10px;
  border: 1px solid var(--color-border-4);
  border-radius: 20px;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.project-item .image {
  border-radius: 16px;
}

.project-item .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.project-item .top-item {
  position: relative;
  margin-bottom: 20px;
}

.project-item .meta-project {
  position: absolute;
  top: 10px;
  left: 10px;
  display: flex;
  gap: 5px;
}

.project-item .meta-project .meta-item {
  padding: 8px 14px;
  border-radius: 999px;
  background-color: var(--white);
  color: var(--color-title);
}

.project-item .meta-project .meta-item:hover {
  background-color: var(--black);
  color: var(--white);
}

.project-item .content-item {
  display: flex;
  justify-content: space-between;
  gap: 15px;
}

.project-item .content-item .name-project {
  color: var(--color-title);
}

@media (min-width: 1200px) {
  .project-item .content-item .name-project {
    padding-top: 12px;
  }}

@media (max-width: 1199px) {
  .project-item .content-item {
    align-items: center;
  }}

@media (min-width: 992px) {
  .project-item .content-item {
    padding-left: 20px;
    padding-right: 20px;
    padding-bottom: 8px;
  }}

.project-item:hover {
  background-color: var(--ai-agency-gray);
}

.project-item:hover .tf-btn-arrow {
  border-color: transparent;
}

.project-item:hover .tf-btn-arrow i {
  color: var(--white);
}

.project-item:hover .tf-btn-arrow::before {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.project-item.style-2 {
  border: unset;
  background-color: transparent;
  position: relative;
  padding: 0;
}

.project-item.style-2 .name-project {
  color: var(--white);
  margin-bottom: 7px;
}

.project-item.style-2 .meta-item {
  color: var(--color-text-2);
}

.project-item.style-2 .meta-item::before {
  background-color: var(--color-text-2);
}

.project-item.style-2 .item-content {
  padding: 21px 30px 17px;
  margin: 0 30px 20px;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(180deg, rgba(22, 22, 22, 0.4) 0%, rgba(22, 22, 22, 0.3) 100%);
  border-radius: 20px;
  backdrop-filter: blur(20px);
  z-index: 5;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

@media (max-width: 991px) {
  .project-item.style-2 .item-content {
    padding: 20px 15px;
    margin: 0 15px 15px;
  }}

.project-item.style-2:hover .item-content {
  background: var(--white);
}

.project-item.style-2:hover .name-project {
  color: var(--color-title);
}

.project-item.style-2:hover .meta-item {
  color: var(--color-paragraph);
}

.project-item.style-2:hover .meta-item::before {
  background-color: var(--color-paragraph);
}

.wg-fun-fact {
  padding-top: 48px;
  padding-bottom: 47px;
  box-shadow: 10px 4px 60px 0px rgba(181, 181, 181, 0.2);
  border: 1px solid var(--color-border-7);
  border-radius: 130px;
}

.wg-fun-fact .text {
  color: var(--color-title);
  margin-bottom: 48px;
}

.wg-fun-fact .line {
  position: absolute;
  top: 11px;
  left: 11px;
  max-width: 1000px;
  width: 100%;
  height: 1px;
  background-color: var(--color-border-7);
}

.wg-fun-fact .list-counter {
  margin-left: auto;
  margin-right: auto;
  max-width: 1096px;
  padding-left: 50px;
  padding-right: 50px;
  display: flex;
  justify-content: space-between;
  position: relative;
}

@media (max-width: 991px) {
  .wg-fun-fact {
    border-radius: 50px;
  }

  .wg-fun-fact .text {
    margin-bottom: 30px;
  }

  .wg-fun-fact .list-counter {
    padding-left: 30px;
    padding-right: 30px;
  }}

@media (max-width: 767px) {
  .wg-fun-fact .list-counter {
    flex-wrap: wrap;
    gap: 15px;
    padding-left: 15px;
    padding-right: 15px;
  }

  .wg-fun-fact .counter-item {
    max-width: calc(50% - 7.5px);
    width: 100%;
  }}

.counter-item .icon {
  margin-bottom: 20px;
}

.counter-item .icon i {
  font-size: 24px;
  color: transparent;
  background-image: var(--ai-startup-gradient);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.counter-item .wrap-counter {
  margin-bottom: 4px;
  color: var(--color-title);
}

.counter-item .text-counter {
  color: var(--color-paragraph);
}

.horizontal-accordion {
  display: flex;
  gap: 10px;
  width: 100%;
  height: 470px;
}

.accordion-horizontal-item {
  flex: 0 0 auto;
  overflow: hidden;
  cursor: pointer;
  transition: width 0.6s cubic-bezier(0.22, 1, 0.36, 1), flex-basis 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.process-accordion-item {
  position: relative;
  background-color: var(--white);
  border-radius: 14px;
  border: 1px solid var(--color-border-7);
  box-shadow: 10px 4px 60px 0px rgba(181, 181, 181, 0.2);
}

.process-accordion-item .naming-list {
  padding: 28px 30px 30px;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.process-accordion-item .naming-list .top-item {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

.process-accordion-item .name-process {
  display: flex;
  gap: 22px;
  align-items: center;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--color-border-7);
  margin-bottom: 20px;
}

.process-accordion-item .text {
  max-width: 574px;
  color: var(--color-paragraph);
}

.process-accordion-item .list-image {
  display: flex;
  gap: 10px;
}

.process-accordion-item .list-image .image {
  border-radius: 14px;
  overflow: hidden;
}

.process-accordion-item .list-image .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 575px) {
  .process-accordion-item .list-image {
    flex-wrap: wrap;
  }}

.process-accordion-item .box-process {
  padding: 28px 30px 30px;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.process-accordion-item .box-process .text {
  margin-bottom: 30px;
}

@media (max-width: 991px) {
  .process-accordion-item .box-process {
    padding: 30px 15px;
  }}

.process-accordion-item.active .naming-list {
  opacity: 0;
  visibility: hidden;
}

.process-accordion-item.active .box-process {
  opacity: 1;
  visibility: visible;
}

.contact-card {
  padding: 14px 10px 10px;
  max-width: 230px;
  width: 100%;
  background: var(--ai-startup-gradient);
  border-radius: 10px;
  border: 1px solid var(--color-border-7);
}

.contact-card i {
  font-size: 24px;
}

.contact-card .top-card {
  padding-left: 10px;
  margin-bottom: 18px;
}

.contact-card .top-card i,
.contact-card .top-card p {
  color: var(--white);
}

.contact-card .link {
  padding: 8px 20px 11px;
  width: 100%;
  background-color: var(--white);
  border-radius: 10px;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.2509803922);
}

.contact-card.style-color-bg-1 {
  background: var(--color-bg-1);
  border-color: var(--color-border-1);
}

.contact-card.style-color-bg-1 i {
  color: var(--color-title);
}

.contact-card.style-color-bg-1 .title-card {
  color: var(--color-paragraph);
}

.contact-card.style-color-bg-1 .link {
  box-shadow: unset;
}

.services-item-2 {
  background-color: var(--white);
  border: 1px solid var(--color-border-1);
  padding: 40px 50px 37px;
  border-radius: 20px;
}

.services-item-2 .icon {
  position: unset;
  width: 80px;
  height: 80px;
  background: var(--color-bg-1);
  border: 1px solid var(--color-border-1);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 30px;
  position: relative;
}

.services-item-2 .icon::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--ai-startup-gradient);
  border-radius: 20px;
  opacity: 0;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.services-item-2 .icon i {
  color: var(--ai-startup-blue);
  font-size: 40px;
  position: relative;
  z-index: 5;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.services-item-2 .line {
  width: 100%;
  height: 1px;
  background: radial-gradient(50% 50% at 50% 50%, rgba(92, 87, 231, 0.2) 0%, rgba(92, 87, 231, 0) 100%);
  margin-bottom: 31px;
}

.services-item-2 .name-item {
  max-width: 215px;
  color: var(--color-title);
  margin-bottom: 30px;
}

.services-item-2 .desc {
  color: var(--color-paragraph);
  margin-bottom: 19px;
}

.services-item-2 ul {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-bottom: 36px;
}

.services-item-2 li {
  color: var(--color-paragraph);
  letter-spacing: -0.02em;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.services-item-2 li i {
  font-size: 18px;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.services-item-2 li span {
  font-family: "DM Sans", sans-serif;
}

@media (max-width: 1199px) {
  .services-item-2 {
    padding: 30px 15px;
  }}

.services-item-2:hover .icon::before {
  opacity: 1;
}

.services-item-2:hover .icon i {
  color: var(--white);
}

.services-item-2:hover .tf-btn {
  background: var(--black);
}

.services-item-2:hover .tf-btn .text-btn,
.services-item-2:hover .tf-btn i {
  color: var(--white);
}

.process-item {
  text-align: center;
  max-width: 348px;
}

.process-item .number-process {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: auto;
  margin-right: auto;
  border-radius: 20px;
  background: var(--ai-startup-light-dark);
  margin-bottom: 40px;
  position: relative;
}

.process-item .number-process span {
  color: var(--white);
  position: relative;
  z-index: 2;
}

.process-item .number-process::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 20px;
  background: var(--ai-startup-gradient);
  opacity: 0;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.process-item .title {
  color: var(--color-title);
  margin-bottom: 16px;
}

.process-item .desc {
  color: var(--color-paragraph);
}

@media (max-width: 1199px) {
  .process-item br {
    display: none;
  }}

@media (max-width: 991px) {
  .process-item {
    max-width: 100%;
  }

  .process-item .number-process {
    margin-bottom: 16px;
  }}

.process-item:hover .number-process::after {
  background: var(--ai-startup-gradient);
  opacity: 1;
}

.brand-item {
  width: 190px;
  height: 70px;
  background: var(--color-bg-1);
  border: 1px solid var(--color-border-1);
  border-radius: 14px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.brand-item img {
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.brand-item .img-hover {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
}

.brand-item:hover {
  background-color: var(--ai-startup-blue);
  border-color: var(--ai-startup-blue);
}

.brand-item:hover .img-hover {
  opacity: 1;
}

.brand-item:hover .img-main {
  opacity: 0;
}

.brand-item.style-hover-2:hover {
  background-color: var(--ai-startup-light-dark);
  border-color: var(--ai-startup-light-dark);
}

.mission-card {
  padding: 20px 30px;
  background-color: var(--color-bg-1);
  border: 1px solid var(--color-border-1);
  border-radius: 14px;
}

.mission-card .top {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.mission-card .top i {
  color: var(--ai-startup-blue);
  font-size: 17px;
}

.mission-card .desc {
  color: var(--color-paragraph);
}

@media (max-width: 991px) {
  .mission-card {
    padding: 20px 15px;
  }}

.box-icon {
  max-width: 239px;
}

.box-icon .icon {
  width: 80px;
  height: 80px;
  border-radius: 20px;
  background-color: var(--ai-startup-light-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin-bottom: 30px;
}

.box-icon .icon::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: var(--ai-startup-gradient);
  border-radius: 20px;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.box-icon .name-box {
  color: var(--color-title);
  margin-bottom: 10px;
}

.box-icon .desc {
  color: var(--color-paragraph);
}

.box-icon:hover .icon::before {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

@media (max-width: 991px) {
  .box-icon {
    max-width: 100%;
  }}

.team-card {
  padding: 10px;
  border: 1px solid var(--color-border-4);
  border-radius: 10px;
}

.team-card .image {
  border-radius: 10px;
  margin-bottom: 27px;
}

.team-card .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}

.team-card .name-team {
  color: var(--color-title);
  margin-bottom: 2px;
}

.team-card .position {
  color: var(--color-paragraph);
}

.team-card .card-content {
  padding: 0 20px 14px;
}

.team-card.style-all-member {
  padding: 40px;
  background: var(--ai-startup-gradient);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 30px;
}

.team-card.style-all-member .wrap-counter,
.team-card.style-all-member .text-counter {
  color: var(--white);
}

.team-card.style-all-member .card-content {
  padding: 0;
}

@media (max-width: 1439px) {
  .team-card.style-all-member {
    padding: 20px;
  }}

@media (max-width: 991px) {
  .team-card.style-all-member {
    padding: 10px;
  }}

.contact-item {
  background-color: var(--color-bg-1);
  border: 1px solid var(--color-border-1);
  border-radius: 20px;
  padding: 38px 28px;
  width: 100%;
}

.contact-item .icon {
  margin-bottom: 11px;
}

.contact-item .icon i {
  font-size: 50px;
  color: var(--ai-startup-blue);
}

.contact-item .icon .icon-phone-outgoing {
  font-size: 45px;
}

.contact-item .top-item {
  margin-bottom: 82px;
}

@media (max-width: 575px) {
  .contact-item .top-item {
    margin-bottom: 30px;
  }}

.contact-item .bottom-item a {
  color: var(--color-paragraph);
}

.wg-404 {
  display: flex;
  align-items: center;
  flex-direction: column;
}

.wg-404 .tf-btn {
  margin-left: auto;
  margin-right: auto;
}

.wg-404 .image {
  max-width: 707px;
}

.wg-404 .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 991px) {
  .wg-404 br {
    display: none;
  }}

/*--------- Abstracts variable --------- */
/*--------- Abstracts variable --------- */
/*--------- Abstracts variable --------- */
.nice-select {
  border-color: var(--border) !important;
  position: relative;
  padding: 15px 23px !important;
}

.nice-select::before {
  content: "\e911";
  font-family: "icomoon";
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 20px;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  color: var(--color-paragraph);
}

.nice-select::after {
  display: none;
}

.nice-select>span {
  color: var(--color-paragraph);
}

.nice-select.open {
  z-index: 50;
}

.nice-select.open::before {
  transform: translateY(-50%) rotate(180deg);
}

.awards-according-list .header-table {
  display: flex;
  gap: 30px;
  padding: 16px 30px;
  border-radius: 14px;
  background-color: var(--white);
}

.awards-according-list .header-name-project {
  max-width: 39.7%;
  width: 100%;
}

.awards-according-list .header-category {
  max-width: 42.4%;
  width: 100%;
}

.awards-according-list .according-awards-item {
  padding-bottom: 40px;
  margin-bottom: 40px;
  border-bottom: 1px solid var(--color-border-1);
}

.awards-according-list .according-awards-item:last-child {
  margin-bottom: 0;
}

@media (max-width: 767px) {
  .awards-according-list .header-table {
    justify-content: space-between;
  }

  .awards-according-list .header-category {
    display: none;
  }}

.according-awards-item .title-according {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.according-awards-item .title-according .letf-title {
  max-width: calc(42.7% - 30px);
  width: 100%;
}

@media (max-width: 767px) {
  .according-awards-item .title-according .letf-title {
    max-width: 100%;
  }}

.according-awards-item .title-according .right-title {
  max-width: 57.3%;
  width: 100%;
}

@media (min-width: 1200px) {
  .according-awards-item .title-according .right-title {
    padding-right: 50px;
  }}

.according-awards-item .according-content {
  display: flex;
  align-items: end;
  gap: 30px;
  margin-top: 40px;
  margin-bottom: 10px;
}

.according-awards-item .according-content .letf-content {
  max-width: calc(42.7% - 30px);
  width: 100%;
}

@media (max-width: 767px) {
  .according-awards-item .according-content .letf-content {
    max-width: 100%;
  }}

.according-awards-item .according-content .right-content {
  max-width: 57.3%;
  width: 100%;
}

.according-awards-item .according-content .image {
  border-radius: 20px;
}

.according-awards-item .according-content .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
}

@media (max-width: 767px) {

  .according-awards-item .right-content,
  .according-awards-item .text-category {
    display: none;
  }

  .according-awards-item .title-according {
    justify-content: space-between;
  }

  .according-awards-item .title-according .right-title {
    max-width: max-content;
  }}

/*--------- Abstracts variable --------- */
/* ------------ Footer ---------------- */
/*--------- Abstracts variable --------- */
.footer {
  position: relative;
  padding-top: 115px;
}

.footer .image-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.footer .image-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.footer .image-bg::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, #131313 0%, rgba(19, 19, 19, 0.85) 100%);
}

.footer .top-footer {
  padding-bottom: 59px;
  position: relative;
}

.footer .line-footer {
  height: 1px;
  width: 100%;
  background-color: var(--color-border-3);
  position: relative;
}

.footer .line-footer .dot {
  width: 5px;
  height: 5px;
  background-color: var(--white);
  position: absolute;
  top: -3px;
}

.footer .line-footer .dot.dot-1 {
  left: 15px;
}

.footer .line-footer .dot.dot-2 {
  right: 15px;
}

.footer .middle-footer {
  padding-top: 100px;
  padding-bottom: 100px;
}

@media (max-width: 1439px) {
  .footer .middle-footer {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .footer .middle-footer br {
    display: none;
  }}

@media (max-width: 991px) {
  .footer .middle-footer {
    padding-top: 60px;
    padding-bottom: 60px;
  }}

.footer .bottom-footer {
  position: relative;
  border-top: 1px solid var(--color-border-3);
  padding-top: 27px;
  padding-bottom: 27px;
}

.footer .bottom-footer .copy-right {
  color: var(--color-text-2);
}

.footer .bottom-footer .copy-right a {
  color: var(--white);
}

.footer .bottom-footer ul a {
  color: var(--color-text-2);
  text-decoration-line: underline;
  text-decoration-color: transparent;
  text-underline-offset: 1px;
}

.footer .bottom-footer ul a:hover {
  color: var(--white);
  text-decoration-color: var(--white) !important;
}

@media (max-width: 767px) {
  .footer .bottom-footer .bottom-footer-content {
    gap: 15px;
    flex-direction: column;
    align-items: center;
  }}

@media (max-width: 1439px) {
  .footer {
    padding-top: 80px;
  }}

@media (max-width: 991px) {
  .footer {
    padding-top: 60px;
  }}

.footer.style-2 {
  padding-top: 52px;
  background: var(--black);
}

.footer.style-2 .image-shape {
  position: absolute;
  bottom: 0;
}

.footer.style-2 .image-shape.shape-1 {
  left: 0;
}

.footer.style-2 .image-shape.shape-2 {
  right: 0;
}

.footer.style-2 .line-footer .dot {
  background-color: transparent;
  background: var(--ai-startup-gradient);
}

.footer.style-2 .line-footer .dot.dot-1 {
  left: -3px;
}

.footer.style-2 .line-footer .dot.dot-2 {
  right: -3px;
}

.footer.style-2 .middle-footer {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  position: relative;
}

.footer.style-2 .middle-footer .img-shape {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  max-width: 720px;
  width: 100%;
}

.footer.style-2 .middle-footer .img-shape img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 991px) {
  .footer.style-2 .middle-footer .img-shape {
    display: none;
  }}

@media (min-width: 1200px) {
  .footer.style-2 .middle-footer {
    padding-left: 48px;
    padding-right: 10px;
  }}

@media (max-width: 991px) {
  .footer.style-2 .middle-footer {
    flex-wrap: wrap;
  }

  .footer.style-2 .middle-footer .footer-content {
    max-width: 33.3333333333%;
  }}

@media (max-width: 575px) {
  .footer.style-2 .middle-footer .footer-content {
    max-width: 100%;
    width: 100%;
  }}

.footer.style-2 .about-footer {
  width: 100%;
}

@media (min-width: 992px) {
  .footer.style-2 .about-footer {
    max-width: 351px;
  }}

.footer.style-2 .big-text-footer {
  padding-top: 38px;
  padding-bottom: 43px;
}

.footer.style-2 .bottom-footer {
  padding-top: 48px;
  padding-bottom: 48px;
  border-top-color: transparent;
}

.about-footer .logo-footer {
  margin-bottom: 20px;
}

@media (min-width: 576px) {
  .about-footer .logo-footer {
    margin-bottom: 32px;
  }}

.about-footer .title {
  color: var(--white);
  margin-bottom: 20px;
}

@media (min-width: 576px) {
  .about-footer .title {
    margin-bottom: 46px;
  }}

.footer-content {
  min-width: 180px;
}

.footer-content .title-mobile {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--white);
}

.footer-content .title-mobile i {
  font-size: 24px;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -ms-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.footer-content .content {
  margin-top: 23px;
}

.footer-content li {
  margin-bottom: 9px;
}

.footer-content li a {
  color: var(--color-text-1);
  position: relative;
}

.footer-content li a::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -10px;
  transform: translateY(-50%);
  width: 5px;
  height: 5px;
  background-color: var(--white);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.footer-content li a:hover {
  color: var(--white);
  padding-left: 15px;
}

.footer-content li a:hover::before {
  left: 0;
  opacity: 1;
  visibility: visible;
}

.footer-content li:last-child {
  margin-bottom: 0;
}

.footer-content .text {
  color: var(--color-text-1);
  display: flex;
  flex-direction: column;
}

@media (max-width: 575px) {
  .footer-content .tf-collapse-content {
    display: none;
  }}

.footer-content.open .title-mobile i {
  transform: rotate(180deg);
}

.footer-content.footer-newsletter {
  width: 100%;
}

.footer-content.footer-newsletter .content {
  margin-top: 26px;
}

.footer-content.footer-newsletter .desc-newsletter {
  color: var(--color-text-1);
  margin-bottom: 30px;
}

@media (min-width: 576px) {
  .footer-content.footer-newsletter {
    max-width: 315px;
  }}

.big-text-footer {
  font-size: clamp(34px, 20vw, 250px);
  line-height: 100%;
  font-weight: 700;
  text-align: center;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  color: transparent;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0) 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ============================================================================
   SEO, AEO, GEO & ACCESSIBILITY ENHANCEMENTS
   ============================================================================ */

/* Keyboard Navigation Focus Indicator (Accessibility Signal for Search Bots & Screen Readers) */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 2px solid var(--ai-startup-blue, #5C57E7);
  outline-offset: 3px;
}

/* Respect User Reduced Motion Preference for Core Web Vitals Optimization */
@media (prefers-reduced-motion: reduce) {

  *,
  ::before,
  ::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }}

/* Print Optimization for AI Search Engine Crawlers */
@media print {
  body {
    background: #ffffff !important;
    color: #000000 !important;
  }

  .header,
  .footer,
  .preload,
  .progress-wrap,
  .custom-cursor-wrapper {
    display: none !important;
  }}

/* =========================================================
   Interactive Custom Cursor
   ========================================================= */
@media (hover: hover) and (pointer: fine) {

  html.has-custom-cursor,
  html.has-custom-cursor *,
  html.has-custom-cursor *::before,
  html.has-custom-cursor *::after {
    cursor: none !important;
  }

  .custom-cursor-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 999999;
    transition: opacity 0.3s ease, visibility 0.3s ease;
  }

  .custom-cursor-wrapper.is-hidden {
    opacity: 0;
    visibility: hidden;
  }

  .custom-cursor-dot {
    position: fixed;
    top: 0;
    left: 0;
    width: 8px;
    height: 8px;
    background: #00bc7d;
    border-radius: 50%;
    pointer-events: none;
    z-index: 1000001;
    transform: translate3d(-100px, -100px, 0);
    transition: width 0.25s ease, height 0.25s ease, background-color 0.25s ease, opacity 0.25s ease;
    box-shadow: 0 0 10px rgba(0, 188, 125, 0.7);
  }

  .custom-cursor-follower {
    position: fixed;
    top: 0;
    left: 0;
    width: 36px;
    height: 36px;
    border: 1.5px solid rgba(0, 188, 125, 0.6);
    background: rgba(0, 188, 125, 0.06);
    border-radius: 50%;
    pointer-events: none;
    z-index: 1000000;
    transform: translate3d(-100px, -100px, 0);
    transition: width 0.35s cubic-bezier(0.25, 1, 0.5, 1),
      height 0.35s cubic-bezier(0.25, 1, 0.5, 1),
      background-color 0.35s ease,
      border-color 0.35s ease,
      box-shadow 0.35s ease,
      border-radius 0.3s ease,
      opacity 0.3s ease;
    box-sizing: border-box;
    backdrop-filter: blur(1px);
  }

  /* Hovering Clickable Elements (Links, Buttons, Menu Items) */
  .custom-cursor-wrapper.is-hovering .custom-cursor-follower {
    width: 52px;
    height: 52px;
    background: rgba(0, 188, 125, 0.15);
    border-color: #00bc7d;
    box-shadow: 0 0 20px rgba(0, 188, 125, 0.4);
  }

  .custom-cursor-wrapper.is-hovering .custom-cursor-dot {
    opacity: 0.75;
    transform: scale(1.3);
  }

  /* Hovering Emerald/Green Action Buttons (Pill / CTA) */
  .custom-cursor-wrapper.is-hovering-btn .custom-cursor-follower {
    width: 62px;
    height: 62px;
    background: rgba(0, 188, 125, 0.25);
    border-color: #00e676;
    box-shadow: 0 0 26px rgba(0, 188, 125, 0.55);
  }

  .custom-cursor-wrapper.is-hovering-btn .custom-cursor-dot {
    background: #ffffff;
    box-shadow: 0 0 12px rgba(255, 255, 255, 0.9);
    width: 10px;
    height: 10px;
  }

  /* Hovering Form Inputs & Textareas */
  .custom-cursor-wrapper.is-hovering-input .custom-cursor-follower {
    width: 28px;
    height: 28px;
    border-radius: 6px;
    border-color: rgba(0, 188, 125, 0.85);
    background: rgba(0, 188, 125, 0.08);
  }

  .custom-cursor-wrapper.is-hovering-input .custom-cursor-dot {
    width: 3px;
    height: 16px;
    border-radius: 2px;
  }

  /* Click / Active State */
  .custom-cursor-wrapper.is-clicked .custom-cursor-follower {
    transform: scale(0.75);
    background: rgba(0, 188, 125, 0.35);
    border-color: #00e676;
  }

  .custom-cursor-wrapper.is-clicked .custom-cursor-dot {
    transform: scale(0.6);
  }}