/* START: Default CSS */
@font-face {
  font-family: "Inter Tight", sans-serif;
  src: url('../fonts/Inter_Tight/InterTight-Light.ttf') format('truetype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Inter Tight", sans-serif;
  src: url('../fonts/Inter_Tight/InterTight-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Inter Tight", sans-serif;
  src: url('../fonts/Inter_Tight/InterTight-Medium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Inter Tight", sans-serif;
  src: url('../fonts/Inter_Tight/InterTight-SemiBold.ttf') format('truetype');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Inter Tight", sans-serif;
  src: url('../fonts/Inter_Tight/InterTight-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  /**
  @Font-Family Declaration
  */
  --tj-ff-body: "Inter Tight", sans-serif;
  --tj-ff-heading: "Inter Tight", sans-serif;
  --tj-ff-fontawesome: "Font Awesome 6 Pro";
  /**
  @Font-weight Declaration
  */
  --tj-fw-normal: normal;
  --tj-fw-thin: 100;
  --tj-fw-elight: 200;
  --tj-fw-light: 300;
  --tj-fw-regular: 400;
  --tj-fw-medium: 500;
  --tj-fw-sbold: 600;
  --tj-fw-bold: 700;
  --tj-fw-ebold: 800;
  --tj-fw-black: 900;
  /**
  @Font-Size Declaration
  */
  --tj-fs-body: 16px;
  --tj-fs-p: 16px;
  --tj-fs-h1: 72px;
  --tj-fs-h2: 48px;
  --tj-fs-h3: 32px;
  --tj-fs-h4: 24px;
  --tj-fs-h5: 20px;
  --tj-fs-h6: 18px;
  /**
  @Color Declaration
  */
  --tj-color-common-white: #fff;
  --tj-color-common-white-2: #a9b0b8;
  --tj-color-common-black: #000000;
  --tj-color-common-black-2: #676e7a;
  --tj-color-common-black-3: #969ca5;
  --tj-color-heading-primary: #0e1628;
  --tj-color-text-body: #364052;
  --tj-color-text-body-2: #7e8590;
  --tj-color-theme-primary: #0061FF;
  --tj-color-theme-secondary: #60EFFF;
  --tj-color-theme-dark: #0b1741;
  --tj-color-theme-bg: #e1e8f0;
  --tj-color-theme-bg-2: #dfecfd;
  --tj-color-border-1: #27354d;
  --tj-color-border-2: #ced7e0;
  --tj-color-border-3: #d7d8db;
  --tj-color-red-1: #ff0000;
}

* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

body,
html {
  position: relative;
}

body {
  font-family: var(--tj-ff-body);
  font-size: var(--tj-fs-body);
  font-weight: normal;
  color: var(--tj-color-text-body);
  background-color: #fff;
  line-height: 1.6;
}
body main {
  position: relative;
  z-index: 2;
}

a {
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--tj-ff-heading);
  color: var(--tj-color-heading-primary);
  margin-top: 0px;
  font-weight: var(--tj-fw-sbold);
  line-height: 1.2;
  -webkit-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
}

h1 {
  font-size: var(--tj-fs-h1);
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  h1 {
    font-size: 65px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  h1 {
    font-size: 50px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  h1 {
    font-size: 45px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  h1 {
    font-size: 40px;
  }
}
@media (max-width: 575px) {
  h1 {
    font-size: 35px;
  }
}

h2 {
  font-size: var(--tj-fs-h2);
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  h2 {
    font-size: 40px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  h2 {
    font-size: 35px;
  }
}
@media (max-width: 575px) {
  h2 {
    font-size: 30px;
  }
}

h3 {
  font-size: var(--tj-fs-h3);
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px) {
  h3 {
    font-size: 28px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  h3 {
    font-size: 24px;
  }
}
@media (max-width: 575px) {
  h3 {
    font-size: 22px;
  }
}

h4 {
  font-size: var(--tj-fs-h4);
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  h4 {
    font-size: 22px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  h4 {
    font-size: 20px;
  }
}

h5 {
  font-size: var(--tj-fs-h5);
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  h5 {
    font-size: 17px;
  }
}

h6 {
  font-size: var(--tj-fs-h6);
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  h6 {
    font-size: 16px;
  }
}

ul {
  margin: 0px;
  padding: 0px;
}

a,
button,
span,
p,
input,
textarea,
li,
img,
svg path,
*::after,
*::before,
h1,
h2,
h3,
h4,
h5,
h6 {
  -webkit-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
}

a:focus {
  text-decoration: none;
  outline: none;
}

a:focus,
a:hover {
  color: inherit;
  text-decoration: none;
}

a,
button {
  color: inherit;
  outline: none;
  border: none;
  background: transparent;
}

button:hover {
  cursor: pointer;
}

button:focus,
button:focus:not(:focus-visible) {
  outline: 0;
  -webkit-box-shadow: 0 0 0;
  box-shadow: 0 0 0;
}

input:not([type=radio]):not([type=checkbox]),
textarea {
  outline: none;
  background-color: var(--tj-color-common-white);
  height: auto;
  width: 100%;
  font-size: var(--tj-fs-body);
  border: 1px solid var(--tj-color-common-white);
  color: var(--tj-color-common-black);
  padding: 10px 15px;
}

/**
Common Classes CSS
*/
.dark-bg {
  background-color: var(--tj-color-theme-dark);
}

.section-space {
  padding: 80px 0;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .section-space {
    padding: 60px 0;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .section-space {
    padding: 60px 0;
  }
}

.section-bottom-space {
  padding-bottom: 80px;
  background-color: #fff;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .section-bottom-space {
    padding-bottom: 60px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .section-bottom-space {
    padding-bottom: 60px;
  }
}

img {
  max-width: 100%;
}

.fix {
  overflow: hidden;
}

.rg-30 {
  row-gap: 30px;
}

.hover\:shine {
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.hover\:shine::before {
  position: absolute;
  content: "";
  top: 0;
  inset-inline-start: -140%;
  bottom: 0;
  width: 100%;
  background-image: -webkit-gradient(linear, left top, right top, color-stop(50%, transparent), to(rgba(255, 255, 255, 0.3)));
  background-image: linear-gradient(to right, transparent 50%, rgba(255, 255, 255, 0.3) 100%);
  -webkit-transform: skewX(-25deg);
  -ms-transform: skewX(-25deg);
  transform: skewX(-25deg);
  -webkit-transition: 0.5s ease;
  transition: 0.5s ease;
  z-index: 1;
}
.hover\:shine:is(:hover, :focus-within)::before {
  -webkit-animation: shine 1s ease forwards;
  animation: shine 1s ease forwards;
}

.wow {
  opacity: 0;
}

/* START: Button CSS */
.tj-primary-btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-size: 15px;
  line-height: 1;
  font-weight: var(--tj-fw-bold);
  color: var(--tj-color-common-white);
  background-color: var(--tj-color-theme-dark);
  padding: 5.5px;
  border-radius: 50px;
  position: relative;
  z-index: 1;
}
.tj-primary-btn .btn_inner {
  position: relative;
  z-index: 1;
  padding: 15px 20px 15px 55px;
  width: 100%;
  text-align: center;
}
.tj-primary-btn .btn_inner::before {
  content: "";
  position: absolute;
  z-index: 0;
  top: 0;
  inset-inline-start: 0;
  width: 45px;
  height: 100%;
  background-color: var(--tj-color-theme-primary);
  border-radius: 50px;
  -webkit-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
}
.tj-primary-btn .btn_inner .btn_icon {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: absolute;
  inset-inline-start: 0;
  top: 0;
  min-width: 45px;
  height: 100%;
  z-index: 2;
  font-size: 1.6em;
  line-height: 1;
  color: var(--tj-color-common-white);
}
.tj-primary-btn .btn_inner .btn_icon > span {
  overflow: hidden;
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}
.tj-primary-btn .btn_inner .btn_icon > span i:first-child, .tj-primary-btn .btn_inner .btn_icon > span i:last-child {
  -webkit-transition: -webkit-transform 0.4s ease-in-out 0s;
  transition: -webkit-transform 0.4s ease-in-out 0s;
  transition: transform 0.4s ease-in-out 0s;
  transition: transform 0.4s ease-in-out 0s, -webkit-transform 0.4s ease-in-out 0s;
}
.tj-primary-btn .btn_inner .btn_icon > span i:last-child {
  position: absolute;
  -webkit-transform: translateX(-150%);
  -ms-transform: translateX(-150%);
  transform: translateX(-150%);
}
.tj-primary-btn .btn_inner .btn_text {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  overflow: hidden;
  color: var(--tj-color-common-white);
  text-shadow: 0 23px 0 currentColor;
  white-space: nowrap;
}
.tj-primary-btn .btn_inner .btn_text > span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.tj-primary-btn:hover .btn_inner::before {
  width: 100%;
}
.tj-primary-btn:hover .btn_inner .btn_icon i:first-child {
  -webkit-transform: translateX(150%);
  -ms-transform: translateX(150%);
  transform: translateX(150%);
}
.tj-primary-btn:hover .btn_inner .btn_icon i:last-child {
  -webkit-transform: translateX(0);
  -ms-transform: translateX(0);
  transform: translateX(0);
}
.tj-primary-btn:hover .btn_inner .btn_text {
  color: var(--tj-color-common-white);
}
.tj-primary-btn:hover .btn_inner .btn_text > span {
  -webkit-transform: translateY(-24px);
  -ms-transform: translateY(-24px);
  transform: translateY(-24px);
}
@media (max-width: 575px) {
  .tj-primary-btn {
    padding: 4.5px;
  }
  .tj-primary-btn .btn_inner {
    padding: 12px 18px 12px 50px;
  }
  .tj-primary-btn .btn_inner::before {
    width: 40px;
  }
  .tj-primary-btn .btn_inner .btn_icon {
    min-width: 40px;
    font-size: 1.4em;
  }
}

.text-btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 6px;
  font-size: 15px;
  line-height: 1;
  font-weight: var(--tj-fw-bold);
  color: var(--tj-color-heading-primary);
  position: relative;
  z-index: 1;
}
.text-btn::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 1px;
  bottom: 0px;
  inset-inline-start: 0;
  -webkit-transform-origin: right;
  -ms-transform-origin: right;
  transform-origin: right;
  -webkit-transform: scaleX(0);
  -ms-transform: scaleX(0);
  transform: scaleX(0);
  background-color: var(--tj-color-heading-primary);
  -webkit-transition: -webkit-transform 0.3s ease-in-out;
  transition: -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
}
.text-btn i {
  position: relative;
  font-size: 1.3em;
  top: 1px;
}
.text-btn:hover::before {
  -webkit-transform-origin: left;
  -ms-transform-origin: left;
  transform-origin: left;
  -webkit-transform: scaleX(1);
  -ms-transform: scaleX(1);
  transform: scaleX(1);
}

/* !END: Button CSS */
/* START: Mouse CSS */

/* !END: Mouse CSS */
/* START: Preloader CSS */
/* END: Preloader CSS */
/* START: Header CSS */
.tj-header-area {
  position: relative;
  background-color: var(--tj-color-theme-dark);
  width: 100%;
  inset-inline-start: 0;
  top: 0;
  z-index: 97;
}
.tj-header-area.header-absolute {
  background-color: transparent;
  /* border-bottom: 1px solid var(--tj-color-border-1); */
  position: absolute;
  z-index: 98;
}

.site-logo {
  display: inline-block;
  max-width: 180px;
  width: 100%;
}

.header-bottom {
  padding: 0px 45px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .header-bottom {
    padding: 0;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .header-bottom {
    padding: 17px 0;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .header-bottom {
    padding: 15px 0;
  }
}

.header-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 15px;
}

.mainmenu ul > li:has(.mega-menu),
.mobile_menu ul > li:has(.mega-menu) {
  position: static;
}
.mainmenu ul > li > .mega-menu-pages .mega-menu-list a:has(.mega-menu-badge),
.mobile_menu ul > li > .mega-menu-pages .mega-menu-list a:has(.mega-menu-badge) {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 5px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.hamburger_menu .mean-container .mean-nav ul li .mega-menu li a:has(.mega-menu-badge),
.hamburger_menu .mean-container .mean-nav ul li .mega-menu-service a:has(.mega-menu-badge) {
  gap: 5px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
/* START: Footer CSS */
.tj-footer-area {
  position: relative;
  background: var(--tj-color-theme-dark);
  border-top: 1px solid var(--tj-color-border-1);
  z-index: 1;
}

.footer-top-area {
  position: relative;
  padding-top: 80px;
  padding-bottom: 80px;
  z-index: 1;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .footer-top-area {
    padding: 80px 0;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .footer-top-area::before {
    inset-inline-start: 68%;
  }
}

.copyright-content-area {
  text-align: center;
}
.copyright-content-area .copyright-text p {
  font-size: 16px;
  font-weight: var(--tj-fw-regular);
  color: var(--tj-color-common-white-2);
  margin-bottom: 0;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .copyright-content-area {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

/* !END: Footer CSS */
/* START: Swiper Nav & Dots CSS */
.swiper_navigations {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
}
.swiper_navigations .navigation {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 22px;
  line-height: 1;
  color: var(--tj-color-heading-primary);
  border: 1px solid var(--tj-color-border-2);
  background: transparent;
  -webkit-transition: all 0.4s ease-in-out 0s;
  transition: all 0.4s ease-in-out 0s;
  cursor: pointer;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .swiper_navigations .navigation {
    width: 40px;
    height: 40px;
    font-size: 18px;
  }
}
.swiper_navigations .navigation i {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  line-height: 1;
  color: var(--tj-color-heading-primary);
}
.swiper_navigations .navigation:hover {
  color: var(--tj-color-common-white);
  background-color: var(--tj-color-theme-primary);
  border-color: var(--tj-color-theme-primary);
}
.swiper_navigations .navigation:hover i {
  color: var(--tj-color-common-white);
}

.swiper_pagination {
  text-align: center;
  margin-top: 30px;
  position: relative;
}

.tj-team-section  .swiper-pagination-bullets.swiper-pagination-horizontal {
  bottom: 54px;
}
/* @media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .swiper_pagination {
    margin-top: 40px;
  }
} */
.swiper_pagination .swiper-pagination-bullet {
  position: relative;
  z-index: 1;
  width: 21px;
  height: 22px;
  background-color: transparent;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  opacity: 1;
  margin: 0 2px !important;
}
.swiper_pagination .swiper-pagination-bullet::before {
  content: "";
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  width: 21px;
  height: 22px;
  background-color: var(--tj-color-theme-primary);
  aspect-ratio: 1;
  -webkit-clip-path: polygon(93.3% 75%, 50% 100%, 6.7% 75%, 6.7% 25%, 50% 0%, 93.3% 25%, 93.3% 75%, 88.97% 27.5%, 50% 5%, 11.03% 27.5%, 11.03% 72.5%, 50% 95%, 88.97% 72.5%, 88.97% 27.5%);
  clip-path: polygon(93.3% 75%, 50% 100%, 6.7% 75%, 6.7% 25%, 50% 0%, 93.3% 25%, 93.3% 75%, 88.97% 27.5%, 50% 5%, 11.03% 27.5%, 11.03% 72.5%, 50% 95%, 88.97% 72.5%, 88.97% 27.5%);
  opacity: 0;
  -webkit-transform: scale(0);
  -ms-transform: scale(0);
  transform: scale(0);
}
.swiper_pagination .swiper-pagination-bullet::after {
  content: "";
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  width: 9px;
  height: 10px;
  background-color: var(--tj-color-theme-primary);
  -webkit-clip-path: polygon(50% 0, 100% 25%, 100% 75%, 50% 100%, 0 70%, 0 30%);
  clip-path: polygon(50% 0, 100% 25%, 100% 75%, 50% 100%, 0 70%, 0 30%);
  position: absolute;
  top: 6px;
}
.swiper_pagination .swiper-pagination-bullet.swiper-pagination-bullet-active::before {
  opacity: 1;
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}

/* START: About CSS */
.tj-about-section {
  background-color: var(--tj-color-theme-bg);
  padding-top: 100px;
  padding-bottom: 100px;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
/* .tj-about-section::before {
  position: absolute;
  content: "";
  width: 97%;
  height: 100%;
  top: 0;
  inset-inline-start: 0;
  border-radius: 0 0 var(--br-bottom-left) 0;
  background: var(--tj-color-theme-bg);
  z-index: -1;
  -webkit-transition: none;
  transition: none;
} */
.tj-about-section .sec-heading {
  margin-bottom: 0px;
}
/* .tj-about-section .about-bg-images .about-shape-1 {
  position: absolute;
  max-width: 745px;
  width: 100%;
  height: 676px;
  top: 50%;
  inset-inline-start: 0px;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-mask-image: url(../images/shapes/about-mark-1.svg);
  mask-image: url(../images/shapes/about-mark-1.svg);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
  background: var(--tj-color-common-white);
  -webkit-mask-position: center;
  mask-position: center;
}
.tj-about-section .about-bg-images .about-shape-1 img {
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  max-width: 97%;
} */
.tj-about-section .about-bg-images .about-shape-1 img {
  border-radius: 12px;
}
@media only screen and (min-width: 1400px) and (max-width: 1599px) {
  .tj-about-section .about-bg-images .about-shape-1 {
    max-width: 660px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .tj-about-section {
    padding-top: 80px;
    padding-bottom: 80px;
  }
  .tj-about-section .about-bg-images .about-shape-1 {
    max-width: 565px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tj-about-section::before {
    width: 100%;
    border-radius: 0 0 300px 0;
  }
  .tj-about-section .about-bg-images .about-shape-1 {
    max-width: 475px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .tj-about-section {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .tj-about-section::before {
    width: 100%;
    border-radius: 0px;
  }
  .tj-about-section .sec-heading .sec-title {
    margin-bottom: 15px;
  }
  .tj-about-section .about-bg-images .about-shape-1 {
    display: none;
  }
}

.about-left-content .desc {
  max-width: 540px;
  width: 100%;
  margin-bottom: 30px;
}
.about-left-content .desc p:last-child {
  margin-bottom: 0;
}
/* .about-feature-item .feature-box {
  padding-top: 30px;
  -webkit-padding-end: 56px;
  padding-inline-end: 56px;
  -webkit-margin-end: 44px;
  margin-inline-end: 44px;
  -webkit-border-end: 1px solid var(--tj-color-border-2);
  border-inline-end: 1px solid var(--tj-color-border-2);
}
.about-feature-item .feature-box:last-child {
  -webkit-border-end: none;
  border-inline-end: none;
} */

.check-list-one ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.check-list-one ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: start;
  gap: 10px;
  font-family: var(--tj-ff-heading);
  font-size: 16px;
  /* font-weight: var(--tj-fw-sbold); */
  margin-bottom: 6px;
  color: var(--tj-color-common-white);
}
.check-list-one ul li:last-child {
  margin-bottom: 0;
}
.check-list-one ul li i {
  font-size: 22px;
  margin-top: 2px;
  color: #fff;
}

/* !END: About CSS */
/* START: Brand CSS */

.tj-brand-section-two .sec-heading {
  position: relative;
  z-index: 1;
}
.tj-brand-section-two .sec-heading::before {
  position: absolute;
  content: "";
  width: 34%;
  height: 1px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  inset-inline-start: 0;
  background: var(--tj-color-border-2);
  z-index: -1;
}
.tj-brand-section-two .sec-heading::after {
  position: absolute;
  content: "";
  width: 34%;
  height: 1px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  inset-inline-end: 0;
  background: var(--tj-color-border-2);
  z-index: -1;
}
.tj-brand-section-two .sec-heading .sec-title {
  max-width: 395px;
  width: 100%;
  background: var(--tj-color-theme-bg);
  font-size: 16px;
  font-family: var(--tj-ff-body);
  padding: 5px 20px 8px;
  border-radius: 40px;
  -webkit-margin-start: auto;
  margin-inline-start: auto;
  -webkit-margin-end: auto;
  margin-inline-end: auto;
  margin-bottom: 0;
  outline: 8px solid var(--tj-color-common-white);
}
@media (max-width: 575px) {
  .tj-brand-section-two .sec-heading .sec-title {
    max-width: 305px;
  }
}

.brand-slider-2 {
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.brand-slider-2::before, .brand-slider-2::after {
  content: "";
  position: absolute;
  width: 20%;
  height: 100%;
  background-image: -webkit-gradient(linear, left top, right top, from(#fff), to(rgba(247, 247, 247, 0)));
  background-image: linear-gradient(90deg, #fff 0%, rgba(247, 247, 247, 0) 100%);
  top: 0;
  inset-inline-start: 0;
  z-index: 2;
}
.brand-slider-2::after {
  inset-inline-start: auto;
  inset-inline-end: 0;
  background-image: -webkit-gradient(linear, right top, left top, from(#fff), to(rgba(247, 247, 247, 0)));
  background-image: linear-gradient(-90deg, #fff 0%, rgba(247, 247, 247, 0) 100%);
}
.brand-slider-2 .brand_wrapper {
  -webkit-transition-timing-function: linear;
  transition-timing-function: linear;
}
.brand-slider-2 .brand-logo {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 195px;
  height: 74px;
  /* background: rgb(225, 232, 240); */
}

.tj-brand-section-two.brands-two .sec-heading .sec-title {
  max-width: 480px !important;
}

@media (max-width: 575px) {
  .brand-slider-2 .brand-logo {
    width: 165px;
    height: 60px;
  }
}
@media (max-width: 575px) {
  .brand-slider-2::before {
    width: 150px;
  }
  .brand-slider-2::after {
    width: 150px;
  }
}

/* START: Blog CSS */
.blog-item:is(:hover, :focus) .blog-images img {
  -webkit-transform: scale(1.12);
  -ms-transform: scale(1.12);
  transform: scale(1.12);
}
.blog-style-2:is(:hover, :focus) .blog-images img {
  -webkit-transform: scale(1.12);
  -ms-transform: scale(1.12);
  transform: scale(1.12);
}
.blog-style-3:is(:hover, :focus) .blog-images img {
  -webkit-transform: scale(1.12);
  -ms-transform: scale(1.12);
  transform: scale(1.12);
}
.blog-two-meta ul li .meta-link:is(:hover, :focus) {
  color: var(--tj-color-common-white);
  background: var(--tj-color-theme-primary);
  border-color: var(--tj-color-theme-primary);
}
.tj-post-meta ul li a:is(:hover, :focus) {
  color: var(--tj-color-common-white);
  background: var(--tj-color-theme-primary);
  border-color: var(--tj-color-theme-primary);
}

/* START: Counter CSS */

.counter-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: var(--tj-color-common-white);
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .counter-wrapper {
    max-width: 516px;
    margin: 0 auto;
  }
  .counter-wrapper .counter-item {
    max-width: 50%;
  }
  .counter-wrapper .counter-item:not(:nth-last-child(-n+2)) {
    border-bottom: 1px solid var(--tj-color-border-2);
  }
  .counter-wrapper .counter-item:not(:nth-last-child(-n+2)) .bottom-line::before {
    position: absolute;
    content: "";
    width: 12px;
    height: 12px;
    border-radius: 50%;
    left: 50%;
    bottom: -6px;
    border: 3px solid var(--tj-color-theme-primary);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    background-color: var(--tj-color-common-white);
    z-index: 2;
  }
  .counter-wrapper .counter-item:not(:nth-last-child(-n+2)) .bottom-line::after {
    position: absolute;
    content: "";
    width: 20px;
    height: 20px;
    border-radius: 50%;
    left: 50%;
    bottom: -10px;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    background-color: var(--tj-color-common-white);
    z-index: -1;
  }
  .counter-wrapper .counter-item:not(:nth-last-child(-n+2)).style-2 {
    border-color: var(--tj-color-border-1);
  }
  .counter-wrapper .counter-item:not(:nth-last-child(-n+2)).style-2 .bottom-line::before {
    border: 3px solid var(--tj-color-theme-dark);
    background-color: var(--tj-color-theme-primary);
  }
  .counter-wrapper .counter-item:not(:nth-last-child(-n+2)).style-2 .bottom-line::after {
    background-color: var(--tj-color-theme-primary);
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px) and (min-width: 576px) and (max-width: 767px), only screen and (min-width: 576px) and (max-width: 767px) and (max-width: 575px) {
  .counter-wrapper .counter-item:not(:nth-last-child(-n+2)).style-2 .bottom-line::after {
    width: 16px;
    height: 16px;
    bottom: -8px;
  }
}
@media (max-width: 575px) {
  .counter-wrapper {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  .counter-wrapper .counter-item {
    max-width: 50%;
  }
  .counter-wrapper .counter-item:not(:nth-last-child(-n+2)) {
    border-bottom: 1px solid var(--tj-color-border-2);
  }
  .counter-wrapper .counter-item:not(:nth-last-child(-n+2)) .bottom-line::before {
    position: absolute;
    content: "";
    width: 12px;
    height: 12px;
    border-radius: 50%;
    left: 50%;
    bottom: -6px;
    border: 3px solid var(--tj-color-theme-primary);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    background-color: var(--tj-color-common-white);
    z-index: 2;
  }
  .counter-wrapper .counter-item:not(:nth-last-child(-n+2)) .bottom-line::after {
    position: absolute;
    content: "";
    width: 20px;
    height: 20px;
    border-radius: 50%;
    left: 50%;
    bottom: -10px;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    background-color: var(--tj-color-common-white);
    z-index: -1;
  }
  .counter-wrapper .counter-item:not(:nth-last-child(-n+2)).style-2 {
    border: none !important;
  }
  .counter-item.style-2::before,
  .counter-item.style-2::after {
    display: none !important;
  }
  .counter-wrapper .counter-item:not(:nth-last-child(-n+2)).style-2 .bottom-line::before {
    border: none !important;
    background-color: unset !important;
  }
  .counter-wrapper .counter-item:not(:nth-last-child(-n+2)).style-2 .bottom-line::after {
    background-color: unset !important;
  }
}
@media only screen and (max-width: 575px) and (min-width: 768px) and (max-width: 991px), only screen and (max-width: 575px) and (min-width: 576px) and (max-width: 767px), (max-width: 575px) and (max-width: 575px) {
  .counter-wrapper .counter-item:not(:nth-last-child(-n+2)).style-2 .bottom-line::after {
    width: 16px;
    height: 16px;
    bottom: -8px;
  }
}

.counter-item {
  position: relative;
  max-width: 324px;
  width: 100%;
  -webkit-border-end: 1px solid var(--tj-color-border-2);
  border-inline-end: 1px solid var(--tj-color-border-2);
  padding: 50px 40px 60px 55px;
  z-index: 1;
}
.counter-item::before {
  position: absolute;
  content: "";
  width: 12px;
  height: 12px;
  border-radius: 50%;
  top: 50%;
  inset-inline-end: -6px;
  border: 3px solid var(--tj-color-theme-primary);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  background-color: var(--tj-color-common-white);
  z-index: 2;
}
.counter-item::after {
  position: absolute;
  content: "";
  width: 20px;
  height: 20px;
  border-radius: 50%;
  top: 50%;
  inset-inline-end: -10px;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  background-color: var(--tj-color-common-white);
  z-index: -1;
}
.counter-item:last-child {
  -webkit-border-end: none;
  border-inline-end: none;
}
.counter-item:last-child::after, .counter-item:last-child::before {
  display: none;
}
.counter-item .number {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: var(--tj-color-heading-primary);
  font-family: var(--tj-ff-heading);
  font-size: 36px;
  font-weight: var(--tj-fw-sbold);
  line-height: 1;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .counter-item .number {
    font-size: 46px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .counter-item .number {
    font-size: 38px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .counter-item .number {
    font-size: 36px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .counter-item .number {
    font-size: 30px;
  }
}
.counter-item .number span {
  line-height: 1;
  font-family: inherit;
}
.counter-item .sub-title {
  line-height: 1.4;
  display: block;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .counter-item {
    max-width: 278px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .counter-item {
    max-width: 230px;
    padding: 50px 30px 60px 31px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .counter-item {
    max-width: 174px;
    padding: 30px 20px 35px 20px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .counter-item {
    max-width: 258px;
    padding: 30px 15px 35px 70px;
  }
  .counter-item .number {
    margin-bottom: 10px;
  }
  .counter-item span {
    line-height: 1.4;
  }
  .counter-item:nth-child(2) {
    -webkit-border-end: none;
    border-inline-end: none;
  }
  .counter-item:nth-child(2)::after, .counter-item:nth-child(2)::before {
    display: none;
  }
}
@media (max-width: 575px) {
  .counter-item {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    max-width: 170px;
    padding: 30px 15px;
    text-align: center;
  }
  .counter-item:nth-child(2) {
    -webkit-border-end: none;
    border-inline-end: none;
  }
  .counter-item:nth-child(2)::after, .counter-item:nth-child(2)::before {
    display: none;
  }
  .counter-item .number {
    margin-bottom: 10px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  .counter-item span {
    line-height: 1.4;
  }
}

.tj-service-section-two {
  overflow: hidden;
}
.tj-service-section-two .sec-heading {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.tj-service-section-two .sec-heading .sec-text {
  /* max-width: 550px; */
  width: 100%;
}
.tj-service-section-two .sec-heading .sec-text .sec-title {
  margin-bottom: 0;
}

.service-style-2 {
  border: 1px solid var(--tj-color-border-2);
  padding: 40px 30px 45px;
  position: relative;
  z-index: 2;
  margin-bottom: 20px;
  border-radius: 12px;
}
.service-style-2 .thumb {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  inset-inline-start: 0;
  opacity: 1;
  visibility: visible;
  z-index: 1;
  -webkit-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
}
.service-style-2 .thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 12px;
}
.service-style-2 .thumb::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  inset-inline-start: 0;
  background: rgba(5, 18, 41, 0.7);
  z-index: 1;
  border-radius: 12px;
}
.service-style-2 .service-icon {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 100px;
  height: 100px;
  line-height: 1;
  font-size: 70px;
  color: var(--tj-color-theme-primary);
  background: var(--tj-color-theme-bg);
  border-radius: 50%;
  margin-bottom: 35px;
  position: relative;
  z-index: 2;
}
.service-style-2 .service-content {
  position: relative;
  -webkit-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
  z-index: 2;
}
.service-style-2 .service-content .title {
  margin-bottom: 15px;
  color: #fff;
}
.service-style-2 .service-content .desc p:last-child {
  margin-bottom: 0;
  color:var(--tj-color-common-white);
}
.service-style-2 .service-button {
  margin-top: 25px;
  color: #fff;
}
.service-style-2 .service-button i {
  color: var(--tj-color-common-white);
}
/* .service-style-2 .service-content .check-list-one ul li {
  color: #fff;
} */
.service-style-2:hover .thumb {
  opacity: 0;
  visibility: hidden;
}
.service-style-2:hover .service-icon {
  background-color: #f5f7f7;
}
.service-style-2:hover .service-content .title {
  color: var(--tj-color-common-black);
}
.service-style-2:hover .service-content .check-list-one ul li {
  color: var(--tj-color-common-black-2);
}
.service-style-2:hover .service-content .desc,
.service-style-2:hover .service-content p {
  color: var(--tj-color-common-black-2) !important;
}
.service-style-2:hover .check-list-one ul li i {
  color: var(--tj-color-common-black-2);
}

.service-style-2:hover .service-button {
  color: var(--tj-color-common-black);
}
.service-style-2:hover .service-button i {
  color: var(--tj-color-common-black);
}
.service-style-2:hover .service-button::before {
  background-color: var(--tj-color-common-white);
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px) {
  .service-style-2 {
    padding: 30px 15px 35px;
  }
  .service-style-2 .service-icon {
    width: 85px;
    height: 85px;
    font-size: 60px;
    margin-bottom: 40px;
  }
}
@media (max-width: 575px) {
  .service-style-2 {
    padding: 30px 15px 35px;
  }
  .service-style-2 .service-icon {
    width: 80px;
    height: 80px;
    font-size: 50px;
    margin-bottom: 30px;
  }
  .service-style-2 .service-button {
    margin-top: 20px;
  }
}

.star-ratings {
  unicode-bidi: bidi-override;
  color: var(--tj-color-common-white);
  font-size: 16px;
  letter-spacing: 5px;
  line-height: 1;
  position: relative;
  margin: 0;
  padding: 0;
  -webkit-text-stroke: 1px var(--tj-color-common-white);
}
.star-ratings .fill-ratings {
  color: var(--tj-color-common-white);
  padding: 0;
  position: absolute;
  z-index: 1;
  display: block;
  top: 0;
  inset-inline-start: 0;
  overflow: hidden;
}
.star-ratings .fill-ratings span {
  display: inline-block;
}
.star-ratings .empty-ratings {
  position: relative;
  padding: 0;
  display: block;
  z-index: 1;
  color: var(--tj-color-common-white);
}
/* START: Pricing CSS */
.pricing__area {
  overflow: hidden;
}

.pricing__box {
  background: var(--tj-color-theme-bg);
  padding: 35px 20px;
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  /* box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px; */
  /* -webkit-clip-path: polygon(92% 0, 100% 5%, 100% 100%, 0 100%, 0 0);
  clip-path: polygon(92% 0, 100% 5%, 100% 100%, 0 100%, 0 0); */
  will-change: transform;
}
.pricing__box:hover {
  transform: translateY(-10px); /* Lift up */
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15); /* Optional shadow for depth */
}

.pricing__package-price {
  font-size: 42px;
  font-family: var(--tj-ff-heading);
  font-weight: 600;
  color: var(--tj-color-heading-primary);
  line-height: 0.7;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 40px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .pricing__package-price {
    font-size: 52px;
    margin-bottom: 30px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .pricing__package-price {
    font-size: 44px;
    margin-bottom: 25px;
  }
}
.pricing__package-name {
  font-size: 18px;
  color: var(--tj-color-heading-primary);
  margin-bottom: 30px;
}
.pricing__package-currency {
  font-size: 20px;
  font-weight: 500;
  color: var(--tj-color-common-black-2);
  margin-right: 10px;
}

.pricing__features-list {
  border-top: 1px solid var(--tj-color-border-2);
  padding-top: 29px;
  margin-top: 29px;
  margin-bottom: 40px;
  height: 245px;
}
.pricing__features-list ul li {
  margin-bottom: 8px;
  display: block;
  color: var(--tj-color-common-black-3);
  -webkit-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
  font-size: 15px;
}
.pricing__features-list ul li i {
  -webkit-margin-end: 3px;
  margin-inline-end: 3px;
  color: var(--tj-color-common-black-3);
}
.pricing__features-list ul li.active {
  color: var(--tj-color-text-body);
}
.pricing__features-list ul li.active i {
  color: var(--tj-color-theme-primary);
}
.pricing__features-list ul li:last-child {
  margin-bottom: 0px;
}

/* !START: Slider CSS */
.tj-slider-section {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  overflow: hidden;
  z-index: 2;
}
.tj-slider-section::before {
  position: absolute;
  content: "";
  width: 80%;
  height: 100%;
  inset-inline-start: 0;
  top: 0;
  background: -webkit-gradient(linear, left top, right top, from(var(--tj-color-theme-dark)), to(rgba(5, 18, 41, 0)));
  background: linear-gradient(90deg, var(--tj-color-theme-dark) 0%, rgba(5, 18, 41, 0) 100%);
  mix-blend-mode: multiply;
  z-index: -1;
}

.slider-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: end;
  position: relative;
}
/* START: Team CSS */
.tj-team-section {
  overflow: hidden;
  background-color: #fff;
}
.tj-team-section .sec-heading .sec-text .sec-title {
  margin-bottom: 0;
}

.team-item {
  position: relative;
  overflow: hidden;
  z-index: 2;
}

.team-item .team-images {
  overflow: hidden;
}
.team-item .team-images img {
  width: 100%;
  border-radius: 12px;
}
.team-item:hover .team-images img {
  -webkit-transform: scale(1.12);
  -ms-transform: scale(1.12);
  transform: scale(1.12);
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .team-item {
    min-height: 420px;
  }
  .team-item .team-content {
    padding: 25px 30px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .team-item {
    min-height: 360px;
  }
  .team-item .team-content {
    padding: 25px 15px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .team-item {
    min-height: auto;
    margin: 0 20px;
  }
}

/* START: Careers details CSS */
.tj-careers-form .form-input input::file-selector-button {
  width: 125px;
  height: 44px;
  -webkit-margin-end: 10px;
  margin-inline-end: 10px;
  color: var(--tj-color-theme-primary);
  background: var(--tj-color-theme-bg-2);
  border: none;
  cursor: pointer;
}
/* START: Contact CSS */

.contact-form-one {
  max-width: 630px;
  width: 100%;
  background: rgba(247, 247, 247, 0.1);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  padding: 40px 25px;
}
.contact-form-one .title {
  color: var(--tj-color-common-white);
  margin-bottom: 20px;
  font-size: 20px;
  text-align: center;
}
.contact-form-one .form-input input:not([type=submit]):not([type=radio]):not([type=checkbox]):not([type=search]),
.contact-form-one .form-input textarea,
.contact-form-one .form-input input[type=tel],
.contact-form-one .form-input input[type=email],
.contact-form-one .form-input input[type=text] {
  width: 100%;
  color: var(--tj-color-common-white);
  border: none;
  border-radius: 0;
  border-bottom: 1.2px solid rgb(103, 110, 122);
  background: transparent;
  padding: 15px 0px 15px 0px;
  margin-top: 6px;
}
.contact-form-one .form-input input:not([type=submit]):not([type=radio]):not([type=checkbox]):not([type=search]):focus,
.contact-form-one .form-input textarea:focus,
.contact-form-one .form-input input[type=tel]:focus,
.contact-form-one .form-input input[type=email]:focus,
.contact-form-one .form-input input[type=text]:focus {
  border-bottom: 1px solid var(--tj-color-common-white);
}
.contact-form-one .form-input textarea {
  min-height: 100px;
  resize: none;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .contact-form-one {
    max-width: 560px;
    padding: 40px 30px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .contact-form-one {
    max-width: 470px;
    padding: 35px 15px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .contact-form-one {
    max-width: 100%;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .contact-form-one {
    max-width: 100%;
    padding: 35px 15px;
  }
  .contact-form-one .title {
    margin-bottom: 25px;
  }
}
@media (max-width: 575px) {
  .contact-form-one {
    max-width: 100%;
    padding: 35px 15px;
  }
  .contact-form-one .title {
    margin-bottom: 0;
  }
  .contact-form-one .input-textarea {
    margin-top: 25px;
  }
}
.contact-form-one.style-2 {
  background: var(--tj-color-common-white);
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
  /* border: 2px solid var(--tj-color-theme-primary); */
  border-radius: 12px;
}
.contact-form-one.style-2 .title {
  color: var(--tj-color-heading-primary);
}
/* .contact-form-one.style-2 .form-input {
  margin-bottom: 25px;
} */
.contact-form-one.style-2 .form-input input:not([type=submit]):not([type=radio]):not([type=checkbox]):not([type=search]),
.contact-form-one.style-2 .form-input textarea,
.contact-form-one.style-2 .form-input input[type=tel],
.contact-form-one.style-2 .form-input input[type=email],
.contact-form-one.style-2 .form-input input[type=text] {
  color: var(--tj-color-text-body);
  border-color: var(--tj-color-border-2);
}
.contact-form-one.style-2 .form-input input:not([type=submit]):not([type=radio]):not([type=checkbox]):not([type=search])::-webkit-input-placeholder, .contact-form-one.style-2 .form-input textarea::-webkit-input-placeholder, .contact-form-one.style-2 .form-input input[type=tel]::-webkit-input-placeholder, .contact-form-one.style-2 .form-input input[type=email]::-webkit-input-placeholder, .contact-form-one.style-2 .form-input input[type=text]::-webkit-input-placeholder {
  color: #808080;
}
.contact-form-one.style-2 .form-input input:not([type=submit]):not([type=radio]):not([type=checkbox]):not([type=search])::-moz-placeholder, .contact-form-one.style-2 .form-input textarea::-moz-placeholder, .contact-form-one.style-2 .form-input input[type=tel]::-moz-placeholder, .contact-form-one.style-2 .form-input input[type=email]::-moz-placeholder, .contact-form-one.style-2 .form-input input[type=text]::-moz-placeholder {
  color: #808080;
}
.contact-form-one.style-2 .form-input input:not([type=submit]):not([type=radio]):not([type=checkbox]):not([type=search]):-ms-input-placeholder, .contact-form-one.style-2 .form-input textarea:-ms-input-placeholder, .contact-form-one.style-2 .form-input input[type=tel]:-ms-input-placeholder, .contact-form-one.style-2 .form-input input[type=email]:-ms-input-placeholder, .contact-form-one.style-2 .form-input input[type=text]:-ms-input-placeholder {
  color: #808080;
}
.contact-form-one.style-2 .form-input input:not([type=submit]):not([type=radio]):not([type=checkbox]):not([type=search])::-ms-input-placeholder, .contact-form-one.style-2 .form-input textarea::-ms-input-placeholder, .contact-form-one.style-2 .form-input input[type=tel]::-ms-input-placeholder, .contact-form-one.style-2 .form-input input[type=email]::-ms-input-placeholder, .contact-form-one.style-2 .form-input input[type=text]::-ms-input-placeholder {
  color: #808080;
}
.contact-form-one.style-2 .form-input input:not([type=submit]):not([type=radio]):not([type=checkbox]):not([type=search]):focus,
.contact-form-one.style-2 .form-input textarea:focus,
.contact-form-one.style-2 .form-input input[type=tel]:focus,
.contact-form-one.style-2 .form-input input[type=email]:focus,
.contact-form-one.style-2 .form-input input[type=text]:focus {
  border-color: var(--tj-color-heading-primary);
}

.google-map iframe {
  width: 100%;
  border-radius: 12px;
}

@media (min-width: 768px) {
  .google-map iframe {
    height: 515px;
  }
}
/* START: Animate CSS */
@-webkit-keyframes shine {
  0% {
    -webkit-transform: skewX(-25deg) translateX(0);
    transform: skewX(-25deg) translateX(0);
  }
  100% {
    -webkit-transform: skewX(-25deg) translateX(250%);
    transform: skewX(-25deg) translateX(250%);
  }
}
@keyframes shine {
  0% {
    -webkit-transform: skewX(-25deg) translateX(0);
    transform: skewX(-25deg) translateX(0);
  }
  100% {
    -webkit-transform: skewX(-25deg) translateX(250%);
    transform: skewX(-25deg) translateX(250%);
  }
}
/* START: Section Title CSS */
.sec-heading {
  display: block;
  margin-bottom: 50px;
}
.sec-heading .sec-title {
  margin: 0;
  font-size: 36px;
}
/* .sec-heading .sec-title span {
  color: var(--tj-color-theme-primary);
} */
.sec-heading .desc {
  margin-top: 20px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .sec-heading .desc {
    margin-bottom: 15px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .sec-heading .desc {
    margin-bottom: 15px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .sec-heading {
    margin-bottom: 45px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .sec-heading {
    margin-bottom: 40px;
  }
}

/* START: Team CSS */
.team-item .team-content {
  position: unset;
  padding: 15px 0 0 0;
  width: 100%;
  /* background-color: var(--tj-color-theme-bg); */
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.team-item .team-content .team-text {
  width: calc(100% - 50px);
}
.team-item .team-content .team-text .title {
  color: var(--tj-color-heading-primary);
  font-size: 18px;
  /* font-weight: 600; */
  margin-bottom: 5px;
}
.team-item .team-content .team-text .sub-title {
  color: var(--tj-color-common-black-2);
}
/* START: Blog CSS */
.blog-style-4 .blog-two-meta ul li .meta-link:is(:hover, :focus) {
  color: var(--tj-color-common-white);
  background: var(--tj-color-theme-primary);
  border-color: var(--tj-color-theme-primary);
}
.blog-style-4:is(:hover, :focus) .blog-images img {
  -webkit-transform: scale(1.12);
  -ms-transform: scale(1.12);
  transform: scale(1.12);
}
.blog-style-4:is(:hover, :focus) .blog-content {
  padding-bottom: 75px;
}
.blog-style-4:is(:hover, :focus) .blog-content .blog-button {
  opacity: 1;
  visibility: visible;
  bottom: 35px;
}

/* START: Hero CSS */

.hero-images-box-four {
  position: relative;
  max-width: 630px;
  width: 100%;
  z-index: 1;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .hero-images-box-four {
    max-width: 550px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .hero-images-box-four {
    max-width: 460px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .hero-images-box-four {
    margin-top: 50px;
  }
}
/* START: Testimonial CSS */
.dark-bg {
  background-color: var(--tj-color-theme-dark);
}

.h5-testimonial-section {
  overflow: hidden;
}
.h5-testimonial-section .sec-heading .sec-title {
  color: var(--tj-color-common-white);
}

.h5-testimonial-section .sec-heading p {
  margin-top: 15px;
  color: var(--tj-color-common-white-2);
}
.h5-testimonial-item {
  padding: 40px 30px;
  border-radius: 12px;
  background-color: rgba(247, 247, 247, 0.1);
  overflow: hidden;
  position: relative;
}
@media (min-width: 1199px) {
  .h5-testimonial-item{
    height: 300px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .h5-testimonial-item {
    padding: 35px 30px;
  }
}
@media (max-width: 575px) {
  .h5-testimonial-item {
    padding: 30px 20px;
  }
}
.h5-testimonial-item .author {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 20px;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: start;
}
@media (max-width: 575px) {
  .h5-testimonial-item .author {
    gap: 12px;
  }
}
.h5-testimonial-item .author-content{
  position: relative;
  top: -20px;
}

.h5-testimonial-item .author-images {
  width: 85px;
  height: 110px;
  -webkit-mask-image: url(../images/shapes/h5-author-mask.svg);
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-image: url(../images/shapes/h5-author-mask.svg);
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  background-color: var(--tj-color-theme-dark);
  position: relative;
  z-index: 1;
  margin-top: -48px;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .h5-testimonial-item .author-images {
    margin-top: -37px;
  }
}
.h5-testimonial-item .author-images img {
  width: 65px;
  height: 65px;
  border-radius: 50%;
  -o-object-fit: cover;
  object-fit: cover;
  z-index: 2;
  position: absolute;
  top: 30px;
  inset-inline-start: 11px;
}
.h5-testimonial-item .author-rating {
  display: inline-block;
  background: var(--tj-color-theme-dark);
  padding: 2px 10px 4px;
  /* margin-bottom: 10px; */
  border-radius: 32px;
}
.h5-testimonial-item .author-rating .star-ratings {
  color: orange;
  -webkit-text-stroke: 1px orange;
}
.h5-testimonial-item .author-rating .star-ratings .fill-ratings {
  color: orange;
}
.h5-testimonial-item .author-rating .star-ratings .empty-ratings {
  color: orange;
}
.h5-testimonial-item .author-name {
  margin-bottom: 4px;
  font-weight: 500;
  color: var(--tj-color-common-white);
  font-size: 20px;
}
@media (max-width: 575px) {
  .h5-testimonial-item .author-name {
    font-size: 18px;
  }
}
.h5-testimonial-item .author .sub-title {
  display: block;
  line-height: 1;
  color: var(--tj-color-common-white-2);
  font-size: 14px;
}
.h5-testimonial-item .desc {
  color: var(--tj-color-common-white-2);
  font-size: 20px;
  margin-top: 15px;
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .h5-testimonial-item .desc {
    margin-top: 25px;
    font-size: 18px;
  }
}
@media (max-width: 575px) {
  .h5-testimonial-item .desc {
    margin-top: 20px;
    font-size: 16px;
  }
}
.h5-testimonial-item .desc p {
  margin: 0;
  font-size: 16px;
}

/* START: Home 5 Footer CSS */
.h5-footer {
  background-color: var(--tj-color-theme-bg);
  border-top: 0;
}
.h5-footer .footer-top-area {
  z-index: 2;
}
.h5-footer-shape {
  position: absolute;
  bottom: 0;
  inset-inline-start: -166px;
  max-width: 333px;
  width: 100%;
  z-index: -1;
}
@media only screen and (min-width: 1400px) and (max-width: 1599px), only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 768px) and (max-width: 991px) {
  .h5-footer-shape {
    max-width: 280px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .h5-footer-shape {
    max-width: 250px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .h5-footer-shape {
    max-width: 270px;
  }
}
@media (max-width: 575px) {
  .h5-footer-shape {
    display: none;
  }
}
.h5-footer-copyright {
  padding: 15px 0;
  background-color: var(--tj-color-theme-dark);
}
/* START: Home 6 CTA CSS */
.h6-cta-content {
  gap: 20px;
}
.h6-cta-content .call-btn-style-2 {
  display: flex;
  align-items: center;
  gap: 10px; /* space between icon and text */
  text-decoration: none;
  color: inherit;
}
.h6-cta-content .call-btn-style-2 .icon {
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  /* background-color: rgba(247, 247, 247, 0.1); */
  /* background-color: var(--tj-color-theme-primary); */
  background: linear-gradient(90deg, #0061FF, #60EFFF);
  -webkit-backdrop-filter: blur(50px);
  backdrop-filter: blur(50px);
  font-size: 20px;
  line-height: 1;
  color: var(--tj-color-common-white);
  -webkit-transition: all 0.4s ease-in-out 0s;
  transition: all 0.4s ease-in-out 0s;
}
.call-btn-style-2 .text-group {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}
.call-btn-style-2 .text-group .sub-text {
  font-size: 13px;
  color: var(--tj-color-common-white-2);
  margin-bottom: 4px;
}

.h6-cta-content .call-btn-style-2 .text {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  line-height: 1;
  color: var(--tj-color-common-white);
  font-weight: var(--tj-fw-bold);
  position: relative;
  margin-bottom: 0;
  font-size: 20px;
}
.h6-cta-content .call-btn-style-2 .text::before {
  content: "";
  position: absolute;
  bottom: -2px;
  inset-inline-start: auto;
  inset-inline-end: 0;
  width: 0;
  height: 1px;
  background-color: var(--tj-color-common-black);
  -webkit-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
}
.h6-cta-content .call-btn-style-2:hover .icon {
  background-color: var(--tj-color-theme-primary);
}
.h6-cta-content .call-btn-style-2:hover .text::before {
  width: 100%;
  inset-inline-start: 0;
  inset-inline-end: auto;
}

.tj-primary-btn.white-btn {
  background-color: var(--tj-color-common-white);
}
.tj-primary-btn.white-btn .btn_inner .btn_text {
  color: var(--tj-color-heading-primary);
}
.tj-primary-btn.white-btn:hover .btn_inner .btn_text {
  color: var(--tj-color-common-white);
}

/* START: Blog CSS */
.h7-blog-wrapper .blog-item:first-child:is(:hover, :focus) .blog-images img {
  -webkit-transform: scale(1.12);
  -ms-transform: scale(1.12);
  transform: scale(1.12);
}

/* START: Faq CSS */
.h7-faq-style .accordion-item:not(:has(.collapsed)) + .accordion-item .accordion-button.collapsed {
  border-color: var(--tj-color-theme-bg);
}

.form-button button[type=submit] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  background: linear-gradient(90deg, #0061FF, #60EFFF);
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 6px;
  font-family: var(--tj-ff-heading);
  font-size: 20px;
  line-height: 1;
  color: var(--tj-color-common-white);
  padding: 16px 20px;
  border-radius: 50px;
}
.form-button button[type=submit] i {
  font-size: 18px;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
}
.form-button button[type=submit]:hover i {
  -webkit-transform: rotate(0);
  -ms-transform: rotate(0);
  transform: rotate(0);
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .form-button button[type=submit] {
    font-size: 18px;
  }
  .form-button button[type=submit] i {
    font-size: 16px;
  }
}
@media (max-width: 575px) {
  .form-button button[type=submit] {
    font-size: 16px;
  }
  .form-button button[type=submit] i {
    font-size: 15px;
  }
}
/* START: Header CSS */
.tj-header-area .header-10-topbar .topbar_infos .info_item:has(a):hover a {
  color: var(--tj-color-theme-primary);
}
.tj-header-area .header-10-topbar .topbar_infos .info_item:has(a):hover i {
  color: var(--tj-color-theme-primary);
}

.h10-counter-section .counter-wrapper {
  background-color: var(--tj-color-theme-dark);
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .h10-counter-section .counter-wrapper {
    max-width: 100%;
  }
}

.counter-item.style-2 {
  max-width: 20%;
  border-color: var(--tj-color-border-1);
  padding: 54px 80px 60px 80px;
}
.counter-item.style-2 .counter-item-inner {
  max-width: 190px;
  margin: 0 auto;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .counter-item.style-2 .counter-item-inner {
    max-width: 130px;
  }
}
.counter-item.style-2::before {
  border: 3px solid var(--tj-color-theme-dark);
  background-color: var(--tj-color-theme-primary);
}
.counter-item.style-2::after {
  background-color: var(--tj-color-theme-primary);
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .counter-item.style-2::after {
    width: 16px;
    height: 16px;
    inset-inline-end: -8px;
  }
}
.counter-item.style-2 .number {
  color: var(--tj-color-common-white);
}
.counter-item.style-2 .sub-title {
  color: var(--tj-color-common-white-2);
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .counter-item.style-2 {
    padding: 50px 60px 60px 80px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .counter-item.style-2 {
    padding: 50px 20px 60px 70px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .counter-item.style-2 {
    padding: 40px 20px 50px 30px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .counter-item.style-2 {
    max-width: 50%;
    padding: 30px 20px 35px;
  }
}
@media (max-width: 575px) {
  .counter-item.style-2 {
    max-width: 50%;
    padding: 25px 5px;
  }
}
/* START: Hero CSS */
.h10-hero {
  position: relative;
  overflow: hidden;
  padding: 140px 0 80px;
  display: flex;
  justify-content: center;
  align-items: center;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .h10-hero {
    padding-top: 100px;
  }
}
@media (min-width: 992px) {
  .h10-hero {
    height: 100vh;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .h10-hero {
    padding-top: 120px;
  }
}

.h10-hero-inner {
  overflow: visible;
}
.h10-hero-inner::before {
  display: none;
}
.h10-hero-content {
  /* min-height: 90vh;
  max-width: 812px; */
  width: 100%;
  padding-top: 0;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  height: 100%;
  z-index: 1;
  /* padding: 232px 0 80px 12px; */
}
.h10-hero-content .hero-title {
  color: var(--tj-color-common-white);
  font-size: 52px;
  line-height: 1.2;
  margin-bottom: 20px;
  font-weight: 506;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .h10-hero-content .hero-title {
    font-size: 46px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .h10-hero-content .hero-title {
    font-size: 38px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .h10-hero-content .hero-title {
    font-size: 32px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .h10-hero-content .hero-title {
    font-size: 28px;
  }
}
@media (max-width: 575px) {
  .h10-hero-content .hero-title {
    font-size: 24px;
  }
}
.h10-hero-content .desc {
  font-size: 18px;
  color: var(--tj-color-common-white-2);
  font-weight: var(--tj-fw-regular);
  max-width: 524px;
  width: 100%;
  line-height: 1.5;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .h10-hero-content .desc {
    max-width: 433px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .h10-hero-content .desc {
    max-width: 100%;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .h10-hero-content .desc p{
    font-size: 17px !important;
  }
  .price-amount{
    font-size: 20px !important;
  }
}
.h10-hero-content .desc p:last-child {
  margin-bottom: 0;
  color: #fff;
  font-size: 20px;
  line-height: 1.4;
}

.cover-background-2 {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.hero_lists {
  margin-top: 25px;
}
.hero_lists li {
  /* font-weight: 500; */
  color: #fff;
  display: flex;
  margin-bottom: 6px;
  font-size: 18px;
  list-style: none;
  gap: 12px;
}

.tp-hero-2-shape-two {
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  position: relative;
  margin-top: 30px;
  left: 0;
  z-index: 1;
  animation: tpleftright 1s infinite alternate;
  background-color: #fff;
  /* width: 100%; */
  border-radius: 12px;
  padding: 4px 15px;
}
.tp-hero-2-shape-two img {
  flex: 0 0 auto;
  margin-right: 10px;
  width: 40px;
}
.tp-testimonial-2-rating-title {
  font-weight: 500;
  font-size: 14px;
  line-height: 1.57;
  /* margin-top: 5px; */
  margin-bottom: 0;
  color: var(--tp-common-black);
}
.tp-testimonial-2-review-star span {
  color: #ffa84b;
  font-size: 16px;
  letter-spacing: 3px;
}

.contact-container {
  position: fixed;
  right: 0;
  bottom: 20px;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  z-index: 1000;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.call-us, .whatsapp-us {
  background-color: #f2f2f2;
  border: 1px solid #eee;
  border-radius: 18px 0 0 18px;
  max-width: 60px;
  margin-bottom: 10px;
  text-align: center;
  padding: 5px 6px;
  transition: max-width 0.5s ease-in-out, opacity 0.5s ease-in-out;
  white-space: nowrap;
  overflow: hidden;
  box-shadow: rgba(0, 0, 0, 0.05) 0px 6px 24px 0px, rgba(0, 0, 0, 0.08) 0px 0px 0px 1px;
}

.call-us a, .whatsapp-us a {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: #707070;
}

.whatsapp-us img {
  width: 40px;
  height: 40px;
  margin-right: 10px;
  margin-left: 5px;
}

.call-us:hover, .whatsapp-us:hover {
  max-width: 255px;
}

.chat-with-us p {
  margin-bottom: 0;
  line-height: 20px;
  font-weight: 500;
  font-size: 16px;
}

@media (max-width: 575px) {
  .call-us:hover, .whatsapp-us:hover{
    max-width: 50px !important;
  }
}

.call-us svg {
  width: 45px !important;
  margin-right: 15px;
}

.popup {
  display: none;
  position: fixed;
  z-index: 9999;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: scroll;
  background-color: rgb(0 0 0 / .6)
}

.popup-content {
  margin: auto;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 4px;
  /* background-color: #fff;
  padding: 25px; */
}

@media(min-width:768px) and (max-width:1200px) {
  .popup-content {
    width: 450px
  }
}

@media(min-width: 1200px) {
  .popup-content {
    width: 28%;
  }
}

@media(max-width: 547px) {
  .popup-content {
    width: 95%;
  }
}

.form-trigger {
  cursor: pointer
}
.close {
  color: #333;
  z-index: 99;
  float: right;
  font-size: 30px;
  font-weight: 400;
  cursor: pointer;
  position: relative;
  cursor: pointer;
  top: 2px;
  right: 20px;
}
.close:hover{
  color: #000;
}
.error {
  color: red;
  font-size: 12px;
  margin-top: 5px;
  display: none;
}

.iti--separate-dial-code .iti__selected-dial-code{
  color: #55585b;
}
.iti{
  width: 100%;
}
.w-20{
  width: 20px !important;
}

.h9-contact-form_wrap .iti--separate-dial-code .iti__selected-flag{
  border-radius: 50px 0 0 50px !important;
}


.tp-contact-main-icon {
  width: 50px;
  height: 50px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  line-height: 50px;
  border-radius: 100px;
  flex-shrink: 0;
}
.tp-contact-main-info {
  padding: 40px 25px;
}
.tp-contact-main-info h3{
  font-size: 24px;
  margin-bottom: 25px;
}
.underline-black {
  background-image: linear-gradient(#1f3130, #1f3130), linear-gradient(#1f3130, #1f3130);
  background-size: 0 1px, 0 1px;
  background-position: 100% 100%, 0 100%;
  background-repeat: no-repeat;
  transition: background-size 0.3s linear;
  -webkit-transition: all 0.4s ease 0.3s 0s ease-out;
  -moz-transition: all 0.4s ease 0.3s 0s ease-out;
  -ms-transition: all 0.4s ease 0.3s 0s ease-out;
  -o-transition: all 0.4s ease 0.3s 0s ease-out;
  transition: all 0.4s ease 0.3s 0s ease-out;
}
.mr-15 {
  margin-right: 15px;
}
.mb-20 {
  margin-bottom: 20px;
}

.mb-5px{
  margin-bottom: 5px;
}
.fs-12 {
  font-size: 12px;
}
.w-25{
  width: 25px !important;
}

.check-list-one{
  margin-top: 20px;
}

.h-114{
  height: 114px;
}

@media (min-width: 768px) {
  .header-wrapper {
    padding-top: 15px;
  }
  .h10-counter-section,
  .h5-testimonial-section {
    overflow: hidden;
    margin-top: 20px;
    /* border-radius: 30px; */
  }
}

@media (max-width: 575px) {
  .xs-h-auto {
    height: auto !important;
  }
  .hero_lists li {
    font-size: 16px;
  }
  .sec-heading .sec-title {
    font-size: 24px;
    line-height: 1.4;
  }
  .tp-contact-main-info h3 {
    font-size: 20px;
  }
  .about-left-content {
    margin-top: 25px;
  }
}

.w-150 .swiper-slide img {
  width: 150px;
}

.h10-hero:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, #051229 0%, #fff0 60%);
  /* background-color: var(--tj-color-theme-dark); */
  /* opacity: .75; */
  z-index: 2;
  pointer-events: none;
}

@media (min-width: 1400px) {
  .container {
      max-width: 1350px !important;
  }
}



.price-tag {
  display: inline-flex;
  border: 1px solid var(--tj-color-theme-secondary);
  border-radius: 12px;
  overflow: hidden;
  margin-top: 20px;
}

.price-left {
  background-color: #0b1741; /* Dark blue */
  color: #fff;
  padding: 12px 16px;
  font-size: 12px;
  font-weight: bold;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  border-right: 1px solid #60EFFF;
}

.price-right {
  background-color: #0b1741;
  /* color: #0b1741; */
  padding: 12px 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.price-amount {
  font-size: 28px;
  font-weight: 800;
  color: #fff;
}

.video-wrapper {
  height: 650px;
}


/* Popup Overlay */
.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(8px);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s cubic-bezier(0.32, 0.72, 0, 1);
}

.popup-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* Popup Container */
.popup-container {
  background: white;
  border-radius: 24px;
  width: 90%;
  max-width: 500px;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
  transform: translateY(20px) scale(0.98);
  transition: transform 0.4s cubic-bezier(0.32, 0.72, 0, 1), opacity 0.4s ease;
  opacity: 0;
}

.popup-overlay.active .popup-container {
  transform: translateY(0) scale(1);
  opacity: 1;
}

/* Popup Background Image */
.popup-bg {
  position: relative;
  height: 220px;
  background-image: url('../images/bg/tech-experts.webp');
  background-size: cover;
  background-position: center;
}

.popup-bg::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(360deg, #fff 0%, #fff0 50%);
  z-index: 1;
  pointer-events: none;
}

/* Popup Content */
.popup-content2 {
  padding: 32px;
  text-align: center;
}

.popup-title {
  font-size: 26px;
  font-weight: 700;
  color: #111;
  margin-bottom: 16px;
  line-height: 1.3;
}

.popup-desc {
  font-size: 16px;
  color: #666;
  line-height: 1.6;
  margin-bottom: 32px;
  max-width: 85%;
  margin-left: auto;
  margin-right: auto;
}

/* Popup Actions */
.popup-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
}

.btn {
  padding: 14px 28px;
  border-radius: 12px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all 0.2s ease;
  font-size: 15px;
}

.btn-primary {
  background: linear-gradient(135deg, #4f46e5, #8b5cf6);
  color: white;
  box-shadow: 0 4px 12px rgba(79, 70, 229, 0.2);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(79, 70, 229, 0.3);
}

.btn-secondary {
  background: white;
  color: #4f46e5;
  border: 1px solid #e5e7eb;
}

.btn-secondary:hover {
  background: #f9fafb;
  border-color: #d1d5db;
}

.close-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  background: #fff;
  z-index: 9;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: all 0.2s ease;
}

.close-btn:hover {
  background: white;
  transform: rotate(90deg);
}

/* Responsive */
@media (max-width: 600px) {
  .popup-bg {
    height: 140px;
  }
  
  .popup-content2 {
    padding: 24px;
  }
  
  .popup-title {
    font-size: 22px;
  }
  
  .popup-desc {
    font-size: 15px;
    max-width: 100%;
  }
  
  .popup-actions {
    flex-direction: column;
    gap: 10px;
  }
  
  .btn {
    width: 100%;
  }
}

.contact-button {
  gap: 20px;
  display: grid;
}

video {
  background-size: cover;
  display: table-cell;
  vertical-align: middle;
  width: 100%;
  object-fit:contain
}
video {
  border-radius: 25px;
}