@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;600;700&display=swap');

/* Default (English) */
:root {
  --font-family: "Open Sans", sans-serif;
}

html[lang="en-GB"] {
  --font-family: "Open Sans", sans-serif;
}

/* Japanese */
html[lang="ja"] {
  --font-family: "Open Sans", sans-serif;
}

/* Korean */
html[lang="ko-KR"] {
  --font-family: "Open Sans", sans-serif;
}

body {
  font-family: var(--font-family);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-family);
}

:root {
  /* --font-family: "Nunito Sans", serif; */
  --primary-color: #C32423;
  --primary10: rgba(60, 114, 252, 0.1);
  --gradient-bg: linear-gradient(90deg, #C32423 -10.59%, #00060c 300.59%);
  --secondary-color: #7F7F7F;
  --main-bg: #FEFEFE;
  --sub-bg: #f3f7fb;
  --heading-color: #7F7F7F;
  --paragraph: #585858;
  --span: #585858;
  --border: #e3e3e3;
  --white: #FEFEFE;
  --black: #000000;
  --border-1px: 1px solid #eaecf0;
  --border-2px: 2px solid #eaecf0;
  --transition: all 0.3s ease-in-out;
  --shadow: 0px 4px 25px 0px #0000000f;
}

:root[data-theme=dark] {
  --primary-color: #C32423;
  --primary10: rgba(60, 114, 252, 0.1);
  --gradient-bg: linear-gradient(90deg, #C32423 -10.59%, #00060c 300.59%);
  --secondary-color: #7F7F7F;
  --main-bg: #151327;
  --sub-bg: #16142c;
  --heading-color: #fff;
  --paragraph: rgba(255, 255, 255, 0.8);
  --span: rgba(255, 255, 255, 0.8);
  --border: #e3e3e3;
  --white: #FEFEFE;
  --black: #000000;
}

:root[data-theme=dark] .light-area {
  --primary-color: #C32423;
  --primary10: rgba(60, 114, 252, 0.1);
  --gradient-bg: linear-gradient(90deg, #C32423 -10.59%, #00060c 300.59%);
  --secondary-color: #7F7F7F;
  --main-bg: #FEFEFE;
  --sub-bg: #f3f7fb;
  --heading-color: #7F7F7F;
  --paragraph: #585858;
  --span: #585858;
  --border: #e3e3e3;
  --white: #FEFEFE;
  --black: #000000;
}

* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  outline: none;
}

section .container {
  max-width: 100% !important;
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin: 0 auto;
  position: relative;
  padding: 0;
}

body {
  margin: 0;
  padding: 0;
  /* font-family: var(--font-family); */
  color: var(--paragraph);
  background-color: var(--main-bg);
  line-height: 28px;
  font-weight: 400;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  padding: 0;
  color: var(--heading-color);
  /* font-family: var(--font-family); */
}

h1 {
  font-size: 90px;
  font-weight: 700;
  line-height: 100px;
}

h2 {
  font-size: 40px;
  font-weight: 700;
  line-height: 48px;
}

@media (max-width: 767px) {
  h2 {
    font-size: 30px;
    line-height: 40px;
  }
}

h3 {
  font-size: 24px;
  line-height: 32px;
  font-weight: 600;
}

h4 {
  font-size: 20px;
  line-height: 32px;
  font-weight: 700;
}

h5 {
  font-size: 18px;
  font-weight: 600;
  line-height: 28px;
}

h6 {
  font-size: 14px;
  font-weight: 600;
}

p {
  margin: 0;
  padding: 0;
  line-height: 28px;
  font-size: 18px;
}

span {
  display: inline-block;
  color: var(--span);
}

a {
  text-decoration: none;
  display: inline-block;
  color: var(--heading-color);
  transition: var(--transition);
}

a:hover {
  color: var(--heading-color);
}

ul {
  margin: 0;
  padding: 0;
  text-decoration: none;
}

li {
  list-style: none;
}

button {
  border: none;
  background-color: transparent;
}

.mean-container .mean-nav ul li {
  background-color: #3f3f3f;
}

.mean-container .mean-nav ul li a.mean-expand {
  background-color: #3f3f3f;
  border-top: 0;
}

::placeholder {
  color: var(--span);
}

::selection {
  color: var(--white);
  background-color: var(--primary-color);
}

.mt-5 {
  margin-top: 5px;
}

.mt-10 {
  margin-top: 10px;
}

.mt-12 {
  margin-top: 12px;
}

.mt-15 {
  margin-top: 15px;
}

.mt-16 {
  margin-top: 16px;
}

.mt-20 {
  margin-top: 20px;
}

.mt-24 {
  margin-top: 24px;
}

.mt-25 {
  margin-top: 25px;
}

.mt-30 {
  margin-top: 30px;
}

.mt-35 {
  margin-top: 35px;
}

.mt-40 {
  margin-top: 40px;
}

.mt-41 {
  margin-top: 41px;
}

.mt-45 {
  margin-top: 45px;
}

.mt-48 {
  margin-top: 48px;
}

.mt-50 {
  margin-top: 50px;
}

.mt-55 {
  margin-top: 55px;
}

.mt-60 {
  margin-top: 60px;
}

.mt-64 {
  margin-top: 64px;
}

.mt-65 {
  margin-top: 65px;
}

.mt-70 {
  margin-top: 70px;
}

.mt-72 {
  margin-top: 72px;
}

.mt-75 {
  margin-top: 75px;
}

.mt-80 {
  margin-top: 80px;
}

.mt-85 {
  margin-top: 85px;
}

.mt-90 {
  margin-top: 90px;
}

.mt-95 {
  margin-top: 95px;
}

.mt-100 {
  margin-top: 100px;
}

.mt-105 {
  margin-top: 105px;
}

.mt-110 {
  margin-top: 110px;
}

.mt-115 {
  margin-top: 115px;
}

.mt-120 {
  margin-top: 120px;
}

.mt-125 {
  margin-top: 125px;
}

.mt-130 {
  margin-top: 130px;
}

.mt-135 {
  margin-top: 135px;
}

.mt-140 {
  margin-top: 140px;
}

.mt-145 {
  margin-top: 145px;
}

.mt-150 {
  margin-top: 150px;
}

.mt-155 {
  margin-top: 155px;
}

.mt-160 {
  margin-top: 160px;
}

.mt-165 {
  margin-top: 165px;
}

.mt-170 {
  margin-top: 170px;
}

.mt-175 {
  margin-top: 175px;
}

.mt-180 {
  margin-top: 180px;
}

.mt-185 {
  margin-top: 185px;
}

.mt-190 {
  margin-top: 190px;
}

.mt-195 {
  margin-top: 195px;
}

.mt-200 {
  margin-top: 200px;
}

/*-- Margin Bottom --*/
.mb-5 {
  margin-bottom: 5px;
}

.mb-10 {
  margin-bottom: 10px;
}

.mb-15 {
  margin-bottom: 15px;
}

.mb-16 {
  margin-bottom: 16px;
}

.mb-20 {
  margin-bottom: 20px;
}

.mb-24 {
  margin-bottom: 24px;
}

.mb-25 {
  margin-bottom: 25px;
}

.mb-30 {
  margin-bottom: 30px;
}

.mb-35 {
  margin-bottom: 35px;
}

.mb-40 {
  margin-bottom: 40px;
}

.mb-45 {
  margin-bottom: 45px;
}

.mb-48 {
  margin-bottom: 48px;
}

.mb-50 {
  margin-bottom: 50px;
}

.mb-55 {
  margin-bottom: 55px;
}

.mb-60 {
  margin-bottom: 60px;
}

.mb-64 {
  margin-bottom: 64px;
}

.mb-65 {
  margin-bottom: 65px;
}

.mb-70 {
  margin-bottom: 70px;
}

.mb-75 {
  margin-bottom: 75px;
}

.mb-80 {
  margin-bottom: 80px;
}

.mb-85 {
  margin-bottom: 85px;
}

.mb-90 {
  margin-bottom: 90px;
}

.mb-95 {
  margin-bottom: 95px;
}

.mb-100 {
  margin-bottom: 100px;
}

.mb-105 {
  margin-bottom: 105px;
}

.mb-110 {
  margin-bottom: 110px;
}

.mb-115 {
  margin-bottom: 115px;
}

.mb-120 {
  margin-bottom: 120px;
}

.mb-125 {
  margin-bottom: 125px;
}

.mb-130 {
  margin-bottom: 130px;
}

.mb-135 {
  margin-bottom: 135px;
}

.mb-140 {
  margin-bottom: 140px;
}

.mb-145 {
  margin-bottom: 145px;
}

.mb-150 {
  margin-bottom: 150px;
}

.mb-155 {
  margin-bottom: 155px;
}

.mb-160 {
  margin-bottom: 160px;
}

.mb-165 {
  margin-bottom: 165px;
}

.mb-170 {
  margin-bottom: 170px;
}

.mb-175 {
  margin-bottom: 175px;
}

.mb-180 {
  margin-bottom: 180px;
}

.mb-185 {
  margin-bottom: 185px;
}

.mb-190 {
  margin-bottom: 190px;
}

.mb-195 {
  margin-bottom: 195px;
}

.mb-200 {
  margin-bottom: 200px;
}

.ml-5 {
  margin-left: 5px;
}

.ml-10 {
  margin-left: 10px;
}

.ml-15 {
  margin-left: 15px;
}

.ml-20 {
  margin-left: 20px;
}

.ml-25 {
  margin-left: 25px;
}

.ml-30 {
  margin-left: 30px;
}

.ml-35 {
  margin-left: 35px;
}

.ml-40 {
  margin-left: 40px;
}

.ml-45 {
  margin-left: 45px;
}

.ml-50 {
  margin-left: 50px;
}

.ml-55 {
  margin-left: 55px;
}

.ml-60 {
  margin-left: 60px;
}

.ml-65 {
  margin-left: 65px;
}

.ml-70 {
  margin-left: 70px;
}

.ml-75 {
  margin-left: 75px;
}

.ml-80 {
  margin-left: 80px;
}

.ml-85 {
  margin-left: 85px;
}

.ml-90 {
  margin-left: 90px;
}

.ml-95 {
  margin-left: 95px;
}

.ml-100 {
  margin-left: 100px;
}

.ml-105 {
  margin-left: 105px;
}

.ml-110 {
  margin-left: 110px;
}

.ml-115 {
  margin-left: 115px;
}

.ml-120 {
  margin-left: 120px;
}

.ml-125 {
  margin-left: 125px;
}

.ml-130 {
  margin-left: 130px;
}

.ml-135 {
  margin-left: 135px;
}

.ml-140 {
  margin-left: 140px;
}

.ml-145 {
  margin-left: 145px;
}

.ml-150 {
  margin-left: 150px;
}

.ml-155 {
  margin-left: 155px;
}

.ml-160 {
  margin-left: 160px;
}

.ml-165 {
  margin-left: 165px;
}

.ml-170 {
  margin-left: 170px;
}

.ml-175 {
  margin-left: 175px;
}

.ml-180 {
  margin-left: 180px;
}

.ml-185 {
  margin-left: 185px;
}

.ml-190 {
  margin-left: 190px;
}

.ml-195 {
  margin-left: 195px;
}

.ml-200 {
  margin-left: 200px;
}

.mr-5 {
  margin-right: 5px;
}

.mr-10 {
  margin-right: 10px;
}

.mr-15 {
  margin-right: 15px;
}

.mr-16 {
  margin-right: 16px;
}

.mr-20 {
  margin-right: 20px;
}

.mr-25 {
  margin-right: 25px;
}

.mr-30 {
  margin-right: 30px;
}

.mr-35 {
  margin-right: 35px;
}

.mr-40 {
  margin-right: 40px;
}

.mr-45 {
  margin-right: 45px;
}

.mr-50 {
  margin-right: 50px;
}

.mr-55 {
  margin-right: 55px;
}

.mr-60 {
  margin-right: 60px;
}

.mr-65 {
  margin-right: 65px;
}

.mr-70 {
  margin-right: 70px;
}

.mr-75 {
  margin-right: 75px;
}

.mr-80 {
  margin-right: 80px;
}

.mr-85 {
  margin-right: 85px;
}

.mr-90 {
  margin-right: 90px;
}

.mr-95 {
  margin-right: 95px;
}

.mr-100 {
  margin-right: 100px;
}

.mr-105 {
  margin-right: 105px;
}

.mr-110 {
  margin-right: 110px;
}

.mr-115 {
  margin-right: 115px;
}

.mr-120 {
  margin-right: 120px;
}

.mr-125 {
  margin-right: 125px;
}

.mr-130 {
  margin-right: 130px;
}

.mr-135 {
  margin-right: 135px;
}

.mr-140 {
  margin-right: 140px;
}

.mr-145 {
  margin-right: 145px;
}

.mr-150 {
  margin-right: 150px;
}

.mr-155 {
  margin-right: 155px;
}

.mr-160 {
  margin-right: 160px;
}

.mr-165 {
  margin-right: 165px;
}

.mr-170 {
  margin-right: 170px;
}

.mr-175 {
  margin-right: 175px;
}

.mr-180 {
  margin-right: 180px;
}

.mr-185 {
  margin-right: 185px;
}

.mr-190 {
  margin-right: 190px;
}

.mr-195 {
  margin-right: 195px;
}

.mr-200 {
  margin-right: 200px;
}

.pt-5 {
  padding-top: 5px;
}

.pt-10 {
  padding-top: 10px;
}

.pt-15 {
  padding-top: 15px;
}

.pt-20 {
  padding-top: 20px;
}

.pt-25 {
  padding-top: 25px;
}

.pt-30 {
  padding-top: 30px;
}

.pt-32 {
  padding-top: 32px;
}

.pt-35 {
  padding-top: 35px;
}

.pt-40 {
  padding-top: 40px;
}

.pt-45 {
  padding-top: 45px;
}

.pt-50 {
  padding-top: 50px;
}

.pt-55 {
  padding-top: 55px;
}

.pt-60 {
  padding-top: 60px;
}

.pt-64 {
  padding-top: 64px;
}

.pt-65 {
  padding-top: 65px;
}

.pt-70 {
  padding-top: 70px;
}

.pt-182 {
  padding-top: 182px;
}

.pt-75 {
  padding-top: 75px;
}

.pt-78 {
  padding-top: 78px;
}

.pt-80 {
  padding-top: 80px;
}

.pt-85 {
  padding-top: 85px;
}

.pt-90 {
  padding-top: 90px;
}

.pt-95 {
  padding-top: 95px;
}

.pt-100 {
  padding-top: 100px;
}

.pt-105 {
  padding-top: 105px;
}

.pt-110 {
  padding-top: 110px;
}

.pt-115 {
  padding-top: 115px;
}

.pt-120 {
  padding-top: 120px;
}

.pt-125 {
  padding-top: 125px;
}

.pt-130 {
  padding-top: 130px;
}

.pt-136 {
  padding-top: 136px;
}

.pt-135 {
  padding-top: 135px;
}

.pt-140 {
  padding-top: 140px;
}

.pt-145 {
  padding-top: 145px;
}

.pt-150 {
  padding-top: 150px;
}

.pt-155 {
  padding-top: 155px;
}

.pt-160 {
  padding-top: 160px;
}

.pt-165 {
  padding-top: 165px;
}

.pt-170 {
  padding-top: 170px;
}

.pt-175 {
  padding-top: 175px;
}

.pt-180 {
  padding-top: 180px;
}

.pt-185 {
  padding-top: 185px;
}

.pt-190 {
  padding-top: 190px;
}

.pt-192 {
  padding-top: 192px;
}

.pt-195 {
  padding-top: 195px;
}

.pt-200 {
  padding-top: 200px;
}

.pb-5 {
  padding-bottom: 5px;
}

.pb-10 {
  padding-bottom: 10px;
}

.pb-15 {
  padding-bottom: 15px;
}

.pb-20 {
  padding-bottom: 20px;
}

.pb-25 {
  padding-bottom: 25px;
}

.pb-30 {
  padding-bottom: 30px;
}

.pb-32 {
  padding-bottom: 32px;
}

.pb-35 {
  padding-bottom: 35px;
}

.pb-40 {
  padding-bottom: 40px;
}

.pb-45 {
  padding-bottom: 45px;
}

.pb-50 {
  padding-bottom: 50px;
}

.pb-55 {
  padding-bottom: 55px;
}

.pb-60 {
  padding-bottom: 60px;
}

.pb-64 {
  padding-bottom: 64px;
}

.pb-65 {
  padding-bottom: 65px;
}

.pb-70 {
  padding-bottom: 70px;
}

.pb-72 {
  padding-bottom: 72px;
}

.pb-75 {
  padding-bottom: 75px;
}

.pb-78 {
  padding-bottom: 78px;
}


.pb-80 {
  padding-bottom: 80px;
}

.pb-85 {
  padding-bottom: 85px;
}

.pb-90 {
  padding-bottom: 90px;
}

.pb-95 {
  padding-bottom: 95px;
}

.pb-100 {
  padding-bottom: 100px;
}

.pb-105 {
  padding-bottom: 105px;
}

.pb-110 {
  padding-bottom: 110px;
}

.pb-115 {
  padding-bottom: 115px;
}

.pb-120 {
  padding-bottom: 120px;
}

.pb-125 {
  padding-bottom: 125px;
}

.pb-130 {
  padding-bottom: 130px;
}

.pb-135 {
  padding-bottom: 135px;
}

.pb-136 {
  padding-bottom: 136px;
}

.pb-140 {
  padding-bottom: 140px;
}

.pb-145 {
  padding-bottom: 145px;
}

.pb-150 {
  padding-bottom: 150px;
}

.pb-155 {
  padding-bottom: 155px;
}

.pb-160 {
  padding-bottom: 160px;
}

.pb-165 {
  padding-bottom: 165px;
}

.pb-170 {
  padding-bottom: 170px;
}

.pb-175 {
  padding-bottom: 175px;
}

.pb-180 {
  padding-bottom: 180px;
}

.pb-185 {
  padding-bottom: 185px;
}

.pb-190 {
  padding-bottom: 190px;
}

.pb-195 {
  padding-bottom: 195px;
}

.pb-200 {
  padding-bottom: 200px;
}

.pl-5 {
  padding-left: 5px;
}

.pl-10 {
  padding-left: 10px;
}

.pl-15 {
  padding-left: 15px;
}

.pl-20 {
  padding-left: 20px;
}

.pl-25 {
  padding-left: 25px;
}

.pl-30 {
  padding-left: 30px;
}

.pl-35 {
  padding-left: 35px;
}

.pl-40 {
  padding-left: 40px;
}

.pl-45 {
  padding-left: 45px;
}

.pl-50 {
  padding-left: 50px;
}

.pl-55 {
  padding-left: 55px;
}

.pl-60 {
  padding-left: 60px;
}

.pl-65 {
  padding-left: 65px;
}

.pl-70 {
  padding-left: 70px;
}

.pl-75 {
  padding-left: 75px;
}

.pl-80 {
  padding-left: 80px;
}

.pl-85 {
  padding-left: 85px;
}

.pl-90 {
  padding-left: 90px;
}

.pl-95 {
  padding-left: 95px;
}

.pl-100 {
  padding-left: 100px;
}

.pl-105 {
  padding-left: 105px;
}

.pl-110 {
  padding-left: 110px;
}

.pl-115 {
  padding-left: 115px;
}

.pl-120 {
  padding-left: 120px;
}

.pl-125 {
  padding-left: 125px;
}

.pl-130 {
  padding-left: 130px;
}

.pl-135 {
  padding-left: 135px;
}

.pl-140 {
  padding-left: 140px;
}

.pl-145 {
  padding-left: 145px;
}

.pl-150 {
  padding-left: 150px;
}

.pl-155 {
  padding-left: 155px;
}

.pl-160 {
  padding-left: 160px;
}

.pl-165 {
  padding-left: 165px;
}

.pl-170 {
  padding-left: 170px;
}

.pl-175 {
  padding-left: 175px;
}

.pl-180 {
  padding-left: 180px;
}

.pl-185 {
  padding-left: 185px;
}

.pl-190 {
  padding-left: 190px;
}

.pl-195 {
  padding-left: 195px;
}

.pl-200 {
  padding-left: 200px;
}

.pr-5 {
  padding-right: 5px;
}

.pr-10 {
  padding-right: 10px;
}

.pr-15 {
  padding-right: 15px;
}

.pr-20 {
  padding-right: 20px;
}

.pr-25 {
  padding-right: 25px;
}

.pr-30 {
  padding-right: 30px;
}

.pr-35 {
  padding-right: 35px;
}

.pr-40 {
  padding-right: 40px;
}

.pr-45 {
  padding-right: 45px;
}

.pr-50 {
  padding-right: 50px;
}

.pr-55 {
  padding-right: 55px;
}

.pr-60 {
  padding-right: 60px;
}

.pr-65 {
  padding-right: 65px;
}

.pr-70 {
  padding-right: 70px;
}

.pr-75 {
  padding-right: 75px;
}

.pr-80 {
  padding-right: 80px;
}

.pr-85 {
  padding-right: 85px;
}

.pr-90 {
  padding-right: 90px;
}

.pr-95 {
  padding-right: 95px;
}

.pr-100 {
  padding-right: 100px;
}

.pr-105 {
  padding-right: 105px;
}

.pr-110 {
  padding-right: 110px;
}

.pr-115 {
  padding-right: 115px;
}

.pr-120 {
  padding-right: 120px;
}

.pr-125 {
  padding-right: 125px;
}

.pr-130 {
  padding-right: 130px;
}

.pr-135 {
  padding-right: 135px;
}

.pr-140 {
  padding-right: 140px;
}

.pr-145 {
  padding-right: 145px;
}

.pr-150 {
  padding-right: 150px;
}

.pr-155 {
  padding-right: 155px;
}

.pr-160 {
  padding-right: 160px;
}

.pr-165 {
  padding-right: 165px;
}

.pr-170 {
  padding-right: 170px;
}

.pr-175 {
  padding-right: 175px;
}

.pr-180 {
  padding-right: 180px;
}

.pr-185 {
  padding-right: 185px;
}

.pr-190 {
  padding-right: 190px;
}

.pr-195 {
  padding-right: 195px;
}

.pr-200 {
  padding-right: 200px;
}

@media (max-width: 767px) {
  .pt-120 {
    padding-top: 60px;
  }

  .pb-120 {
    padding-bottom: 60px;
  }

  .mt-120 {
    margin-top: 60px;
  }

  .mb-120 {
    margin-bottom: 60px;
  }

  .pt-100 {
    padding-top: 50px;
  }

  .pb-100 {
    padding-bottom: 50px;
  }

  .mt-100 {
    margin-top: 50px;
  }

  .mb-100 {
    margin-bottom: 50px;
  }

  .pt-60 {
    padding-top: 30px;
  }

  .pb-60 {
    padding-bottom: 30px;
  }

  .mt-60 {
    margin-top: 30px;
  }

  .mb-60 {
    margin-bottom: 30px;
  }
}

.bor {
  border: 1px solid var(--border);
}

.bor-top {
  border-top: 1px solid var(--border);
}

.bor-left {
  border-left: 1px solid var(--border);
}

.bor-bottom {
  border-bottom: 1px solid var(--border);
}

.bor-right {
  border-right: 1px solid var(--border);
}

.border-none {
  border: none !important;
}

.text-justify {
  text-align: justify;
}

.image img {
  width: 100%;
}

.primary-color {
  color: var(--primary-color) !important;
}

.primary-hover:hover {
  color: var(--primary-color) !important;
}

.primary-bg {
  background-color: var(--primary-color) !important;
}

.gradient-bg {
  background: var(--gradient-bg) !important;
}

.secondary-color {
  color: var(--secondary-color);
}

.secondary-bg {
  background-color: var(--secondary-color);
}

.black-bg {
  background-color: var(--black);
}

.sub-bg {
  background-color: var(--sub-bg);
}

.transparent-bg {
  background-color: transparent !important;
}

.sm-font {
  font-size: 14px !important;
}

.md-font {
  font-size: 18px !important;
}

.lg-font {
  font-size: 20px !important;
}

.bg-image {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.transition {
  transition: var(--transition);
}

.fw-500 {
  font-weight: 500 !important;
}

.fw-600 {
  font-weight: 600 !important;
}

.fw-700 {
  font-weight: 700 !important;
}

.color-white {
  color: var(--white);
}

.color-black {
  color: var(--color-black);
}

.overflow-hidden {
  overflow: hidden !important;
}

.overlay,
.banner-video__wrp,
.brand-three-area,
.case__image,
.banner__inner-page,
.header__main .main-menu ul li .sub-menu.menu-image .image {
  position: relative;
}

.overlay::before,
.banner-video__wrp::before,
.brand-three-area::before,
.case__image::before,
.banner__inner-page::before,
.header__main .main-menu ul li .sub-menu.menu-image .image::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.nice-select {
  width: 100%;
  border-radius: 10px;
  height: 50px;
  line-height: 50px;
}

.nice-select:focus {
  border: 1px solid var(--primary-color);
}

.nice-select .list {
  width: 100%;
}

.star i {
  color: var(--primary-color);
}

.star i.disable {
  color: var(--span);
  opacity: 40%;
}

.pegi {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.pegi a {
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  border-radius: 50%;
  transition: var(--transition);
  background-color: var(--sub-bg);
  color: var(--heading-color);
  font-weight: 700;
  border-radius: 0;
}

.pegi a:hover {
  background-color: var(--primary-color);
  color: var(--white);
}

.pegi a:hover i {
  color: var(--white) !important;
}

.pegi a.active {
  background-color: var(--primary-color);
  color: var(--white);
}

.accordion .accordion-item {
  border: 0;
  border-radius: 0px;
  margin-bottom: 10px;
}

.accordion .accordion-item:last-child {
  margin-bottom: 0;
}

.accordion .accordion-item.dark-mode {
  background-color: var(--secondary-color);
}

.accordion .accordion-item h2 button {
  font-size: 15px;
  line-height: 28px;
  font-weight: 700;
  box-shadow: none;
  border-radius: 0 !important;
  padding: 20px 30px;
}

.accordion .accordion-item .accordion-body {
  padding: 0 0 12px 69px;
  padding-top: 0;
}

.accordion .accordion-item .accordion-body p {
  color: #242424;
  font-size: 16px;
  font-weight: 400;
  line-height: 150%;
  letter-spacing: 0;
}

.accordion .accordion-button {
  background-color: transparent;
  color: var(--primary-color);
}

.accordion .accordion-button::after {
  display: none;
}

.accordion .accordion-button::before {
  position: absolute;
  content: "\f068";
  font-family: "Font Awesome 6 Pro";
  font-weight: 700;
  top: 20px;
  right: 25px;
  font-size: 15px;
  width: 30px;
  height: 30px;
  line-height: 30px;
  border-radius: 0px;
  color: var(--white);
  background-color: var(--primary-color);
  text-align: center;
  transition: var(--transition);
}

.accordion .accordion-button.collapsed {
  background-color: transparent;
  color: var(--heading-color);
}

.accordion .accordion-button.collapsed::before {
  content: "+";
  background-color: var(--sub-bg);
  color: var(--primary-color);
}

.search-wrap {
  width: 100%;
  height: 100%;
  overflow: hidden;
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  background: rgba(60, 114, 252, 0.9);
}

.search-wrap .search-inner {
  position: relative;
  width: 100%;
  height: 100%;
}

.search-wrap .search-cell {
  position: absolute;
  top: 50%;
  width: 100%;
  transform: translateY(-50%);
}

.search-wrap .search-field-holder {
  width: 50%;
  margin: auto;
  position: relative;
  animation: slideInUp 0.3s;
}

@media only screen and (min-width: 768px) {
  .process__image {
    height: 100%;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .search-wrap .search-field-holder {
    width: 70%;
  }
}

@media (max-width: 575px) {
  .search-wrap .search-field-holder {
    width: 80%;
  }
}

.search-wrap .main-search-input {
  width: 100%;
  height: 70px;
  border: 0;
  padding: 0 50px;
  background: transparent;
  font-size: 25px;
  color: var(--white);
  border-bottom: 1px solid var(--white);
  text-align: center;
  letter-spacing: 2px;
}

@media (max-width: 575px) {
  .search-wrap .main-search-input {
    height: 50px;
    padding: 0 0;
    line-height: 50px;
    font-size: 18px;
  }
}

.search-wrap input.form-control,
.search-wrap input.form-control:focus {
  background-color: var(--white);
}

input.main-search-input::placeholder {
  color: var(--white);
  opacity: 1;
  font-size: 25px;
}

@media (max-width: 575px) {
  input.main-search-input::placeholder {
    font-size: 18px;
  }
}

.search-close {
  position: absolute;
  top: 50px;
  right: 50px;
  font-size: 30px;
  color: var(--white);
  cursor: pointer;
}

.scroll-up {
  cursor: pointer;
  display: block;
  border-radius: 50px;
  box-shadow: inset 0 0 0 2px var(--border);
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);
  position: fixed;
  left: 0;
  bottom: 0;
  margin-left: 32px;
  margin-bottom: 32px;
  height: 50px;
  width: 50px;
  transition: var(--transition);
}

.scroll-up::after {
  position: absolute;
  font-family: "Font Awesome 6 Free";
  content: "\f176";
  text-align: center;
  line-height: 50px;
  font-weight: 700;
  font-size: 18px;
  color: var(--primary-color);
  left: 0;
  top: 0;
  height: 50px;
  width: 50px;
  cursor: pointer;
  display: block;
  z-index: 1;
  transition: var(--transition);
}

.scroll-up svg path {
  fill: none;
}

.scroll-up svg.scroll-circle path {
  stroke: var(--primary-color);
  stroke-width: 4px;
  box-sizing: border-box;
  transition: var(--transition);
}

.scroll-up.active-scroll {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.btn-one {
  padding: 10px 16px;
  background: linear-gradient(266.95deg, #F17556 2.65%, #D61349 97.47%);
  font-weight: 600;
  color: var(--white);
  transition: var(--transition);
  text-transform: capitalize;
  position: relative;
  z-index: 1;
  overflow: hidden;
  border-radius: 8px;
  display: flex;
  width: fit-content;
  height: 44px;
  text-align: center;
  justify-content: center;
  gap: 8px;
  font-size: 16px;
  line-height: 150%;
  align-items: center;
  font-weight: 500;
  color: #ffffff;
  letter-spacing: 0;
  animation: fadeInRight 1s ease-out forwards;
}

.btn-explore {
  padding: 10px 20px;
  border: 1px solid #C32423;
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: center;
  background: linear-gradient(94.42deg, rgba(246, 67, 67, 0.64) 19.72%, rgba(255, 222, 222, 0) 123.19%);
  font-size: 20px;
  line-height: 130%;
  text-align: center;
  font-weight: 500;
  color: #ffffff;
  width: fit-content;
}

.btn-explore:hover {
  opacity: 80% !important;
  color: #FFFFFF !important;
}

.banner-download {
  display: flex;
  align-items: center;
  max-width: 125px;
  animation: fadeInRight 1s ease-out forwards;
}

.download-info a {
  font-weight: 500;
  font-size: 18px;
  line-height: 130%;
  color: #ffffff;
  position: relative;
}

.download-info a::after {
  content: "Portfolio";
  color: #C32423;
  /* màu chữ cuối */
  font-weight: inherit;
  text-decoration: underline;
  text-decoration-style: solid;
  position: absolute;
  display: block;
  margin-top: 1.3em;
  top: 0;
  left: 0;
}

.download-info a {
  background: linear-gradient(to bottom, #ffffff 0%, #ffffff calc(100% - 1.5em), transparent 0);
  -webkit-background-clip: text;
  color: transparent;
}

.download-info a:active {
  opacity: 0.6;
}

.banner__slider {
  height: 100%;
  width: 100%;
}

.banner__slider .swiper-wrapper {
  height: 100%;
}

.banner__slider .swiper-slide {
  height: 100%;
  display: flex;
  align-items: center;
}

.banner__slider .btn-one {
  display: inline-block;
}

.btn-one i {
  margin-left: 8px;
  transition: var(--transition);
}

.btn-one i ::before {
  width: 24px;
  height: 24px;
}

@media (max-width: 575px) {
  .btn-one i {
    margin-left: 3px;
    font-size: 12px;
  }
}

@media (max-width: 575px) {
  .btn-one {
    padding: 8px 18px;
    font-size: 14px;
  }
}

.btn-one::after {
  position: absolute;
  top: 0;
  right: 0;
  width: 50.5%;
  height: 0;
  content: "";
  background-color: var(--secondary-color);
  z-index: -1;
  transition: var(--transition);
}

.btn-one::before {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50%;
  height: 0;
  content: "";
  background-color: var(--secondary-color);
  z-index: -1;
  transition: var(--transition);
}

.btn-one:hover {
  color: var(--white);
}

.btn-one:hover::before {
  height: 100%;
}

.btn-one:hover::after {
  height: 100%;
}

.btn-one:hover i {
  transform: translate(5px);
}

.read-more-btn {
  text-transform: capitalize;
  font-weight: 600;
  color: var(--paragraph);
}

.read-more-btn i {
  margin-left: 5px;
  transition: var(--transition);
}

.read-more-btn:hover {
  color: var(--primary-color);
}

.read-more-btn:hover i {
  color: var(--primary-color);
  margin-left: 10px;
}

.arry-prev,
.arry-next {
  width: 44px;
  height: 44px;
  text-align: center;
  transition: var(--transition);
  border: 1px solid #CACBCC;
  display: flex;
  align-items: center;
  justify-content: center;
}

.arry-prev img {
  transform: rotate(180deg);
}

.arry-prev:hover,
.arry-next:hover {
  border: 1px solid #8D8D8F;
}

.active.arry-next {
  border: 1px solid #8D8D8F;
}

.arry-prev.active,
.active.arry-next {
  border: 1px solid #8D8D8F;
}

.dot .swiper-pagination-bullet,
.dot-light .swiper-pagination-bullet {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  transition: 0.6s;
  background-color: transparent;
  opacity: 1;
  position: relative;
  border: 1px solid transparent;
}

.dot .swiper-pagination-bullet::before,
.dot-light .swiper-pagination-bullet::before {
  position: absolute;
  content: "";
  top: 5px;
  left: 5px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--primary-color);
  transition: 0.6s;
}

.dot .swiper-pagination-bullet.swiper-pagination-bullet-active,
.dot-light .swiper-pagination-bullet.swiper-pagination-bullet-active {
  border: 1px solid var(--primary-color);
}

.dot .swiper-pagination-bullet.swiper-pagination-bullet-active::before,
.dot-light .swiper-pagination-bullet.swiper-pagination-bullet-active::before {
  background-color: var(--primary-color);
}

.dot-light .swiper-pagination-bullet {
  background-color: transparent;
  border: 1px solid transparent;
}

.dot-light .swiper-pagination-bullet::before {
  background-color: var(--white);
}

.dot-light .swiper-pagination-bullet.swiper-pagination-bullet-active {
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.dot-light .swiper-pagination-bullet.swiper-pagination-bullet-active::before {
  background-color: var(--primary-color);
}

.video-btn {
  position: relative;
  text-align: center;
  display: inline-block;
  z-index: 2;
}

.video-btn a {
  position: relative;
  color: var(--white);
  font-size: 20px;
  z-index: 1;
  background: var(--gradient-bg);
  width: 60px;
  height: 60px;
  line-height: 60px;
  border-radius: 50%;
  display: block;
}

.video-btn.video-pulse::after,
.video-btn.video-pulse::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  border: 10px solid var(--primary-color);
  opacity: 0.7;
  left: 0;
  top: 0;
  border-radius: 50%;
  -webkit-animation-duration: 2.5s;
  animation-duration: 2.5s;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
  -webkit-animation-name: video-animation;
  animation-name: video-animation;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}

.video-btn.video-pulse::before {
  -webkit-animation-delay: 1s;
  animation-delay: 1s;
}

.progress-area .progress {
  background-color: var(--border);
  height: 12px;
  border-radius: 0px;
}

.progress-area .progress.dark-mode {
  background-color: var(--secondary-color);
}

.progress-area .progress .progress-bar {
  background-color: var(--primary-color);
}

.progress__title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.progress__title span {
  color: var(--primary-color);
  font-size: 14px;
  font-weight: 600;
}

.logo {
  display: block;
  width: 196px;
}

.logo img {
  width: 100%;
}

.page-home .header-top {
  background-color: transparent;
}

.header-top {
  padding: 10px 0;
  overflow: hidden;
  position: relative;
  z-index: 9;
  background-color: var(--secondary-color);
}

.header-top .header-top-wrp {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header-top .header-top-wrp .info {
  color: var(--white);
}

.header-top .header-top-wrp .info span {
  color: var(--white);
}

.header-top .header-top-wrp .info a {
  transition: var(--transition);
  color: var(--white);
  font-size: 15px;
}

.header-top .header-top-wrp .info a:hover {
  color: var(--primary-color);
}

.header-top .header-top-wrp .info i {
  color: var(--primary-color);
  padding-right: 5px;
}

.header-top .header-top-wrp .info li {
  float: left;
  line-height: 0;
}

.header-top .header-top-wrp .link-info {
  position: relative;
  z-index: 2;
}

.header-top .header-top-wrp .link-info li {
  float: left;
  line-height: 0;
}

.header-top .header-top-wrp .link-info li a {
  width: 37px;
  color: var(--white);
  text-align: center;
}

.header-top .header-top-wrp .link-info li a:hover {
  color: var(--primary-color);
}

.header-area {
  position: fixed;
  z-index: 9;
  display: flex;
  justify-content: center;
  max-height: 80px;
  padding: 0 80px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  background: transparent;
  width: 100%;
}

.header-area .logo {
  width: 140px;
  height: 48px;
  margin: 16px 0;
}

@media (max-width: 1199px) {
  .header-area::after {
    width: 25%;
  }
}

@media (max-width: 991px) {
  .header-area::after {
    width: 30%;
  }
}

@media (max-width: 767px) {
  .header-area::after {
    width: 40%;
  }
}

@media (max-width: 575px) {
  .header-area::after {
    width: 50%;
  }
}

@media (max-width: 450px) {
  .header-area::after {
    width: 70%;
  }
}

.header-area.menu-fixed {
  position: fixed;
  width: 100%;
  top: 0;
  background-color: var(--white);
  z-index: 999;
  box-shadow: 5px 6px 20px 0px #0000000A; 
}

.header-area.menu-fixed .mega-menu {
  top: 105px !important;
}

.header__container {
  padding: 0;
  margin: 0;
  max-width: unset;
}

.header__main {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  max-height: 80px;
  justify-content: space-between;
}

.main-menu {
  display: flex;
  gap: 8px;
  max-height: 80px;
}

.nav-menu li {
  height: 80px;
}

.header__main .main-menu ul {
  display: flex;
  gap: 32px;
  justify-content: center;
}

@media (min-width:1700px) {
  .main-menu {
    max-width: unset;
  }

  .header__main .main-menu ul {
    gap: 72px;
  }
}

.title-content {
  border-left: 4px solid #C32423;
  background: linear-gradient(90deg, rgba(246, 67, 67, 0.16) 35.09%, rgba(255, 222, 222, 0) 124.07%);
  padding: 6px 12px;
  width: fit-content;
  color: #C32423;
  font-size: 16px;
  line-height: 130%;
  letter-spacing: 0;
  font-weight: 600;
  position: relative;
  z-index: 5;
  /* animation: fadeInUp 1.5s cubic-bezier(0.68, -0.55, 0.27, 1.55); */
}

/* .title-desc {
  animation: fadeInUp 1.5s cubic-bezier(0.68, -0.55, 0.27, 1.55);
} */

/* .animation-fadeInUp {
  animation: fadeInUp 1.5s cubic-bezier(0.68, -0.55, 0.27, 1.55) !important;
} */

.text-form {
  font-weight: 700;
  font-size: 24px;
  line-height: 140%;
  color: #ffffff;
}

.title-content p {
  font-weight: 500;
  font-size: 20px;
  line-height: 130%;
  text-align: center;
  color: #C32423 !important;
}

.header__main .main-menu ul li {
  position: relative;
  padding: 16px 0;
  max-height: 80px;
  text-align: unset;
  display: flex;
  align-items: center;
}

/* .header__main .main-menu ul li:hover {
  border-bottom: 1.5px solid #C32423;
  color: #C32423;
} */

.header__main .main-menu ul li a {
  font-weight: 500;
  font-size: 18px;
  line-height: 130%;
  color: #ffffff !important;
}

.d-none {
  min-height: 72px;
  max-width: 275px;
  gap: 20px;
  align-items: center;
  justify-content: center;
}

.search-link {
  height: 24px;
  display: flex;
  justify-content: center;
}

.header__main .main-menu ul li.has-megamenu {
  position: static;
}

.header__main .main-menu ul li.has-megamenu:hover .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0px);
}

.page-home .header__main .main-menu ul li a,
.page-home .header__main .main-menu ul li a span {
  color: var(--white);
}

.menu-fixed .header__main .main-menu ul li a,
.menu-fixed .header__main .main-menu ul li a span {
  color: var(--black) !important;
}

.menu-fixed .sticky-logo {
  display: block;
}

.menu-fixed .normal-logo,
.sticky-logo {
  display: none;
}

.page-home .header__main .main-menu .sub-menu li a span {
  color: var(--heading-color)
}

.header__main .main-menu ul li a i {
  font-size: 12px;
  transition: var(--transition);
}

.header__main .main-menu ul li .sub-menu {
  position: absolute;
  left: 0;
  top: 58px;
  z-index: 99;
  flex-direction: column;
  gap: 16px;
  width: 260px;
  background-color: var(--white);
  opacity: 0;
  visibility: hidden;
  transform: translateY(22px);
  padding: 24px;
  box-shadow: 0px 7px 32px 0px #0000000F;
}

.header__main .main-menu ul li .sub-menu.mega-menu {
  max-width: 1170px;
  width: 100%;
  left: 50%;
  top: 105px;
  transform: translateX(-50%) translateY(10px);
  padding: 30px;
}

.header__main .main-menu ul li .sub-menu.mega-menu li {
  display: flex;
  align-items: center;
  gap: 20px;
  justify-content: space-around;
}

.header__main .main-menu ul li .sub-menu.menu-image .image {
  position: relative;
}

.header__main .main-menu ul li .sub-menu.menu-image .image::before {
  background-color: rgba(0, 0, 0, 0.5);
}

.header__main .main-menu ul li .sub-menu.menu-image .image h6 {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 18px;
}

.header__main .main-menu ul li .sub-menu.menu-image .image .btn__group {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60%;
  display: flex;
  justify-content: center;
  flex-direction: column;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  margin-top: 20px;
}

.header__main .main-menu ul li .sub-menu.menu-image .image .btn__group .btn-one {
  color: var(--white) !important;
}

.header__main .main-menu ul li .sub-menu.menu-image .image:hover .btn__group {
  opacity: 1;
  visibility: visible;
  margin-top: 0;
}

.header__main .main-menu ul li .sub-menu li {
  width: fit-content;
  padding: 0;
  height: auto;
}

.header__main .main-menu ul li .sub-menu li a {
  display: block;
  color: #454545 !important;
  line-height: 130%;
  font-weight: 400;
  letter-spacing: 0;
  text-align: unset;
}

.header__main .main-menu ul li .sub-menu li a:hover {
  color: #C32323 !important;
  transition: none;
  padding-left: unset;
  padding-bottom: 8px;
}

.header__main .main-menu ul li:hover .sub-menu {
  opacity: 1;
  visibility: visible;
}

.header__main .main-menu ul li:hover .sub-menu li .sub-menu {
  display: none;
}

.header__main .main-menu ul li:hover .sub-menu li:hover .sub-menu {
  transform: translateX(249px);
  display: block;
  top: 0;
}

.header__main .main-menu ul li:hover:hover a {
  color: var(--primary-color);
}

.header__main .main-menu ul li:hover:hover i {
  transform: rotate(-180deg);
  color: var(--primary-color);
}

/* @media (max-width: 991px) {
  .header__main {
    padding: 15px 0;
  }
} */

.page-home .header__main .bars i {
  color: var(--white);
}

.page-home .menu-fixed .header__main .bars i {
  color: var(--black);
}

.header__main .bars i {
  font-size: 18px;
  cursor: pointer;
  display: inline-block;
  color: var(--paragraph);
  padding: 10px;
  border-radius: 10px;
  border: var(--border-1px);
}

.header-two-area {
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 999;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.header-two-area:after {
  display: none;
}

.header-two-area.menu-fixed {
  background: linear-gradient(90deg, #7F7F7F -76.72%, #C32423 191.51%);
  border-bottom: none;
}

.header-two-area .header__main .main-menu ul li a {
  color: var(--white);
}

.header-two-area .header__main .bars i {
  color: var(--white);
}

.header-three-area {
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 999;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.header-three-area:after {
  display: none;
}

.header-three-area.menu-fixed {
  background: linear-gradient(90deg, #7F7F7F -76.72%, #C32423 191.51%);
  border-bottom: none;
}

.header-three-area .header__main .main-menu ul li a {
  color: var(--white);
  position: relative;
}

.header-three-area .header__main .main-menu ul li a::after {
  position: absolute;
  content: "";
  background: linear-gradient(0.49deg, #C32423 -126.52%, rgba(60, 114, 252, 0) 92.35%);
  width: 85px;
  height: 100%;
  bottom: 0;
  left: -20px;
  opacity: 0;
  visibility: hidden;
}

.header-three-area .header__main .main-menu ul li a.search-trigger::after {
  display: none;
}

.header-three-area .header__main .main-menu ul li:hover a {
  color: var(--white);
}

.header-three-area .header__main .main-menu ul li:hover a::after {
  opacity: 1;
  visibility: visible;
}

.header-three-area .header__main .main-menu .sub-menu {
  left: -20px;
}

.header-three-area .header__main .main-menu .sub-menu a::after {
  display: none;
}

.header-three-area .header__main .bars i {
  color: var(--white);
}

.mean-nav .mega-menu .image {
  padding: 20px;
  border: var(--border-1px);
  border-radius: 8px;
  margin-bottom: 20px;
  position: relative;
}

.mean-nav .mega-menu .image h6 {
  margin-top: 20px;
}

.mean-nav .btn__group {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.mean-nav .btn__group a {
  text-align: center !important;
  width: 100% !important;
}

.sidebar-area {
  position: fixed;
  top: 0;
  right: 0px;
  width: 400px;
  height: 100%;
  background-color: var(--heading-color);
  padding: 40px;
  padding-top: 30px;
  z-index: 9999;
  transition: var(--transition);
  overflow: hidden;
  overflow-y: auto;
}

@media (max-width: 575px) {
  .sidebar-area {
    width: 350px;
  }
}

.sidebar-area p {
  color: var(--white);
}

.sidebar-area .info {
  border-top: 1px solid rgba(255, 255, 255, 0.25);
}

.sidebar-area .info li {
  font-size: 15px;
}

.sidebar-area .info li i {
  margin-right: 8px;
}

.sidebar-area .info li a {
  color: var(--white);
}

.sidebar-area .sidebar__overlay {
  position: fixed;
  right: 0;
  top: 0;
  background-color: rgba(0, 0, 0, 0.5);
  width: 100%;
  height: 100%;
  z-index: -1;
}

.sidebar-area button {
  position: absolute;
  right: 30px;
  top: 30px;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  font-size: 20px;
  background-color: var(--primary-color);
  border-radius: 50%;
  transition: var(--transition);
}

.sidebar-area button:hover {
  transform: rotate(90deg);
}

.sidebar-area .social-icon a {
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  border-radius: 50%;
  transition: var(--transition);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: var(--primary-color);
  margin-right: 10px;
}

.sidebar-area .social-icon a:hover {
  background-color: var(--primary-color);
  color: var(--heading-color);
  border: 1px solid var(--primary-color);
}

.sidebar-area.sidebar__hide {
  visibility: hidden;
  opacity: 0;
  right: -30px;
}

.sidebar-area .sidebar__search {
  position: relative;
}

.sidebar-area .sidebar__search input {
  width: 100%;
  padding: 8px 20px;
  padding-right: 40px;
}

.sidebar-area .sidebar__search i {
  position: absolute;
  top: 16px;
  right: 16px;
  cursor: pointer;
  color: var(--heading-color);
}

.mobile-menu .meanmenu-reveal {
  display: none !important;
}

.mobile-menu.mean-container .mean-nav>ul {
  width: 100%;
  display: block !important;
}

.mobile-menu ul li a i {
  display: none;
}



.banner-area,
.banner-two-area {
  overflow: hidden;
  position: relative;
  min-height: 100vh;
  height: 100vh;
  display: flex;
  align-items: center;
  transition: height 0.3s ease-out;
}

.banner-area>.container,
.banner-two-area>.container {
  width: 100%;
  height: 100%;
}

.banner-area .swiper,
.banner-two-area .swiper {
  height: 100%;
  width: 100%;
}

.banner__dot-wrp {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translate(-50%);
  z-index: 2;
}

.banner__shape-left1 {
  position: absolute;
  top: 30px;
  left: 0;
}

@media (max-width: 575px) {
  .banner__shape-left1 {
    display: none;
  }
}

.banner__shape-left3 {
  position: absolute;
  bottom: 0px;
  left: 0;
}

.banner__shape-right1 {
  position: absolute;
  bottom: 0px;
  right: 0;
}

@media (max-width: 767px) {
  .banner__shape-right1 {
    display: none;
  }
}

.banner__shape-right2 {
  position: absolute;
  bottom: 0px;
  right: 0;
}

@media (max-width: 767px) {
  .banner__shape-right2 {
    display: none;
  }
}

.banner__line {
  position: absolute;
  bottom: 25%;
  left: 33%;
  z-index: 2;
}

.banner__content,
.banner-two__content,
.banner-three__content {
  max-width: 100%;
  padding: 0 80px;
  margin: 231px 0 100px 0;
  position: relative;
}

.page-industry .banner-two__content {
  max-width: 770px;
  margin-left: 0;
}

.banner__content h4,
.banner-two__content h4,
.banner-three__content h4 {
  text-transform: uppercase;
  font-size: 18px;
  line-height: 32px;
  font-weight: 600;
  letter-spacing: 1px;
}

.banner__content h4 svg,
.banner-two__content h4 svg,
.banner-three__content h4 svg {
  margin-top: -4px;
}

.banner__content h1,
.banner-two__content h1,
.banner-three__content h1 {
  font-size: 52px;
  line-height: 60px;
  font-weight: 700;
}

.banner__content p,
.banner-two__content p,
.banner-three__content p {
  color: #ffffff;
}

.banner__content p {
  max-width: 655px;
}

.banner__slider .slide-bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  min-height: 100%;
  opacity: 1;
  z-index: -2;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  transform: scale(1.2);
  -webkit-transition: transform 0.3s ease-out;
  -moz-transition: transform 0.3s ease-out;
  -ms-transition: transform 0.3s ease-out;
  -o-transition: transform 0.3s ease-out;
  transition: transform 0.3s ease-out;
  will-change: transform;
}

/* Disabled - using scroll effect instead
.banner__slider .swiper-slide-active .slide-bg {
  -webkit-transform: scale(1.3);
  -moz-transform: scale(1.3);
  transform: scale(1.3);
}
*/

.banner-two__shape1 {
  position: absolute;
  right: 0;
  top: 100px;
}

@media (max-width: 575px) {
  .banner-two__shape1 {
    display: none;
  }
}

.banner-two__circle-solid {
  position: absolute;
  bottom: -80px;
  left: -100px;
}

@media (max-width: 575px) {
  .banner-two__circle-solid {
    display: none;
  }
}

.banner-two__circle-regular {
  position: absolute;
  bottom: -80px;
  left: -100px;
}

@media (max-width: 575px) {
  .banner-two__circle-regular {
    display: none;
  }
}

.banner-two__line {
  position: absolute;
  left: 17%;
  top: 25%;
  z-index: 2;
}

@media (max-width: 575px) {
  .banner-two__line {
    display: none;
  }
}

.banner-two__dot-wrp {
  bottom: 120px;
}

.banner-two__content,
.banner-three__content {
  max-width: 1005px;
  margin: 0 auto;
  padding: 250px 0;
}

.page-products .banner-two__content,
.page-services .banner-two__content {
  margin-right: auto;
  margin-left: 0;
  max-width: 786px;
}

@media (max-width: 991px) {

  .banner-two__content,
  .banner-three__content {
    padding: 150px 0;
  }

  .banner-area,
  .banner-two-area {
    min-height: 80vh;
    height: 80vh;
  }

  .banner__slider .slide-bg {
    height: calc(80vh + 154px);
    min-height: calc(80vh + 154px);
  }
}

.banner-two__content h1,
.banner-three__content h1 {
  font-size: 52px;
  line-height: 100px;
}

@media (max-width: 991px) {

  .banner-two__content h1,
  .banner-three__content h1 {
    font-size: 60px;
    line-height: 70px;
  }
}

@media (max-width: 575px) {

  .banner-two__content h1,
  .banner-three__content h1 {
    font-size: 30px;
    line-height: 40px;
  }

  .banner-area,
  .banner-two-area {
    min-height: 70vh;
    height: 70vh;
  }

  .banner__slider .slide-bg {
    height: calc(70vh + 154px);
    min-height: calc(70vh + 154px);
  }
}

.banner-two__content h4,
.banner-three__content h4 {
  background-color: rgba(255, 255, 255, 0.1);
  display: inline-block;
  padding: 0px 15px;
}

@media (max-width: 575px) {

  .banner-two__content h4,
  .banner-three__content h4 {
    padding: 0px 10px;
    font-size: 14px;
    margin-bottom: 5px;
  }
}

@media (max-width: 575px) {

  .banner-two__content p,
  .banner-three__content p {
    font-size: 14px;
    margin-top: 10px;
  }
}

@media (max-width: 575px) {

  .banner-two__content .btn-one,
  .banner-three__content .btn-one {
    margin-top: 30px;
  }
}

.banner-three-area {
  overflow: hidden;
  position: relative;
  z-index: 1;
  background: linear-gradient(90deg, #7F7F7F -76.72%, #C32423 191.51%);
  padding-top: 250px;
  padding-bottom: 200px;
}

@media (max-width: 767px) {
  .banner-three-area {
    padding: 80px 0;
  }
}

.banner-three__bg {
  position: absolute;
  left: 20px;
  bottom: 80px;
  z-index: -1;
}

.banner-three__shape-left {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: -1;
}

@media (max-width: 575px) {
  .banner-three__shape-left {
    display: none;
  }
}

.banner-three__shape-right {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: -1;
  height: 90%;
}

.banner-three__shape-right img {
  height: 100%;
}

@media (max-width: 575px) {
  .banner-three__shape-right {
    display: none;
  }
}

.banner-three__content {
  max-width: 100%;
}

@media (max-width: 991px) {
  .banner-three__content {
    margin-top: 100px;
  }
}

@media (max-width: 575px) {
  .banner-three__content {
    margin-top: 50px;
  }
}

@media (max-width: 575px) {
  .banner-three__content h4 {
    font-size: 12px;
  }
}

.banner-three__container {
  max-width: 1350px;
  padding: 30px;
  margin: 0 auto;
}

.banner-three__video-btn a {
  width: 44px;
  height: 44px;
  line-height: 44px;
  text-align: center;
  border-radius: 50%;
  transition: var(--transition);
  background: var(--white);
  color: var(--primary-color);
  font-size: 18px;
}

.banner-three__info {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.banner__inner-page {
  overflow: hidden;
  z-index: 1;
  text-transform: capitalize;
}

.banner__inner-page .shape1 {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: -1;
}

.banner__inner-page .shape2 {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: -1;
}

.banner__inner-page .shape3 {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: -1;
}

.banner__inner-page::before {
  background: linear-gradient(270.07deg, #002b98 0.07%, #00060c 99.95%);
  z-index: -1;
  opacity: 0.75;
}

@media (max-width: 767px) {
  .banner__inner-page {
    padding: 80px 0;
  }
}

.banner__inner-page h2 {
  margin-bottom: 10px;
  color: var(--white);
}

.banner__inner-page span {
  color: var(--white);
  font-weight: 500;
}

.banner__inner-page span i {
  color: var(--white);
}

.banner__inner-page a {
  color: var(--white);
  font-weight: 500;
}

.banner__inner-page a:hover {
  color: var(--primary-color);
}

.section-header h5 {
  color: var(--primary-color);
  padding-bottom: 10px;
  text-transform: uppercase;
  font-weight: 500;
}

.section-header h5 svg,
.section-header h5 img {
  margin-top: -5px;
}

@media (max-width: 767px) {
  .section-header h5 {
    padding-bottom: 5px;
  }
}

.section-header h2 {
  /* text-transform: capitalize; */
  color: var(--black);
}

.research .section-header h2 {
  color: var(--white);
}

.service-area {
  position: relative;
  overflow: hidden;
}

.service__shape {
  position: absolute;
  right: -100px;
  top: 80px;
  z-index: -1;
}

.service__item a {
  font-size: 17px;
  line-height: 1.3em;
  color: var(--black);
}

.page-about .service__item {
  height: auto !important;
  border-radius: 4px;
}

.service__item {
  position: relative;
  z-index: 1;
  padding: 24px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.service__bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  z-index: 0;
  inset: 0;
}

.service__item .service__icon img {
  z-index: 2;
  width: 40px;
  height: 40px;
  border: 1px solid #FFFFFF;
  backdrop-filter: blur(2px);
  background: #FFFFFF1A;
  padding: 8px;
  border-radius: 8px;
  position: relative;
  margin-top: 72px;
}

.service__item .service-shape {
  position: absolute;
  top: 22px;
  right: 0;
  opacity: 0.3;
  transition: var(--transition);
}

.service__item h4 a {
  margin-top: 18px;
  position: relative;
  z-index: 2;
  font-weight: 700;
  font-size: 16px;
  line-height: 150%;
  color: #ffffff;
  letter-spacing: 0;
}

.service__item p {
  transition: var(--transition);
}

/* .service__item::after {
  position: absolute;
  content: "";
  top: 0;
  right: 0;
  width: 0;
  height: 100%;
  background: var(--gradient-bg);
  transition: var(--transition);
  z-index: -1;
} */

.service__item.active .service-shape {
  opacity: 0.5;
}

/* .service__item.active h4 a {
  color: var(--white);
} */

.service__item.active p {
  color: var(--white);
  opacity: 90%;
}

/* .service__item.active::after {
  width: 100%;
  right: unset;
  left: 0;
  border-radius: 8px;
} */

.service-two-area,
.project-three-area {
  overflow: hidden;
  position: relative;
}

.service-two__shape-left {
  position: absolute;
  left: 0;
  top: 0;
}

.service-two__shape-right {
  position: absolute;
  right: 0;
  bottom: 0;
}

.service-two__content {
  position: relative;
  padding: 30px;
  padding-top: 0;
}

.service-two__content .icon {
  width: 70px;
  height: 70px;
  line-height: 70px;
  text-align: center;
  border-radius: 50%;
  transition: var(--transition);
  border-radius: 0;
  background: var(--gradient-bg);
  margin-bottom: 30px;
  margin-top: -35px;
  transition: 1s;
}

.service-two__content .shape {
  position: absolute;
  top: 35px;
  right: 0;
  opacity: 0.3;
  transition: var(--transition);
}

.service-two__content p {
  margin-top: 10px;
  margin-bottom: 20px;
}

.service-two__item {
  box-shadow: var(--shadow);
  background-color: var(--main-bg);
  border-top-left-radius: 50px;
  border-bottom-right-radius: 50px;
  overflow: hidden;
}

.service-two__item:hover .icon {
  transform: rotateX(-360deg);
}

.service-two__item:hover .shape {
  opacity: 0.5;
}

.service-two__item:hover .read-more-btn {
  color: var(--primary-color);
}

.service-two__item:hover .read-more-btn i {
  color: var(--primary-color);
  margin-left: 10px;
}

.service-two__slider .swiper-slide-active .icon {
  transform: rotateX(-360deg);
}

.service-two__slider .swiper-slide-active .shape {
  opacity: 0.5;
}

.service-two__slider .swiper-slide-active .read-more-btn {
  color: var(--primary-color);
}

.service-two__slider .swiper-slide-active .read-more-btn i {
  color: var(--primary-color);
  margin-left: 10px;
}

.service-three-area {
  overflow: hidden;
  position: relative;
}

.service-three__shape {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}

.service-three__image img {
  border-radius: 8px;
}

.service-three__content {
  background-color: var(--white);
  padding: 20px 30px;
  display: flex;
  align-items: center;
  width: 85%;
  border-radius: 8px;
  box-shadow: var(--shadow);
  position: absolute;
  bottom: -40px;
  left: 50%;
  transform: translateX(-50%);
  transition: var(--transition);
  opacity: 1;
}

@media (max-width: 1399px) {
  .service-three__content {
    width: 95%;
  }
}

.service-three__content .icon {
  padding-right: 15px;
  margin-right: 15px;
  border-right: var(--border-1px);
}

.service-three__up-content {
  padding: 40px 30px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  transition: var(--transition);
  opacity: 0;
}

.service-three__up-content .icon {
  width: 70px;
  height: 70px;
  line-height: 70px;
  text-align: center;
  border-radius: 50%;
  transition: var(--transition);
  border-radius: 0px;
  background: linear-gradient(180deg, #C32423 -93.57%, #00060c 228.57%);
  margin: 0 auto;
}

.service-three__item {
  position: relative;
  border-radius: 8px;
  z-index: 1;
}

.service-three__item::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 0%;
  background: linear-gradient(180deg, #C32423 -21.56%, #00060c 252.19%);
  border-radius: 8px;
  transition: var(--transition);
}

.service-three__item:hover .service-three__content {
  opacity: 0;
  bottom: 0;
}

.service-three__item:hover .service-three__up-content {
  opacity: 1;
}

.service-three__item:hover::before {
  height: 100%;
  bottom: 0;
  top: unset;
}

@media (max-width: 1199px) {
  .service-three__item {
    margin-bottom: 40px;
  }
}

.service-single-area {
  overflow: hidden;
}

.service-single__left-item .image {
  position: relative;
}

.service-single__left-item .title {
  font-size: 30px;
}

.service-single__left-item ul li {
  font-weight: 500;
  color: var(--heading-color);
}

.service-single__left-item ul li i {
  width: 20px;
  height: 20px;
  line-height: 20px;
  text-align: center;
  border-radius: 50%;
  transition: var(--transition);
  background: var(--gradient-bg);
  color: var(--white);
  font-size: 10px;
  margin-right: 10px;
}

.service-single__right-item .service-category li:hover {
  background-color: var(--primary-color) !important;
}

.service-single__right-item .service-category li:hover a {
  color: var(--white) !important;
}

.service-single__right-item .service-category li:hover i {
  color: var(--white) !important;
}

.service-single__right-item .service-category li.active {
  background-color: var(--primary-color) !important;
}

.service-single__right-item .service-category li.active a {
  color: var(--white) !important;
}

.service-single__right-item .service-category li.active i {
  color: var(--white) !important;
}

.about-area,
.about-two-area {
  overflow: hidden;
  position: relative;
  padding-bottom: 240px;
}

.about__shape {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 0;
}

.about__shape img {
  width: 100%;
  animation: sway_Y 5s linear infinite alternate;
}

.about__left-item,
.about-two__left-item {
  position: relative;
}

@media (max-width: 1199px) {

  .about__left-item,
  .about-two__left-item {
    max-width: 580px;
    margin: 0 auto;
  }
}

.about__left-item .big-image,
.about-two__left-item .big-image {
  /*  max-width: 386px;*/
  position: relative;
  z-index: 1;
}

.about-two__left-item .big-image img {
  border-radius: 8px;
}

.about__left-item .sm-image,
.about-two__left-item .sm-image {
  max-width: 295px;
  position: absolute;
  right: 25px;
  bottom: 30px;
  z-index: 2;
}

.about__left-item .sm-image .video__btn-wrp,
.about-two__left-item .sm-image .video__btn-wrp {
  position: absolute;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.about__left-item .circle-shape,
.about-two__left-item .circle-shape {
  position: absolute;
  top: 30px;
  right: 80px;
}

.about__right-item {
  position: relative;
  display: flex;
  align-items: center;
  gap: 20px;
}

.about__right-item .icon {
  width: 80px;
  height: 80px;
  line-height: 80px;
  text-align: center;
  border-radius: 50%;
  transition: var(--transition);
  width: 100%;
  max-width: 80px;
  border-radius: 0;
  background-color: var(--primary10);
}

.about__info {
  position: relative;
  display: flex;
  align-items: center;
  gap: 40px;
}

@media (max-width: 575px) {
  .about__info {
    gap: 5px;
  }
}

.about-two-area {
  padding-bottom: 120px;
}

@media (max-width: 767px) {
  .about-two-area {
    padding-bottom: 60px;
  }
}

.about-two__shape {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}

.about-two__left-item .circle-shape {
  right: unset;
  left: -32%;
  top: 12%;
  animation: rotate 5s linear infinite;
}

.about-two__left-item .dots {
  position: absolute;
  right: 15%;
  top: 0;
}

.about-two__left-item .shape-halper {
  position: absolute;
  top: 28%;
  right: 26%;
}

.about-two__left-item .sm-image {
  bottom: 20px;
}

.about-two__right-item {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  max-width: 500px;
}

.about-two__right-item.justify-content-end {
  max-width: unset;
}

.about-two__right-item ul li {
  color: var(--heading-color);
  font-weight: 600;
}

.about-two__right-item ul li:not(:last-child) {
  margin-bottom: 20px;
}

.about-two__right-item.justify-content-end ul li i {
  margin-right: 0px;
  margin-left: 10px;
}

.about-two__right-item ul li i {
  width: 20px;
  height: 20px;
  line-height: 20px;
  text-align: center;
  border-radius: 50%;
  transition: var(--transition);
  background: var(--gradient-bg);
  color: var(--white);
  font-size: 10px;
  margin-right: 10px;
}

.about-three-area {
  z-index: 1;
}

.about-three__box-up {
  position: absolute;
  top: 15px;
  right: 0;
  z-index: -1;
}

.about-three__box-down {
  position: absolute;
  top: 60px;
  right: 0;
  z-index: -1;
}

.about-three__info {
  max-width: 430px;
}

.about-three__info .icon {
  width: 64px;
  height: 64px;
  line-height: 64px;
  text-align: center;
  border-radius: 50%;
  transition: var(--transition);
  border-radius: 0px;
  width: 100%;
  max-width: 64px;
}

.about-three__left-item {
  max-width: 450px;
}

.about-three__left-item .about-call-icon {
  width: 56px;
  height: 56px;
  line-height: 56px;
  text-align: center;
  border-radius: 50%;
  transition: var(--transition);
  border: 1px solid var(--primary-color);
}

.about-three__left-item .about-call-icon span {
  width: 48px;
  height: 48px;
  line-height: 50px;
  text-align: center;
  border-radius: 50%;
  transition: var(--transition);
  background: var(--gradient-bg);
}

.about-three__image {
  max-width: 634px;
  float: right;
  z-index: 1;
}

.about-three__image .faq__line {
  left: 20% !important;
  z-index: -1;
  top: 10px;
}

.about-three__image .about-three-dot {
  position: absolute;
  left: 8%;
  bottom: 15%;
  z-index: -1;
}

.about-three__image .about-three-count {
  box-shadow: var(--shadow);
  width: 208px;
  position: absolute;
  top: 23%;
  left: 10px;
  background-color: var(--white);
  border-radius: 8px;
}

.about-three__image .about-three-count h3 {
  font-size: 28px;
  line-height: 40px;
}

.about-three__image .about-three-count h3 span {
  color: var(--secondary-color);
}

.about-three__image .about-three-count .icon {
  width: 40px;
}

.counter-area {
  position: relative;
}

.counter__shape {
  position: absolute;
  right: 0;
  bottom: 0;
}

.counter__wrp,
.quote__wrp {
  overflow: hidden;
  padding: 80px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  position: relative;
  margin-top: -120px;
  z-index: 2;
}

@media (max-width: 767px) {

  .counter__wrp,
  .quote__wrp {
    justify-content: center;
  }
}

.counter__item {
  display: flex;
  align-items: center;
  gap: 20px;
  position: relative;
}

.counter__item h3 {
  font-size: 36px;
  color: var(--white);
  font-weight: 700;
  line-height: 50px;
}

.counter__item h3 span {
  color: var(--white);
}

.case-area {
  overflow: hidden;
}

.case__image {
  position: relative;
  width: 267px;
  height: 150px;
  overflow: hidden;
}

/* .case__image img {
  min-height: 375px;
} */

.page-products .case__image img,
.page-services .case__image img {
  height: 100%;
  object-fit: cover;
}

.page-products .case__image::before,
.page-services .case__image::before {
  background: unset;
}

.case__content {
  position: absolute;
  bottom: 15px;
  width: calc(100% - 62.50px);
  left: 30px;
}

.page-products .case__content,
.page-services .case__content {
  position: static;
}

.case__content p {
  max-width: 100%;
}

.case__btn {
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  position: absolute;
  right: 40px;
  bottom: 40px;
  z-index: 2;
}

.case__btn i {
  width: 44px;
  height: 44px;
  line-height: 44px;
  text-align: center;
  border-radius: 50%;
  transition: var(--transition);
  border-radius: 0;
  background: var(--gradient-bg);
  font-size: 20px;
  color: var(--secondary-color);
  color: var(--white);
  transition: var(--transition);
}

.case__btn::after {
  position: absolute;
  content: url(../../../../assets/images/shape/case-btn-shape.html);
  right: -20px;
  top: 0px;
  z-index: -1;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.case__btn::before {
  position: absolute;
  content: url(../../../../assets/images/shape/case-btn-shape.html);
  left: -20px;
  top: -28px;
  z-index: -1;
  transform: rotate(180deg);
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.case__btn:hover::before {
  left: -10px;
  top: -18px;
  opacity: 1;
  visibility: visible;
}

.case__btn:hover::after {
  right: -10px;
  top: -10px;
  opacity: 1;
  visibility: visible;
}

.case__btn:hover i {
  color: var(--primary-color);
  background: var(--white);
}

.case__item,
.project-three__item {
  position: relative;
}

.case__item {
  display: flex;
}

.case__item:hover .case__btn,
.project-three__item:hover .case__btn {
  opacity: 1;
  visibility: visible;
  transform: translate(0);
}

/* .why-us .row {
  grid-gap: 15px;
  padding: 0 15px;
} */
.field__item {
  padding: 20px;
  max-width: calc(100% - 15px);
}

.border-box .field__item {
  /* width: calc(33.333333333% - 10px); */
  border: 1px solid;
  border-radius: 8px;
  max-width: unset;
}

/*.case__slider {
  margin-left: 19%;
}*/
/*@media (max-width: 1600px) {
  .case__slider {
    margin-left: 12%;
  }
}
@media (max-width: 1399px) {
  .case__slider {
    margin-left: 10%;
  }
}*/
/* @media (max-width: 991px) {
  .case__slider {
    margin-left: 0%;
    padding: 0 12px;
  }
} */

.case__slider .swiper-slide.swiper-slide-active .case__item .case__btn,
.case__slider .swiper-slide.swiper-slide-active .project-three__item .case__btn {
  opacity: 1;
  visibility: visible;
  transform: translate(0);
}

.case-two-area {
  overflow: hidden;
  position: relative;
  z-index: 1;
  padding-bottom: 420px;
}

.case-two__bg {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
}

.case-two__bg img {
  width: 100%;
}

.case-two__container {
  max-width: 1600px;
  padding: 0 15px;
  margin: 0 auto;
}

.case-two__content {
  position: absolute;
  bottom: 30px;
  left: 30px;
  z-index: 1;
}

.case-two__content span {
  color: var(--primary-color);
  font-weight: 500;
  transition: var(--transition);
}

.case-two__btn {
  position: absolute;
  right: 30px;
  bottom: 30px;
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  border-radius: 50%;
  transition: var(--transition);
  border: 1px solid var(--white);
  font-size: 20px;
  color: var(--white);
  z-index: 1;
}

.case-two__btn:hover {
  color: var(--primary-color);
  background-color: var(--white);
}

.case-two__item {
  position: relative;
  z-index: 1;
}

.case-two__item::after {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 0;
  content: "";
  background: linear-gradient(0deg, #C32423 0%, rgba(0, 0, 0, 0) 100%);
  transition: var(--transition);
}

.case-two__item:hover::after {
  height: 100%;
}

.case-two__item:hover .case-two__content span {
  color: var(--white);
}

.case-three-area {
  overflow: hidden;
}

.case-single-area {
  overflow: hidden;
}

.case-single__title {
  font-size: 30px;
  line-height: 32px;
}

.case-single__item .case-date {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.case-single__item .case-date li {
  font-weight: 500;
  color: var(--heading-color);
}

.case-single__item .case-date li span {
  font-weight: 400;
  color: var(--primary-color);
}

.case-single__item .case-challenge-list {
  max-width: 780px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.case-single__item .case-challenge li {
  font-weight: 500;
  color: var(--heading-color);
}

.case-single__item .case-challenge li i {
  width: 20px;
  height: 20px;
  line-height: 20px;
  text-align: center;
  border-radius: 50%;
  transition: var(--transition);
  background: var(--gradient-bg);
  color: var(--white);
  font-size: 10px;
  margin-right: 10px;
}

.choose-area {
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.choose__shape-left {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: -1;
}

.choose__shape-right1 {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 0;
}

.choose__shape-right2 {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 0;
}

.choose__image {
  position: absolute;
  top: 0;
  right: 0;
  width: 47%;
  height: 100%;
  z-index: -1;
}

.choose__image img {
  height: 100%;
}

.choose__video-btn,
.banner-video__video-btn,
.service-single__video-btn {
  position: absolute;
  right: 20%;
  top: 45%;
  z-index: 2;
}

.choose__video-btn .video-btn a,
.banner-video__video-btn .video-btn a,
.service-single__video-btn .video-btn a {
  width: 90px;
  height: 90px;
  line-height: 90px;
  font-size: 25px;
}

@media (max-width: 991px) {

  .choose__video-btn,
  .banner-video__video-btn,
  .service-single__video-btn {
    right: 42%;
    top: 20%;
  }

  .industries-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 450px) {

  .choose__video-btn,
  .banner-video__video-btn,
  .service-single__video-btn {
    right: 34%;
    top: 15%;
  }
}

.offer-area {
  position: relative;
  overflow: visible;
  z-index: 1;
  background-color: #ffffff;
}

.offer__shadow {
  position: absolute;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
}

.offer__shape-left {
  position: absolute;
  bottom: 0;
  left: 0;
  opacity: 0.3;
}

.offer__shape-right {
  position: absolute;
  top: 0px;
  right: 0;
  opacity: 0.3;
}

.wrap-offet__icon {
  display: flex;
  flex-direction: column;
  grid-gap: 10px;
  min-height: 84px;
}

.offer__icon {
  object-fit: cover;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  padding: 4px;
  background: #F2F3F5;
}

.text-black {
  font-weight: 600;
  font-size: 18px;
  line-height: 150%;
  letter-spacing: 0;
  color: #242424;
}

.offer-content {
  display: flex;
  gap: 8px;
  align-items: center;
}

.offer__icon svg path {
  fill: var(--primary-color);
}

.offer__item h4 {
  font-size: 18px;
}

.wrap-offet__icon p {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  color: #454545;
  line-height: 150%;
  font-size: 15px;
  font-weight: 400;
}

.offer-content p {
  font-size: 18px;
  line-height: 150%;
  font-weight: 600;
  letter-spacing: 0;
  color: #242424;
}

.offer__item {
  cursor: pointer;
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 172px;
  background-color: #fff;
  width: 100%;
  gap: 12px;
  padding: 16px;
  border-top: 2px solid #C32423;
  box-shadow: 8px 8px 40px 0px #00000014;
}

.br__skill {
  width: 346.67px;
  border: 1px solid #E0DEDE;
}

.customer-container {
  overflow: hidden;
}

.wrap-icon-tech {
  display: flex;
  gap: 8px;
  justify-content: flex-start;
  flex-wrap: wrap;
}

.wrap-icon-tech img {
  width: 32px;
  height: 32px;
  object-fit: cover;
}

/* @media (max-width: 991px) {
  .offer__item {
    margin-top: 30px;
  }
} */
.offer__item .shape-top {
  position: absolute;
  top: 50%;
  right: 50%;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.offer__item .shape-bottom {
  position: absolute;
  bottom: 50%;
  left: 50%;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.offer__item:hover .shape-top {
  top: -1px;
  right: -1px;
  opacity: 1;
  visibility: visible;
}

.offer__item:hover .shape-bottom {
  position: absolute;
  bottom: -1px;
  left: -1px;
  opacity: 1;
  visibility: visible;
}

.offer__item:hover .offer__icon {
  /*  background: var(--gradient-bg);*/
  transform: rotateY(360deg);
}

.offer__item:hover .offer__icon svg path {
  fill: #fff;
}

.brand__wrp {
  padding: 0;
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 24px;
  overflow: visible;
}

.brand__shape {
  position: absolute;
  right: 0;
  bottom: 0;
  opacity: 0.3;
}

.brand__image img {
  max-width: 65px;
}

.brand-three-area {
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.brand-three-area::before {
  background-color: var(--heading-color);
  opacity: 0.9;
  z-index: -1;
}

.brand-three__shape1 {
  position: absolute;
  right: 0;
  bottom: 0;
}

.brand-area .integrio_module_services_5 .services_button {
  height: 60px;
  width: 60px;
  border: 0;
  border-radius: 0;
}

.brand-area .integrio_module_services_5 .services_wrapper {
  box-shadow: none;
}

.key-feature .integrio_module_services_5 {
  padding: 15px;
  border: 1px solid;
  border-radius: 8px;
}

@media (max-width: 767px) {
  .brand-three__shape1 {
    display: none;
  }

  .border-box .field__item {
    width: 100%;
  }

  .industries-container {
    grid-template-columns: repeat(1, 1fr);
  }
}

.brand-three__line1 {
  position: absolute;
  right: 0;
  bottom: 0;
}

.brand-three__shape2 {
  position: absolute;
  left: 0;
  bottom: 0;
}

@media (max-width: 767px) {
  .brand-three__shape2 {
    display: none;
  }
}

.brand-three__line2 {
  position: absolute;
  left: 0;
  bottom: 0;
}

@media (max-width: 767px) {
  .brand-three__line2 {
    display: none;
  }
}

.process-area {
  overflow: hidden;
  background: #FAFAFA;
  padding: 32px 0;
}

.process__image {
  max-width: 120px;
  padding: 10px;
  margin: 0 auto;
  position: relative;
  border-radius: 50%;
  display: flex;
  align-items: center;
  aspect-ratio: 1 / 1;
}

.process__image img {
  width: 100%;
}

.process__image::after {
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  border: 1px dashed var(--primary-color);
  content: "";
  border-radius: 50%;
  position: absolute;
  animation: rotate 20s linear infinite;
}

.process__image .process-number {
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  border-radius: 50%;
  transition: var(--transition);
  background: var(--gradient-bg);
  color: var(--white);
  font-size: 18px;
  position: absolute;
  top: 5px;
  left: 5px;
  z-index: 1;
}

.process__item {
  text-align: center;
  padding: 0 10px;
  position: relative;
}

@media (min-width: 992px) {
  .process__item {
    margin-bottom: 0px;
  }
}

.process__item .process-arry {
  position: absolute;
  top: 18%;
  right: -14%;
}

@media (max-width: 991px) {
  .process__item .process-arry {
    top: unset;
    right: unset;
    bottom: -110px;
    left: 40%;
  }

  .process__item .process-arry img {
    transform: rotate(90deg);
  }
}

.testimonial__item path {
  fill: var(--primary-color);
}

.testimonial__slider .swiper-slide {
  height: auto;
}

.testimonial__item {
  position: relative;
  padding: 40px;
  background: #FAFAFA;
  border: 0.9px solid #E0DEDE;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 32px;
  border-radius: 8px;
}

.testimonial__item .coma {
  position: absolute;
  top: 40px;
  right: 40px;
}

.testimonial-two-area {
  margin-top: -300px;
  position: relative;
  z-index: 1;
}

.testimonial-two__slider {
  padding: 20px 0;
}

.testimonial-two__item,
.testimonial-three__item {
  background-color: var(--white);
  box-shadow: var(--shadow);
  padding: 40px;
  position: relative;
}

.testimonial-two__item .coma,
.testimonial-three__item .coma {
  position: absolute;
  bottom: 40px;
  right: 40px;
}

.testimonial-two__item.dark-mode,
.dark-mode.testimonial-three__item {
  background-color: var(--sub-bg);
}

.testimonial-three-area {
  overflow: hidden;
}

.testimonial-three__wrp {
  margin-left: 19%;
  margin-right: -70px;
}

@media (max-width: 1399px) {
  .testimonial-three__wrp {
    margin-left: 30px;
    margin-right: 30px;
  }
}

.testimonial-three__image {
  position: relative;
}

.testimonial-three__image svg {
  position: absolute;
  left: 50%;
  bottom: -12px;
  transform: translate(-50%);
}

.testimonial-three__item {
  box-shadow: none;
}

.talk-us__item .wpcf7-form-control-wrap {
  width: 100%;
}

.wpcf7-response-output {
  border: none !important;
  color: #FFF;
}

.talk-us__item {
  background-color: rgba(255, 255, 255, 0.1);
  display: flex;
  flex-direction: column;
  padding: 16px;
  gap: 16px;
  width: 420px;
}

.wpcf7-form {
  display: flex;
  flex-direction: column;
  gap: 28px;
  max-width: 388px;
}

.wpcf7-spinner {
  display: none !important;
}

.text-form {
  margin-top: 10px !important;
}

.wpcf7-form p::not(:last-child) {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.wpcf7-form-control .wpcf7-text .wpcf7-validates-as-required {
  max-height: 36px;
}

.talk-us__item .section-header h5 {
  padding-bottom: 5px;
  font-size: 22px;
}

.talk-us__item .section-header h2 {
  font-size: 30px;
}

.talk-us__item form label {
  font-size: 14px;
  line-height: 140%;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.wpcf7-form label>span.wpcf7-form-control-wrap::before {
  content: attr(data-label-text);
}

.talk-us__item form input,
.talk-us__item form textarea {
  padding: 20px;
  color: #ffffff;
  font-weight: 400;
  line-height: 140%;
  font-size: 14px;
  letter-spacing: 0;
  width: 100%;
  max-height: 40px;
  border: 1px solid #FFFFFF3D;
  border-radius: 8px;
  background: #FFFFFF1A;
}

.talk-us__item form input:focus,
.talk-us__item form textarea:focus {
  border: 1px solid #ffffff;
}

.talk-us__item form textarea {
  max-height: 80px;
}

.talk-us__item form input[type="submit"] {
  width: fit-content;
  max-height: 36px;
  padding: 8px 32px;
  background: #C32423;
  color: #ffffff;
  font-weight: 400;
  font-size: 14px;
  line-height: 140%;
  letter-spacing: 0;
  border-radius: unset;
  border: none;
  margin: 0 auto;
}

/* .wpcf7-form .wpcf7-recaptcha {
  transform: scale(0.8);
  transform-origin: 0 0;
} */

/* .wpcf7-form .wpcf7-form-control-wrap.recaptcha {
  max-height: 70px;
} */

.talk-us__item form button {
  padding: 15px 20px;
  background-color: var(--secondary-color);
  color: var(--white);
  font-weight: 600;
  width: 100%;
  text-align: center;
  margin-top: 15px;
  transition: var(--transition);
}

.talk-us__item form button:hover {
  opacity: 0.9;
}

.blog__image {
  position: relative;
  overflow: hidden;
}

.blog__image img {
  transition: var(--transition);
}

.blog__image .blog-tag {
  position: absolute;
  top: 15px;
  left: 15px;
  background: var(--gradient-bg);
  padding: 10px 22px;
}

.blog__image .blog-tag h3 {
  line-height: 22px;
  font-weight: 700;
}

.blog__image .blog-tag span {
  font-size: 12px;
  line-height: 22px;
}

.blog__content {
  padding: 30px;
}

.blog__content .blog-info {
  display: flex;
  align-items: center;
  gap: 22px;
}

.blog__content .blog-info li {
  display: flex;
  align-items: center;
  gap: 8px;
}

.blog__content .blog-info li a {
  color: var(--paragraph);
  font-size: 14px;
  line-height: 22px;
}

.blog__content .blog-info li a:hover {
  color: var(--primary-color);
}

.blog__item,
.blog-two__grid-item,
.blog-two__list-item {
  box-shadow: var(--shadow);
}

.blog__item .read-more-btn,
.blog-two__grid-item .read-more-btn,
.blog-two__list-item .read-more-btn {
  color: var(--paragraph);
}

.blog__item:hover .read-more-btn,
.blog-two__grid-item:hover .read-more-btn,
.blog-two__list-item:hover .read-more-btn {
  color: var(--primary-color);
}

.blog__item:hover .read-more-btn i,
.blog-two__grid-item:hover .read-more-btn i,
.blog-two__list-item:hover .read-more-btn i {
  color: var(--primary-color);
  margin-left: 10px;
}

.blog__item:hover .blog__image img,
.blog-two__grid-item:hover .blog__image img,
.blog-two__list-item:hover .blog__image img {
  transform: scale(1.1) rotate(3deg);
  filter: brightness(70%);
}

.blog-two-area {
  overflow: hidden;
}

.blog-two__grid-item,
.blog-two__list-item {
  border: 1px solid var(--border);
  padding: 20px;
}

.blog-two__grid-item .blog__content,
.blog-two__list-item .blog__content {
  padding-left: 10px;
  padding-right: 10px;
  padding-bottom: 10px;
}

.blog-two__list-item {
  display: flex;
  align-items: center;
  gap: 20px;
}

@media (max-width: 575px) {
  .blog-two__list-item {
    flex-direction: column;
  }
}

.blog-two__list-item .blog__content {
  padding: 10px;
  flex-basis: 50%;
}

@media (max-width: 575px) {
  .blog-two__list-item .blog__content {
    flex-basis: 100%;
  }
}

.blog-single__title {
  font-size: 30px;
}

.blog-single__left-item:hover .image img {
  transform: scale(1) rotate(0deg);
}

.blog-single__left-item .fs-30 {
  font-size: 30px;
}

.blog-single__left-item .hilight-text {
  border-left: 4px solid var(--primary-color);
  padding: 40px;
}

.blog-single__left-item .hilight-text p {
  max-width: 650px;
  color: var(--heading-color);
  font-weight: 500;
  text-transform: capitalize;
  font-style: italic;
  line-height: 26px;
}

.blog-single__left-item .hilight-text svg {
  float: right;
  margin-top: -30px;
}

.blog-single__left-item .tags-share {
  padding: 20px 0;
  border-top: var(--border-1px);
  border-bottom: var(--border-1px);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.blog-single__left-item .tags-share .tags {
  display: flex;
  align-items: center;
  gap: 10px;
}

.blog-single__left-item .tags-share .tags strong {
  color: var(--heading-color);
}

.blog-single__left-item .tags-share .tags a {
  padding: 2px 15px;
  font-size: 14px;
  font-weight: 600;
  border: var(--border-1px);
  text-transform: capitalize;
}

.blog-single__left-item .tags-share .tags a:hover {
  background-color: var(--primary-color);
  color: var(--white);
  border: 1px solid var(--primary-color);
}

.blog-single__left-item .tags-share .share {
  display: flex;
  align-items: center;
}

.blog-single__left-item .tags-share .share strong {
  color: var(--heading-color);
}

.blog-single__left-item .tags-share .share a {
  font-size: 20px;
  color: var(--paragraph);
  margin-left: 20px;
}

.blog-single__left-item .tags-share .share a:hover {
  color: var(--primary-color);
}

.blog-single__left-item .tags-share .share a.active {
  color: var(--primary-color);
}

.blog-single__right-item .item,
.service-single__right-item .item {
  padding: 30px;
}

.blog-single__right-item .item .title,
.service-single__right-item .item .title {
  position: relative;
  margin-bottom: 35px;
  font-weight: 700;
}

.blog-single__right-item .item .title::after,
.service-single__right-item .item .title::after {
  position: absolute;
  content: "";
  left: 0;
  bottom: -10px;
  height: 2px;
  width: 40px;
  background-color: var(--primary-color);
}

.blog-single__right-item .item .serach-bar,
.service-single__right-item .item .serach-bar {
  position: relative;
}

.blog-single__right-item .item .serach-bar input,
.service-single__right-item .item .serach-bar input {
  width: 100%;
  border: var(--border-1px);
  padding: 16px;
}

.blog-single__right-item .item .serach-bar input:focus,
.service-single__right-item .item .serach-bar input:focus {
  border: 1px solid rgba(13, 110, 253, 0.5);
}

.blog-single__right-item .item .serach-bar button,
.service-single__right-item .item .serach-bar button {
  position: absolute;
  right: 15px;
  top: 18px;
  color: var(--span);
  background-color: var(--white);
}

.blog-single__right-item .item .category li,
.service-single__right-item .item .category li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px;
  background-color: var(--white);
  transition: var(--transition);
}

.blog-single__right-item .item .category li span,
.service-single__right-item .item .category li span {
  transition: var(--transition);
}

.blog-single__right-item .item .category li:hover a,
.service-single__right-item .item .category li:hover a {
  color: var(--primary-color);
}

.blog-single__right-item .item .category li:hover span,
.service-single__right-item .item .category li:hover span {
  color: var(--primary-color);
}

.blog-single__right-item .item .category li:not(:last-child),
.service-single__right-item .item .category li:not(:last-child) {
  margin-bottom: 10px;
}

.blog-single__right-item .item .single-post li,
.service-single__right-item .item .single-post li {
  display: flex;
  align-items: center;
  gap: 10px;
}

.blog-single__right-item .item .single-post li:not(:last-child),
.service-single__right-item .item .single-post li:not(:last-child) {
  margin-bottom: 15px;
}

.blog-single__right-item .item .single-post li span,
.service-single__right-item .item .single-post li span {
  font-size: 14px;
}

.blog-single__right-item .item .tags,
.service-single__right-item .item .tags {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.blog-single__right-item .item .tags a,
.service-single__right-item .item .tags a {
  padding: 5px 14px;
  font-weight: 500;
  border: var(--border-1px);
  text-transform: capitalize;
  background-color: var(--white);
  font-size: 14px;
}

.blog-single__right-item .item .tags a:hover,
.service-single__right-item .item .tags a:hover {
  background-color: var(--primary-color);
  color: var(--white);
  border: 1px solid var(--primary-color);
}

.blog-single__review .image {
  max-width: 96px;
  width: 100%;
}

.blog-single__review .reply {
  border-radius: 30px;
  padding: 0px 12px;
  font-weight: 500;
}

.team-area {
  overflow: hidden;
}

.team-area .col-lg-12 .team-wrapper {
  max-width: 597px;
  margin: 0 auto;
}

.team__share {
  position: absolute;
  bottom: 30px;
  right: 30px;
}

@media (max-width: 991px) {
  .team__share {
    right: 20px;
  }
}

.team__share button {
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  border-radius: 50%;
  transition: var(--transition);
  background: var(--gradient-bg);
  color: var(--white);
  font-size: 18px;
}

.team__share ul {
  width: 40px;
  background: var(--gradient-bg);
  text-align: center;
  padding-top: 20px;
  padding-bottom: 12px;
  border-radius: 40px;
  margin-bottom: 15px;
  display: none;
  transition: var(--transition);
}

.team__share ul li:not(:last-child) {
  margin-bottom: 5px;
}

.team__share ul li a {
  color: var(--white);
}

.team__share:hover ul {
  display: block;
}

.team__content {
  position: absolute;
  max-width: 270px;
  padding: 20px 30px;
  background: var(--gradient-bg);
  bottom: 0;
  left: 0;
  width: 100%;
}

.team__item {
  position: relative;
}

.team__item::before {
  transition: var(--transition);
  position: absolute;
  content: "";
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0%;
  background: linear-gradient(359.9deg, #00060c 0.09%, rgba(22, 36, 62, 0) 99.91%);
}

.team__item:hover::before {
  height: 100%;
  top: 0;
}

.team-single__image {
  overflow: hidden;
  position: relative;
}

.team-single__image img {
  width: 100%;
}

.team-single__image .team-info {
  position: absolute;
  left: 50%;
  bottom: 30px;
  display: flex;
  gap: 10px;
  transform: translateX(-50%);
}

.team-single__image .team-info a {
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  border-radius: 50%;
  transition: var(--transition);
  border-radius: 0;
  color: var(--white);
  border: 1px solid var(--white);
}

.team-single__image .team-info a:hover {
  background-color: var(--primary-color);
  border: 1px solid var(--primary-color);
}

.team-single__image .team-info a.active {
  background-color: var(--primary-color);
  border: 1px solid var(--primary-color);
}

.team-single__info .skills .experience-title {
  font-weight: 400;
}

.team-single__info .skills .progress {
  height: 8px;
}

.team-single__info .skills .progress .progress-bar {
  background-color: var(--primary-color);
}

.faq-area {
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.faq__shape {
  position: absolute;
  right: 0;
  top: 0;
  z-index: -1;
}

.faq__image {
  position: relative;
}

.faq__line {
  position: absolute;
  top: 30px;
  left: 30px;
}

.quote__wrp {
  display: block;
  padding: 60px;
  z-index: 1;
  margin-top: 0;
  margin-bottom: -120px;
}

.quote__shape {
  position: absolute;
  left: 0;
  border-top: 0;
  z-index: -1;
}

.pricing-area {
  position: relative;
  z-index: 1;
}

.pricing__shape-up {
  position: absolute;
  top: -120px;
  left: 0;
  z-index: -1;
}

.pricing__shape-down {
  position: absolute;
  top: -80px;
  left: 0;
  z-index: -1;
}

.pricing__shape {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: -1;
}

.pricing__item {
  overflow: hidden;
  position: relative;
  z-index: 1;
  background: linear-gradient(180deg, #C32423 -1.09%, #00060c 175.27%);
  padding: 50px 40px;
}

.pricing__item .item-shape {
  position: absolute;
  bottom: 40px;
  right: 0;
  z-index: -1;
}

.pricing__item ul {
  padding: 40px 0;
}

.pricing__item ul li {
  color: var(--white);
}

.pricing__item ul li:not(:last-child) {
  margin-bottom: 20px;
}

.pricing__item .pricing-head {
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(227, 227, 227, 0.4);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}

.pricing__item .pricing-head h2 {
  color: var(--white);
}

.pricing__item .pricing-head h2 span {
  color: var(--white);
  font-size: 18px;
  font-weight: 400;
}

.pricing__item .pricing-icon {
  width: 94px;
  height: 90px;
  text-align: center;
  line-height: 90px;
}

.pricing__item .pricing-icon img {
  transition: 1s;
}

.pricing__item:hover .item-shape {
  animation: bobble 2s ease-in-out infinite alternate;
}

.pricing__item:hover .pricing-icon img {
  transform: rotateY(-360deg);
}

.project-three-area {
  padding-bottom: 240px;
  padding-top: 240px;
  margin-top: -120px;
}

.project-three__item .case__content {
  text-align: center;
}

.project-three__item .case__btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  bottom: unset;
  right: unset;
}

.banner-video-area {
  position: relative;
}

.banner-video__wrp {
  margin-top: -120px;
  z-index: 1;
}

.banner-video__wrp img {
  border-radius: 20px;
}

.banner-video__wrp::before {
  background-color: var(--heading-color);
  border-radius: 20px;
  opacity: 0.5;
}

.banner-video__video-btn,
.service-single__video-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  right: unset;
}

.contact__left-item {
  padding: 50px;
}

.contact__left-item ul li {
  margin-bottom: 30px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.contact__left-item ul li i {
  width: 70px;
  height: 70px;
  line-height: 70px;
  text-align: center;
  border-radius: 50%;
  transition: var(--transition);
  background-color: var(--white);
  display: block;
  position: relative;
}

.contact__left-item ul li i::after {
  position: absolute;
  content: "";
  width: 60px;
  height: 62px;
  line-height: 62px;
  text-align: center;
  border-radius: 50%;
  transition: var(--transition);
  border: 1px dashed var(--primary-color);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.contact__left-item .social a {
  width: 36px;
  height: 36px;
  line-height: 36px;
  text-align: center;
  border-radius: 50%;
  transition: var(--transition);
  background-color: var(--white);
  color: var(--heading-color);
  margin-right: 5px;
}

.contact__left-item .social a:hover {
  color: var(--primary-color);
}

.contact__right-item {
  padding-left: 50px;
}

@media (max-width: 991px) {
  .contact__right-item {
    padding-left: 0;
  }
}

.contact__form form .nice-select {
  width: 100%;
  font-size: 18px;
  font-weight: 400;
  border: none;
  background-color: var(--sub-bg);
  margin-bottom: 30px;
  padding: 18px 20px;
  height: 70px;
  border-radius: 5px;
}

.contact__form form .nice-select .list {
  width: 100%;
}

.contact__form form label {
  font-family: var(--quicksand);
  color: var(--heading-color);
  margin-bottom: 15px;
  font-weight: 700;
}

.contact__form form input,
.contact__form form textarea {
  width: 100%;
  padding: 18px 20px;
  background-color: var(--sub-bg);
  border-radius: 4px;
  margin-bottom: 30px;
}

.contact__form form textarea {
  height: 200px;
}

.contact__map {
  margin-bottom: -10px;
}

.contact__map iframe {
  width: 100%;
  height: 600px;
}

.error__item {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}

.error__item h2 {
  font-size: 64px;
  line-height: 72px;
}

@media (max-width: 991px) {
  .error__item h2 {
    font-size: 40px;
    line-height: 50px;
  }
}

@media (max-width: 575px) {
  .error__item h2 {
    font-size: 30px;
    line-height: 40px;
  }
}

.footer-area,
.footer-two-area {
  overflow: hidden;
  position: relative;
}

.footer-area {
  background: linear-gradient(101.34deg, #0F0D0D 2.36%, #332D2D 103.72%);
  padding: 40px 120px;
  display: flex;
  gap: 64px;
}

.footer__wrp {
  display: flex;
  flex-direction: column;
  gap: 28.5px;
}

.footer__wrp .component-1,
.footer__wrp .component-3 {
  display: flex;
  justify-content: space-between;
}

.component-1 .contact-us {
  max-width: 320px;
}

.footer__wrp .component-3 {
  gap: unset;
}

.footer__item {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-title {
  font-weight: 500;
  font-size: 12px;
  line-height: 140%;
  text-transform: uppercase;
  color: #C32423;
  letter-spacing: 0.04em;
}

.footer__item ul {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.footer__item ul li a {
  font-weight: 400;
  font-size: 14px;
  line-height: 140%;
  letter-spacing: 0;
  color: #ffffff;
}

.logo {
  width: 187px;
  height: 64px;
}

.logo img {
  width: 100%;
  height: 100%;
}

.br__footer {
  width: 100%;
  border: 1px solid #FFFFFF33
}

.social-icon {
  display: flex;
  gap: 12px;
}

.social-icon a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 10px;
  border: 1px solid #FFFFFF;
  background: #FFFFFF1A;
  color: #ffffff;
}


.footer__copyright p {
  font-size: 14px;
  line-height: 140%;
  font-weight: 400;
  letter-spacing: 0;
  color: #ffffff;
}

.reasons-with-us-wrapper .reasons-with-us {
  /* padding: 30px 0; */
}

.reasons-with-us-wrapper .reasons-with-us .description {
  color: #2b2e30;
  font-family: var(--font-family);
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  text-align: center;
  margin-top: 22px
}

.list-icon-info-wrapper {
  display: flex;
  align-items: stretch;
  gap: 24px;
}

.list-icon-info-wrapper .item-info {
  flex: 1;
  position: relative;
  box-shadow: 8px 8px 40px 0px #00000014;
  background: #FFFFFF;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 10px;
  overflow: hidden;
}

.item-info-image {
  position: relative;
  width: 100%;
  height: 96px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: transform 0.4s ease;
}

.item-info-image:hover {
  transform: scale(1.1);
}

.item-info-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(284.59deg, rgba(195, 35, 35, 0.2) 4.84%, #B32020 180.73%);
}

.reasons-with-us-wrapper .reasons-with-us .list-icon-info-wrapper .item-info .icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  padding: 4px;
  background: #F2F3F5;
}

.reasons-with-us-wrapper .reasons-with-us .list-icon-info-wrapper .item-info .number {
  color: #ffffff;
  text-align: center;
  font-size: 56px;
  font-weight: 700;
  line-height: 100%;
  position: relative;
  text-align: center;
  position: absolute;
  z-index: 5;
}

.reasons-with-us-wrapper .reasons-with-us .list-icon-info-wrapper .item-info .plus::after {
  content: "+";
  position: absolute;
  top: 0;
  right: 0;
  -webkit-transform: translateX(100%);
  transform: translateX(100%);
  font-size: 40px;
  font-weight: 700;
  color: #ffffff;
}

@media only screen and (max-width: 786px) {
  .reasons-with-us-wrapper .reasons-with-us .list-icon-info-wrapper .item-info .plus::after {
    font-size: 20px
  }
}

.reasons-with-us-wrapper .reasons-with-us .list-icon-info-wrapper .item-info .sub-description {
  color: #242424;
  text-align: center;
  font-size: 16px;
  font-weight: 600;
  line-height: 150%;
  letter-spacing: 0;
}

.reasons-with-us-wrapper .reasons-with-us .list-icon-info-wrapper .item-info .sub-description .hide-desktop {
  display: none
}

.reasons-with-us-wrapper .reasons-with-us .list-icon-info-wrapper .item-info.order-1 {
  order: 1
}

.reasons-with-us-wrapper .reasons-with-us .list-icon-info-wrapper .item-info.order-2 {
  order: 3
}

.reasons-with-us-wrapper .reasons-with-us .list-icon-info-wrapper .item-info.order-3 {
  order: 2
}

.reasons-with-us-wrapper .reasons-with-us .list-icon-info-wrapper .item-info.order-4 {
  order: 4
}

@media (max-width: 1366px) {
  .reasons-with-us-wrapper .reasons-with-us .title {
    font-size: 26px;
    line-height: 110%
  }

  .reasons-with-us-wrapper .reasons-with-us .description {
    font-size: 16px;
    line-height: 150%
  }

  .reasons-with-us-wrapper .reasons-with-us .list-icon-info-wrapper {
    margin-top: 60px
  }

  .reasons-with-us-wrapper .reasons-with-us .list-icon-info-wrapper .item-info {
    width: 280px
  }

  .reasons-with-us-wrapper .reasons-with-us .list-icon-info-wrapper .item-info .number {
    font-size: 32px;
    line-height: 150%;
    margin-bottom: 12px
  }

  .reasons-with-us-wrapper .reasons-with-us .list-icon-info-wrapper .item-info .sub-description {
    font-size: 16px;
    line-height: 150%
  }
}

@media only screen and (max-width: 1024px) {
  .reasons-with-us-wrapper .reasons-with-us .title {
    color: #000;
    font-family: var(--font-family);
    font-size: 21px;
    font-style: normal;
    font-weight: 700;
    line-height: 120%;
    text-align: left
  }

  .reasons-with-us-wrapper .reasons-with-us .description {
    color: #000;
    font-family: var(--font-family);
    font-size: 13px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    text-align: left;
    margin-top: 8px
  }

  .reasons-with-us-wrapper .reasons-with-us .list-icon-info-wrapper {
    margin-top: 40px;
    width: 100%;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center
  }

  .reasons-with-us-wrapper .reasons-with-us .list-icon-info-wrapper .item-info {
    gap: unset;
    width: 157px
  }

  .reasons-with-us-wrapper .reasons-with-us .list-icon-info-wrapper .item-info .icon {
    max-width: 80px
  }

  .reasons-with-us-wrapper .reasons-with-us .list-icon-info-wrapper .item-info .number {
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 150%;
    margin-top: 16px;
    margin-bottom: 8px
  }

  .reasons-with-us-wrapper .reasons-with-us .list-icon-info-wrapper .item-info .sub-description {
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%
  }

  .reasons-with-us-wrapper .reasons-with-us .list-icon-info-wrapper .item-info .sub-description .hide-desktop {
    display: block
  }

  .reasons-with-us-wrapper .reasons-with-us .list-icon-info-wrapper .item-info.order-2 {
    order: 2
  }

  .reasons-with-us-wrapper .reasons-with-us .list-icon-info-wrapper .item-info.order-3 {
    order: 3
  }
}

@keyframes sway {
  0% {
    transform: translateX(-20px);
  }

  100% {
    transform: translateX(0px);
  }
}

@keyframes swayX {
  0% {
    transform: translateX(20px);
  }

  100% {
    transform: translateX(0px);
  }
}

@keyframes footer__shadow {
  0% {
    margin-left: -200px;
  }

  100% {
    margin-right: -200px;
  }
}

@keyframes sway_Y {
  0% {
    transform: translateY(0px);
  }

  100% {
    transform: translateY(20px);
  }
}

@keyframes sway_YY {
  0% {
    transform: translateY(0px);
  }

  100% {
    transform: translateY(-20px);
  }
}


@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.animation__rotate {
  animation: rotate 40s linear infinite;
}

@keyframes rotateY {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(-360deg);
  }
}

.animation__rotateY {
  animation: rotateY 40s linear infinite;
}

@keyframes bobble {
  0% {
    transform: translateY(0) scale(1);
  }

  100% {
    transform: translateY(-20px) scale(1.1);
  }
}

.bobble__animation {
  animation: bobble 3s ease-in-out infinite alternate;
}

@-webkit-keyframes video-animation {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.5);
  }

  100% {
    opacity: 0;
    transform: scale(2);
  }
}

@keyframes video-animation {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.5);
  }

  100% {
    opacity: 0;
    transform: scale(2);
  }
}

/*# sourceMappingURL=style.css.map */

.process-left {
  position: sticky;
  top: 100px;
  z-index: 2;
  /*  margin-bottom: 100px;*/
}

.sec-title {
  display: flex;
  align-items: center;
}

@media (max-width: 991px) {
  .process-left .xb-btn {
    margin-top: 40px;
  }
}

.process-left .thm-btn--fill_icon:hover .xb-item--holder {
  transform: translateX(-77%);
}

@media (max-width: 767px) {
  .process-right {
    float: none;
  }
}

.f-right {
  float: right;
}

.process-timeline {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 0;
  flex-wrap: wrap;
  margin-top: 40px;
}

.process-timeline-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 1;
  min-width: 150px;
  max-width: 250px;
}

.process-icon-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  justify-content: center;
}

.process-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
  position: relative;
  z-index: 2;
  padding: 15px;
}

.process-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

/* Process Section - Services Page */
.process .process-right {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  width: 100%;
}

.process .process-item {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
}

.process .process__items {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 120px;
  max-width: 160px;
  gap: 10px;
}

.process .process__items .xb-item--title {
  font-size: 16px;
  line-height: 150%;
  text-align: center;
  color: #242424;
  font-weight: 600;
  letter-spacing: 0;
  margin: 0;
  max-width: 150px;
}

.process .process-line {
  flex: 1 1 auto;
  height: 1px;
  background: #CACBCC;
  position: relative;
  margin-top: 34px;
  min-width: 40px;
}

.process .process-line::after {
  content: '';
  position: absolute;
  right: -6px;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  width: 5px;
  height: 5px;
  background: #CACBCC;
}

.peocess-shape .shape {
  position: absolute;
  z-index: 1;
}

.peocess-shape .shape--one {
  left: 0;
  top: 0;
}

.peocess-shape .shape--two {
  top: 0;
  right: 0;
}

.thm-btn--fill_icon {
  padding: 24px 0;
  overflow: hidden;
  color: var(--color-white);
  background: var(--color-primary);
}

.thm-btn {
  z-index: 1;
  font-size: 20px;
  font-weight: 500;
  line-height: 16px;
  letter-spacing: .02em;
  padding: 10px 20px;
  border-style: none;
  align-self: center;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-transform: inherit;
  color: var(--color-white);
  background: var(--color-primary);
  border-radius: 50px;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  -ms-border-radius: 50px;
  -o-border-radius: 50px;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

@media (max-width: 767px) {
  .thm-btn {
    font-size: 16px;
  }

  .process-right .process-item {
    max-width: unset;
  }
}

.thm-btn .white-icon i {
  color: var(--color-white);
}

.thm-btn--fill_icon {
  padding: 24px 0;
  overflow: hidden;
  color: var(--color-white);
  background: var(--color-primary);
}

.thm-btn--fill_icon .xb-item--hidden-text {
  visibility: hidden;
  margin-right: 6.8rem;
}

@media (max-width: 767px) {
  .thm-btn--fill_icon .xb-item--hidden-text {
    margin-right: 9rem;
  }
}

.thm-btn--fill_icon .xb-item--holder {
  left: 40px;
  position: absolute;
  width: 100%;
  white-space: nowrap;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  display: inline-block;
}

.thm-btn--fill_icon .xb-item--icon {
  height: 44px;
  width: 44px;
  margin: 0px 23px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50px;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  -ms-border-radius: 50px;
  -o-border-radius: 50px;
  background: var(--color-white);
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.thm-btn--fill_icon .xb-item--icon i {
  color: var(--color-heading);
  transform: rotate(-45deg);
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.thm-btn--fill_icon .xb-item--text {
  font-size: 20px;
  line-height: 16px;
  display: inline;
  letter-spacing: -0.42px;
  color: var(--color-white);
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.thm-btn--fill_icon:hover {
  background: var(--color-heading);
}

.thm-btn--fill_icon:hover .xb-item--holder {
  transform: translateX(-74%);
}

.thm-btn--fill_icon:hover .xb-item--icon i {
  transform: rotate(0deg);
}

.thm-btn--fill_icon:hover .xb-item--text {
  color: var(--color-white);
}

.thm-btn--white_icon {
  font-weight: 700;
  background: var(--color-white);
}

.thm-btn--white_icon .xb-item--icon {
  background: var(--color-primary);
}

.thm-btn--white_icon .xb-item--icon i {
  color: var(--color-white);
}

.thm-btn--white_icon .xb-item--text {
  color: var(--color-heading);
}

.thm-btn--white_icon:hover {
  background: var(--color-primary);
}

.thm-btn--white_icon:hover .xb-item--icon {
  background-color: var(--color-white);
}

.thm-btn--white_icon:hover .xb-item--icon i {
  color: var(--color-heading);
}

.thm-btn--white_icon:hover .xb-item--text {
  color: var(--color-white);
}

.thm-btn--strock {
  background: transparent;
  border: 1px solid rgba(17, 17, 18, 0.1);
}

.thm-btn--strock .xb-item--hidden-text {
  margin-right: 8.5rem;
}

@media (max-width: 767px) {
  .thm-btn--strock .xb-item--hidden-text {
    margin-right: 10.5rem;
  }
}

.thm-btn--strock .xb-item--icon {
  background: var(--color-heading);
}

.thm-btn--strock .xb-item--icon i {
  color: var(--color-white);
}

.thm-btn--strock .xb-item--text {
  color: var(--color-heading);
}

.thm-btn--strock:hover {
  background: var(--color-primary);
}

.thm-btn--strock:hover .xb-item--holder {
  transform: translateX(-76%);
}

.thm-btn--strock:hover .xb-item--icon {
  background: var(--color-white);
}

.thm-btn--strock:hover .xb-item--icon i {
  color: var(--color-heading);
}

.thm-btn--strock:hover .xb-item--text {
  color: var(--color-white);
}

.thm-btn--data {
  padding: 34px 0;
  background: var(--color-white);
  font-family: var(--font-heading-five);
  box-shadow: 0 7px 8px 0 rgba(6, 19, 39, 0.01);
}

.thm-btn--data .xb-item--text {
  font-weight: 700;
  color: #2042BF;
  letter-spacing: 0em;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.thm-btn--data .xb-item--holder {
  left: 57px;
}

.thm-btn--data .xb-item--icon {
  height: 30px;
  width: 30px;
  margin: 0px 17px;
  background: #2042BF;
}

.thm-btn--data .xb-item--icon i {
  transform: rotate(0deg);
  color: var(--color-white);
}

.thm-btn--data .xb-item--hidden-text {
  margin-right: 8.5rem;
}

@media (max-width: 767px) {
  .thm-btn--data .xb-item--hidden-text {
    margin-right: 10.5rem;
  }
}

.thm-btn--data .xb-item--text1 {
  opacity: 1;
}

.thm-btn--data .xb-item--text2 {
  opacity: 0;
}

.thm-btn--data:hover {
  background: #1438bc;
}

.thm-btn--data:hover .xb-item--holder {
  transform: translateX(-70%);
}

.thm-btn--data:hover .xb-item--text {
  color: var(--color-white);
}

.thm-btn--data:hover .xb-item--text1 {
  opacity: 0;
}

.thm-btn--data:hover .xb-item--text2 {
  opacity: 1;
}

.thm-btn--data_blue {
  background: #1438bc;
}

.thm-btn--data_blue .xb-item--text {
  color: var(--color-white);
}

.thm-btn--data_blue:hover {
  background: var(--color-white);
}

.thm-btn--data_blue:hover .xb-item--text {
  color: #1438bc;
}

.thm-btn--data-strock {
  border: 1px solid #1438bc;
}

.thm-btn--data-strock_white {
  background: transparent;
  border: 1px solid var(--color-white);
}

.thm-btn--data-strock_white .xb-item--text {
  color: var(--color-white);
}

.thm-btn--data-strock_white:hover {
  background: var(--color-white);
}

.thm-btn--data-strock_white:hover .xb-item--text {
  color: #1438bc;
}

.thm-btn--header {
  font-size: 18px;
  font-weight: 700;
  overflow: hidden;
  border: none;
  padding: 16.5px 25.7px;
  color: var(--color-heading);
  background: var(--color-white);
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.thm-btn--header span {
  margin-left: 18px;
}

.thm-btn--header span svg path {
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.thm-btn--header:hover {
  color: var(--color-white);
}

.thm-btn--header:hover svg path {
  fill: var(--color-white);
}

.thm-btn--aso {
  font-weight: 700;
  padding: 27px 40px;
  overflow: hidden;
  color: var(--color-white);
  border-radius: 7px;
  -webkit-border-radius: 7px;
  -moz-border-radius: 7px;
  -ms-border-radius: 7px;
  -o-border-radius: 7px;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  background: var(--color-primary-two);
}

.thm-btn--aso::before {
  position: absolute;
  content: '';
  z-index: -1;
  height: 200%;
  width: 200%;
  left: 50%;
  bottom: -200%;
  transform: translateX(-50%);
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  background: var(--color-yellow);
}

.thm-btn--aso img {
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.thm-btn--aso:hover {
  color: var(--color-heading-two);
  transform: translateY(-2px);
}

.thm-btn--aso:hover::before {
  bottom: -70%;
}

.thm-btn--aso:hover img {
  filter: grayscale(1) brightness(0);
}

.thm-btn--aso_yellow {
  background: var(--color-yellow);
  color: var(--color-heading-two);
}

.thm-btn--aso_yellow:hover {
  color: var(--color-white);
}

.thm-btn--aso_yellow:hover::before {
  background: var(--color-primary-two);
}

.thm-btn--aso_white {
  background: var(--color-yellow);
  color: var(--color-heading-two);
}

.thm-btn--aso_white::before {
  background: var(--color-white);
}

.thm-btn--aso_white:hover::before {
  background: var(--color-white);
}

.thm-btn--aso_black {
  background: var(--color-black);
}

.thm-btn--header-black {
  padding: 15.5px 19.5px;
  background-color: var(--color-heading-two);
}

.thm-btn--header-black img {
  margin-left: 18px;
}

.thm-btn--border {
  padding: 0;
  padding-bottom: 20px;
  border-radius: 0;
  background: transparent;
}

.thm-btn--border span {
  height: 25px;
  width: 25px;
  right: 0;
  top: 25%;
}

.thm-btn--border:hover {
  color: var(--color-white);
}

.thm-btn--border::before {
  position: absolute;
  content: '';
  bottom: 0px;
  left: 0;
  width: 100%;
  height: 4px;
  border-radius: 7px;
  -webkit-border-radius: 7px;
  -moz-border-radius: 7px;
  -ms-border-radius: 7px;
  -o-border-radius: 7px;
  background-color: #fff;
}

.thm-btn--three {
  font-size: 18px;
  letter-spacing: 0em;
  position: relative;
  padding: 20px 80px 20px 22px;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  background: var(--color-primary-three);
}

.thm-btn--three span {
  width: 48px;
  height: 28px;
  right: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  background: #e5a0e3;
  overflow: hidden;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
}

.thm-btn--three span .img--one {
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
  transform: translateX(8px);
}

.thm-btn--three span .img--two {
  opacity: 0;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
  transform: translateX(-43px);
}

.thm-btn--three::before {
  position: absolute;
  right: 0;
  top: 0;
  z-index: -1;
  content: '';
  height: 100%;
  width: 0;
  opacity: 0;
  border-radius: inherit;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
  background: #000;
}

.thm-btn--three:hover {
  color: #fff;
}

.thm-btn--three:hover::before {
  width: 100%;
  opacity: 1;
}

.thm-btn--three:hover span .img--one {
  opacity: 0;
  transform: translateX(50px);
}

.thm-btn--three:hover span .img--two {
  opacity: 1;
  transform: translateX(-8px);
}

.thm-btn--black {
  background: var(--color-heading-three);
}

.thm-btn--black:hover::before {
  background: var(--color-primary-three);
}

.thm-btn--devops {
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 0em;
  overflow: hidden;
  text-transform: uppercase;
  padding: 27px 70px 23px 70px;
  background: var(--color-primary-four);
  font-family: var(--font-heading-four);
}

@media (max-width: 767px) {
  .thm-btn--devops {
    padding: 27px 25px 23px;
  }
}

.thm-btn--devops::before {
  position: absolute;
  content: '';
  width: 101%;
  height: 0;
  left: 0;
  right: auto;
  top: 50%;
  z-index: -1;
  transform: translateY(-50%);
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  background: var(--color-yellow);
}

.thm-btn--devops:hover {
  color: var(--color-heading-two);
}

.thm-btn--devops:hover::before {
  height: 100%;
}

.thm-btn--devops_yellow {
  background: #ffd00e !important;
  color: #111 !important;
}

.thm-btn--devops_yellow:hover {
  color: var(--color-white) !important;
}

.thm-btn--devops_yellow:hover::before {
  background: var(--color-primary);
}

.faq-bg {
  width: 100%;
  border-radius: 12px;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.faq-bg:hover {
  transform: scale(1.1);
}

.section-subtitle {
  color: var(--clr-theme-primary);
  font-size: 14px;
  font-weight: 500;
  line-height: 18px;
  text-transform: uppercase;
  display: block;
  letter-spacing: 2.5px;
}

.section-title {
  color: var(--black);
  font-size: 44px;
  font-weight: 700;
  line-height: 1.22;
  letter-spacing: -1.1px;
}

h2.accordion-header {
  color: var(--clr-body-heading);
  font-size: 18px;
  font-weight: 600;
  line-height: 1.25;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 0;
  padding-left: 20px;
}

.method-area .accordion .accordion-item h2.accordion-header {
  border: 0;
}

.method-area .accordion .accordion-item h2 button {
  font-size: 16px;
  font-weight: 700;
  line-height: 150%;
  color: #242424;
  letter-spacing: 0;
  padding: 10px;
}

.method-area .accordion .accordion-item h2 button span {
  color: #242424;
  margin-right: 12px;
}

.faq-area .accordion .accordion-button::before {
  top: 50%;
  transform: translateY(-50%);
  content: "\f077";
  font-family: "Font Awesome 6 Free";
  right: 0px;
  background-color: transparent;
  color: var(--primary-color);
}

.faq-area .accordion .accordion-button.collapsed::before {
  content: "\f078";
  background-color: transparent;
  color: #242424;
}

.method-area .accordion .accordion-item {
  border-left: 4px solid #E9E9E9;
  transition: border-color 0.3s ease;
  margin-bottom: 16px;
}

.method-area .accordion .accordion-item:has(.accordion-button:not(.collapsed)) {
  border-left-color: #C32423;
}

.method-area .accordion .accordion-button:not(.collapsed) {
  background-color: transparent;
  color: #C32423;
}

.method-area .accordion .accordion-button:not(.collapsed) span {
  color: #C32423;
}

.slider-wrap {
  position: relative;
  height: 514px;
  display: flex;
  align-items: center;
}

.slider-wrap .slider_content {
  width: 427px;
  display: inline-block;
  margin-right: 30px;
}

.slider_content a {
  width: 100%;
}

.slider_content img {
  min-height: 310px;
  width: 100%;
}

.faq-content .swiper-container {
  width: 100%;
  height: 265px;
  overflow: hidden;
}

.panel.panel-benefits-op2 .box {
  border-radius: 24px;
  transition: transform .4s, color .25s;
  display: block;
  position: relative;
  overflow: hidden;
}

.panel.panel-benefits-op2 .box {
  border-radius: 8px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px;
  box-shadow: 0px 0px 35px -24px rgba(0, 0, 0, 0.75);
  -webkit-box-shadow: 0px 0px 35px -24px rgba(0, 0, 0, 0.75);
  -moz-box-shadow: 0px 0px 35px -24px rgba(0, 0, 0, 0.75);
}

.panel.panel-benefits-op2 .box .img {
  background-color: var(--primary-color);
  border-radius: 50%;
}

.panel.panel-benefits-op2 .box.w-quote .box-text {
  justify-content: center;
  /*  padding: 80px 25px;*/
  color: var(--black);
  position: static;
}

[data-hover-scale] [data-ele-scale] {
  transform-origin: 50%;
  transition: transform .3s ease-in-out;
}

.panel.panel-benefits-op2 .img.w-bg:after {
  content: "";
  z-index: 2;
  background-color: #ffffff80;
  width: 100%;
  height: 100%;
  transition: background-color .3s;
  position: absolute;
  top: 0;
  left: 0;
}

.panel.panel-benefits-op2 .box .box-text h2 {
  font-size: 22px;
  line-height: 1.3em;
  color: var(--black);
}

.panel.panel-benefits-op2 .box:hover .box-text h2,
.panel.panel-benefits-op2 .box:hover .box-text p {
  /*  color: var(--white);*/
}

/*.panel.panel-benefits-op2 .box:hover .img.w-bg:after {
  background-color: rgba(130, 37, 5, .8);
  content: '';
}*/
.panel.panel-benefits-op2 .box .img img {
  /*  width: 100%;
  max-width: none;
  object-fit: cover;*/
  width: 60px;
  height: 60px;
  border-radius: 50%;
}

.panel.panel-benefits-op2 .box .box-text {
  z-index: 10;
  text-align: center;
  flex-direction: column;
  align-items: center;
  width: 100%;
  height: 100%;
  display: flex;
  position: absolute;
  top: 0;
  left: 0;
}

.vission-mission .ct-text {
  border-radius: 16px;
}

.main-feature.vission-mission .ct-text {
  background-color: transparent;
  display: flex;
  flex-direction: column;
  gap: 16px;
  /* animation: fadeInLeft 1s ease-out forwards; */
}

/* .ct-text .text-desc {
  animation: fadeInUp 1s ease-out forwards;
} */

.main-feature.vission-mission {
  /* background-color: var(--sub-bg); */
}

.vission-mission.category-page .ct-text .description {
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.font-size-15 {
  font-weight: 400;
  font-size: 15px;
  line-height: 150%;
  letter-spacing: 0;
  color: #ffffff;
}

.font-size-20 {
  font-weight: 600;
  font-size: 20px;
  line-height: 150%;
  letter-spacing: 0;
  color: #8D8D8F;
}

.font-size-24 {
  font-weight: 700;
  font-size: 24px;
  line-height: 150%;
  letter-spacing: 0;
  color: #ffffff;
}

.about_us_img {
  width: 50%;
  height: auto;
  object-fit: cover;
  transition: transform 0.3s ease-in-out;
  /* animation: fadeInRight 1s ease-out forwards; */
}

/* .vission-mission .ct-image:hover {
  transform: scale(1.1);
} */

.round-12 {
  border-radius: 8px;
}

.round-16 {
  border-radius: 16px;
}

.integrio_module_services_5 .services_back-bg {
  opacity: 0;
}

.integrio_module_services_5 .services_front-bg,
.integrio_module_services_5 .services_back-bg {
  position: absolute;
  z-index: -1;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-size: cover;
  transition: .4s;
  background-image: var(--gradient-bg);
}


.page-products .integrio_module_services_5 .services_wrapper-image,
.category_service .services_wrapper-image {
  width: 100%;
  overflow: hidden;
}

.page-products .integrio_module_services_5 .services_front-bg,
.page-industry .integrio_module_services_5 .services_front-bg {
  position: static;
  padding-bottom: 80%;
  border-radius: 8px;
}

.page-home .service .integrio_module_services_5 .services_front-bg,
.page-products .integrio_module_services_5 .services_front-bg {
  border-radius: 8px 0 0 8px;
}

.integrio_module_services_5 .services_button {
  display: block;
  font-size: 16px;
  height: 40px;
  width: 40px;
  line-height: 40px;
  border: 1px solid #fff;
  border-radius: 50%;
  color: #fff;
  text-align: center;
  margin-bottom: 5px;
}

.integrio_module_services_5 .services_content {
  font-size: 16px;
  margin-bottom: 35px;
  color: #fff;
  opacity: 0;
  transition: .4s;
}

.category_service .integrio_module_services_5 p.services_content {
  color: #000;
  opacity: 1;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  /* number of lines to show */
  line-clamp: 3;
  -webkit-box-orient: vertical;
  margin-bottom: 10px;
}

.page-home .integrio_module_services_5 .services_content,
.page-industry .integrio_module_services_5 .services_content {
  margin-bottom: 0;
}


.brand-area .integrio_module_services_5 .services_title {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.2em;
  margin-bottom: 16px;
  color: #000;
  margin-top: 10px;
}

.integrio_module_services_5 .services_title {
  font-size: 18px !important;
  font-weight: 700 !important;
  line-height: 150% !important;
  color: #fff !important;
}

.industry .integrio_module_services_5 .services_title {
  font-size: 19px;
  margin-top: 0;
  margin-bottom: 10px;
}

.industry .integrio_module_services_5 a {
  color: #000;
}

.industry .integrio_module_services_5 a i {
  margin-left: 10px;
}

/* .category_service .integrio_module_services_5 .services_wrapper {
  box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.75);
  -webkit-box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.75);
  -moz-box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.75);
  border-radius: 8px;
} */

.category_service .integrio_module_services_5 .services_wrapper {
  padding: 0;
}

.page-products .integrio_module_services_5 .services_front-bg {
  border-radius: 8px 8px 0 0;
  padding-bottom: 60%;
}

.page-home .industry .integrio_module_services_5 .services_wrapper-content,
.page-products .integrio_module_services_5 .services_wrapper-content,
.category_service .integrio_module_services_5 .services_wrapper-content {
  padding: 10px;
}

.page-home .service .integrio_module_services_5 .services_title,
.page-products .integrio_module_services_5 .services_title {
  color: #000;
  font-size: 22px;
}



.page-home .integrio_module_services_5 .services_content,
.page-products .integrio_module_services_5 .services_content,
.page-industry .integrio_module_services_5 .services_content,
.page-industry .integrio_module_services_5 .services_title {
  color: #fff;
  font-size: 15px;
  opacity: 0;
  display: none;
  line-height: 150%;
  letter-spacing: 0;
}

.services_wrapper.feature {
  justify-content: unset;
}

.service .integrio_module_services_5 .services_wrapper {
  flex-direction: row;
}

.integrio_module_services_5 .services_wrapper {
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding: 20px 30px;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 8px 8px 40px 0px #00000014;
  min-height: 340px;
}

.page-industry .integrio_module_services_5 .services_wrapper {
  padding: 0;
  border-radius: 0;
  box-shadow: unset;
  min-height: unset;
  justify-content: normal;
}

.page-products .integrio_module_services_5 .services_wrapper {
  padding: 0;
}

.page-home .service .integrio_module_services_5 .services_wrapper {
  background-color: #eeeded;
  border-radius: 8px;
}

/* .page-industry .integrio_module_services_5 .services_wrapper {
  flex-direction: row;
} */
.page-home .service a.services_wrapper-content,
.page-products a.services_wrapper-content {
  width: 100%;
  max-width: calc(50% + 10px);
  padding: 15px 10px;
}

.page-home a.services_wrapper-content,
.page-products a.services_wrapper-content,
.page-industry a.services_wrapper-content {
  cursor: pointer;
}

.integrio_module_services_5 .services_wrapper:hover .services_back-bg,
.integrio_module_services_5 .services_wrapper:hover .services_content {
  opacity: 1;
}

.page-home .atmosphere-sc a img {
  border-radius: 4px;
  height: 450px !important;
}

.page-products .testimonial-area .section-title,
.page-products .testimonial-area .section-header p,
.page-services .testimonial-area .section-title,
.page-services .testimonial-area .section-header p,
.page-industry .testimonial-area .section-title,
.page-industry .testimonial-area .section-header p {
  color: #fff;
  margin-top: 0;
  font-size: 26px;
  font-weight: 800;
}

@media only screen and (max-width: 767px) {
  .message-ceo .image {
    position: relative;
    margin-left: 0;
    width: 100%;
  }
}

.industries-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 20px;
}

.industry-box {
  padding: 20px;
  background-color: #F8f8f8;
}

/* .services_front-bg {
  background-size: 100%;
  background-position: center;
  background-repeat: no-repeat;
  transition: background-size 0.5s ease-in-out;
}

.services_front-bg:hover {
  background-size: 120%;
} */
.services_wrapper-image {
  overflow: hidden;
}

.services_front-bg,
.atmosphere-sc img {
  position: relative;
  background-size: cover;
  background-position: center;
  transition: transform 0.3s ease-in-out;
  /* Smooth transition for zoom effect */
}

.integrio_module_services_5:hover .services_front-bg,
.atmosphere-sc img:hover {
  transform: scale(1.1);
  /* Zoom in on hover */
}

.h-220 {
  height: 220px !important;
}

.atmosphere-sc .object-fit-cover {
  aspect-ratio: 4 / 3;
  transition: transform 0.3s ease-in-out;
}

.atmosphere-sc .object-fit-cover:hover,
.case__image:hover img {
  transform: scale(1.1);
}

.case__image img,
.method-img img {
  transition: transform 800ms ease-out;
  height: 100%;
  object-fit: cover;
}

.pagination-wrapper {
  display: flex;
  justify-content: center;
  margin-top: 30px;
  grid-gap: 5px;
  gap: 16px;
}

.page-numbers {
  display: flex;
  gap: 16px;
  color: #000;
}

.page-numbers .next {
  gap: 4px;
}

span.page-numbers.current {
  color: #C32423;
}

/* .header__main .main-menu ul li.pll-parent-menu-item .sub-menu {
  width: auto;
} */
.elementor-button-content-wrapper span.elementor-button-text {
  color: #000;
}

.text-white .elementor-button-content-wrapper span.elementor-button-text {
  color: #fff !important;
}

footer[data-elementor-type="archive"].elementor-location-archive .elementor-heading-title {
  font-size: 52px !important;
  color: #000 !important;
}

footer[data-elementor-type="archive"].elementor-location-archive .e-con-inner {
  max-width: unset;
}

.tags {
  z-index: 1;
  display: flex;
  gap: 8px;
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: nowrap !important;
  overflow-x: auto !important;
  overflow-y: hidden !important;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  margin: 0 !important;
  overscroll-behavior-x: contain !important;
  overscroll-behavior-y: auto !important;
}

.tag-item {
  backdrop-filter: blur(8px);
  border: 1px solid #FFFFFF;
  background: #0000001A;
  padding: 6px 12px;
  border-radius: 8px;
  flex-shrink: 0 !important;
}

.tag-item a span {
  font-weight: 300;
  font-size: 14px;
  line-height: 130%;
  color: #ffffff;
  letter-spacing: 0;
}

.tag-item:hover {
  background: #FFFFFF59;
}

.tag-item:hover a,
.tag-item:hover a span {
  color: #fff !important
}

.tag-item a {
  color: #000
}

.tag-item.active {
  background: #FFFFFF59;
}

.tag-item.active a,
.tag-item.active a span {
  color: #fff !important
}

.section-product__title {
  font-size: 25px;
  font-weight: 700;
  color: #000;
  text-transform: capitalize;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--primary-color);
  margin: 0;
  line-height: 1.2em;
}

.section-product__title span {
  color: #000;
}

.section-product__title.list-page {
  display: flex;
  align-items: center;
  justify-content: space-between
}

.wrap-filter {
  display: flex;
  position: relative;
  flex-direction: column;
  padding: 40px 0;
  border-radius: 12px;
  padding-right: 12px;
  padding-left: 196px;
}

.wrap-filter form.frm-search {
  max-width: 792px;
  width: 100%;
  z-index: 1;
}

.title-single {
  font-size: 52px;
}

@media only screen and (max-width: 767px) {
  .wrap-filter {
    flex-wrap: wrap;
  }

  .wrap-filter form.frm-search {
    max-width: 100%;
  }
}

.partner-company-section {
  position: relative;
  background: #F5F5F5;
  overflow: hidden;
}

.partner-company-container {
  position: relative;
  overflow: hidden;
  width: 100%;
  cursor: grab;
  user-select: none;
  -webkit-overflow-scrolling: touch;
}

.partner-company-container:active {
  cursor: grabbing;
}

/* Partner Companies Grid */
.partner-companies-grid {
  display: flex;
  flex-direction: row;
  padding: 24px 0;
  width: fit-content;
  background: #FAFAFA;
  will-change: transform;
  transition: none;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}

/* Partner Company Cards */
.partner-company-card {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #FAFAFA;
  border-radius: 8px;
  box-sizing: border-box;
  flex-shrink: 0;
  width: auto;
  /* height: 72px; */
  padding: 0 16px;
  margin-right: 40px;
  cursor: pointer;
}

/* Company Logo */
.company-logo {
  display: flex;
  justify-content: center;
  align-items: center;
  width: auto;
  height: 48px;
}

.logo-image {
  width: auto;
  height: 40px;
  object-fit: contain;
  transition: filter 0.3s ease;
  pointer-events: none;
  transform: translateZ(0);
}

.partner-company-card:hover .logo-image {
  filter: grayscale(0%);
}

/* Company Link */
.company-link {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  text-decoration: none;
}

.company-link:hover {
  opacity: 1;
}

/* Empty State */
.partner-companies-empty {
  text-align: center;
  padding: 60px 20px;
  color: #747475;

}

.partner-companies-empty p {
  margin: 10px 0;
  font-size: 16px;
}

.admin-link {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.admin-link:hover {
  color: #3a8a6f;
}

/* Responsive Design */
@media (max-width: 1439px) and (min-width: 1024px) {
  .partner-company-card {
    height: 56px;
  }

  .partner-companies-grid {
    padding: 12px 0;
  }

  .partner-company-card {
    margin-right: 32px;
  }

  .company-logo {
    width: auto;
    height: 32px;
  }

  .logo-image {
    height: 32px;
  }
}

@media (max-width: 1023px) and (min-width: 768px) {
  .partner-company-card {
    padding: 12px 16px;
    width: auto;
    height: 56px;
  }

  .partner-company-card {
    margin-right: 16px;
  }

  .company-logo {
    width: auto;
    height: 32px;
  }

  .logo-image {
    width: auto;
    height: 32px;
  }
}

@media (max-width: 767px) {
  .partner-company-card {
    padding: 12px 12px;
    width: auto;
    height: 56px;
    margin-right: 8px;
  }

  .company-logo {
    width: auto;
    height: 32px;
  }

  .partner-companies-grid {}

  .logo-image {
    width: auto;
    height: 32px;
    transition: filter 0.3s ease;
  }
}

/* =====
===================================
   Page Banner Full Height Styles
   ======================================== */

.page-banner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}

/* Banner Heights */
.page-banner--full {
  min-height: 100vh;
  height: 100vh;
}

.page-banner--medium {
  min-height: 70vh;
  height: 70vh;
}

.page-banner--small {
  min-height: 50vh;
  height: 50vh;
}

/* Banner Overlay */
.page-banner__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.3) 100%);
  z-index: 1;
}

/* Banner Shapes */
.page-banner__shapes {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.page-banner__shape {
  position: absolute;
}

.page-banner__shape--left {
  top: 0;
  left: 0;
  max-width: 300px;
}

.page-banner__shape--right {
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  max-width: 250px;
}

.page-banner__shape img {
  width: 100%;
  height: auto;
}

/* Banner Content */
.page-banner__content {
  position: relative;
  z-index: 3;
  max-width: 800px;
  padding: 40px 20px;
}

.page-banner--align-left .page-banner__content {
  text-align: left;
  margin-right: auto;
}

.page-banner--align-center .page-banner__content {
  text-align: center;
  margin: 0 auto;
}

.page-banner--align-right .page-banner__content {
  text-align: right;
  margin-left: auto;
}

/* Banner Text Elements */
.page-banner__subtitle {
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 20px;
  opacity: 0.9;
}

.page-banner__title {
  color: #fff;
  font-size: 56px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 24px;
}

.page-banner__description {
  color: #fff;
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 32px;
  opacity: 0.95;
}

.page-banner__button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
}

/* Scroll Indicator */
.page-banner__scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
}

.scroll-indicator {
  width: 30px;
  height: 50px;
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: 25px;
  position: relative;
  cursor: pointer;
  transition: border-color 0.3s ease;
}

.scroll-indicator:hover {
  border-color: rgba(255, 255, 255, 0.8);
}

.scroll-indicator span {
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 6px;
  height: 6px;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 50%;
  animation: scroll-down 2s infinite;
}

@keyframes scroll-down {
  0% {
    top: 10px;
    opacity: 1;
  }

  50% {
    opacity: 0.5;
  }

  100% {
    top: 30px;
    opacity: 0;
  }
}

@media (max-width: 575px) {
  .page-banner__title {
    font-size: 28px;
  }

  .page-banner--full {
    min-height: 60vh;
    height: 60vh;
  }
}

.lang-toggle-checkbox {
  display: none;
}

.custom-lang-switcher {
  position: relative;
  cursor: pointer;
  width: 48px;
  height: 24px;
  border: 1px solid #ffffff;
  border-radius: 4px;
  display: flex;
  align-items: center;
  padding: 4px 6px;
}

.lang-current {
  display: flex;
  align-items: center;
  gap: 4px;
  cursor: pointer;
}

.fa-solid {
  color: #fff;
}

.lang-dropdown {
  display: flex;
  flex-direction: column;
  position: absolute;
  background: white;
  padding: 20px 0;
  list-style: none;
  margin: 0;
  top: 51px;
  left: -36px;
  width: 149px;
  box-shadow: 0px 7px 32px 0px #0000000F;
}

.lang-dropdown li {
   padding: 8px 24px;
}

.lang-dropdown li:hover {
  background: #F2F3F5;
}

.lang-dropdown li:hover .lang-name {
  border-bottom: 1px solid #C32423;
  color: #C32423 !important;
}

.lang-dropdown li a {
  display: flex;
  align-items: center;
  gap: 12px;
}

.lang-name {
  color: #454545 !important;
}

.lang-current .arrow-img {
  transition: transform 0.3s ease;
  transform: rotate(0deg);
  color: #ffffff;
  display: inline-block;
  width: 20px;
  height: 20px;
  text-align: center;
}

.lang-toggle-checkbox {
  display: none;
}

.lang-dropdown {
  display: none;
}

.lang-toggle-checkbox:checked~.lang-current .arrow-img {
  transform: rotate(180deg);
}

.lang-toggle-checkbox:checked~.lang-dropdown {
  display: flex !important;
}

.container {
  max-width: 100% !important;
  padding: unset !important;
}

.banner-inf {
  display: flex;
  justify-content: space-between;
  padding: 0 80px;
}

.banner-contact {
  display: flex;
  gap: 40px;
}

.banner-email,
.banner-phone {
  display: flex;
  gap: 12px;
  align-items: center;
  /* animation: fadeInLeft 1s ease-out forwards;
  animation-delay: 0.3s; */
}

/* .banner-phone {
  animation: fadeInRight 1s ease-out forwards;
  animation-delay: 0.3s;
} */

.icon-email,
.icon-phone {
  width: 40px;
  height: 40px;
  padding: 8px;
  border: 1px solid #ffffff;
  background: #FFFFFF1A;
  border-radius: 12px;
  display: flex;
  justify-content: center;
}

.icon-email img,
.icon-phone img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.banner-email a,
.banner-phone a {
  font-weight: 500;
  font-size: 18px;
  line-height: 130%;
  color: #ffffff;
}

.container-cf {
  max-width: 1200px;
  margin: 0 auto;
  overflow: visible;
}

.section-header.service {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
}

.wpb_wrapper {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.text-subtitle {
  font-size: 28px;
  font-weight: 700;
  line-height: 130%;
  letter-spacing: 0;
  color: #242424;
  animation: fadeInLeft 1s ease-out forwards;
}

.bg-decor {
  position: absolute;
  width: 640px;
  height: 245px;
  object-fit: cover;
  top: -30px;
  z-index: -1;
  transform: translateX(-50%);
  left: 50%;
}

.gap-12 {
  gap: 12px;
}

.gap-20 {
  gap: 20px;
}

.gap-32 {
  gap: 32px;
}

.gap-80 {
  gap: 80px;
}

.container-cf .d-flex.gap-12 {
  display: flex;
  gap: 12px;
  align-items: stretch;
  justify-content: space-between;
}

.container-cf .d-flex.gap-12>.wow {
  flex: 1;
  min-width: 0;
}

.container-cf .integrio_module_services_5 {
  width: 100%;
  height: 340px;
  display: flex;
  flex-direction: column;
}

.container-cf .services_wrapper {
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  padding: 20px;
  border-radius: unset;
}

.container-cf .services_wrapper-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 340px;
  overflow: hidden;
  z-index: -1;
  border-radius: unset;
}

.container-cf .services_front-bg {
  width: 100%;
  height: 100%;
  background-size: cover !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
  border-radius: unset;
}

.container-cf .services_wrapper-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 12px;
  /* box-shadow: 8px 8px 40px 0px #00000014; */
}

.cf-title-service {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cf-title-service-icon {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  padding: 8px;
  background: #FFFFFF1A;
  border: 1px solid #FFFFFF;
  display: flex;
  align-items: center;
}

.cf-title-service-icon img {
  width: 24px;
  height: 24px;
  object-fit: cover;
}

.container-cf .services_wrapper-image::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.5) 15.71%, rgba(0, 0, 0, 0) 100%);
  z-index: 1;
  transition: background 800ms ease-out;
}

.container-cf .integrio_module_services_5:hover .services_wrapper-image::before {
  background: #00000066;
  backdrop-filter: blur(4px)
}

.integrio_module_services_5:hover .services_front-bg {
  transform: scale(1.1) !important;
}

/* Showservices_content on hover */
.page-home .integrio_module_services_5:hover .services_content,
.page-products .integrio_module_services_5:hover .services_content,
.page-industry .integrio_module_services_5:hover .services_content {
  display: block !important;
  opacity: 1 !important;
}

/* .page-products .integrio_module_services_5:hover .services_front-bg {
  backdrop-filter: blur(4px) !important;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0) 100%);
  box-shadow: 8px 8px 40px 0px #00000014;
  animation-timing-function: ease-out;
  animation-duration: 300ms;
} */

.ml-120 {
  margin-left: 120px;
}

.mr-120 {
  margin-right: 120px;
}

.max-w-190 {
  max-width: 190px;
}

.max-w-1200 {
  max-width: 1200px !important;
}

.max-w-full {
  max-width: 100% !important;
}

.max-w-560 {
  max-width: 560px !important;
}

/* Fix overflow issue for offer-area section */
.margin-auto {
  margin-left: auto;
  margin-right: auto;
}

.bg-skill-title {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 149px;
  object-fit: cover;
}

.text-white-skill {
  font-size: 24px;
  line-height: 150%;
  letter-spacing: 0;
  text-align: center;
  color: #ffffff;
  font-weight: 700;
}

.h-149 {
  height: 149px;
}

.w-full {
  width: 100% !important;
}

.skills-grid {
  display: grid;
  grid-template-columns: repeat(3, 389.33px);
  grid-auto-rows: 172px;
  gap: 16px;
  justify-content: center;
}

.row-skill-item {
  width: 100%;
  height: 100%;
}

.skill-grid {
  display: grid;
  grid-template-columns: repeat(3, 389.33px);
  gap: 16px;
  width: fit-content;
}

.row-skill-item {
  width: 389.33px;
}

.industry-content {
  display: flex;
  gap: 16px;
  flex-direction: column;
}

.industry-desc {
  font-weight: 700;
  font-size: 28px;
  line-height: 150%;
  letter-spacing: 0;
  color: #242424;
  /* animation: fadeInUp 1s ease-out forwards; */
}

.industry-layout {
  display: flex;
  gap: 24px;
}

.industry-image-container {
  flex: 0 0 45%;
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  padding: 16px;
  animation: fadeInLeft 1s ease-out forwards;
  animation-delay: 0.3s;
}

.industry-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.industry-image.active {
  opacity: 1;
}

.industry-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 6px;
}

.industry-view-detail {
  position: absolute;
  bottom: 16px;
  left: 16px;
  background: #0000001F;
  border: 1px solid #FFFFFF;
  backdrop-filter: blur(16px);
  color: #ffffff;
  padding: 8px 12px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0;
  line-height: 150%;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
}

.industry-view-detail:hover {
  background: rgba(0, 0, 0, 0.95);
  color: #fff;
  transform: translateX(5px);
}

.industry-view-detail i {
  font-size: 14px;
}

.industry-list-container {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.industry-item {
  display: flex;
  gap: 20px;
  border-left: 3px solid transparent;
  cursor: pointer;
  transition: all 0.3s ease;
  border-left-color: #E9E9E9;
  ;
}

.industry-item:hover,
.industry-item.active {
  background: #f8f9fa;
  border-left-color: #d32f2f;
}

.industry-sub-item {
  padding: 12px 0 12px 20px;
  display: flex;
  gap: 12px;
  width: 100%;
}

.industry-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.industry-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: relative;
  z-index: 2;
  color: #242424;
  transition: filter 0.3s ease;
}

.industry-item:hover .industry-icon img,
.industry-item.active .industry-icon img {
  filter: brightness(0) saturate(100%) invert(22%) sepia(71%) saturate(2600%) hue-rotate(-5deg) brightness(90%) contrast(90%);
}

.industry-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.industry-title {
  font-size: 16px;
  font-weight: 700;
  color: #242424;
  line-height: 150%;
  letter-spacing: 0;
}

.industry-description {
  font-size: 14px;
  color: #454545;
  line-height: 1.5;
  letter-spacing: 0;
  font-weight: 400;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 556px;
}

.industry-icon.active::before {
  color: #C32423;
  position: absolute;
  opacity: 1;
  z-index: 1;
  content: "";
}

.section-header {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.desc-content {
  font-weight: 700;
  font-size: 28px;
  line-height: 150%;
  letter-spacing: 0;
  color: #242424;
  position: relative;
  z-index: 5;
  /* animation: fadeInUp 1.6s cubic-bezier(0.68, -0.55, 0.27, 1.55); */
}

/* Gallery Section Styles */
.gallery-layout {
  display: flex;
  gap: 24px;
  align-items: center;
}

.gallery-main-image {
  flex: 0 0 65%;
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  height: 450px;
}

.gallery-image-link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.5s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery-image-link.active {
  opacity: 1;
}

.gallery-main-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 4px;
}

.gallery-thumbnail-grid {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(2, 176px);
  grid-auto-rows: 100.5px;
  gap: 15px;
  overflow: hidden;
  height: 450px;
}

/* Custom scrollbar for thumbnail grid */
.gallery-thumbnail-grid::-webkit-scrollbar {
  width: 6px;
}

.gallery-thumbnail-grid::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 10px;
}

.gallery-thumbnail-grid::-webkit-scrollbar-thumb {
  background: #888;
  border-radius: 10px;
}

.gallery-thumbnail-grid::-webkit-scrollbar-thumb:hover {
  background: #555;
}

.gallery-thumbnail-item {
  position: relative;
  cursor: pointer;
  border-radius: 4px;
  overflow: hidden;
  aspect-ratio: 4/3;
  width: 176px;
  height: 100.5px;
}

.gallery-thumbnail-item:hover {
  transform: scale(1.05);
  border-color: #C32423;
  border-radius: 4px;
}

.gallery-thumbnail-item.active {
  border-color: #C32423;
  box-shadow: 0 4px 12px rgba(195, 36, 35, 0.3);
}

.gallery-thumbnail-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.bg-gallery {
  position: absolute !important;
  z-index: -1;
  top: 0;
  left: 0;
  width: 100%;
  height: 514px;
}

.sc_success_items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.sc_service_items {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.sc_service_items .sc_service_item {
  flex: 0 1 calc(25% - 9px);
  min-width: 291px;
}

.sc_success_item {
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  border: 1px solid #DEDFE0;
  background: #FFFFFF;
}

.sc_service_item {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 12px;
  gap: 24px;
  background: #FFFFFF;
  box-shadow: 8px 8px 40px 0px #00000014;
  border-radius: 8px;
  overflow: hidden;
}

.sc_success_item:hover {
  box-shadow: 8px 8px 40px 0px #00000014;
}

.view__detail {
  display: flex;
  gap: 8px;
  align-items: center;
  font-size: 15px;
  font-weight: 400;
  line-height: 130%;
  letter-spacing: 0.04em;
  color: #454545;
  min-height: 31px;
}

.sc_success_item:hover .view__detail {
  border-bottom: 1px solid #DEDFE0;
  padding-bottom: 6px;
  width: fit-content;
}

.sc_success_item .integrio_module_services_5 {
  width: 100%;
  height: 200px;
}

.sc_success_item .integrio_module_services_5 .services_wrapper {
  min-height: 200px;
  height: 200px;
  border-radius: 4px !important;
  padding: 0;
}

.services_wrapper-content .services_title {
  font-weight: 700;
  font-size: 16px;
  line-height: 150%;
  letter-spacing: 0;
  color: #242424;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

.services_wrapper-content .services_content {
  line-height: 150%;
  font-size: 15px;
  letter-spacing: 0;
  font-weight: 400;
  color: #8D8D8F;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}

.cr-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.flex-column {
  flex-direction: column;
}

.testimonial__arry-btn {
  display: flex;
  gap: 12px;
}

.service__title {
  display: flex;
  gap: 8px;
  align-items: center;
}

.mb-12 {
  margin-bottom: 12px;
}

.case__icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  padding: 4px;
  background: #F2F3F5;
}

.service__title p {
  font-weight: 700;
  font-size: 18px;
  line-height: 150%;
  letter-spacing: 0px;
  color: #242424;
}

.service__desc {
  font-weight: 400;
  font-size: 15px;
  line-height: 150%;
  letter-spacing: 0;
  color: #454545;
}

.faq__content {
  display: flex;
  border-radius: 12px;
  gap: 40px;
  background: #FAFAFA;
  border: 1px solid #DEDFE0;
  align-items: center;
}

.faq-img {
  width: 580px;
  border-radius: 12px;
  min-height: 304px;
  /* animation: fadeInLeft 1s ease-out forwards; */
}

.ar-list-items {
  display: flex;
  gap: 24px;
  max-width: 984px;
}

.ar-item {
  width: 120px;
  height: 130px;
  object-fit: cover;
}

.align-items-center {
  align-items: center;
}

.faq-wrapper .faq-content {
  display: flex;
  flex-direction: column;
  padding: 20px 0;
  gap: 16px;
  width: 580px;
  min-height: 304px;
  justify-content: center;
  /* animation: fadeInRight 1s ease-out forwards; */
}

.swiper-slide .square {
  width: 10px;
  height: 10px;
  border-radius: 2px;
  background: #C32423;
}

.faq-content .swiper-slide {
  display: flex;
  gap: 16px;
  align-items: center;
}

.faq-content .swiper-slide p {
  font-weight: 500;
  font-size: 16px;
  line-height: 150%;
  letter-spacing: 0;
  color: #242424;
}

.dotted-line {
  display: inline-block;
  position: relative;
  width: 10px;
  height: 33px;
  border-left: 2px dashed #C32423;
  margin-left: 4px;
}

.dotted-line::before {
  content: '';
  position: absolute;
  top: -10px;
  left: -3px;
  width: 5px;
  height: 5px;
  background-color: #C32423;
  border-radius: 50%;
}

.process__items {
  position: relative;
}

.process__items .img-circle {
  position: relative;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  background: linear-gradient(135deg, #D61349 0%, #F17556 100%);
  box-shadow: 0 8px 30px rgba(209, 19, 73, 0.25);
  margin-bottom: 12px;
  border: 1px solid #C32423;
}

.process__items .img-circle::before {
  content: "";
  position: absolute;
  width: 68px;
  height: 68px;
  border-radius: 50%;
  border: 1px solid;
  border-color: #D61349 #F17556 transparent transparent;
  transform: rotate(-45deg);
  z-index: -1;
}

.process__items .img-circle::after {
  content: "";
  position: absolute;
  width: 68px;
  height: 68px;
  border-radius: 50%;
  border: 1px solid;
  border-color: transparent transparent #F17556 #D61349;
  transform: rotate(-45deg);
  z-index: -1;
}

.process__items .img-circle img {
  width: 28px;
  height: 28px;
  object-fit: cover;
  position: relative;
  z-index: 2;
  filter: brightness(0) saturate(100%) invert(100%);
}

.process__items .xb-item--number {
  position: absolute;
  right: -25%;
  top: 25%;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 700;
  z-index: 5;
  color: #C32423;
}

.process__items .xb-item--number::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #EBEBEB;
  z-index: -1;
  border: 2px solid #fff;
}


.method-area .d-flex.gap-32 {
    display: flex;
    align-items: stretch;
}

.method-img {
  border-radius: 4px;
  display: flex;
  flex-shrink: 0;
  align-self: stretch;
  transition: height 0.1s ease;
  flex: 1;
  overflow: hidden;
  /* animation: fadeInLeft 1s ease-out forwards;
  animation-delay: 0.3s; */
}

.method-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.method-img img:hover {
  transform: scale(1.1);
}

.method-content {
  flex: 1;
  /* animation: fadeInRight 1s ease-out forwards;
  animation-delay: 0.3s; */
}

.font-size-14 {
  font-weight: 400;
  font-size: 14px;
  line-height: 150%;
  letter-spacing: 0;
  color: #454545;
}

.padding-unset {
  padding: unset !important;
}

.margin-unset {
  margin: unset !important;
}

.height-auto {
  height: auto !important;
}

.border-radius-4 {
  border-radius: 4px;
}

.ob-fit-cover {
  object-fit: cover;
}

.width-fit-content {
  width: fit-content;
}

.justify-content-space-between {
  justify-content: space-between;
}

.justify-content-center {
  justify-content: center;
}

.bg-292929 {
  background: #292929;
}

.big-square {
  width: 18px;
  height: 18px;
  background: #C32423;
}

.min-width-392 {
  min-width: 392px !important;
}

.min-height-302 {
  min-height: 302px !important;
}

.min-height-380 {
  min-height: 380px !important;
}

.w-368px {
  width: 368px !important;
}

.h-160 {
  height: 160px !important;
}

.gap-unset {
  gap: unset !important;
}

.font-size-18 {
  font-weight: 700 !important;
  font-size: 18px !important;
  line-height: 150% !important;
  letter-spacing: 0 !important;
  color: #1D2020 !important;
}

.color-6D727A {
  color: #6D727A !important;
}

.color-8D8D8F {
  color: #8D8D8F !important;
}

/* Feature Grid Layout */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  justify-items: stretch;
}

.feature-grid:has(.feature__item:nth-child(4):last-child) {
  grid-template-columns: repeat(4, 1fr);
}


.feature-grid:has(.feature__item:nth-child(5):last-child) {
  grid-template-columns: repeat(6, 1fr);
}

.feature-grid:has(.feature__item:nth-child(5):last-child) .feature__item:nth-child(-n+3) {
  grid-column: span 2;
}

.feature-grid:has(.feature__item:nth-child(5):last-child) .feature__item:nth-child(4) {
  grid-column: 2 / 4;
}

.feature-grid:has(.feature__item:nth-child(5):last-child) .feature__item:nth-child(5) {
  grid-column: 4 / 6;
}

.feature__item {
  padding: 16px 16px 16px 0;
  gap: 8px;
  display: flex;
  border: 1px solid #DEDFE0;
  border-radius: 8px;
  flex-direction: column;
  height: 100%;
}

.feature__content {
  display: flex;
  gap: 10px;
  border-left: 2px solid #C32423;
  padding-left: 16px;
  align-items: center;
}

.feature__content img {
  width: 24px;
  height: 24px;
  object-fit: cover;
}

.align-items-stretch {
  align-items: stretch !important;
}

.feature__item .services_content {
  padding-left: 16px;
}

.learn__more__container {
  padding: 0 120px;
  background: linear-gradient(284.59deg, rgba(104, 24, 24, 0.2) 4.84%, #5B1616 180.73%);
}

.learn__more__content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.max-w-461 {
  max-width: 461px !important;
}

.text-left {
  text-align: left;
}

.why__container {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 24px;
}

.field__item--wrap {
  flex: 1;
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.field__item--wrap .icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  border: 4px solid #FFFFFF;
  box-shadow: 0px 3px 16px 0px #0000000D;
  box-shadow: 0px -4px 16px 0px #0000000D;
}

.field__item--wrap .icon img {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  padding: 8px;
  background: linear-gradient(180deg, #7D0000 0%, #E8E8E8 109.82%);
  box-shadow: 1px 1px 4px 0px #00000014 inset;
  box-shadow: 1px 1px 4px 0px #00000014 inset;
  object-fit: cover;
}

.field__content {
  display: flex;
  gap: 16px;
  align-items: center;
}

.bg__unset {
  background: unset !important;
}

.item-info-content {
  display: flex;
  align-items: center;
  border-bottom: 1px solid #E0DEDE;
  padding: 12px 12px 16px 12px;
  gap: 8px;
}

/* Fixed menu cho trang About */
body.page-about .header-area {
  position: fixed !important;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background-color: var(--white);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

body.page-about .header-area .logo .normal-logo {
  display: none;
}

body.page-about .header-area .logo .sticky-logo {
  display: block;
}

/* Apply style menu-fixed for page About */
body.page-about .header-area .header__main .main-menu ul li a,
body.page-about .header-area .header__main .main-menu ul li a span,
body.page-about .header-area.menu-fixed .header__main .main-menu ul li a,
body.page-about .header-area.menu-fixed .header__main .main-menu ul li a span {
  color: #454545 !important;
}

body.page-about .header-area .custom-lang-switcher,
body.page-about .header-area.menu-fixed .custom-lang-switcher {
  border: 1px solid #DEDFE0 !important;
}

.font-size-16 {
  font-size: 16px;
  line-height: 150%;
  letter-spacing: 0;
  color: #454545;
  font-weight: 400;
}

.flex-1 {
  flex: 1;
}

.pos-relative {
  position: relative !important;
}

.vission_mission_item {
  display: flex;
}

.mission__left,
.mission_right {
  display: flex;
  flex-direction: column;
  position: relative;
  flex: 1;
  align-items: center;
  animation: fadeInLeft 1s ease-out forwards;
}

.mission_right {
  animation: fadeInRight 1s ease-out forwards;
}

.mission__left img,
.mission_right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  z-index: 0;
  top: 0;
  left: 0;
}

.mission__left .title,
.mission_right .title {
  border: 1px solid #FFFFFFB8;
  background: #FFFFFF1A;
  padding: 12px 16px;
  border-radius: 12px;
  color: #ffffff;
  font-weight: 700;
  font-size: 20px;
  line-height: 150%;
  letter-spacing: 0;
  width: fit-content;
  flex-shrink: 0;
  margin-top: 64px;
  position: relative;
  z-index: 5;
  animation: fadeInUp 1s ease-out forwards;
}

.mission__left .description,
.mission_right .description {
  font-weight: 500;
  font-size: 16px;
  line-height: 150%;
  letter-spacing: 0;
  color: #ffffff;
  margin: 40px 40px 64px 40px;
  flex-grow: 1;
  position: relative;
  z-index: 5;
  animation: fadeInUp 1s ease-out forwards;
  animation-delay: 0.3s;
}

.team-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.team--full {
  width: 100%;
}

.team-grid .team:not(.team--full) {
  position: relative;
  overflow: hidden;
}

.team-grid .team.team--full .team-wrapper {
  max-width: 709px;
  margin: 0 auto;
}

.team-grid .team.team--full .team-wrapper .pos-relative {
  display: flex;
  gap: 24px;
  align-items: center;
}

.team-grid .team:not(.team--full) .team-image {
  position: relative;
  z-index: -1;
}

.team-grid .team.team--full .team-image {
  width: 265px;
  height: 265px;
  object-fit: cover;
}

.team-grid .team.team--full .team-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 63px;
}

.team-grid .team:not(.team--full) .team-image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.team-grid .team:not(.team--full) .team-text {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  z-index: 2;
}

.team-grid .team:not(.team--full) {
  position: relative;
  flex: 1 1 190px;
  min-width: 190px;
}

.team-grid .team:not(.team--full) .member__inf {
  padding: 24px 12px 0 12px;
}

.team-grid .team:not(.team--full) .member__inf .name {
  font-weight: 800;
  font-size: 20px;
  line-height: 150%;
  letter-spacing: 0;
  color: #ffffff;
  width: fit-content;
}

.team-grid .team.team--full .member__inf .name {
  font-weight: 700;
  font-size: 24px;
  line-height: 130%;
  letter-spacing: 0;
  color: #242424;
  width: fit-content;
}

.team-grid .team:not(.team--full) .member__inf .position {
  font-weight: 500;
  font-size: 16px;
  line-height: 150%;
  letter-spacing: 0;
  color: #ffffff;
}

.team-grid .team.team--full .member__inf .position {
  font-weight: 500;
  font-size: 18px;
  line-height: 150%;
  letter-spacing: 0;
  color: #454545;
}

.team-grid .team:not(.team--full)::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.8) 41.45%, #000 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 1;
}

.team-grid .team:not(.team--full):hover::before {
  opacity: 1;
}

.team-grid .team:not(.team--full) .member__desc {
  display: none;
  color: #ffffff;
  font-weight: 400;
  font-size: 13px;
  line-height: 150%;
  letter-spacing: 0;
  z-index: 2;
  transition: opacity 0.3s ease;
  opacity: 0;
  padding: 0 8px 8px 8px;
  transform: translateY(8px);
  visibility: hidden;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}

.team-grid .team.team--full .member__desc {
  color: #454545;
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  letter-spacing: 0;
  transition: opacity 0.3s ease;
}

.team-grid .team:not(.team--full):hover .member__desc {
  display: block;
  opacity: 1;
  transform: translateY(0);
  visibility: visible;
}

.font-size-50 {
  font-weight: 800;
  font-size: 50px;
  line-height: 130%;
  color: #ffffff;
  letter-spacing: 0;
}

.white-color {
  color: #ffffff !important;
}

.fw-500 {
  font-weight: 500 !important;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  justify-items: center;
}

.service-item {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  gap: 16px;
}

.service-item__image {
  width: 100%;
  overflow: hidden;
  border-radius: 8px;
  margin-bottom: 12px;
}

.service-item__image img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.service-item__image a {
  display: block;
}

.service-item__image:hover img {
  transform: scale(1.05);
}

.service-item__content {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.service-item__title {
  font-size: 16px;
  font-weight: 600;
  line-height: 130%;
  letter-spacing: 0;
  margin-bottom: 12px;
  display: block;
  background: #F2F3F5;
  border-left: 2px solid #C32423;
  backdrop-filter: blur(6px);
  padding: 6px 12px;
  color: #242424;
  width: fit-content;
}

.service-item__desc {
  font-size: 16px;
  line-height: 150%;
  color: #242424;
  margin: 0;
  letter-spacing: 0;
}

.page-products .integrio_module_services_5:hover .services_front-bg {
  transform: scale(1.05);
}

.bg-ss {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 0;
  object-fit: cover;
  left: 0;
  bottom: 0;
  border-radius: 12px;
}

.frm-search .form-control {
  border-radius: 12px;
  padding: 16px 0 16px 89px;
  background: #0000001A;
  backdrop-filter: blur(12px);
  border: 1px solid #FFFFFF;
  color: #ffffff;
  box-shadow: unset;
}

.frm-search .form-control::placeholder {
  color: #FFFFFF;
  opacity: 0.7;
}

.frm-search .form-control::-webkit-input-placeholder {
  color: #FFFFFF;
  opacity: 0.7;
}

.frm-search .form-control::-moz-placeholder {
  color: #FFFFFF;
  opacity: 0.7;
}

.frm-search .form-control:-ms-input-placeholder {
  color: #FFFFFF;
  opacity: 0.7;
}

.frm-search .form-control:-moz-placeholder {
  color: #FFFFFF;
  opacity: 0.7;
}

.frm-search button[type="submit"] {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  filter: brightness(0) invert(1);
  border: none;
  padding: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.frm-search button[type="submit"]::after {
  content: '';
  position: absolute;
  left: calc(100% + 24px);
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 24px;
  background: #FFFFFF66;
}

.frm-search .form-control::-webkit-search-cancel-button {
  filter: brightness(0) invert(1);
  cursor: pointer;
  padding-right: 16px;
}

.border-none {
  border: unset !important;
}

.frm-search .form-control:-webkit-autofill,
.frm-search .form-control:-webkit-autofill:hover,
.frm-search .form-control:-webkit-autofill:focus {
  -webkit-text-fill-color: #ffffff;
  -webkit-box-shadow: 0 0 0px 1000px rgba(0, 0, 0, 0.1) inset;
  box-shadow: 0 0 0px 1000px rgba(0, 0, 0, 0.1) inset;
  border: 1px solid #FFFFFF;
  caret-color: #ffffff;
  transition: background-color 5000s ease-in-out 0s;
}

/* Search Icon & Arrow Icon - Filter for color change */
.header-area .search-link img {
  filter: brightness(0) invert(1);
  transition: filter 0.3s ease;
}

.header-area.menu-fixed .search-link img {
  filter: unset;
}


/* From Uiverse.io by ZacharyCrespin */
@keyframes square-animation {
  0% {
    left: 0;
    top: 0;
  }

  10.5% {
    left: 0;
    top: 0;
  }

  12.5% {
    left: 32px;
    top: 0;
  }

  23% {
    left: 32px;
    top: 0;
  }

  25% {
    left: 64px;
    top: 0;
  }

  35.5% {
    left: 64px;
    top: 0;
  }

  37.5% {
    left: 64px;
    top: 32px;
  }

  48% {
    left: 64px;
    top: 32px;
  }

  50% {
    left: 32px;
    top: 32px;
  }

  60.5% {
    left: 32px;
    top: 32px;
  }

  62.5% {
    left: 32px;
    top: 64px;
  }

  73% {
    left: 32px;
    top: 64px;
  }

  75% {
    left: 0;
    top: 64px;
  }

  85.5% {
    left: 0;
    top: 64px;
  }

  87.5% {
    left: 0;
    top: 32px;
  }

  98% {
    left: 0;
    top: 32px;
  }

  100% {
    left: 0;
    top: 0;
  }
}

.loader {
  position: relative;
  width: 96px;
  height: 96px;
  transform: rotate(45deg);
}

.transform-unset {
  transform: unset;
}

.loader-square {
  position: absolute;
  top: 0;
  left: 0;
  width: 28px;
  height: 28px;
  margin: 2px;
  border-radius: 0px;
  background: #e7a9a9;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  animation: square-animation 10s ease-in-out infinite both;
}

.loader-square:nth-of-type(0) {
  animation-delay: 0s;
}

.loader-square:nth-of-type(1) {
  animation-delay: -1.4285714286s;
}

.loader-square:nth-of-type(2) {
  animation-delay: -2.8571428571s;
}

.loader-square:nth-of-type(3) {
  animation-delay: -4.2857142857s;
}

.loader-square:nth-of-type(4) {
  animation-delay: -5.7142857143s;
}

.loader-square:nth-of-type(5) {
  animation-delay: -7.1428571429s;
}

.loader-square:nth-of-type(6) {
  animation-delay: -8.5714285714s;
}

.loader-square:nth-of-type(7) {
  animation-delay: -10s;
}

.ls-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  object-fit: cover;
  background: #00000026;
}

.max-w-640 {
  max-width: 640px;
}

/* Landing Search Results */
.landing-search-results .search-results-header {
  text-align: center;
}

.landing-search-results .search-results-header h3 {
  font-size: 24px;
  font-weight: 600;
  line-height: 150%;
  letter-spacing: 0;
  color: #8F1A1A;
}

.search-results-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.search-result-item {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 8px 8px 40px 0px #0000000F;
  border: 1px solid #DEDFE0;
}

.search-result-item:hover {
  transform: translateY(-5px);
  box-shadow: 8px 8px 24px 0px #0000001F;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.search-result-link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.search-result-image {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.search-result-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.search-result-item:hover .search-result-image img {
  transform: scale(1.05);
}

.search-result-type {
  position: absolute;
  top: 12px;
  left: 12px;
  color: #fff;
  padding: 4px 12px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  line-height: 150%;
  letter-spacing: 0;
  background: #0000008F;
  border: 1px solid #FFFFFF;
  backdrop-filter: blur(8px);
}

.search-result-content {
  padding: 20px;
}

.search-result-title {
  font-size: 16px;
  font-weight: 600;
  color: #242424;
  margin-bottom: 10px;
  line-height: 150%;
  letter-spacing: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.search-result-excerpt {
  font-size: 14px;
  color: #8D8D8F;
  margin-bottom: 16px;
  line-height: 150%;
  letter-spacing: 0;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.line-height {
  width: 100%;
  border: 1px solid #CACBCC;
  margin-bottom: 16px;
}

.search-result-meta {
  display: flex;
  gap: 16px;
  font-size: 13px;
  color: var(--span);
}

.search-result-meta i {
  margin-right: 5px;
  color: var(--primary-color);
}

.search-no-results {
  padding: 0 132px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 30px;
  align-items: center;
  justify-content: center;
}

.search-no-results p {
  color: var(--paragraph);
}

/* Landing Search Loading Spinner */
.landing-search-loading .spinner-border {
  width: 3rem;
  height: 3rem;
  border-width: 0.3em;
  color: var(--primary-color);
}

.search-pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}

.pagination-btn {
  width: 40px;
  height: 40px;
  border: 1px solid #ddd;
  background: #fff;
  border-radius: 4px;
  cursor: pointer;
  font-size: 14px;
  transition: all 0.3s ease;
}

.pagination-btn:hover,
.pagination-btn.active {
  background: var(--primary-color);
  color: #fff;
  border-color: var(--primary-color);
}

/* From Uiverse.io by cosnametv */
.loader {
  --color: #a5a5b0;
  --size: 70px;
  width: var(--size);
  height: var(--size);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 5px;
}

.loader span {
  width: 100%;
  height: 100%;
  background-color: var(--color);
  animation: keyframes-blink 0.6s alternate infinite linear;
}

.loader span:nth-child(1) {
  animation-delay: 0ms;
}

.loader span:nth-child(2) {
  animation-delay: 200ms;
}

.loader span:nth-child(3) {
  animation-delay: 300ms;
}

.loader span:nth-child(4) {
  animation-delay: 400ms;
}

.loader span:nth-child(5) {
  animation-delay: 500ms;
}

.loader span:nth-child(6) {
  animation-delay: 600ms;
}

@keyframes keyframes-blink {
  0% {
    opacity: 0.3;
    transform: scale(0.5) rotate(5deg);
  }

  50% {
    opacity: 1;
    transform: scale(1);
  }
}

.form-row {
  display: flex;
  gap: 12px; 
}

.form-col {
  flex: 1; 
}


.form-row > p {
  width: 100%;
  display: flex;
  flex-direction: column;
}

.wpcf7 label br {
  display: none !important;
}

.d-content {
  display: contents;
}

/* From Uiverse.io by AqFox */ 
.spinner {
 width: 50px;
 height: 50px;
 animation: spinner-y0fdc1 2s infinite ease;
 transform-style: preserve-3d;
}

.spinner > div {
 background-color: #C3242333;
 height: 100%;
 position: absolute;
 width: 100%;
 border: 2px solid #C32423;
}

.spinner div:nth-of-type(1) {
 transform: translateZ(-22px) rotateY(180deg);
}

.spinner div:nth-of-type(2) {
 transform: rotateY(-270deg) translateX(50%);
 transform-origin: top right;
}

.spinner div:nth-of-type(3) {
 transform: rotateY(270deg) translateX(-50%);
 transform-origin: center left;
}

.spinner div:nth-of-type(4) {
 transform: rotateX(90deg) translateY(-50%);
 transform-origin: top center;
}

.spinner div:nth-of-type(5) {
 transform: rotateX(-90deg) translateY(50%);
 transform-origin: bottom center;
}

.spinner div:nth-of-type(6) {
 transform: translateZ(22px);
}

@keyframes spinner-y0fdc1 {
 0% {
  transform: rotate(45deg) rotateX(-25deg) rotateY(25deg);
 }

 50% {
  transform: rotate(45deg) rotateX(-385deg) rotateY(25deg);
 }

 100% {
  transform: rotate(45deg) rotateX(-385deg) rotateY(385deg);
 }
}

.round-12 .ct-image {
  width: 560px;
  height: 100%;
  object-fit: cover;
}