/* START: Default CSS */
@import url("https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Libre+Franklin:ital,wght@0,100..900;1,100..900&display=swap");
:root {
  /**
    @Font-Family Declaration
  */
  --tj-ff-body: 'Lato', sans-serif;
  --tj-ff-heading: 'Libre Franklin', 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: #f7f7f7;
  --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: #051229;
  --tj-color-text-body: #364052;
  --tj-color-text-body-2: #7e8590;
  --tj-color-theme-primary: #00aeef;
  --tj-color-theme-dark: #051229;
  --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: var(--tj-color-common-white);
  line-height: 1.6;
}
body main {
  position: relative;
  z-index: 2;
}

html.lenis,
html.lenis body {
  height: auto;
}

.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
  -ms-scroll-chaining: none;
  overscroll-behavior: contain;
}

.lenis.lenis-stopped {
  overflow: hidden;
}

.lenis.lenis-scrolling iframe {
  pointer-events: none;
}

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;
  letter-spacing: -0.025em;
  -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;
  }
}

h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
  font-size: inherit;
  color: inherit;
  font-weight: inherit;
  line-height: inherit;
  display: block;
}

h1:hover a,
h2:hover a,
h3:hover a,
h4:hover a,
h5:hover a,
h6:hover a {
  font-size: inherit;
  color: inherit;
  font-weight: inherit;
}

ul {
  margin: 0px;
  padding: 0px;
}

a,
.btn,
button,
span,
p,
input,
select,
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,
.button: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;
}

.uppercase {
  text-transform: uppercase;
}

.capitalize {
  text-transform: capitalize;
}

select,
.nice-select,
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;
}

input[type=color] {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background: none;
  border: 0;
  cursor: pointer;
  height: 100%;
  width: 100%;
  padding: 0;
  border-radius: 50%;
}

* {
  scrollbar-width: thin;
  scrollbar-color: var(--tj-color-theme-primary) var(--tj-color-theme-bg);
}

::-webkit-scrollbar {
  height: 4px;
  width: 6px;
}

::-webkit-scrollbar-thumb {
  background: var(--tj-color-theme-primary);
  -webkit-border-radius: 1ex;
  -webkit-box-shadow: 0px 0px 0px rgba(0, 0, 0, 0.75);
}

::-webkit-scrollbar-corner {
  background: transparent;
}

*::-moz-selection {
  background: var(--tj-color-common-black);
  color: var(--tj-color-common-white);
  text-shadow: none;
}

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

::selection {
  background: var(--tj-color-common-black);
  color: var(--tj-color-common-white);
  text-shadow: none;
}

*::-webkit-input-placeholder {
  color: var(--tj-color-common-black);
  font-size: var(--tj-fs-body);
  opacity: 1;
}
*::-moz-placeholder {
  color: var(--tj-color-common-black);
  font-size: var(--tj-fs-body);
  opacity: 1;
}
*:-ms-input-placeholder {
  color: var(--tj-color-common-black);
  font-size: var(--tj-fs-body);
  opacity: 1;
}
*::-ms-input-placeholder {
  color: var(--tj-color-common-black);
  font-size: var(--tj-fs-body);
  opacity: 1;
}
*::placeholder {
  color: var(--tj-color-common-black);
  font-size: var(--tj-fs-body);
  opacity: 1;
}

/**
 	Common Classes CSS
*/
.dark-bg {
  background-color: var(--tj-color-theme-dark);
}

.section-space {
  padding: 120px 0;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .section-space {
    padding: 100px 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: 80px 0;
  }
}

.section-bottom-space {
  padding-bottom: 120px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .section-bottom-space {
    padding-bottom: 100px;
  }
}
@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: 80px;
  }
}

img {
  max-width: 100%;
}

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

.m-img img {
  max-width: 100%;
}

.fix {
  overflow: hidden;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.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;
}

.move-anim {
  -webkit-animation: move 5s linear infinite;
          animation: move 5s linear infinite;
}

.move-anim-2 {
  -webkit-animation: move-two 5s linear infinite;
          animation: move-two 5s linear infinite;
}

.zoominout {
  -webkit-animation: zoom-effect 3s linear infinite;
          animation: zoom-effect 3s linear infinite;
}

.wow {
  opacity: 0;
}

.svg-animate svg path {
  -webkit-animation-play-state: paused;
          animation-play-state: paused;
  opacity: 1;
}

/* 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.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);
}
.tj-primary-btn.header_btn {
  background-color: var(--tj-color-common-white);
  padding: 4.5px;
}
.tj-primary-btn.header_btn .btn_inner {
  padding: 12px 18px 12px 50px;
}
.tj-primary-btn.header_btn .btn_inner::before {
  width: 40px;
}
.tj-primary-btn.header_btn .btn_inner .btn_icon {
  min-width: 40px;
  font-size: 1.4em;
}
.tj-primary-btn.header_btn .btn_inner .btn_text {
  color: var(--tj-color-heading-primary);
}
.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);
}

.icon-btn {
  margin-top: 0;
  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-common-white);
  background-color: var(--tj-color-heading-primary);
  overflow: hidden;
}
.icon-btn i,
.icon-btn svg {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  line-height: 1;
  color: var(--tj-color-common-white);
}
.icon-btn i {
  -webkit-transform: rotate(-45deg) translateX(0);
      -ms-transform: rotate(-45deg) translateX(0);
          transform: rotate(-45deg) translateX(0);
  -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-shadow: -40px 0 0;
}
.icon-btn:hover i {
  -webkit-transform: rotate(-45deg) translateX(40px);
      -ms-transform: rotate(-45deg) translateX(40px);
          transform: rotate(-45deg) translateX(40px);
}

.icon-btn-2 {
  font-weight: var(--tj-fw-bold);
  color: var(--tj-color-theme-dark);
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-decoration: none;
  gap: 8px;
  overflow: hidden;
  position: relative;
}
.icon-btn-2 .btn-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  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: 22px;
  color: var(--tj-color-common-white);
  background-color: var(--tj-color-theme-dark);
  -webkit-transition: background-color 0.3s ease-in-out 0s;
  transition: background-color 0.3s ease-in-out 0s;
}
.icon-btn-2 .btn-text {
  -webkit-transform: translateX(-20px);
      -ms-transform: translateX(-20px);
          transform: translateX(-20px);
  opacity: 0;
  visibility: hidden;
  white-space: nowrap;
  -webkit-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
}
.icon-btn-2:hover .btn-icon {
  background-color: var(--tj-color-theme-primary);
}
.icon-btn-2:hover .btn-text {
  -webkit-transform: translateX(0);
      -ms-transform: translateX(0);
          transform: translateX(0);
  opacity: 1;
  visibility: visible;
}

.text-btn-2 {
  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-2 .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: 22px;
  height: 22px;
  border-radius: 50%;
  background-color: var(--tj-color-theme-dark);
  color: var(--tj-color-common-white);
  font-size: 18px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.text-btn-2 .icon i,
.text-btn-2 .icon svg {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  line-height: 1;
}
.text-btn-2 > *:nth-child(1) {
  -webkit-transform: scale3d(0.5, 0.5, 1);
          transform: scale3d(0.5, 0.5, 1);
  -webkit-margin-end: -28px;
          margin-inline-end: -28px;
  background-color: var(--tj-color-theme-primary);
  opacity: 0;
}
.text-btn-2 > *:nth-child(3) {
  -webkit-transform: scale3d(1, 1, 1);
          transform: scale3d(1, 1, 1);
  -webkit-margin-start: 0;
          margin-inline-start: 0;
  opacity: 1;
}
.text-btn-2:hover > *:nth-child(1) {
  -webkit-transform: scale3d(1, 1, 1);
          transform: scale3d(1, 1, 1);
  -webkit-margin-end: 0;
          margin-inline-end: 0;
  opacity: 1;
}
.text-btn-2:hover > *:nth-child(3) {
  -webkit-transform: scale3d(0.5, 0.5, 1);
          transform: scale3d(0.5, 0.5, 1);
  -webkit-margin-start: -28px;
          margin-inline-start: -28px;
  opacity: 0;
}

/* !END: Button CSS */
/* START: Mouse CSS */
.cursor-outer {
  -webkit-margin-start: -15px;
          margin-inline-start: -15px;
  margin-top: -15px;
  width: 30px;
  height: 30px;
  border: 2px solid var(--tj-color-theme-primary);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  z-index: 10000000;
  opacity: 0.5;
  -webkit-transition: all 0.08s ease-out;
  transition: all 0.08s ease-out;
}

.mouseCursor {
  position: fixed;
  top: 0;
  inset-inline-start: 0;
  inset-inline-end: 0;
  bottom: 0;
  pointer-events: none;
  border-radius: 50%;
  -webkit-transform: translateZ(0);
          transform: translateZ(0);
  visibility: hidden;
  text-align: center;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .mouseCursor {
    display: none;
  }
}

.cursor-inner {
  -webkit-margin-start: -3px;
          margin-inline-start: -3px;
  margin-top: -3px;
  width: 6px;
  height: 6px;
  z-index: 10000001;
  background-color: var(--tj-color-theme-primary);
  -webkit-transition: width 0.3s ease-in-out, height 0.3s ease-in-out, margin 0.3s ease-in-out, opacity 0.3s ease-in-out;
  transition: width 0.3s ease-in-out, height 0.3s ease-in-out, margin 0.3s ease-in-out, opacity 0.3s ease-in-out;
}
.cursor-inner span {
  color: var(--tj-color-common-white);
  line-height: 120px;
  opacity: 0;
  font-size: 15px;
  font-weight: 700;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 8px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .cursor-inner span {
    line-height: 80px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .cursor-inner span {
    line-height: 50px;
  }
}
.cursor-inner.cursor-big span {
  opacity: 1;
}

.mouseCursor.cursor-big {
  width: 120px;
  height: 120px;
  -webkit-margin-start: -40px;
          margin-inline-start: -40px;
  margin-top: -40px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .mouseCursor.cursor-big {
    width: 80px;
    height: 80px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .mouseCursor.cursor-big {
    width: 50px;
    height: 50px;
  }
}

.mouseCursor.cursor-big.cursor-outer {
  display: none;
}
.mouseCursor.cursor-big.d-none {
  display: none;
}

.project-slider-one,
.slider-drag .swiper-slide {
  cursor: none;
}

.tj-cursor {
  position: fixed;
  z-index: 1000;
  top: 0;
  inset-inline-start: 0;
  width: 120px;
  height: 120px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 8px;
  border-radius: 50%;
  color: var(--tj-color-common-white);
  background-color: var(--tj-color-theme-primary);
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.2s ease, visibility 0.2s ease;
  transition: opacity 0.2s ease, visibility 0.2s ease;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tj-cursor {
    width: 80px;
    height: 80px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .tj-cursor {
    width: 50px;
    height: 50px;
  }
}

/* !END: Mouse CSS */
/* START: Preloader CSS */
.preloader {
  position: fixed;
  top: 0;
  inset-inline-start: 0;
  inset-inline-end: 0;
  bottom: 0;
  z-index: 1000;
  background-color: var(--tj-color-common-white);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.loading-container,
.loading {
  height: 100px;
  position: relative;
  width: 100px;
  border-radius: 100%;
}

.loading-container {
  margin: 40px auto;
}

.loading {
  border: 1px solid transparent;
  border-color: transparent var(--tj-color-theme-primary) transparent var(--tj-color-theme-primary);
  -webkit-animation: rotate-loading 1.5s linear 0s infinite normal;
          animation: rotate-loading 1.5s linear 0s infinite normal;
  -webkit-transform-origin: 50% 50%;
      -ms-transform-origin: 50% 50%;
          transform-origin: 50% 50%;
}

.loading-container:hover .loading,
.loading-container .loading {
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}

#loading-icon {
  position: absolute;
  top: 50%;
  inset-inline-start: 50%;
  max-width: 66px;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

@-webkit-keyframes rotate-loading {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@keyframes rotate-loading {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
/* 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;
}
.tj-header-area.header-duplicate {
  background-color: var(--tj-color-theme-dark);
  -webkit-box-shadow: 0 0 15px 0 rgba(255, 255, 255, 0.06);
          box-shadow: 0 0 15px 0 rgba(255, 255, 255, 0.06);
  position: fixed;
  z-index: 99;
  visibility: hidden;
  -webkit-transform: translateY(-120%);
      -ms-transform: translateY(-120%);
          transform: translateY(-120%);
  -webkit-transition: visibility 500ms ease, -webkit-transform 500ms ease;
  transition: visibility 500ms ease, -webkit-transform 500ms ease;
  transition: transform 500ms ease, visibility 500ms ease;
  transition: transform 500ms ease, visibility 500ms ease, -webkit-transform 500ms ease;
}
.tj-header-area.sticky {
  -webkit-transform: translateY(0);
      -ms-transform: translateY(0);
          transform: translateY(0);
  visibility: visible;
  z-index: 100;
}
.tj-header-area.header-1 .menu_btn {
  color: var(--tj-color-common-white);
  -webkit-margin-start: 10px;
          margin-inline-start: 10px;
}
.tj-header-area.header-6.header-duplicate .mainmenu ul:not(.sub-menu) > li > a {
  color: var(--tj-color-common-white);
}
.tj-header-area.header-6.header-duplicate .mainmenu ul:not(.sub-menu) > li.current-menu-ancestor > a, .tj-header-area.header-6.header-duplicate .mainmenu ul:not(.sub-menu) > li.current-menu-item > a, .tj-header-area.header-6.header-duplicate .mainmenu ul:not(.sub-menu) > li:hover > a {
  color: var(--tj-color-theme-primary);
}
.tj-header-area.header-6.header-duplicate .menu_btn {
  color: var(--tj-color-common-white);
}
.tj-header-area.header-6.header-duplicate .menu_btn .cubes span {
  border-color: var(--tj-color-common-white);
}


.site-logo .logo {
  display: inline-block;
  max-width: 150px;
  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 {
  margin: 0;
  padding: 0;
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 30px;
}
.mainmenu ul > li {
  position: relative;
  z-index: 1;
}
.mainmenu ul > li > a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  font-size: 16px;
  color: var(--tj-color-common-white-2);
  padding: 32px 0;
  font-weight: var(--tj-fw-bold);
  line-height: 1;
  -webkit-column-gap: 5px;
     -moz-column-gap: 5px;
          column-gap: 5px;
}
.mainmenu ul > li.menu-item-has-children > a::after, .mainmenu ul > li.has-dropdown > a::after {
  content: "\e91a";
  font-family: "solvior-icons";
  -webkit-transition: -webkit-transform 0.4s;
  transition: -webkit-transform 0.4s;
  transition: transform 0.4s;
  transition: transform 0.4s, -webkit-transform 0.4s;
}
.mainmenu ul > li.current-menu-ancestor > a, .mainmenu ul > li.current-menu-item > a, .mainmenu ul > li:hover > a {
  color: var(--tj-color-theme-primary);
}
.mainmenu ul > li:hover > a::after {
  -webkit-transform: rotate(-180deg);
      -ms-transform: rotate(-180deg);
          transform: rotate(-180deg);
}
.mainmenu ul > li:hover > .sub-menu {
  visibility: visible;
  opacity: 1;
  top: 100%;
  pointer-events: inherit;
}
.mainmenu ul > li:hover > .sub-menu::before {
  width: 100%;
}
.mainmenu ul > li > .sub-menu {
  width: 230px;
  background: var(--tj-color-common-white);
  -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: start;
  text-align: start;
  gap: 0;
  position: absolute;
  padding: 10px 0;
  z-index: 9;
  top: 85%;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  -webkit-box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
          box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
}
.mainmenu ul > li > .sub-menu::before {
  content: "";
  position: absolute;
  inset-inline-start: 0;
  top: 0;
  width: 0;
  height: 3px;
  background: var(--tj-color-theme-primary);
  -webkit-transition: 0.6s;
  transition: 0.6s;
}
.mainmenu ul > li > .sub-menu > li {
  width: 100%;
}
.mainmenu ul > li > .sub-menu > li > a {
  width: 100%;
  padding: 12px 15px;
  color: var(--tj-color-text-body);
  line-height: 1.3;
}
.mainmenu ul > li > .sub-menu > li > a::before {
  position: absolute;
  content: "";
  width: 0;
  height: 2px;
  background: var(--tj-color-theme-primary);
  top: 21px;
  inset-inline-start: 15px;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.mainmenu ul > li > .sub-menu > li > a::after {
  position: absolute;
  inset-inline-end: 12px;
}
.mainmenu ul > li > .sub-menu > li.menu-item-has-children > a, .mainmenu ul > li > .sub-menu > li.has-dropdown > a {
  padding: 12px 28px 12px 15px;
}
.mainmenu ul > li > .sub-menu > li.menu-item-has-children > a::after, .mainmenu ul > li > .sub-menu > li.has-dropdown > a::after {
  content: "\e91c";
  -webkit-transition: none;
  transition: none;
}
.mainmenu ul > li > .sub-menu > li.current-menu-ancestor > a, .mainmenu ul > li > .sub-menu > li.current-menu-item > a, .mainmenu ul > li > .sub-menu > li:hover > a {
  color: var(--tj-color-theme-primary);
  -webkit-padding-start: 36px;
          padding-inline-start: 36px;
  -webkit-padding-end: 5px;
          padding-inline-end: 5px;
}
.mainmenu ul > li > .sub-menu > li.current-menu-ancestor > a::before, .mainmenu ul > li > .sub-menu > li.current-menu-item > a::before, .mainmenu ul > li > .sub-menu > li:hover > a::before {
  width: 12px;
}
.mainmenu ul > li > .sub-menu > li.current-menu-ancestor > a::after, .mainmenu ul > li > .sub-menu > li.current-menu-item > a::after, .mainmenu ul > li > .sub-menu > li:hover > a::after {
  -webkit-transform: rotate(0);
      -ms-transform: rotate(0);
          transform: rotate(0);
}
.mainmenu ul > li > .sub-menu > li > .sub-menu {
  top: -15%;
  inset-inline-start: 100%;
}
.mainmenu ul > li > .sub-menu > li:hover > .sub-menu {
  top: 0;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .mainmenu ul {
    gap: 18px;
  }
  .mainmenu ul > li > a {
    -webkit-column-gap: 3px;
       -moz-column-gap: 3px;
            column-gap: 3px;
  }
}
.mainmenu.menu-3 ul > li > a {
  color: #676e7a;
}
.mainmenu.menu-3 ul > li.current-menu-ancestor > a, .mainmenu.menu-3 ul > li.current-menu-item > a, .mainmenu.menu-3 ul > li:hover > a {
  color: var(--tj-color-theme-primary);
}

.header_right_info {
  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: end;
      -ms-flex-pack: end;
          justify-content: end;
  -webkit-column-gap: 30px;
     -moz-column-gap: 30px;
          column-gap: 30px;
  row-gap: 20px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .header_right_info {
    -webkit-column-gap: 20px;
       -moz-column-gap: 20px;
            column-gap: 20px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .header_right_info {
    -webkit-margin-start: auto;
            margin-inline-start: auto;
  }
}

.header_contact {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  gap: 8px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.header_contact .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: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: rgba(247, 247, 247, 0.1);
  -webkit-backdrop-filter: blur(50px);
          backdrop-filter: blur(50px);
  font-size: 16px;
  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;
}
.header_contact .text {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  line-height: 1;
  color: var(--tj-color-common-white);
}
.header_contact:hover .icon {
  background-color: var(--tj-color-theme-primary);
}

.header_search {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  color: var(--tj-color-common-white);
  font-size: 16px;
  font-weight: var(--tj-fw-bold);
  line-height: 1;
  background-color: transparent;
  border: none;
  outline: none;
  -webkit-box-shadow: 0 0 0;
          box-shadow: 0 0 0;
}
.header_search i {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  color: var(--tj-color-common-white);
  line-height: 1;
  font-size: 18px;
}
.header_search:hover {
  color: var(--tj-color-theme-primary);
}
.header_search:hover i {
  color: var(--tj-color-theme-primary);
}

.menu_btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  font-size: 16px;
  font-weight: var(--tj-fw-bold);
  line-height: 1;
  color: var(--tj-color-heading-primary);
}
.menu_btn i {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  line-height: 1;
  font-size: 22px;
}

.sidebar-menu {
  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;
}
.sidebar-menu .menu-btn {
  font-size: 16px;
  color: var(--tj-color-common-white);
  font-weight: var(--tj-fw-bold);
}
.sidebar-menu .menu-btn span {
  font-size: 20px;
}

.cubes {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: 21px;
  gap: 2px;
}
.cubes span {
  width: 9px;
  height: 9px;
  border-radius: 3px;
  border: 2px solid var(--tj-color-theme-dark);
}
.cubes span:nth-child(2) {
  -webkit-box-shadow: inset 0 0 0 2px var(--tj-color-theme-dark);
          box-shadow: inset 0 0 0 2px var(--tj-color-theme-dark);
  border: 0;
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.menu_btn:hover .cubes span:nth-child(2) {
  -webkit-animation: bounceTwice 0.6s linear forwards;
          animation: bounceTwice 0.6s linear forwards;
}

@-webkit-keyframes bounceTwice {
  0% {
    -webkit-transform: rotate(45deg) translateY(0);
            transform: rotate(45deg) translateY(0);
  }
  25% {
    -webkit-transform: rotate(0deg) translateY(-3px);
            transform: rotate(0deg) translateY(-3px);
  }
  50% {
    -webkit-transform: rotate(0deg) translateY(0);
            transform: rotate(0deg) translateY(0);
  }
  75% {
    -webkit-transform: rotate(0deg) translateY(-3px);
            transform: rotate(0deg) translateY(-3px);
  }
  100% {
    -webkit-transform: rotate(0deg) translateY(0);
            transform: rotate(0deg) translateY(0);
  }
}

@keyframes bounceTwice {
  0% {
    -webkit-transform: rotate(45deg) translateY(0);
            transform: rotate(45deg) translateY(0);
  }
  25% {
    -webkit-transform: rotate(0deg) translateY(-3px);
            transform: rotate(0deg) translateY(-3px);
  }
  50% {
    -webkit-transform: rotate(0deg) translateY(0);
            transform: rotate(0deg) translateY(0);
  }
  75% {
    -webkit-transform: rotate(0deg) translateY(-3px);
            transform: rotate(0deg) translateY(-3px);
  }
  100% {
    -webkit-transform: rotate(0deg) translateY(0);
            transform: rotate(0deg) translateY(0);
  }
}
/* !END: Header CSS */
/* START: Mega Menu CSS */
.gap-60-25 {
  --bs-gutter-x: 60px;
}
.gap-60-25 .row {
  --bs-gutter-x: 25px;
  --bs-gutter-y: 30px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .gap-60-25 .row {
    --bs-gutter-y: 30px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .gap-60-25 {
    --bs-gutter-x: 0;
  }
  .gap-60-25 .row {
    --bs-gutter-x: 0;
    --bs-gutter-y: 20px;
  }
}

.gap-30-30 {
  --bs-gutter-x: 30;
}
.gap-30-30 .row {
  --bs-gutter-x: 30px;
  --bs-gutter-y: 30px;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .gap-30-30 {
    --bs-gutter-x: 20px;
  }
  .gap-30-30 .row {
    --bs-gutter-y: 20px;
  }
}

.mainmenu ul > li:has(.mega-menu),
.mobile_menu ul > li:has(.mega-menu) {
  position: static;
}
.mainmenu ul > li > .mega-menu,
.mobile_menu ul > li > .mega-menu {
  max-width: 1920px;
  width: 100%;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  padding: 30px 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) {
  .mainmenu ul > li > .mega-menu,
  .mobile_menu ul > li > .mega-menu {
    -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
            transform: translateX(0);
  }
  .mainmenu ul > li > .mega-menu li,
  .mobile_menu ul > li > .mega-menu li {
    -webkit-padding-start: 0 !important;
            padding-inline-start: 0 !important;
  }
}
.mainmenu ul > li > .mega-menu::before,
.mobile_menu ul > li > .mega-menu::before {
  display: none;
}
.mainmenu ul > li > .mega-menu .container-fluid,
.mobile_menu ul > li > .mega-menu .container-fluid {
  max-width: 1920px;
  -webkit-margin-start: auto;
          margin-inline-start: auto;
  -webkit-margin-end: auto;
          margin-inline-end: auto;
  width: 100%;
}
.mainmenu ul > li > .mega-menu .col-xl-3,
.mobile_menu ul > li > .mega-menu .col-xl-3 {
  width: 20%;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .mainmenu ul > li > .mega-menu .col-xl-3,
  .mobile_menu ul > li > .mega-menu .col-xl-3 {
    width: 25%;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .mainmenu ul > li > .mega-menu .col-xl-3,
  .mobile_menu ul > li > .mega-menu .col-xl-3 {
    width: 100%;
  }
}
.mainmenu ul > li > .mega-menu-pages,
.mobile_menu ul > li > .mega-menu-pages {
  width: calc(100% - 30px);
  max-width: 1320px;
  padding: 0;
  margin: 0 auto;
}
.mainmenu ul > li > .mega-menu-pages .mega-menu-wrapper,
.mobile_menu ul > li > .mega-menu-pages .mega-menu-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .mainmenu ul > li > .mega-menu-pages .mega-menu-wrapper,
  .mobile_menu ul > li > .mega-menu-pages .mega-menu-wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.mainmenu ul > li > .mega-menu-pages .mega-menu-pages-single,
.mobile_menu ul > li > .mega-menu-pages .mega-menu-pages-single {
  width: 315px;
  -webkit-border-start: 1px solid var(--tj-color-border-2);
          border-inline-start: 1px solid var(--tj-color-border-2);
  padding: 30px 30px 20px;
}
.mainmenu ul > li > .mega-menu-pages .mega-menu-pages-single:last-child, .mainmenu ul > li > .mega-menu-pages .mega-menu-pages-single:first-child,
.mobile_menu ul > li > .mega-menu-pages .mega-menu-pages-single:last-child,
.mobile_menu ul > li > .mega-menu-pages .mega-menu-pages-single:first-child {
  -webkit-border-start: 0;
          border-inline-start: 0;
}
.mainmenu ul > li > .mega-menu-pages .mega-menu-pages-single:last-child,
.mobile_menu ul > li > .mega-menu-pages .mega-menu-pages-single:last-child {
  width: 377px;
  padding: 15px 15px;
  -webkit-padding-start: 0;
          padding-inline-start: 0;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .mainmenu ul > li > .mega-menu-pages .mega-menu-pages-single:last-child,
  .mobile_menu ul > li > .mega-menu-pages .mega-menu-pages-single:last-child {
    width: 350px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .mainmenu ul > li > .mega-menu-pages .mega-menu-pages-single:last-child,
  .mobile_menu ul > li > .mega-menu-pages .mega-menu-pages-single:last-child {
    width: 100%;
    padding: 0;
  }
}
.mainmenu ul > li > .mega-menu-pages .mega-menu-pages-single .tj-sidebar-cta,
.mobile_menu ul > li > .mega-menu-pages .mega-menu-pages-single .tj-sidebar-cta {
  height: 460px;
}
@media (max-width: 575px) {
  .mainmenu ul > li > .mega-menu-pages .mega-menu-pages-single .tj-sidebar-cta,
  .mobile_menu ul > li > .mega-menu-pages .mega-menu-pages-single .tj-sidebar-cta {
    height: 400px;
    padding: 30px 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) {
  .mainmenu ul > li > .mega-menu-pages .mega-menu-pages-single,
  .mobile_menu ul > li > .mega-menu-pages .mega-menu-pages-single {
    width: 100%;
    padding: 20px 0;
    -webkit-border-start: 0;
            border-inline-start: 0;
  }
}
.mainmenu ul > li > .mega-menu-pages .mega-menu-title,
.mobile_menu ul > li > .mega-menu-pages .mega-menu-title {
  font-size: 16px;
  font-family: var(--tj-ff-body);
  padding-bottom: 10px;
  position: relative;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .mainmenu ul > li > .mega-menu-pages .mega-menu-title,
  .mobile_menu ul > li > .mega-menu-pages .mega-menu-title {
    color: var(--tj-color-common-white);
  }
}
.mainmenu ul > li > .mega-menu-pages .mega-menu-title::before,
.mobile_menu ul > li > .mega-menu-pages .mega-menu-title::before {
  position: absolute;
  content: "";
  width: 32px;
  height: 3px;
  background: var(--tj-color-border-2);
  bottom: 0px;
  inset-inline-start: 0;
}
.mainmenu ul > li > .mega-menu-pages .mega-menu-title::after,
.mobile_menu ul > li > .mega-menu-pages .mega-menu-title::after {
  position: absolute;
  content: "";
  width: 4px;
  height: 3px;
  background: var(--tj-color-common-white);
  bottom: 0px;
  inset-inline-start: 20px;
}
.mainmenu ul > li > .mega-menu-pages .mega-menu-list,
.mobile_menu ul > li > .mega-menu-pages .mega-menu-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.mainmenu ul > li > .mega-menu-pages .mega-menu-list a,
.mobile_menu ul > li > .mega-menu-pages .mega-menu-list a {
  font-weight: var(--tj-fw-bold);
  color: var(--tj-color-common-black-2);
  padding: 12px 0;
  line-height: 1;
  position: relative;
}
.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;
}
.mainmenu ul > li > .mega-menu-pages .mega-menu-list a::before,
.mobile_menu ul > li > .mega-menu-pages .mega-menu-list a::before {
  position: absolute;
  content: "";
  width: 0;
  height: 2px;
  background: var(--tj-color-theme-primary);
  top: 21px;
  inset-inline-start: 0;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.mainmenu ul > li > .mega-menu-pages .mega-menu-list a:hover, .mainmenu ul > li > .mega-menu-pages .mega-menu-list a.active,
.mobile_menu ul > li > .mega-menu-pages .mega-menu-list a:hover,
.mobile_menu ul > li > .mega-menu-pages .mega-menu-list a.active {
  color: var(--tj-color-theme-primary);
  -webkit-padding-start: 20px;
          padding-inline-start: 20px;
}
.mainmenu ul > li > .mega-menu-pages .mega-menu-list a:hover::before, .mainmenu ul > li > .mega-menu-pages .mega-menu-list a.active::before,
.mobile_menu ul > li > .mega-menu-pages .mega-menu-list a:hover::before,
.mobile_menu ul > li > .mega-menu-pages .mega-menu-list a.active::before {
  width: 12px;
}
.mainmenu ul > li > .mega-menu .mega-menu-badge,
.mobile_menu ul > li > .mega-menu .mega-menu-badge {
  font-size: 10px;
  line-height: 1;
  letter-spacing: -0.025em;
  color: var(--tj-color-common-white);
  background-color: var(--tj-color-theme-primary);
  padding: 3px 7px;
  border-radius: 40px;
}
.mainmenu ul > li > .mega-menu .mega-menu-badge-hot,
.mobile_menu ul > li > .mega-menu .mega-menu-badge-hot {
  background-color: var(--tj-color-red-1);
}
.mainmenu ul > li > .mega-menu-service,
.mobile_menu ul > li > .mega-menu-service {
  width: 346px;
  -webkit-margin-start: -25px;
          margin-inline-start: -25px;
  padding: 15px 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) {
  .mainmenu ul > li > .mega-menu-service,
  .mobile_menu ul > li > .mega-menu-service {
    width: 100%;
    -webkit-margin-start: 0;
            margin-inline-start: 0;
  }
}
.mainmenu ul > li > .mega-menu-service::before,
.mobile_menu ul > li > .mega-menu-service::before {
  display: none;
}
.mainmenu ul > li > .mega-menu-service li a,
.mobile_menu ul > li > .mega-menu-service li a {
  padding: 15px 25px;
  border-bottom: 1px solid var(--tj-color-border-2);
}
.mainmenu ul > li > .mega-menu-service li:last-child a,
.mobile_menu ul > li > .mega-menu-service li:last-child a {
  border-bottom: 0;
}
.mainmenu ul > li > .mega-menu-service li:hover a,
.mobile_menu ul > li > .mega-menu-service li:hover a {
  -webkit-padding-start: 25px;
          padding-inline-start: 25px;
}
.mainmenu ul > li > .mega-menu-service li:hover a::before,
.mobile_menu ul > li > .mega-menu-service li:hover a::before {
  display: none;
}
.mainmenu ul > li > .mega-menu-service-single,
.mobile_menu ul > li > .mega-menu-service-single {
  gap: 12px;
}
.mainmenu ul > li > .mega-menu-service-single .mega-menu-service-icon,
.mobile_menu ul > li > .mega-menu-service-single .mega-menu-service-icon {
  width: 54px;
  height: 54px;
  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;
  border-radius: 50%;
  position: relative;
  z-index: 2;
  text-align: center;
  background-color: var(--tj-color-theme-bg);
  color: var(--tj-color-theme-primary);
  font-size: 40px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-transition: 0.4s ease-in-out 0s;
  transition: 0.4s ease-in-out 0s;
}
.mainmenu ul > li > .mega-menu-service-single .mega-menu-service-title,
.mobile_menu ul > li > .mega-menu-service-single .mega-menu-service-title {
  line-height: 1.375;
  max-width: 152px;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .mainmenu ul > li > .mega-menu-service-single .mega-menu-service-title,
  .mobile_menu ul > li > .mega-menu-service-single .mega-menu-service-title {
    max-width: 156px;
  }
}
.mainmenu ul > li > .mega-menu-service-single .mega-menu-service-nav,
.mobile_menu ul > li > .mega-menu-service-single .mega-menu-service-nav {
  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;
  overflow: hidden;
  position: relative;
  min-width: 45px;
  height: 100%;
  z-index: 2;
  font-size: 1.6em;
  line-height: 1;
  color: var(--tj-color-theme-dark);
  -webkit-transform: rotate(-45deg) translate(23px, 25px);
      -ms-transform: rotate(-45deg) translate(23px, 25px);
          transform: rotate(-45deg) translate(23px, 25px);
  opacity: 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .mainmenu ul > li > .mega-menu-service-single .mega-menu-service-nav,
  .mobile_menu ul > li > .mega-menu-service-single .mega-menu-service-nav {
    color: var(--tj-color-common-white);
    -webkit-transform: rotate(-45deg) translate(56px, 73px);
        -ms-transform: rotate(-45deg) translate(56px, 73px);
            transform: rotate(-45deg) translate(56px, 73px);
  }
}
@media (max-width: 575px) {
  .mainmenu ul > li > .mega-menu-service-single .mega-menu-service-nav,
  .mobile_menu ul > li > .mega-menu-service-single .mega-menu-service-nav {
    color: var(--tj-color-common-white);
    -webkit-transform: rotate(-45deg) translate(-1px, 19px);
        -ms-transform: rotate(-45deg) translate(-1px, 19px);
            transform: rotate(-45deg) translate(-1px, 19px);
  }
}
.mainmenu ul > li > .mega-menu-service-single .mega-menu-service-nav i,
.mobile_menu ul > li > .mega-menu-service-single .mega-menu-service-nav i {
  -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;
}
.mainmenu ul > li > .mega-menu-service-single .mega-menu-service-nav i:last-child,
.mobile_menu ul > li > .mega-menu-service-single .mega-menu-service-nav i:last-child {
  position: absolute;
  -webkit-transform: translateX(-150%);
      -ms-transform: translateX(-150%);
          transform: translateX(-150%);
}
.mainmenu ul > li > .mega-menu-service-single .mega-menu-service-nav:hover i:first-child,
.mobile_menu ul > li > .mega-menu-service-single .mega-menu-service-nav:hover i:first-child {
  -webkit-transform: translateX(150%);
      -ms-transform: translateX(150%);
          transform: translateX(150%);
}
.mainmenu ul > li > .mega-menu-service-single .mega-menu-service-nav:hover i:last-child,
.mobile_menu ul > li > .mega-menu-service-single .mega-menu-service-nav:hover i:last-child {
  -webkit-transform: translateX(0);
      -ms-transform: translateX(0);
          transform: translateX(0);
}
.mainmenu ul > li > .mega-menu-service-single:hover .mega-menu-service-icon,
.mobile_menu ul > li > .mega-menu-service-single:hover .mega-menu-service-icon {
  background-color: var(--tj-color-theme-primary);
  color: var(--tj-color-common-white);
}
.mainmenu ul > li > .mega-menu-service-single:hover .mega-menu-service-nav,
.mobile_menu ul > li > .mega-menu-service-single:hover .mega-menu-service-nav {
  opacity: 1;
}

.tj-demo-wrapper {
  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) {
  .tj-demo-wrapper {
    margin-bottom: 0px;
  }
}
.tj-demo-top-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  row-gap: 20px;
  margin-bottom: 50px;
}
.tj-demo-top-title {
  font-size: 32px;
  margin-bottom: 0;
}
.tj-demo-top-title span {
  color: var(--tj-color-theme-primary);
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .tj-demo-top-title {
    font-size: 28px;
  }
}
@media (max-width: 575px) {
  .tj-demo-top-title {
    font-size: 24px;
  }
}
.tj-demo-thumb {
  padding: 9px 9px 20px;
  position: relative;
  z-index: 1;
  border: 1px solid var(--tj-color-border-2);
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
@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-demo-thumb {
    border-color: var(--tj-color-border-1);
  }
}
.tj-demo-thumb .image {
  max-width: 596px;
  width: 100%;
  margin-bottom: 20px;
  position: relative;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  border-radius: 12px;
}
.tj-demo-thumb .image::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  inset-inline-start: 0;
  background: var(--tj-color-theme-dark);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.tj-demo-thumb .image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@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-demo-thumb .image {
    max-width: 100%;
  }
}
.tj-demo-thumb .tj-demo-title {
  color: var(--tj-color-heading-primary);
  font-weight: var(--tj-fw-sbold);
  font-size: 16px;
  text-align: center;
  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) {
  .tj-demo-thumb .tj-demo-title {
    font-size: 14px;
  }
}
.tj-demo-thumb .tj-demo-title a {
  color: var(--tj-color-heading-primary);
}
.tj-demo-thumb .tj-demo-title a:hover {
  color: var(--tj-color-theme-primary);
}
.tj-demo-thumb:not(.coming):hover .image::before {
  opacity: 0.6;
  visibility: visible;
}
.tj-demo-thumb:not(.coming):hover .tj-demo-button {
  top: 50%;
  opacity: 1;
  visibility: visible;
}
@media (max-width: 575px) {
  .tj-demo-thumb {
    padding: 15px 15px 25px;
  }
}
.tj-demo-thumb.coming .image::before {
  display: none;
}
.tj-demo-thumb .tj-demo-badge {
  font-size: 14px;
  line-height: 1;
  letter-spacing: -0.025em;
  color: var(--tj-color-common-white);
  background-color: var(--tj-color-red-1);
  padding: 3px 7px;
  border-radius: 40px;
  position: absolute;
  inset-inline-start: 11px;
  top: 11px;
}
.tj-demo-button {
  position: absolute;
  top: 60%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: ease-out 0.4s;
  transition: ease-out 0.4s;
}

.hamburger_menu .mean-container .mean-nav ul li .mega-menu li a,
.hamburger_menu .mean-container .mean-nav ul li .mega-menu-service a {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  float: none;
  border-bottom: 0;
}
.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;
}
.hamburger_menu .mean-container .mean-nav ul li .mega-menu li a.tj-primary-btn,
.hamburger_menu .mean-container .mean-nav ul li .mega-menu-service a.tj-primary-btn {
  padding: 4.5px;
}
.hamburger_menu .mean-container .mean-nav ul li .mega-menu li a .mega-menu-badge,
.hamburger_menu .mean-container .mean-nav ul li .mega-menu-service a .mega-menu-badge {
  font-size: 10px;
  line-height: 1;
  letter-spacing: -0.025em;
  color: var(--tj-color-common-white);
  background-color: var(--tj-color-theme-primary);
  padding: 3px 7px;
  border-radius: 40px;
}
.hamburger_menu .mean-container .mean-nav ul li .mega-menu li a .mega-menu-badge-hot,
.hamburger_menu .mean-container .mean-nav ul li .mega-menu-service a .mega-menu-badge-hot {
  background-color: var(--tj-color-red-1);
}
.hamburger_menu .mean-container .mean-nav ul li .mega-menu li .tj-demo-title a,
.hamburger_menu .mean-container .mean-nav ul li .mega-menu-service .tj-demo-title a {
  padding: 0;
  text-align: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .hamburger_menu .mean-container .mean-nav ul li .mega-menu-service li,
  .hamburger_menu .mean-container .mean-nav ul li .mega-menu-pages li {
    -webkit-padding-start: 0 !important;
            padding-inline-start: 0 !important;
  }
}
.hamburger_menu .mean-container .mean-nav ul li .mega-menu-service li a,
.hamburger_menu .mean-container .mean-nav ul li .mega-menu-pages li a {
  border-bottom: 1px solid var(--tj-color-border-1);
}
.hamburger_menu .mean-container .mean-nav ul li .mega-menu-pages li .mega-menu-title::after {
  background-color: var(--tj-color-theme-dark);
}
.hamburger_menu .mean-container .mean-nav ul li .mega-menu-pages li a:not(.tj-primary-btn) {
  width: 100%;
  padding: 18px 0;
  text-transform: capitalize;
  color: var(--tj-color-common-white);
  border-bottom: 1px solid var(--tj-color-border-1);
}
.hamburger_menu .mean-container .mean-nav ul li .mega-menu-pages li a:not(.tj-primary-btn)::before {
  display: none;
}
.hamburger_menu .mean-container .mean-nav ul li .mega-menu-pages li a:not(.tj-primary-btn):hover {
  color: var(--tj-color-text-body);
  padding: 18px 0;
}
.hamburger_menu .mean-container .mean-nav ul li .mega-menu-pages li .cta-btn .tj-primary-btn {
  width: auto;
}

/* !END: Mega Menu CSS */
/* START: Search CSS */
.search_popup {
  position: fixed;
  top: 0;
  inset-inline-start: 0;
  width: 100%;
  background-color: var(--tj-color-theme-dark);
  z-index: 100;
  padding-top: 60px;
  padding-bottom: 90px;
  opacity: 0;
  -webkit-transform: translateY(calc(-100% - 80px));
  -ms-transform: translateY(calc(-100% - 80px));
  transform: translateY(calc(-100% - 80px));
  -webkit-transition: opacity 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  -webkit-transition-delay: 0.5s;
          transition-delay: 0.5s;
  z-index: 9999;
}
.search_popup .search_close {
  position: absolute;
  top: 36px;
  inset-inline-end: 36px;
}
.search_popup .search_close .search_close_btn {
  font-size: 24px;
  line-height: 1;
  color: var(--tj-color-common-white);
}
.search_popup .search_close .search_close_btn svg {
  width: 24px;
  height: 24px;
  -webkit-transition: all 0.4s ease-in-out 0s;
  transition: all 0.4s ease-in-out 0s;
}
.search_popup .search_close .search_close_btn svg path {
  fill: var(--tj-color-common-white);
}
.search_popup .search_close .search_close_btn svg:hover {
  -webkit-transform: rotate(90deg);
      -ms-transform: rotate(90deg);
          transform: rotate(90deg);
}
.search_popup .search_close .search_close_btn svg:hover path {
  fill: var(--tj-color-theme-primary);
}
.search_popup.search-opened {
  opacity: 1;
  -webkit-transform: translateY(0%);
  -ms-transform: translateY(0%);
  transform: translateY(0%);
  -webkit-transition-delay: 0s;
          transition-delay: 0s;
}
.search_popup.search-opened .search_form .search_input {
  -webkit-transform: translateY(0px);
  -ms-transform: translateY(0px);
  transform: translateY(0px);
  opacity: 1;
  -webkit-transition-delay: 0.3s;
          transition-delay: 0.3s;
}
.search_popup.search-opened .search_form .search_input::after {
  width: 100%;
  -webkit-transition-delay: 0.5s;
          transition-delay: 0.5s;
}

.tj_search_wrapper .search_form form .search_input {
  position: relative;
  z-index: 1;
}
.tj_search_wrapper .search_form form .search_input .title {
  color: var(--tj-color-common-white);
  margin-bottom: 30px;
}
.tj_search_wrapper .search_form form .search_input .search-box {
  position: relative;
  z-index: 1;
}
.tj_search_wrapper .search_form form .search_input .search-box input[type=search] {
  width: 100%;
  font-family: var(--tj-ff-body);
  color: var(--tj-color-common-white);
  border: 1px solid var(--tj-color-border-1);
  background: transparent;
  padding: 20px 75px 20px 24px;
}
.tj_search_wrapper .search_form form .search_input .search-box input[type=search]::-webkit-input-placeholder {
  color: var(--tj-color-common-white-2);
}
.tj_search_wrapper .search_form form .search_input .search-box input[type=search]::-moz-placeholder {
  color: var(--tj-color-common-white-2);
}
.tj_search_wrapper .search_form form .search_input .search-box input[type=search]:-ms-input-placeholder {
  color: var(--tj-color-common-white-2);
}
.tj_search_wrapper .search_form form .search_input .search-box input[type=search]::-ms-input-placeholder {
  color: var(--tj-color-common-white-2);
}
.tj_search_wrapper .search_form form .search_input .search-box input[type=search]::placeholder {
  color: var(--tj-color-common-white-2);
}
.tj_search_wrapper .search_form form .search_input .search-box button {
  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-end: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  max-width: 62px;
  font-size: 22px;
  line-height: 1;
  color: var(--tj-color-common-white);
  -webkit-border-start: 1px solid var(--tj-color-border-1);
          border-inline-start: 1px solid var(--tj-color-border-1);
  width: 100%;
  height: 100%;
}
.tj_search_wrapper .search_form form .search_input .search-box button i {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  line-height: 1;
}

.search-popup-overlay {
  position: fixed;
  inset-inline-start: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.1);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  z-index: 99;
  -webkit-transform: translateY(calc(-100% - 80px));
  -ms-transform: translateY(calc(-100% - 80px));
  transform: translateY(calc(-100% - 80px));
  -webkit-transition: all 0.5s ease-in-out 0s;
  transition: all 0.5s ease-in-out 0s;
  -webkit-transition-delay: 0.3s;
          transition-delay: 0.3s;
}
.search-popup-overlay.opened {
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
}

/* !END: Search CSS */
/* START: Hamburger CSS */
.hamburger-area {
  position: fixed;
  inset-inline-end: -490px;
  top: 0;
  width: 450px;
  height: 100%;
  -webkit-box-shadow: -5px 0 20px -5px rgba(0, 0, 0, 0.5);
          box-shadow: -5px 0 20px -5px rgba(0, 0, 0, 0.5);
  -webkit-transition: all 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  transition: all 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  -webkit-transition-duration: 1s;
          transition-duration: 1s;
  z-index: 9999;
  -ms-overflow-style: none;
  scrollbar-width: none;
  overflow-y: scroll;
}
.hamburger-area::-webkit-scrollbar {
  display: none;
}
.hamburger-area.opened {
  inset-inline-end: 0px;
}
@media (max-width: 575px) {
  .hamburger-area {
    width: 320px;
  }
}
.hamburger_bg {
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  inset-inline-start: 0;
  background-color: var(--tj-color-theme-dark);
  z-index: -1;
  -webkit-backdrop-filter: blur(37px);
          backdrop-filter: blur(37px);
}
.hamburger_wrapper {
  position: relative;
  padding: 45px 45px 90px 45px;
  overflow: auto;
  height: 100%;
}
@media (max-width: 575px) {
  .hamburger_wrapper {
    padding: 40px 20px 60px 20px;
  }
}
.hamburger_top {
  margin-bottom: 40px;
}
.hamburger_close_btn {
  display: inline-block;
  font-size: 35px;
  line-height: 1;
  color: var(--tj-color-common-white);
}
@media (max-width: 575px) {
  .hamburger_close_btn {
    font-size: 30px;
  }
}
.hamburger_close_btn:hover {
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
  color: var(--tj-color-theme-primary);
}
.hamburger_search {
  position: relative;
  margin-bottom: 30px;
}
.hamburger_search select,
.hamburger_search .nice-select,
.hamburger_search input:not([type=submit]):not([type=radio]):not([type=checkbox]),
.hamburger_search input {
  width: 100%;
  height: 60px;
  line-height: 60px;
  padding: 0 25px;
  background: rgba(247, 247, 247, 0.1);
  border: none;
  outline: none;
  font-size: 18px;
  color: var(--tj-color-common-white);
}
.hamburger_search select::-ms-input-placeholder,
.hamburger_search .nice-select::-ms-input-placeholder,
.hamburger_search input:not([type=submit]):not([type=radio]):not([type=checkbox])::-ms-input-placeholder,
.hamburger_search input::-ms-input-placeholder {
  color: rgba(255, 255, 255, 0.6);
}
.hamburger_search select::-webkit-input-placeholder, .hamburger_search .nice-select::-webkit-input-placeholder, .hamburger_search input:not([type=submit]):not([type=radio]):not([type=checkbox])::-webkit-input-placeholder, .hamburger_search input::-webkit-input-placeholder {
  color: rgba(255, 255, 255, 0.6);
}
.hamburger_search select::-moz-placeholder, .hamburger_search .nice-select::-moz-placeholder, .hamburger_search input:not([type=submit]):not([type=radio]):not([type=checkbox])::-moz-placeholder, .hamburger_search input::-moz-placeholder {
  color: rgba(255, 255, 255, 0.6);
}
.hamburger_search select:-ms-input-placeholder, .hamburger_search .nice-select:-ms-input-placeholder, .hamburger_search input:not([type=submit]):not([type=radio]):not([type=checkbox]):-ms-input-placeholder, .hamburger_search input:-ms-input-placeholder {
  color: rgba(255, 255, 255, 0.6);
}
.hamburger_search select::-ms-input-placeholder, .hamburger_search .nice-select::-ms-input-placeholder, .hamburger_search input:not([type=submit]):not([type=radio]):not([type=checkbox])::-ms-input-placeholder, .hamburger_search input::-ms-input-placeholder {
  color: rgba(255, 255, 255, 0.6);
}
.hamburger_search select::placeholder,
.hamburger_search .nice-select::placeholder,
.hamburger_search input:not([type=submit]):not([type=radio]):not([type=checkbox])::placeholder,
.hamburger_search input::placeholder {
  color: rgba(255, 255, 255, 0.6);
}
.hamburger_search button {
  position: absolute;
  top: 50%;
  inset-inline-end: 25px;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  font-size: 18px;
  color: var(--tj-color-common-white);
}
.hamburger_menu {
  display: block;
  width: 100%;
}
.hamburger_menu .mean-container .mean-bar {
  background: transparent;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin-bottom: 30px;
}
.hamburger_menu .mean-container .mean-bar * {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.hamburger_menu .mean-nav {
  background: transparent;
  margin-top: 0;
  overflow: hidden;
}
.hamburger_menu .mean-nav > ul {
  display: block !important;
}
.hamburger_menu .mean-nav > ul > li:first-child > a {
  border-top: none;
}
.hamburger_menu .mean-nav ul li {
  position: relative;
}
.hamburger_menu .mean-nav ul li a {
  color: var(--tj-color-common-white);
  width: 100%;
  padding: 18px 0;
  border-top: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  font-weight: var(--tj-fw-bold);
  font-size: 16px;
  line-height: 1;
  text-transform: capitalize;
  -webkit-transition: all 0.4s ease-in-out 0s;
  transition: all 0.4s ease-in-out 0s;
}
.hamburger_menu .mean-nav ul li a:hover {
  color: var(--tj-color-text-body);
}
.hamburger_menu .mean-nav ul li a.mean-expand {
  padding: 0;
  width: 30px;
  height: 30px;
  line-height: 1;
  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: 1em;
  position: absolute;
  inset-inline-end: 0;
  top: 10px;
  -webkit-transition: all 0.4s ease-in-out 0s;
  transition: all 0.4s ease-in-out 0s;
}
.hamburger_menu .mean-nav ul li a.mean-expand:hover {
  color: var(--tj-color-common-white);
}
.hamburger_menu .mean-nav ul li a.mean-expand.mean-clicked {
  color: var(--tj-color-theme-primary);
  -webkit-transform: rotate(-180deg);
      -ms-transform: rotate(-180deg);
          transform: rotate(-180deg);
}
.hamburger_menu .mean-nav ul li .sub-menu li {
  -webkit-padding-start: 25px;
          padding-inline-start: 25px;
  position: relative;
}
.hamburger_menu .mean-nav ul li .sub-menu li a {
  width: 100%;
  padding: 18px 0;
  text-transform: capitalize;
}
.hamburger_menu .mean-nav ul li .sub-menu li a.mean-expand {
  padding: 0;
  width: 30px;
}
.hamburger_menu .mean-nav ul li.dropdown-opened > a {
  color: var(--tj-color-theme-primary);
}

.hamburger-title {
  color: var(--tj-color-common-white);
  font-size: 25px;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.contact-info {
  margin-bottom: 50px;
}
.contact-info .contact_item {
  padding-top: 20px;
}
.contact-info .contact_item:first-child {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.contact-info .contact_item .subtitle {
  display: block;
  color: var(--tj-color-common-black-3);
  font-size: 15px;
  line-height: 1;
  margin-bottom: 8px;
}
.contact-info .contact_item .text {
  color: var(--tj-color-common-white);
  font-size: 18px;
  line-height: 1;
}
.contact-info .contact_item .text a {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  color: inherit;
}
.contact-info .contact_item .text a:hover {
  color: var(--tj-color-theme-primary);
}

.hamburger-socials ul {
  margin: 0;
  padding: 0;
  list-style: none;
  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;
  gap: 15px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.hamburger-socials ul li a {
  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: 35px;
  height: 35px;
  border-radius: 50%;
  color: var(--tj-color-heading-primary);
  background: rgba(247, 247, 247, 0.3);
  font-size: 16px;
  line-height: 1;
}
.hamburger-socials ul li a i {
  color: var(--tj-color-heading-primary);
}
.hamburger-socials ul li a:hover {
  background-color: var(--tj-color-theme-primary);
  color: var(--tj-color-common-white);
}
.hamburger-socials ul li a:hover i {
  color: var(--tj-color-common-white);
}

.hamburger_logo .mobile_logo {
  display: inline-block;
  max-width: 120px;
  width: 100%;
}

.menu-bar button {
  height: 25px;
  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-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  position: relative;
  -webkit-transform-origin: center center;
      -ms-transform-origin: center center;
          transform-origin: center center;
  -webkit-transform: rotate(0deg);
      -ms-transform: rotate(0deg);
          transform: rotate(0deg);
  cursor: pointer;
  -webkit-transition: -webkit-transform 300ms ease;
  transition: -webkit-transform 300ms ease;
  transition: transform 300ms ease;
  transition: transform 300ms ease, -webkit-transform 300ms ease;
}
.menu-bar button span {
  height: 3px;
  width: 35px;
  display: block;
  background: var(--tj-color-common-white);
  cursor: pointer;
  -webkit-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
  -webkit-margin-start: auto;
          margin-inline-start: auto;
}
.menu-bar button span:nth-child(2) {
  width: 40px;
  -webkit-transition-delay: 200ms;
          transition-delay: 200ms;
}
.menu-bar button span:nth-child(3) {
  width: 30px;
}
.menu-bar button span:nth-child(4) {
  position: absolute;
  top: -8px;
  inset-inline-start: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  display: block;
  width: 3px;
  height: 0;
  -webkit-transition: height 400ms;
  transition: height 400ms;
}
.menu-bar.style-2 button span {
  background: var(--tj-color-heading-primary);
}
.menu-bar.menu-bar-toggeled button {
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
  -webkit-transition-delay: 400ms;
          transition-delay: 400ms;
}
.menu-bar.menu-bar-toggeled button span:nth-child(1) {
  width: 0;
}
.menu-bar.menu-bar-toggeled button span:nth-child(3) {
  width: 0;
}
.menu-bar.menu-bar-toggeled button span:nth-child(4) {
  height: 40px;
  -webkit-transition: height 200ms ease;
  transition: height 200ms ease;
  -webkit-transition-delay: 200ms;
          transition-delay: 200ms;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .menu-bar {
    -webkit-margin-start: 0;
            margin-inline-start: 0;
  }
}

.body-overlay {
  height: 100%;
  width: 100%;
  position: fixed;
  top: 0;
  z-index: 9999;
  inset-inline-start: 0;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
}
.body-overlay.opened {
  opacity: 1;
  visibility: visible;
}

/* !END: Hamburger CSS */
/* 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;
}
.tj-footer-area.footer-2 {
  border-top: 0;
}
.tj-footer-area.footer-2 .footer-top-area .line::before {
  inset-inline-end: unset;
  inset-inline-start: 30%;
}

.footerStack {
  border: none;
  position: sticky;
  left: 0;
  bottom: 0;
  width: 100%;
  z-index: 0;
}
.footerStack .tj-footer-area {
  border-top: none;
}
.footerStack .tj-footer-area .footer-top-area {
  border-top: 1px solid var(--tj-color-border-1);
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 1200px) and (max-width: 1399px) {
  .footerStack {
    position: inherit;
  }
}

.footer-top-area {
  position: relative;
  padding-top: 80px;
  padding-bottom: 100px;
  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;
  }
}
.footer-top-area .line {
  position: relative;
  z-index: 1;
}
.footer-top-area .line::before {
  position: absolute;
  content: "";
  width: 1px;
  height: 200%;
  top: -100px;
  inset-inline-end: 32%;
  background: var(--tj-color-border-1);
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .footer-top-area::before {
    inset-inline-start: 68%;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px), 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 .line::before {
    display: none;
  }
}

.footer-widget.footer1-col-4 {
  -webkit-padding-start: 80px;
          padding-inline-start: 80px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .footer-widget.footer1-col-4 {
    -webkit-padding-start: 0;
            padding-inline-start: 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) {
  .footer-widget.footer1-col-4 {
    -webkit-padding-start: 0px;
            padding-inline-start: 0px;
  }
}
.footer-widget.footer1-col-2 {
  -webkit-padding-start: 60px;
          padding-inline-start: 60px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .footer-widget.footer1-col-2 {
    -webkit-padding-start: 20px;
            padding-inline-start: 20px;
  }
}
@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-widget.footer1-col-2 {
    -webkit-padding-start: 0px;
            padding-inline-start: 0px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .footer-widget.footer1-col-3 {
    -webkit-padding-start: 20px;
            padding-inline-start: 20px;
  }
}
.footer-widget.footer2-col-1 {
  -webkit-padding-end: 80px;
          padding-inline-end: 80px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .footer-widget.footer2-col-1 {
    -webkit-padding-end: 0;
            padding-inline-end: 0;
  }
}
.footer-widget.footer2-col-2 {
  -webkit-padding-start: 38px;
          padding-inline-start: 38px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .footer-widget.footer2-col-2 {
    -webkit-padding-start: 0;
            padding-inline-start: 0;
  }
}
.footer-widget.footer2-col-4 {
  -webkit-padding-start: 35px;
          padding-inline-start: 35px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .footer-widget.footer2-col-4 {
    -webkit-padding-start: 0;
            padding-inline-start: 0;
  }
}
.footer-widget .footer-title .title {
  color: var(--tj-color-common-white);
  margin-bottom: 40px;
  font-size: 20px;
  letter-spacing: -0.025em;
}
@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-widget .footer-title .title {
    margin-bottom: 25px;
  }
}
.footer-widget.footer-contact-infos {
  max-width: 230px;
  width: 100%;
}
.footer-widget.footer-contact-infos .infos-item {
  margin-bottom: 40px;
}
.footer-widget.footer-contact-infos .infos-item:last-child {
  margin-bottom: 0;
}
.footer-widget.footer-contact-infos .infos-item span {
  display: inline-block;
  font-size: 14px;
  color: var(--tj-color-common-black-2);
  font-weight: var(--tj-fw-regular);
  margin-bottom: 6px;
}
.footer-widget.footer-contact-infos .infos-item p {
  font-size: 16px;
  font-weight: var(--tj-fw-regular);
  color: var(--tj-color-common-white-2);
  margin-bottom: 6px;
}
.footer-widget.footer-contact-infos .infos-item a {
  font-size: 16px;
  font-weight: var(--tj-fw-regular);
  color: var(--tj-color-common-white);
  position: relative;
  z-index: 1;
}
.footer-widget.footer-contact-infos .infos-item a::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 1px;
  bottom: -2px;
  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: var(--tj-color-common-white);
  -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;
}
.footer-widget.footer-contact-infos .infos-item a:hover::before {
  -webkit-transform-origin: left;
      -ms-transform-origin: left;
          transform-origin: left;
  -webkit-transform: scaleX(1);
      -ms-transform: scaleX(1);
          transform: scaleX(1);
}
@media (max-width: 575px) {
  .footer-widget.footer-contact-infos .infos-item {
    margin-bottom: 25px;
  }
}
.footer-widget.widget_nav_menu .widget-menu ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.footer-widget.widget_nav_menu .widget-menu ul li {
  margin-bottom: 15px;
}
.footer-widget.widget_nav_menu .widget-menu ul li:last-child {
  margin-bottom: 0;
}
.footer-widget.widget_nav_menu .widget-menu ul li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  font-size: 16px;
  font-weight: var(--tj-fw-regular);
  color: var(--tj-color-common-white-2);
}
.footer-widget.widget_nav_menu .widget-menu ul li a span {
  display: inline-block;
  font-size: 10px;
  text-transform: uppercase;
  color: var(--tj-color-common-white);
  font-weight: var(--tj-fw-bold);
  background-color: var(--tj-color-theme-primary);
  padding: 4px 6px;
  border-radius: 40px;
  line-height: 1;
}
.footer-widget.widget_nav_menu .widget-menu ul li a:hover {
  color: var(--tj-color-theme-primary);
  -webkit-padding-start: 2px;
          padding-inline-start: 2px;
}
.footer-widget .newsletter-title {
  max-width: 240px;
  width: 100%;
  margin-bottom: 30px;
}
.footer-widget .newsletter-title .title {
  font-size: 32px;
  font-weight: var(--tj-fw-sbold);
  color: var(--tj-color-common-white);
  letter-spacing: -0.025em;
}
@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-widget .newsletter-title .title {
    margin-bottom: 25px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .footer-widget .newsletter-title .title {
    font-size: 25px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .footer-widget .newsletter-title .title {
    font-size: 20px;
  }
}
.footer-widget .newsletter-form {
  position: relative;
  z-index: 2;
}
.footer-widget .newsletter-form .form-input {
  position: relative;
  z-index: 2;
}
.footer-widget .newsletter-form .form-input input:not([type=submit]):not([type=radio]):not([type=checkbox]),
.footer-widget .newsletter-form .form-input input[type=email] {
  color: var(--tj-color-common-white);
  font-weight: var(--tj-fw-regular);
  font-size: 16px;
  padding: 20px 80px 20px 25px;
  background: rgba(247, 247, 247, 0.1);
  border: 1px solid var(--tj-color-theme-dark);
}
.footer-widget .newsletter-form .form-input input:not([type=submit]):not([type=radio]):not([type=checkbox])::-ms-input-placeholder,
.footer-widget .newsletter-form .form-input input[type=email]::-ms-input-placeholder {
  color: var(--tj-color-common-white-2);
  font-weight: var(--tj-fw-regular);
  font-size: 16px;
}
.footer-widget .newsletter-form .form-input input:not([type=submit]):not([type=radio]):not([type=checkbox])::-webkit-input-placeholder, .footer-widget .newsletter-form .form-input input[type=email]::-webkit-input-placeholder {
  color: var(--tj-color-common-white-2);
  font-weight: var(--tj-fw-regular);
  font-size: 16px;
}
.footer-widget .newsletter-form .form-input input:not([type=submit]):not([type=radio]):not([type=checkbox])::-moz-placeholder, .footer-widget .newsletter-form .form-input input[type=email]::-moz-placeholder {
  color: var(--tj-color-common-white-2);
  font-weight: var(--tj-fw-regular);
  font-size: 16px;
}
.footer-widget .newsletter-form .form-input input:not([type=submit]):not([type=radio]):not([type=checkbox]):-ms-input-placeholder, .footer-widget .newsletter-form .form-input input[type=email]:-ms-input-placeholder {
  color: var(--tj-color-common-white-2);
  font-weight: var(--tj-fw-regular);
  font-size: 16px;
}
.footer-widget .newsletter-form .form-input input:not([type=submit]):not([type=radio]):not([type=checkbox])::-ms-input-placeholder, .footer-widget .newsletter-form .form-input input[type=email]::-ms-input-placeholder {
  color: var(--tj-color-common-white-2);
  font-weight: var(--tj-fw-regular);
  font-size: 16px;
}
.footer-widget .newsletter-form .form-input input:not([type=submit]):not([type=radio]):not([type=checkbox])::placeholder,
.footer-widget .newsletter-form .form-input input[type=email]::placeholder {
  color: var(--tj-color-common-white-2);
  font-weight: var(--tj-fw-regular);
  font-size: 16px;
}
.footer-widget .newsletter-form .form-input input:not([type=submit]):not([type=radio]):not([type=checkbox]):focus,
.footer-widget .newsletter-form .form-input input[type=email]:focus {
  border-color: var(--tj-color-theme-primary);
}
.footer-widget .newsletter-form .form-input button {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  inset-inline-end: 15px;
  font-size: 24px;
  color: var(--tj-color-theme-primary);
}
.footer-widget .newsletter-form .form-input button::before {
  content: "";
  position: absolute;
  width: 1px;
  height: 55%;
  top: 50%;
  inset-inline-start: -16px;
  background: var(--tj-color-border-1);
  -webkit-transform: translate(0, -50%);
      -ms-transform: translate(0, -50%);
          transform: translate(0, -50%);
}
.footer-widget .newsletter-form .form-input button i {
  -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;
}
.footer-widget .newsletter-form .form-input button:hover i {
  -webkit-transform: rotate(40deg);
      -ms-transform: rotate(40deg);
          transform: rotate(40deg);
}
.footer-widget .footer-logo {
  max-width: 150px;
}
.footer-widget .desc {
  max-width: 310px;
  margin-top: 40px;
  margin-bottom: 0;
  color: var(--tj-color-common-white-2);
}
.footer-widget .footer-social {
  margin-top: 80px;
}
@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-widget .footer-social {
    margin-top: 60px;
  }
}
.footer-widget .footer-social .title {
  font-size: 20px;
  font-weight: 600;
  color: var(--tj-color-common-white);
  margin-bottom: 24px;
}
.footer-widget .footer-social ul {
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.footer-widget .footer-social ul li a {
  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: 28px;
  height: 28px;
  line-height: 1;
  color: var(--tj-color-heading-primary);
  background: rgba(247, 247, 247, 0.3);
  border-radius: 50%;
}
.footer-widget .footer-social ul li a i {
  color: var(--tj-color-heading-primary);
}
.footer-widget .footer-social ul li a:hover {
  color: var(--tj-color-common-white);
  background-color: var(--tj-color-theme-primary);
  -webkit-transform: translateY(-3px);
      -ms-transform: translateY(-3px);
          transform: translateY(-3px);
}
.footer-widget .footer-social ul li a:hover i {
  color: var(--tj-color-common-white);
}

@media (max-width: 575px) {
  .footer-newsletter-form {
    padding-top: 50px;
    border-top: 1px solid var(--tj-color-border-1);
  }
}

.footer-copyright-area {
  background-color: rgba(247, 247, 247, 0.1);
  padding: 28px 0;
}

.copyright-content-area {
  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-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px;
  row-gap: 10px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.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;
}
.copyright-content-area .copyright-text p a {
  color: var(--tj-color-common-white);
}
.copyright-content-area .copyright-text p a:hover {
  color: var(--tj-color-theme-primary);
}
.copyright-content-area .copyright-text p i {
  color: var(--tj-color-common-white);
  -webkit-margin-end: 5px;
          margin-inline-end: 5px;
}
.copyright-content-area .copyright-socails ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 6px;
}
.copyright-content-area .copyright-socails ul li a {
  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: 28px;
  height: 28px;
  line-height: 1;
  color: var(--tj-color-heading-primary);
  background: rgba(247, 247, 247, 0.3);
  border-radius: 50%;
}
.copyright-content-area .copyright-socails ul li a i {
  color: var(--tj-color-heading-primary);
}
.copyright-content-area .copyright-socails ul li a:hover {
  color: var(--tj-color-common-white);
  background-color: var(--tj-color-theme-primary);
  -webkit-transform: translateY(-3px);
      -ms-transform: translateY(-3px);
          transform: translateY(-3px);
}
.copyright-content-area .copyright-socails ul li a:hover i {
  color: var(--tj-color-common-white);
}
.copyright-content-area .copyright-menu ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.copyright-content-area .copyright-menu ul li {
  position: relative;
  -webkit-margin-end: 8px;
          margin-inline-end: 8px;
  -webkit-padding-end: 12px;
          padding-inline-end: 12px;
  z-index: 1;
}
.copyright-content-area .copyright-menu ul li::before {
  position: absolute;
  content: "";
  width: 4px;
  height: 4px;
  top: 50%;
  inset-inline-end: 0;
  background: var(--tj-color-common-white-2);
  border-radius: 50%;
}
.copyright-content-area .copyright-menu ul li:hover a {
  color: var(--tj-color-common-white);
}
.copyright-content-area .copyright-menu ul li:hover::before {
  background: var(--tj-color-common-white);
}
.copyright-content-area .copyright-menu ul li a {
  font-size: 16px;
  font-weight: var(--tj-fw-regular);
  color: var(--tj-color-common-white-2);
}
.copyright-content-area .copyright-menu ul li:last-child {
  -webkit-padding-end: 0;
          padding-inline-end: 0;
  -webkit-margin-end: 0;
          margin-inline-end: 0;
}
.copyright-content-area .copyright-menu ul li:last-child::before {
  display: none;
}
@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;
  }
}

.copyright-2 {
  -webkit-padding-start: 38px;
          padding-inline-start: 38px;
  padding-top: 28px;
  padding-bottom: 28px;
  overflow: hidden;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 992px) and (max-width: 1199px) {
  .copyright-2 .copyright-content-area {
    margin: 0 auto;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 576px) and (max-width: 767px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 575px) {
  .copyright-2 {
    -webkit-padding-start: 0;
            padding-inline-start: 0;
  }
}

.footer-copyright-area-2 .line {
  position: relative;
  z-index: 1;
}
.footer-copyright-area-2 .line::before {
  content: "";
  position: absolute;
  top: 0;
  inset-inline-start: 30%;
  width: 4000px;
  height: 1px;
  background: var(--tj-color-border-1);
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .footer-copyright-area-2 .line::before {
    inset-inline-start: -200px;
  }
}

.tj-footer-area.footer-2.style-2 .footer-top-area .line::before {
  inset-inline-start: 42%;
}

.footer4-col-2 {
  -webkit-padding-start: 60px;
          padding-inline-start: 60px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .footer4-col-2 {
    -webkit-padding-start: 20px;
            padding-inline-start: 20px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .footer4-col-2 {
    -webkit-padding-start: 0;
            padding-inline-start: 0;
  }
}

/* !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: 50px;
}
@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);
}

/* !END: Swiper Nav & Dots CSS */
/* START: Back to Top CSS */
.back-to-top-wrapper {
  position: absolute;
  inset-inline-end: 20px;
  bottom: 0;
  width: 40px;
  height: 140px;
  cursor: pointer;
  display: block;
  border-radius: 25px;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.6s;
  transition: 0.6s;
}
.back-to-top-wrapper.back-to-top-btn-show {
  visibility: visible;
  opacity: 1;
  bottom: 120px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .back-to-top-wrapper {
    inset-inline-end: 15px;
  }
  .back-to-top-wrapper.back-to-top-btn-show {
    bottom: 50px;
  }
}

.back-to-top-btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  width: 40px;
  height: 130px;
  text-align: center;
  background: transparent;
  color: var(--tj-color-heading-primary);
  border: 1px solid var(--tj-color-border-2);
  border-radius: 25px;
  -webkit-transition: all, 0.3s;
  transition: all, 0.3s;
  line-height: 1;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.back-to-top-btn:hover {
  color: var(--tj-color-theme-primary);
  border-color: var(--tj-color-theme-primary);
}
.back-to-top-btn i {
  margin-bottom: 10px;
  -webkit-animation: bounce2 2s infinite;
          animation: bounce2 2s infinite;
}
.back-to-top-btn span {
  display: inline-block;
  font-weight: var(--tj-fw-bold);
  text-transform: uppercase;
  -webkit-writing-mode: vertical-lr;
      -ms-writing-mode: tb-lr;
          writing-mode: vertical-lr;
  letter-spacing: -0.03em;
}
.back-to-top-btn:hover {
  -webkit-transform: translateY(-4px);
  -ms-transform: translateY(-4px);
  transform: translateY(-4px);
}

.back-to-top-btn.style-6 {
  color: var(--tj-color-common-white);
  background-color: transparent;
  border: 1px solid var(--tj-color-border-1);
}
.back-to-top-btn.style-6:hover {
  background: var(--tj-color-theme-primary);
  border-color: var(--tj-color-theme-primary);
}

.backtop {
  position: absolute;
  bottom: 40px;
  inset-inline-end: 60px;
  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: 56px;
  height: 56px;
  font-size: 20px;
  color: var(--tj-color-common-white);
  background-color: var(--tj-color-theme-primary);
  border-radius: 50%;
  z-index: 5;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .backtop {
    inset-inline-end: 20px;
  }
}
.backtop:hover {
  color: var(--tj-color-common-white);
  -webkit-transform: translateY(-4px);
  -ms-transform: translateY(-4px);
  transform: translateY(-4px);
}
.backtop:focus {
  color: var(--tj-color-common-white);
}

/* !END: back to top CSS */
/* !START: Socials CSS */
.tj-socials ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 7px;
  -ms-flex-line-pack: center;
      align-content: center;
  list-style: none;
}
@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-socials ul {
    gap: 5px;
  }
}
.tj-socials ul li a {
  font-size: 16px;
  width: 32px;
  height: 32px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  line-height: 1;
  color: var(--tj-color-common-white);
  background: #aeb2b9;
  border-radius: 100%;
}
@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-socials ul li a {
    font-size: 14px;
  }
}
.tj-socials ul li a:hover {
  background: var(--tj-color-theme-primary);
  color: var(--tj-color-common-white);
}
.tj-socials ul li a:hover i {
  color: var(--tj-color-common-white);
}

/* START: Page Header CSS */
.tj-page-header {
  padding-top: 287px;
  padding-bottom: 170px;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-color: var(--tj-color-theme-dark);
  position: relative;
  overflow: hidden;
  z-index: 2;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .tj-page-header {
    padding-top: 230px;
    padding-bottom: 120px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tj-page-header {
    padding-top: 210px;
    padding-bottom: 100px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tj-page-header {
    padding-top: 210px;
    padding-bottom: 80px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .tj-page-header {
    padding-top: 140px;
    padding-bottom: 80px;
  }
}
.tj-page-header::before {
  position: absolute;
  content: "";
  top: 0;
  inset-inline-start: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background-color: rgba(5, 18, 41, 0.8);
}
.tj-page-title {
  color: var(--tj-color-common-white);
  font-size: 48px;
  margin-bottom: 0;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tj-page-title {
    font-size: 42px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .tj-page-title {
    font-size: 36px;
  }
}
.tj-page-link {
  margin-top: 25px;
  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;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 10px;
  position: relative;
  border-radius: 50px;
  background: rgba(247, 247, 247, 0.1);
  padding: 8px 15px;
  z-index: 2;
}
.tj-page-link span {
  color: var(--tj-color-common-white);
  font-size: 16px;
  position: relative;
  display: inline-block;
  line-height: 1;
}
.tj-page-link span a:hover span {
  color: var(--tj-color-theme-primary);
}

/* !END: Page Header CSS */
/* START: Hero CSS */
.tj-hero-section {
  position: relative;
  padding-top: 170px;
  background-color: var(--tj-color-theme-dark);
  z-index: 1;
  overflow: hidden;
}
.tj-hero-section::before {
  position: absolute;
  content: "";
  bottom: -1px;
  inset-inline-start: 0;
  width: 100%;
  height: 40px;
  -webkit-mask-image: url(../images/h1-hero-shapes.svg);
          mask-image: url(../images/h1-hero-shapes.svg);
  background: var(--tj-color-common-white);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center bottom;
          mask-position: center bottom;
  -webkit-mask-size: contain;
          mask-size: contain;
  z-index: 2;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tj-hero-section {
    padding-top: 235px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .tj-hero-section {
    padding-top: 140px;
  }
}

.heroStack {
  position: relative;
  z-index: 1;
}
.heroStack .stackOverlay {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: var(--tj-color-theme-dark);
  z-index: 1;
  opacity: 1;
}
.heroStack .tj-hero-section::before {
  display: none;
}

.tj-hero-section-two {
  padding-top: 246px;
  padding-bottom: 120px;
  background: var(--tj-color-common-white);
  position: relative;
  z-index: 2;
  overflow: hidden;
}
.tj-hero-section-two::before {
  position: absolute;
  content: "";
  top: 0;
  inset-inline-start: 0;
  width: 100%;
  height: 65%;
  background: var(--tj-color-theme-bg);
}
.tj-hero-section-two::after {
  position: absolute;
  content: "";
  top: -15%;
  inset-inline-end: -10%;
  width: 520px;
  height: 520px;
  background: var(--tj-color-theme-primary);
  border-radius: 50%;
  -webkit-filter: blur(180px);
          filter: blur(180px);
  opacity: 1;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tj-hero-section-two::after {
    width: 375px;
    height: 375px;
    -webkit-filter: blur(130px);
            filter: blur(130px);
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .tj-hero-section-two::after {
    inset-inline-end: -20%;
    width: 310px;
    height: 310px;
    -webkit-filter: blur(100px);
            filter: blur(100px);
  }
}
.tj-hero-section-two .hero_shapes {
  position: absolute;
  top: 0;
  inset-inline-end: 0;
  max-width: 300px;
  width: 100%;
  z-index: 1;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tj-hero-section-two .hero_shapes {
    max-width: 250px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tj-hero-section-two .hero_shapes {
    max-width: 200px;
    inset-inline-end: -75px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .tj-hero-section-two .hero_shapes {
    max-width: 200px;
    inset-inline-end: -80px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tj-hero-section-two {
    padding-top: 180px;
    padding-bottom: 100px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tj-hero-section-two {
    padding-top: 160px;
    padding-bottom: 80px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .tj-hero-section-two {
    padding-top: 140px;
    padding-bottom: 80px;
  }
}

.hero-wrapper-two {
  position: relative;
  margin-bottom: 140px;
  z-index: 1;
}
.hero-wrapper-two .shape-1 {
  position: absolute;
  bottom: -50px;
  inset-inline-start: -45px;
  max-width: 30px;
  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) {
  .hero-wrapper-two .shape-1 {
    inset-inline-start: -20px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px) {
  .hero-wrapper-two .shape-1 {
    inset-inline-start: -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) {
  .hero-wrapper-two {
    margin-bottom: 100px;
  }
}

.hero-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 20px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@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-wrapper {
    gap: 60px;
  }
}

.hero-content-two {
  position: relative;
  max-width: 915px;
  width: 100%;
  z-index: 2;
}
.hero-content-two .hero-title {
  letter-spacing: -0.025em;
  margin-bottom: 0;
  line-height: 1;
}
.hero-content-two .hero-title span {
  color: var(--tj-color-theme-primary);
}
.hero-content-two .desc {
  position: absolute;
  bottom: -55px;
  inset-inline-start: 52%;
  -webkit-padding-start: 15px;
          padding-inline-start: 15px;
  max-width: 325px;
  width: 100%;
  font-size: 18px;
  -webkit-margin-start: auto;
          margin-inline-start: auto;
}
.hero-content-two .desc p:last-child {
  margin-bottom: 0;
}
.hero-content-two .desc span {
  display: inline-block;
  max-width: 12px;
  width: 100%;
  position: absolute;
  top: -14px;
  inset-inline-start: 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) {
  .hero-content-two .desc span {
    display: none;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .hero-content-two .desc {
    inset-inline-start: 67%;
  }
}
@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-content-two .desc {
    margin-top: 30px;
    -webkit-padding-start: 0;
            padding-inline-start: 0;
    position: unset;
    max-width: 100%;
  }
}

.hero-content {
  max-width: 665px;
  width: 100%;
  padding-top: 80px;
  position: relative;
  z-index: 1;
}
.hero-content .hero-title {
  color: var(--tj-color-common-white);
  letter-spacing: -0.025em;
  line-height: 1.1;
  margin-bottom: 20px;
}
.hero-content .hero-title .active-color {
  color: var(--tj-color-theme-primary);
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .hero-content .hero-title {
    font-size: 45px;
  }
}
.hero-content .desc {
  font-size: 18px;
  color: var(--tj-color-common-white-2);
  font-weight: var(--tj-fw-regular);
  max-width: 530px;
  width: 100%;
  line-height: 1.5;
}
.hero-content .desc p:last-child {
  margin-bottom: 0;
}
.hero-content .hero-button {
  margin-top: 40px;
  background-color: var(--tj-color-common-white);
}
.hero-content .hero-button .btn_text {
  color: var(--tj-color-heading-primary);
}
.hero-content .hero-shapes-1 {
  position: absolute;
  top: -30px;
  inset-inline-start: -25%;
  z-index: -1;
  max-width: 265px;
  width: 100%;
  opacity: 0.4;
}
@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-content .hero-shapes-1 {
    top: -135px;
    inset-inline-end: -10%;
    inset-inline-start: auto;
    max-width: 230px;
  }
}
.hero-content .hero-shapes-1 img {
  width: 100%;
  mix-blend-mode: luminosity;
}
.hero-content .hero-shapes-2 {
  position: absolute;
  position: absolute;
  inset-inline-end: 75px;
  bottom: 30%;
}
@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-content .hero-shapes-2 {
    inset-inline-end: 35px;
    bottom: 10%;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .hero-content {
    -webkit-padding-start: 65px;
            padding-inline-start: 65px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .hero-content {
    max-width: 460px;
    -webkit-padding-start: 40px;
            padding-inline-start: 40px;
    padding-top: 0px;
  }
}
@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-content {
    max-width: 100%;
    -webkit-padding-start: 0px;
            padding-inline-start: 0px;
    padding-top: 0px;
  }
  .hero-content .hero-buuton {
    margin-top: 25px;
  }
}


.about-left-content .desc {
  max-width: 540px;
  width: 100%;
  margin-bottom: 30px;
}
.about-left-content .desc p:last-child {
  margin-bottom: 0;
}

.client-experience .images-thumb {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0;
  padding: 0;
  list-style: none;
  margin-bottom: 20px;
}
.client-experience .images-thumb li {
  position: relative;
  max-width: 50px;
  width: 100%;
  background-color: var(--tj-color-common-white);
  border-radius: 50%;
  -webkit-margin-start: -18px;
          margin-inline-start: -18px;
  z-index: 2;
}
.client-experience .images-thumb li:first-child {
  -webkit-margin-start: 0;
          margin-inline-start: 0;
}
.client-experience .images-thumb li img {
  height: 50px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 50%;
  padding: 3px;
  -webkit-filter: grayscale(1);
          filter: grayscale(1);
}
.client-experience .images-thumb li.plus {
  background-color: var(--tj-color-common-white);
  padding: 3px;
  max-width: 50px;
  width: 100%;
}
.client-experience .images-thumb li.plus i {
  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: 44px;
  height: 44px;
  font-size: 13px;
  line-height: 1;
  color: var(--tj-color-common-white);
  background: var(--tj-color-theme-dark);
  border-radius: 50%;
}

.funfact-item-one .number {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 48px;
  color: var(--tj-color-heading-primary);
  font-weight: var(--tj-fw-sbold);
  letter-spacing: -0.025em;
  margin-bottom: 4px;
  line-height: 1;
  font-family: var(--tj-ff-heading);
}
.funfact-item-one .number .odometer {
  font-family: var(--tj-ff-heading);
  line-height: 1;
}
.funfact-item-one .sub-title {
  display: inline-block;
  font-size: 16px;
  font-weight: var(--tj-fw-regular);
}
@media (max-width: 575px) {
  .funfact-item-one .sub-title br {
    display: none;
  }
}

.about-images-group-one {
  max-width: 400px;
  width: 100%;
  position: relative;
  z-index: 2;
}
.about-images-group-one .about-author {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: absolute;
  inset-inline-start: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  bottom: 20px;
  -webkit-backdrop-filter: blur(35px);
          backdrop-filter: blur(35px);
  background: rgba(247, 247, 247, 0.1);
  max-width: 360px;
  width: 100%;
  padding: 20px 25px;
}
.about-images-group-one .about-author .signature {
  -webkit-border-end: 1px solid rgba(247, 247, 247, 0.2);
          border-inline-end: 1px solid rgba(247, 247, 247, 0.2);
  -webkit-padding-end: 20px;
          padding-inline-end: 20px;
  -webkit-margin-end: 20px;
          margin-inline-end: 20px;
}
.about-images-group-one .about-author .author-name .title {
  color: var(--tj-color-common-white);
  margin-bottom: 0;
  letter-spacing: -0.04em;
}
.about-images-group-one .about-author .author-name .sub-title {
  display: inline-block;
  font-size: 14px;
  color: var(--tj-color-common-white-2);
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .about-images-group-one {
    max-width: 370px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .about-images-group-one {
    max-width: 330px;
  }
  .about-images-group-one .about-author {
    max-width: 318px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .about-images-group-one {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    max-width: 100%;
  }
  .about-images-group-one img {
    width: 100%;
  }
}
@media (max-width: 575px) {
  .about-images-group-one {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    max-width: 100%;
  }
  .about-images-group-one img {
    width: 100%;
  }
  .about-images-group-one .about-author {
    max-width: 310px;
  }
}

.about-images-group-two {
  max-width: 565px;
  width: 100%;
  position: relative;
  z-index: 1;
}
.about-images-group-two img {
  -webkit-clip-path: polygon(0 0, 94% 0%, 100% 6%, 100% 100%, 0 100%);
          clip-path: polygon(0 0, 94% 0%, 100% 6%, 100% 100%, 0 100%);
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .about-images-group-two {
    max-width: 440px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .about-images-group-two {
    max-width: 100%;
  }
}

.about-video-box {
  position: absolute;
  bottom: 30px;
  inset-inline-start: 30px;
  background: rgba(247, 247, 247, 0.1);
  -webkit-backdrop-filter: blur(17.5px);
          backdrop-filter: blur(17.5px);
  max-width: 240px;
  padding: 45px 30px 35px;
  width: 100%;
}
@media (max-width: 575px) {
  .about-video-box {
    padding: 30px;
  }
}
.about-video-box .sub-title {
  display: inline-block;
  color: var(--tj-color-common-black-3);
  margin-bottom: 6px;
}
.about-video-box .title {
  color: var(--tj-color-common-white);
  letter-spacing: -0.04em;
  margin-bottom: 0;
}
.about-video-box .video-box .video-popup {
  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: 65px;
  height: 65px;
  line-height: 1;
  color: var(--tj-color-common-white);
  background: rgba(247, 247, 247, 0.1);
  -webkit-backdrop-filter: blur(17.5px);
          backdrop-filter: blur(17.5px);
  border-radius: 50%;
  margin-bottom: 30px;
  -webkit-animation: pulse-two 2s ease infinite;
          animation: pulse-two 2s ease infinite;
}
.about-video-box .video-box .video-popup::before {
  position: absolute;
  content: "";
  width: 90px;
  height: 90px;
  top: 50%;
  inset-inline-start: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  background: rgba(247, 247, 247, 0.1);
  -webkit-backdrop-filter: blur(17.5px);
          backdrop-filter: blur(17.5px);
  transform: translate(-50%, -50%);
  border-radius: 50%;
  display: none;
}

.about-content-two {
  max-width: 435px;
  width: 100%;
  -webkit-padding-start: 40px;
          padding-inline-start: 40px;
}
.about-content-two .sec-heading {
  margin-bottom: 0;
}
.about-content-two .sec-heading .sec-title {
  letter-spacing: -0.025em;
  margin-bottom: 0;
}
.about-content-two .sec-heading .desc {
  margin-top: 15px;
}
.about-content-two .sec-heading .desc p:last-child {
  margin-bottom: 0;
}
.about-content-two .sec-heading .about-feature-item {
  padding-top: 35px;
  border-top: none;
}
.about-content-two .sec-heading .about-feature-item .feature-box {
  padding-top: 0px;
  -webkit-padding-end: 0px;
          padding-inline-end: 0px;
  -webkit-margin-end: 0px;
          margin-inline-end: 0px;
}
.about-content-two .sec-heading .about-button {
  margin-top: 35px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .about-content-two {
    max-width: 390px;
    -webkit-padding-start: 0;
            padding-inline-start: 0;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .about-content-two {
    -webkit-padding-start: 0;
            padding-inline-start: 0;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .about-content-two {
    max-width: 325px;
    -webkit-padding-start: 0;
            padding-inline-start: 0;
  }
  .about-content-two .sec-heading .about-feature-item {
    padding-top: 20px;
  }
  .about-content-two .sec-heading .about-button {
    margin-top: 25px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .about-content-two {
    max-width: 100%;
    -webkit-padding-start: 0;
            padding-inline-start: 0;
  }
  .about-content-two .sec-heading .about-feature-item {
    padding-top: 20px;
  }
  .about-content-two .sec-heading .about-button {
    margin-top: 25px;
  }
}

.about-content-three {
  position: relative;
  max-width: 510px;
  width: 100%;
  z-index: 1;
}
.about-content-three .sec-heading {
  margin-bottom: 0;
}
.about-content-three .sec-heading .sec-title {
  letter-spacing: -0.025em;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .about-content-three .sec-heading .sec-title {
    font-size: 40px;
  }
}
.about-content-three .sec-heading .desc p:last-child {
  margin-bottom: 0;
}
.about-content-three .sec-heading .check-list-one {
  margin-top: 30px;
}
.about-content-three .sec-heading .about-button {
  margin-top: 35px;
}
.about-content-three .about-shapes {
  position: absolute;
  bottom: -15px;
  inset-inline-end: 25%;
  max-width: 28px;
  width: 100%;
  z-index: -1;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .about-content-three {
    max-width: 465px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .about-content-three {
    max-width: 100%;
  }
}

.funfact-item-two {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
  max-width: 400px;
  width: 100%;
  height: 435px;
  -webkit-mask-image: url(../images/h2-counter-shapes.svg);
          mask-image: url(../images/h2-counter-shapes.svg);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-position: center;
          mask-position: center;
  background-color: var(--tj-color-common-white);
}
.funfact-item-two .funfact-box {
  max-width: 250px;
  width: 100%;
}
.funfact-item-two .number {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 60px;
  color: var(--tj-color-theme-primary);
  font-weight: var(--tj-fw-medium);
  line-height: 1;
}
.funfact-item-two .number span {
  font-family: var(--tj-ff-heading);
  font-size: 156px;
  font-weight: var(--tj-fw-bold);
  line-height: 1;
  color: var(--tj-color-theme-primary);
}
.funfact-item-two .sub-title {
  margin-top: -30px;
  display: inline-block;
  line-height: 1.5;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .funfact-item-two {
    max-width: 295px;
    height: 295px;
  }
  .funfact-item-two .funfact-box {
    max-width: 224px;
    text-align: center;
  }
  .funfact-item-two .number {
    font-size: 50px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .funfact-item-two .number span {
    font-size: 95px;
  }
  .funfact-item-two .sub-title {
    margin-top: -10px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .funfact-item-two {
    max-width: 340px;
    height: 350px;
  }
  .funfact-item-two .funfact-box {
    text-align: center;
  }
  .funfact-item-two .number {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .funfact-item-two .number span {
    font-size: 110px;
  }
  .funfact-item-two .sub-title {
    margin-top: -10px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .funfact-item-two {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    max-width: 350px;
    height: 350px;
    -webkit-margin-start: auto;
            margin-inline-start: auto;
    -webkit-margin-end: auto;
            margin-inline-end: auto;
  }
  .funfact-item-two .funfact-box {
    text-align: center;
  }
  .funfact-item-two .number {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .funfact-item-two .number span {
    font-size: 110px;
  }
  .funfact-item-two .sub-title {
    margin-top: -10px;
  }
}
@media (max-width: 575px) {
  .funfact-item-two {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    max-width: 325px;
    height: 325px;
    -webkit-margin-start: auto;
            margin-inline-start: auto;
    -webkit-margin-end: auto;
            margin-inline-end: auto;
  }
  .funfact-item-two .funfact-box {
    text-align: center;
  }
  .funfact-item-two .number {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .funfact-item-two .number span {
    font-size: 85px;
  }
  .funfact-item-two .sub-title {
    margin-top: -10px;
  }
}

/* !END: About CSS */


/* START: Counter CSS */
.tj-counter-section {
  padding-top: 120px;
  padding-bottom: 120px;
  background-color: var(--tj-color-theme-bg);
  overflow: hidden;
}
.tj-counter-section .sec-heading {
  max-width: 560px;
  width: 100%;
  -webkit-margin-start: auto;
          margin-inline-start: auto;
  -webkit-margin-end: auto;
          margin-inline-end: auto;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tj-counter-section {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}
@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-counter-section {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}

.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-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 (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: 70px;
  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: 60px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .counter-item .number {
    font-size: 54px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .counter-item .number {
    font-size: 44px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .counter-item .number {
    font-size: 40px;
  }
}
.counter-item .number span {
  line-height: 1;
  font-family: inherit;
}
.counter-item .sub-title {
  line-height: 1;
  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;
  }
}

/* !END: Counter CSS */
/* START: Evolute CSS */
.tj-evolute {
  max-width: 905px;
  padding: 71px 60px;
  background-color: var(--tj-color-theme-bg-2);
  -webkit-clip-path: polygon(100% 0, 100% 90%, 90% 100%, 0 100%, 0 0);
          clip-path: polygon(100% 0, 100% 90%, 90% 100%, 0 100%, 0 0);
  -webkit-margin-start: auto;
          margin-inline-start: auto;
  -webkit-margin-end: -100px;
          margin-inline-end: -100px;
}
@media (max-width: 1790px) {
  .tj-evolute {
    padding: 54px 50px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .tj-evolute {
    margin: 0;
    max-width: 100%;
    -webkit-clip-path: none;
            clip-path: none;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .tj-evolute {
    padding: 40px;
  }
}
@media (max-width: 575px) {
  .tj-evolute {
    padding: 40px 25px;
  }
}
.tj-evolute-area {
  position: relative;
  padding-top: 66px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .tj-evolute-area {
    padding-top: 0;
  }
}
.tj-evolute-image {
  max-width: calc(100% - 80px);
  position: relative;
  bottom: 65px;
  inset-inline-end: 0;
  -webkit-clip-path: polygon(100% 0, 100% 100%, 0 100%, 0 10%, 10% 0);
          clip-path: polygon(100% 0, 100% 100%, 0 100%, 0 10%, 10% 0);
  -webkit-margin-start: auto;
          margin-inline-start: auto;
}
@media (max-width: 1790px) {
  .tj-evolute-image {
    bottom: 58px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .tj-evolute-image {
    max-width: 100%;
    bottom: 0;
    -webkit-clip-path: none;
            clip-path: none;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .tj-evolute-image img {
    height: 100% !important;
    width: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px) {
  .tj-evolute-image {
    height: 547px;
  }
}
@media (max-width: 575px) {
  .tj-evolute-image {
    height: 450px;
  }
}
.tj-evolute-title {
  font-size: 24px;
  font-family: var(--tj-ff-heading);
  font-weight: 600;
  display: inline-block;
  background-color: var(--tj-color-theme-primary);
  color: var(--tj-color-common-white);
  padding: 5px 20px;
  border-radius: 30px;
}
.tj-evolute-title i {
  font-size: 17px;
  -webkit-margin-end: 5px;
          margin-inline-end: 5px;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .tj-evolute-title {
    font-size: 18px;
  }
}
.tj-evolute .desc {
  font-family: var(--tj-ff-heading);
  font-size: 24px;
  color: #364052;
  max-width: 750px;
  letter-spacing: -1px;
}
@media (max-width: 1870px) {
  .tj-evolute .desc {
    font-size: 22px;
  }
}
@media (max-width: 1650px) {
  .tj-evolute .desc {
    font-size: 20px;
    margin-bottom: 40px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .tj-evolute .desc {
    max-width: 100%;
    font-size: 16px;
    letter-spacing: 0;
  }
}
.tj-evolute-counter {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  max-width: 560px;
  gap: 35px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .tj-evolute-counter {
    gap: 15px;
  }
}
@media (max-width: 500px) {
  .tj-evolute-counter {
    grid-template-columns: 1fr 1fr;
  }
}
.tj-evolute-counter .counter-item {
  padding: 0;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .tj-evolute-counter .counter-item {
    border: 0;
  }
}
.tj-evolute-counter .counter-item::after, .tj-evolute-counter .counter-item::before {
  display: none;
}
.tj-evolute-counter .counter-item .number {
  font-size: 48px;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .tj-evolute-counter .counter-item .number {
    font-size: 36px;
  }
}
.tj-evolute-counter .counter-item .sub-title {
  margin-top: 20px;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .tj-evolute-counter .counter-item .sub-title {
    margin-top: 10px;
  }
}

/* !END: Counter CSS */
/* START: Service CSS */
.tj-service-section {
  background-color: var(--tj-color-common-white);
  padding-top: 120px;
  padding-bottom: 90px;
  overflow: hidden;
}
.tj-service-section .sec-heading {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 20px;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: end;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.tj-service-section .sec-heading .sec-title {
  margin-bottom: 0;
  line-height: 1;
}
.tj-service-section .sec-heading .service-rating {
  text-align: end;
}
.tj-service-section .sec-heading .service-rating .star-fill {
  display: inline-block;
  background-color: var(--tj-color-theme-primary);
  border-radius: 32px;
  padding: 2px 7px 3px 12px;
  margin-bottom: 16px;
}
.tj-service-section .sec-heading .service-rating .review {
  font-size: 16px;
  font-weight: var(--tj-fw-regular);
  color: var(--tj-color-common-black-2);
  line-height: 1;
}
.tj-service-section .sec-heading .service-rating .review strong {
  color: var(--tj-color-heading-primary);
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tj-service-section {
    padding-top: 100px;
    padding-bottom: 70px;
  }
}
@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-service-section {
    padding-top: 80px;
    padding-bottom: 50px;
  }
  .tj-service-section .sec-heading {
    margin-bottom: 40px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .tj-service-section .sec-heading .service-rating {
    text-align: start;
  }
}

.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;
}

.tj-service-section-three {
  background: var(--tj-color-theme-bg);
}
.tj-service-section-three .sec-heading {
  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;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .tj-service-section-three .sec-heading {
    row-gap: 30px;
  }
}
.tj-service-section-three .sec-heading .sec-text {
  max-width: 520px;
  width: 100%;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tj-service-section-three .sec-heading .sec-text {
    max-width: 490px;
  }
}
.tj-service-section-three .sec-heading .sec-text .sec-title {
  margin-bottom: 0;
  letter-spacing: -0.025em;
}
.tj-service-section-three .sec-heading .service-rating {
  text-align: end;
}
.tj-service-section-three .sec-heading .service-rating .star-fill {
  display: inline-block;
  background-color: var(--tj-color-theme-primary);
  border-radius: 32px;
  padding: 2px 7px 3px 12px;
  margin-bottom: 16px;
}
.tj-service-section-three .sec-heading .service-rating .review {
  font-size: 16px;
  font-weight: var(--tj-fw-regular);
  color: var(--tj-color-common-black-2);
  line-height: 1;
}
.tj-service-section-three .sec-heading .service-rating .review strong {
  color: var(--tj-color-heading-primary);
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .tj-service-section-three .sec-heading .service-rating {
    text-align: start;
  }
}

.service-wrapper-two .service-style-3:last-child {
  border-bottom: none;
}

.service-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
  height: 100%;
  background-color: var(--tj-color-theme-dark);
  position: relative;
  z-index: 5;
  margin-bottom: 30px;
}
.service-item .service-images {
  max-width: 645px;
  width: 100%;
  height: 100%;
}
.service-item .service-images img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .service-item .service-images {
    max-width: 550px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .service-item .service-images {
    max-width: 500px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .service-item .service-images {
    max-width: 100%;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .service-item .service-images {
    height: 610px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .service-item .service-images {
    height: 450px;
  }
}
@media (max-width: 575px) {
  .service-item .service-images {
    height: 350px;
  }
}
.service-item .service-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 25px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 60px 15px 60px 65px;
}
.service-item .service-content .service-number {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: end;
}
.service-item .service-content .service-number span {
  display: inline-block;
  font-size: 14px;
  font-weight: var(--tj-fw-regular);
  color: var(--tj-color-common-black-2);
}
.service-item .service-content .service-number span.active {
  font-size: 18px;
  color: var(--tj-color-common-white);
}
.service-item .service-content .service-text {
  max-width: 365px;
  width: 100%;
  margin-top: auto;
}
.service-item .service-content .service-text .service-icons {
  max-width: 56px;
  width: 100%;
  margin-bottom: 35px;
}
.service-item .service-content .service-text .service-icons img {
  width: 100%;
}
.service-item .service-content .service-text .title {
  letter-spacing: -0.025em;
  margin-bottom: 20px;
}
.service-item .service-content .service-text .title a {
  color: var(--tj-color-common-white);
}
.service-item .service-content .service-text .title:hover {
  letter-spacing: 0;
}
.service-item .service-content .service-text .desc {
  font-size: 16px;
  color: var(--tj-color-common-white-2);
  font-weight: var(--tj-fw-regular);
}
.service-item .service-content .service-text .desc p:last-child {
  margin-bottom: 0;
}
.service-item .service-content .service-btn {
  margin-top: 40px;
  background-color: var(--tj-color-common-white);
}
.service-item .service-content .service-btn .btn_inner .btn_text {
  color: var(--tj-color-heading-primary);
}
.service-item .service-content .service-btn:hover .btn_inner .btn_text {
  color: var(--tj-color-common-white);
}
.service-item:hover .service-icons {
  -webkit-animation: wobble-horizontal-hover 1s ease-in-out 1;
          animation: wobble-horizontal-hover 1s ease-in-out 1;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .service-item .service-content {
    padding: 40px 15px 40px 30px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .service-item .service-content {
    padding: 35px 30px 45px;
  }
  .service-item .service-content .service-text {
    max-width: 100%;
  }
  .service-item .service-content .service-text .service-icons {
    margin-bottom: 25px;
  }
  .service-item .service-content .service-btn {
    margin-top: 25px;
  }
}

.service-style-2 {
  border: 1px solid var(--tj-color-border-2);
  padding: 40px 30px 45px;
  position: relative;
  z-index: 2;
}
.service-style-2 .thumb {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  inset-inline-start: 0;
  opacity: 0;
  visibility: hidden;
  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;
}
.service-style-2 .thumb::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  inset-inline-start: 0;
  background: rgba(5, 18, 41, 0.65);
  z-index: 1;
}
.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: 55px;
  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 .number {
  display: block;
  font-size: 16px;
  font-weight: var(--tj-fw-bold);
  color: var(--tj-color-common-white-2);
  margin-bottom: 15px;
  line-height: 1;
}
.service-style-2 .service-content .title {
  margin-bottom: 15px;
}
.service-style-2 .service-content .title:hover {
  letter-spacing: 0.025em;
}
.service-style-2 .service-content .desc p:last-child {
  margin-bottom: 0;
}
.service-style-2 .service-button {
  margin-top: 25px;
  color: var(--tj-color-heading-primary);
}
.service-style-2 .service-button i {
  color: var(--tj-color-heading-primary);
}
.service-style-2:hover .thumb {
  opacity: 1;
  visibility: visible;
}
.service-style-2:hover .service-icon {
  background-color: var(--tj-color-common-white);
}
.service-style-2:hover .service-icon i {
  -webkit-animation: wobble-horizontal-hover 1s ease-in-out 1;
          animation: wobble-horizontal-hover 1s ease-in-out 1;
}
.service-style-2:hover .service-content .title a {
  color: var(--tj-color-common-white);
}
.service-style-2:hover .service-content .desc {
  color: var(--tj-color-common-white-2);
}
.service-style-2:hover .service-button {
  color: var(--tj-color-common-white);
}
.service-style-2:hover .service-button i {
  color: var(--tj-color-common-white);
}
.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;
  }
}

.service-style-3 {
  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;
  background-color: var(--tj-color-common-white);
  padding: 54px 30px;
  border-bottom: 1px solid var(--tj-color-border-2);
  position: relative;
  min-height: 185px;
  -webkit-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
  z-index: 2;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .service-style-3 {
    row-gap: 25px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .service-style-3 {
    -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: start;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: start;
    row-gap: 20px;
    padding: 35px 30px;
  }
}
.service-style-3 .service-image {
  position: absolute;
  top: 0;
  inset-inline-start: 0;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  z-index: -1;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
}
.service-style-3 .service-image::before {
  width: 100%;
  height: 100%;
  position: absolute;
  content: "";
  top: 0;
  inset-inline-start: 0;
  background: rgba(5, 18, 41, 0.2);
  z-index: -1;
}
.service-style-3:hover {
  min-height: 300px;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .service-style-3:hover {
    min-height: auto;
  }
}
.service-style-3:hover .service-image {
  opacity: 1;
  visibility: visible;
}
.service-style-3:hover .service-button a i,
.service-style-3:hover .service-button a,
.service-style-3:hover p,
.service-style-3:hover .title a {
  color: var(--tj-color-common-white);
}
.service-style-3 .service-title {
  max-width: 285px;
  width: 100%;
}
.service-style-3 .service-title .title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 10px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  margin-bottom: 0;
  letter-spacing: -0.025em;
}
.service-style-3 .service-title .title span {
  color: var(--tj-color-common-white-2);
  position: relative;
  top: 3px;
  font-size: 16px;
  font-weight: var(--tj-fw-bold);
  line-height: 1;
}
.service-style-3 .service-title .title:hover {
  letter-spacing: 0;
}
.service-style-3 .desc {
  max-width: 340px;
  width: 100%;
}
.service-style-3 .desc p:last-child {
  margin-bottom: 0;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .service-style-3 .desc {
    max-width: 100%;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .service-style-3 .desc {
    -webkit-padding-start: 30px;
            padding-inline-start: 30px;
  }
}
.service-style-3 .service-button a {
  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;
  font-size: 15px;
  color: var(--tj-color-heading-primary);
  font-weight: var(--tj-fw-bold);
  line-height: 1;
}
.service-style-3 .service-button a i {
  color: var(--tj-color-heading-primary);
}
.service-style-3 .service-button a.text-btn::before {
  background-color: var(--tj-color-common-white);
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .service-style-3 .service-button {
    margin-top: 10px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .service-btn {
    margin-top: 40px;
  }
}

.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);
}

/* !END: Service CSS */
/* START: Service details CSS */
.service-check-list ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border: 1px solid var(--tj-color-border-2);
  border-bottom: 0;
}
@media (max-width: 575px) {
  .service-check-list ul {
    grid-template-columns: repeat(1, 1fr);
  }
}
.service-check-list ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 6px;
  padding: 30px;
  border-bottom: 1px solid var(--tj-color-border-2);
}
.service-check-list ul li:not(:nth-child(even)) {
  -webkit-border-end: 1px solid var(--tj-color-border-2);
          border-inline-end: 1px solid var(--tj-color-border-2);
}
@media (max-width: 575px) {
  .service-check-list ul li:not(:nth-child(even)) {
    -webkit-border-end: 0;
            border-inline-end: 0;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .service-check-list ul li {
    padding: 15px;
  }
}
.service-check-list ul li span {
  font-family: var(--tj-ff-heading);
  font-weight: 600;
  color: var(--tj-color-heading-primary);
}
.service-check-list ul li i {
  font-size: 18px;
  color: var(--tj-color-theme-primary);
  margin-top: 3px;
}

.tj-feature {
  padding: 35px 30px;
  background: var(--tj-color-theme-bg);
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px) {
  .tj-feature {
    padding: 25px 22px;
  }
}
.tj-feature-icon {
  font-size: 52px;
  color: var(--tj-color-theme-primary);
  line-height: 1;
  margin-bottom: 20px;
}
.tj-feature-title {
  margin-bottom: 20px;
}
.tj-feature p {
  margin-bottom: 0;
}
.tj-feature:hover .tj-feature-icon {
  -webkit-animation: wobble-horizontal-hover 1s ease-in-out 1;
          animation: wobble-horizontal-hover 1s ease-in-out 1;
}

.service-category ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.service-category ul li {
  margin-bottom: 20px;
}
.service-category ul li:last-child {
  margin-bottom: 0;
}
.service-category ul li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
  color: var(--tj-color-heading-primary);
  font-weight: var(--tj-fw-bold);
  padding: 17.5px 30px;
  background: var(--tj-color-theme-bg);
}
.service-category ul li a i {
  font-weight: 700;
  color: var(--tj-color-heading-primary);
}
.service-category ul li a.active, .service-category ul li a:hover {
  color: var(--tj-color-common-white);
  background-color: var(--tj-color-theme-primary);
}
.service-category ul li a.active i, .service-category ul li a:hover i {
  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), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .service-category ul li a {
    padding: 17px 15px;
  }
}

/* !END: Service details CSS */

/* START: Testimonial CSS */
.tj-testimonial-section {
  background-color: var(--tj-color-common-white);
  padding-top: 120px;
  padding-bottom: 120px;
  overflow: hidden;
}
.tj-testimonial-section .sec-heading {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: end;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.tj-testimonial-section .sec-heading .sec-title {
  margin-bottom: 0;
}
.tj-testimonial-section .testimonial-pagination {
  margin-top: 60px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tj-testimonial-section {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}
@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-testimonial-section {
    padding-top: 80px;
    padding-bottom: 80px;
  }
  .tj-testimonial-section .testimonial-pagination {
    margin-top: 40px;
  }
}

.tj-testimonial-section-two {
  overflow: hidden;
}

.tj-testimonial-section-three {
  background: var(--tj-color-theme-bg);
  overflow: hidden;
}

.testimonial-item {
  background-color: var(--tj-color-theme-bg);
  padding: 35px 40px 40px 0px;
}
.testimonial-item .testimonial-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  -webkit-padding-start: 40px;
          padding-inline-start: 40px;
}
.testimonial-item .testimonial-content .testimonial-quote {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  font-size: 70px;
  color: var(--tj-color-theme-primary);
  line-height: 1;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.testimonial-item .testimonial-content .testimonial-quote i {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  line-height: 1;
}
.testimonial-item .testimonial-content .desc {
  max-width: 455px;
  width: 100%;
  font-size: 18px;
  font-weight: var(--tj-fw-regular);
  border-bottom: 1px solid var(--tj-color-border-2);
  padding-bottom: 30px;
  line-height: 1.5;
}
.testimonial-item .testimonial-content .desc p:last-child {
  margin: 0;
}
.testimonial-item .tj-testimonial-author {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 20px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 20px;
}
.testimonial-item .tj-testimonial-author .author-images {
  max-width: 118px;
  width: 100%;
  height: 106px;
  -webkit-mask-image: url(../images/test-shapes.svg);
          mask-image: url(../images/test-shapes.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;
  position: relative;
  z-index: 1;
}
.testimonial-item .tj-testimonial-author .author-images img {
  width: 85px;
  height: 85px;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  inset-inline-end: 10px;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 2;
}
.testimonial-item .tj-testimonial-author .author-rating {
  display: inline-block;
  background: var(--tj-color-common-white);
  padding: 2px 10px 4px;
  margin-bottom: 10px;
  border-radius: 32px;
}
.testimonial-item .tj-testimonial-author .author-rating .star-ratings {
  color: var(--tj-color-theme-primary);
  -webkit-text-stroke: 1px var(--tj-color-theme-primary);
}
.testimonial-item .tj-testimonial-author .author-rating .star-ratings .fill-ratings {
  color: var(--tj-color-theme-primary);
}
.testimonial-item .tj-testimonial-author .author-rating .star-ratings .empty-ratings {
  color: transparent;
}
.testimonial-item .tj-testimonial-author .author-text .author-name {
  letter-spacing: -0.025em;
  margin-bottom: 4px;
}
.testimonial-item .tj-testimonial-author .author-text .sub-title {
  display: block;
  line-height: 1;
}
.testimonial-item:hover .testimonial-quote {
  -webkit-transform: rotateY(-360deg);
          transform: rotateY(-360deg);
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .testimonial-item {
    padding: 35px 15px 40px 0px;
  }
  .testimonial-item .testimonial-content .desc {
    max-width: 365px;
    font-size: 17px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .testimonial-item {
    padding: 35px 15px 40px 0px;
  }
  .testimonial-item .testimonial-content {
    -webkit-padding-start: 20px;
            padding-inline-start: 20px;
  }
  .testimonial-item .testimonial-content .desc {
    max-width: 315px;
    font-size: 16px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px) {
  .testimonial-item {
    padding: 35px 15px 40px 0px;
  }
  .testimonial-item .testimonial-content {
    -webkit-padding-start: 20px;
            padding-inline-start: 20px;
  }
  .testimonial-item .testimonial-content .desc {
    max-width: 100%;
    font-size: 16px;
  }
}
@media (max-width: 575px) {
  .testimonial-item {
    padding: 30px 15px 35px 0px;
  }
  .testimonial-item .testimonial-content {
    -webkit-padding-start: 15px;
            padding-inline-start: 15px;
    gap: 15px;
  }
  .testimonial-item .testimonial-content .testimonial-quote {
    font-size: 48px;
  }
  .testimonial-item .testimonial-content .desc {
    max-width: 100%;
    font-size: 16px;
  }
}

.testimonial-images-2 {
  max-width: 550px;
  width: 100%;
  position: relative;
  z-index: 2;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .testimonial-images-2 {
    max-width: 500px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .testimonial-images-2 {
    max-width: 440px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .testimonial-images-2 {
    max-width: 100%;
  }
  .testimonial-images-2 img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
.testimonial-images-2 .testimonial-funfact {
  position: absolute;
  inset-inline-start: 30px;
  bottom: 30px;
  background: rgba(247, 247, 247, 0.1);
  -webkit-backdrop-filter: blur(17.5px);
          backdrop-filter: blur(17.5px);
  padding: 35px 30px 35px;
}
.testimonial-images-2 .testimonial-funfact .number {
  font-family: var(--tj-ff-heading);
  font-size: 48px;
  font-weight: var(--tj-fw-sbold);
  letter-spacing: -0.025em;
  color: var(--tj-color-common-white);
  line-height: 1;
}
.testimonial-images-2 .testimonial-funfact .number .odometer {
  font-family: var(--tj-ff-heading);
  line-height: 1;
}
.testimonial-images-2 .testimonial-funfact .sub-title {
  display: inline-block;
  color: var(--tj-color-common-white-2);
}

.tj-testimonial-slider-two .testimonial-navigation {
  position: absolute;
  inset-inline-end: 0;
  bottom: 30px;
  z-index: 10;
}
.tj-testimonial-slider-two .shape-image {
  position: absolute;
  bottom: 0;
  inset-inline-end: 0;
  width: 100%;
}
.tj-testimonial-slider-two .shape-image img {
  height: 127px;
  width: 100%;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tj-testimonial-slider-two .shape-image img {
    height: 115px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .tj-testimonial-slider-two .shape-image img {
    height: 100px;
  }
}

.testimonial-style-2 .testimonial-content {
  max-width: 630px;
  width: 100%;
}
.testimonial-style-2 .testimonial-content .testimonial-quote {
  color: var(--tj-color-theme-primary);
  line-height: 1;
  font-size: 75px;
  margin-bottom: 25px;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .testimonial-style-2 .testimonial-content .testimonial-quote {
    margin-bottom: 15px;
  }
}
.testimonial-style-2 .testimonial-content .desc {
  font-size: 26px;
  font-family: var(--tj-ff-heading);
  font-weight: var(--tj-fw-medium);
  letter-spacing: -0.04em;
}
.testimonial-style-2 .testimonial-content .desc p:last-child {
  margin-bottom: 0;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px) {
  .testimonial-style-2 .testimonial-content .desc {
    font-size: 21px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .testimonial-style-2 .testimonial-content .desc {
    font-size: 18px;
  }
}
.testimonial-style-2 .testimonial-content .testimonial-author {
  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-column-gap: 16px;
     -moz-column-gap: 16px;
          column-gap: 16px;
  margin-top: 70px;
  position: relative;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .testimonial-style-2 .testimonial-content .testimonial-author {
    margin-top: 50px;
  }
}
.testimonial-style-2 .testimonial-content .testimonial-author .author-images {
  width: 95px;
  height: 95px;
  border-radius: 50%;
  overflow: hidden;
}
.testimonial-style-2 .testimonial-content .testimonial-author .author-images img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .testimonial-style-2 .testimonial-content .testimonial-author .author-images {
    width: 65px;
    height: 65px;
  }
}
.testimonial-style-2 .testimonial-content .testimonial-author .author-text .testimonial-rating {
  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;
  background: var(--tj-color-theme-bg);
  padding: 2px 10px 4px;
  margin-bottom: 14px;
  border-radius: 32px;
}
.testimonial-style-2 .testimonial-content .testimonial-author .author-text .testimonial-rating .star-ratings {
  color: var(--tj-color-theme-primary);
  -webkit-text-stroke: 1px var(--tj-color-theme-primary);
}
.testimonial-style-2 .testimonial-content .testimonial-author .author-text .testimonial-rating .star-ratings .fill-ratings {
  color: var(--tj-color-theme-primary);
}
.testimonial-style-2 .testimonial-content .testimonial-author .author-text .testimonial-rating .star-ratings .empty-ratings {
  color: var(--tj-color-theme-primary);
}
.testimonial-style-2 .testimonial-content .testimonial-author .author-text .title {
  margin-bottom: 0;
}
.testimonial-style-2 .testimonial-content .testimonial-author .author-text .designation {
  display: block;
  color: var(--tj-color-common-black-2);
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .testimonial-style-2 .testimonial-content {
    max-width: 100%;
  }
}

.testimonial-style-3 {
  position: relative;
  z-index: 1;
}
.testimonial-style-3 .testimonial-content-box {
  position: relative;
  background-color: var(--tj-color-common-white);
  padding: 55px 30px 35px 110px;
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 7% 100%, 0% 90%);
          clip-path: polygon(0 0, 100% 0, 100% 100%, 7% 100%, 0% 90%);
  z-index: 1;
}
@media (max-width: 575px) {
  .testimonial-style-3 .testimonial-content-box {
    padding: 40px 20px 35px 120px;
  }
}
.testimonial-style-3 .testimonial-content-box .testimonial-content .desc {
  font-size: 18px;
  max-width: 445px;
  width: 100%;
  margin-bottom: 25px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px) {
  .testimonial-style-3 .testimonial-content-box .testimonial-content .desc {
    max-width: 100%;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .testimonial-style-3 .testimonial-content-box .testimonial-content .desc {
    font-size: 16px;
  }
}
.testimonial-style-3 .testimonial-content-box .testimonial-content .desc p:last-child {
  margin-bottom: 0;
}
.testimonial-style-3 .testimonial-content-box .testimonial-content .testimonial-author {
  padding-top: 28px;
  border-top: 1px solid var(--tj-color-border-2);
}
.testimonial-style-3 .testimonial-content-box .testimonial-content .testimonial-author .testimonial-rating {
  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;
  background: var(--tj-color-theme-bg);
  padding: 2px 7px 4px 13px;
  margin-bottom: 14px;
  border-radius: 32px;
}
.testimonial-style-3 .testimonial-content-box .testimonial-content .testimonial-author .testimonial-rating .star-ratings {
  color: var(--tj-color-theme-primary);
  -webkit-text-stroke: 1px var(--tj-color-theme-primary);
}
.testimonial-style-3 .testimonial-content-box .testimonial-content .testimonial-author .testimonial-rating .star-ratings .fill-ratings {
  color: var(--tj-color-theme-primary);
}
.testimonial-style-3 .testimonial-content-box .testimonial-content .testimonial-author .testimonial-rating .star-ratings .empty-ratings {
  color: var(--tj-color-theme-primary);
}
.testimonial-style-3 .testimonial-content-box .testimonial-content .testimonial-author .title {
  margin-bottom: 0;
}
.testimonial-style-3 .testimonial-content-box .testimonial-content .testimonial-author .designation {
  display: inline-block;
  font-size: 14px;
  color: var(--tj-color-common-black-2);
}
.testimonial-style-3 .testimonial-infos {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  position: absolute;
  inset-inline-start: -35px;
  top: 45px;
  z-index: 2;
}
@media (max-width: 575px) {
  .testimonial-style-3 .testimonial-infos {
    inset-inline-start: 25px;
  }
}
.testimonial-style-3 .testimonial-infos .testimonial-quote {
  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: 65px;
  height: 65px;
  line-height: 1;
  font-size: 36px;
  color: var(--tj-color-common-white);
  background: var(--tj-color-theme-primary);
  border: 2px solid var(--tj-color-theme-bg);
  border-radius: 50%;
  position: relative;
  z-index: 1;
}
@media (max-width: 575px) {
  .testimonial-style-3 .testimonial-infos .testimonial-quote {
    width: 56px;
    height: 56px;
  }
}
.testimonial-style-3 .testimonial-infos .testimonial-images {
  width: 65px;
  height: 65px;
  -webkit-margin-start: -16px;
          margin-inline-start: -16px;
}
@media (max-width: 575px) {
  .testimonial-style-3 .testimonial-infos .testimonial-images {
    width: 56px;
    height: 56px;
  }
}
.testimonial-style-3 .testimonial-infos .testimonial-images img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 50%;
  -webkit-filter: grayscale(100%);
          filter: grayscale(100%);
}
@media (max-width: 575px) {
  .testimonial-style-3.swiper-slide {
    padding: 0 15px;
  }
}

/* !END: Testimonial CSS */

/* START: Section Title CSS */
.sec-heading {
  display: block;
  margin-bottom: 50px;
}
.sec-heading .sub-title {
  display: inline-block;
  font-size: 14px;
  font-weight: var(--tj-fw-bold);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--tj-color-theme-primary);
  -webkit-padding-start: 16px;
          padding-inline-start: 16px;
  -webkit-padding-end: 16px;
          padding-inline-end: 16px;
  margin-bottom: 15px;
  position: relative;
  z-index: 1;
}
.sec-heading .sub-title::before, .sec-heading .sub-title::after {
  position: absolute;
  content: "";
  width: 4px;
  height: 4px;
  border-radius: 50%;
  top: 50%;
  inset-inline-start: 0;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  background-color: var(--tj-color-theme-primary);
}
.sec-heading .sub-title::after {
  inset-inline-start: auto;
  inset-inline-end: 0;
}
.sec-heading .sec-title {
  margin: 0;
  letter-spacing: -0.04em;
}
.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;
  }
  .sec-heading .sub-title {
    margin-bottom: 10px;
  }
}
.sec-heading-centered {
  max-width: 560px;
  width: 100%;
  text-align: center;
  -webkit-margin-start: auto;
          margin-inline-start: auto;
  -webkit-margin-end: auto;
          margin-inline-end: auto;
}

/* !END: Section Title CSS */


.hero-content-area {
  max-width: 764px;
  width: 100%;
  padding-top: 34px;
}
@media only screen and (min-width: 1400px) and (max-width: 1599px) {
  .hero-content-area {
    padding-top: 0;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .hero-content-area {
    max-width: 716px;
    padding-top: 0;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .hero-content-area {
    max-width: 550px;
    padding-top: 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) {
  .hero-content-area {
    padding-top: 0;
  }
}

.hero-content-three {
  position: relative;
  max-width: 645px;
  width: 100%;
  z-index: 2;
  margin-bottom: 113px;
}
.hero-content-three .hero-title {
  letter-spacing: -0.025em;
  margin-bottom: 10px;
  line-height: 1.056;
}
.hero-content-three .hero-title span {
  color: var(--tj-color-theme-primary);
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .hero-content-three .hero-title {
    font-size: 60px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .hero-content-three .hero-title {
    font-size: 56px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .hero-content-three .hero-title {
    font-size: 48px;
  }
}
.hero-content-three .desc {
  max-width: 530px;
  width: 100%;
  font-size: 18px;
  line-height: 1.444;
}
.hero-content-three .desc p:last-child {
  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) {
  .hero-content-three .desc {
    max-width: 100%;
  }
}
.hero-content-three .btn-area {
  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;
  gap: 15px;
  margin-top: 27px;
}
.hero-content-three .client-experience .images-thumb {
  margin-bottom: 0;
}
.hero-content-three .client-experience .images-thumb li {
  -webkit-margin-start: -22px;
          margin-inline-start: -22px;
  max-width: 58px;
  background-color: var(--tj-color-theme-bg);
}
.hero-content-three .client-experience .images-thumb li img {
  height: 58px;
  mix-blend-mode: luminosity;
  background-color: var(--tj-color-common-white);
}
.hero-content-three .client-experience .images-thumb li:first-child {
  -webkit-margin-start: 0;
          margin-inline-start: 0;
}
@media only screen and (min-width: 1400px) and (max-width: 1599px) {
  .hero-content-three {
    margin-bottom: 95px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .hero-content-three {
    margin-bottom: 75px;
    max-width: 600px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .hero-content-three {
    max-width: 450px;
    margin-bottom: 50px;
  }
}
@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-content-three {
    max-width: 500px;
    margin-bottom: 60px;
  }
}




.about-funfact {
  background-color: var(--tj-color-theme-bg);
  max-width: 520px;
  width: 100%;
  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;
  margin-top: 25px;
}
.about-funfact .counter-item {
  max-width: 50%;
  padding: 24px 30px 33px;
  -webkit-border-end: 2px solid var(--tj-color-common-white);
          border-inline-end: 2px solid var(--tj-color-common-white);
}
.about-funfact .counter-item::before {
  inset-inline-end: -7px;
}
.about-funfact .counter-item::after {
  background-color: var(--tj-color-theme-bg);
}
.about-funfact .counter-item .sub-title {
  color: var(--tj-color-heading-primary);
  margin-top: 6px;
}
@media (max-width: 575px) {
  .about-funfact .counter-item {
    padding: 24px 20px 33px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .about-funfact {
    max-width: 516px;
    -webkit-margin-start: auto;
            margin-inline-start: auto;
    -webkit-margin-end: auto;
            margin-inline-end: auto;
  }
}
@media (max-width: 575px) {
  .about-funfact {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

/* !END: About CSS */


/* START: Home 6 Blog CSS */
.h6-blog-section {
  position: relative;
  overflow: hidden;
  z-index: 2;
}
.h6-blog-shape {
  position: absolute;
  inset-inline-start: -90px;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  max-width: 180px;
  width: 100%;
  z-index: -1;
}

.blog-style-2.style-6 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border: 1px solid var(--tj-color-border-2);
  background-color: var(--tj-color-common-white);
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .blog-style-2.style-6 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.blog-style-2.style-6 .blog-images,
.blog-style-2.style-6 .blog-content {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.blog-style-2.style-6 .blog-images img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.blog-style-2.style-6 .blog-images .blog-date {
  inset-inline-start: 15px;
  top: 15px;
  inset-inline-end: auto;
  bottom: auto;
}
.blog-style-2.style-6 .blog-content {
  padding: 30px;
  border: 0;
}
.blog-style-2.style-6 .blog-content .blog-button {
  margin-top: 25px;
}

/* END: Home 6 Blog CSS */
/* START: Home 6 CTA CSS */
.h6-cta-section {
  background-color: var(--tj-color-theme-dark);
  position: relative;
  overflow: hidden;
}
.h6-cta-shape {
  position: absolute;
  bottom: 0;
  inset-inline-end: 8%;
  width: 270px;
  height: 270px;
}
@media (min-width: 2350px) {
  .h6-cta-shape {
    inset-inline-end: 15%;
  }
}
@media (min-width: 2850px) {
  .h6-cta-shape {
    inset-inline-end: 20%;
  }
}
@media only screen and (min-width: 1600px) and (max-width: 1799px) {
  .h6-cta-shape {
    inset-inline-end: 5%;
  }
}
@media only screen and (min-width: 1400px) and (max-width: 1599px) {
  .h6-cta-shape {
    inset-inline-end: 3%;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .h6-cta-shape {
    inset-inline-end: 0;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px) {
  .h6-cta-shape {
    width: 200px;
    height: 200px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .h6-cta-shape {
    width: 160px;
    height: 160px;
  }
}
.h6-cta-shape i {
  font-size: 270px;
  line-height: 1;
  color: var(--tj-color-common-white);
  opacity: 0.05;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .h6-cta-shape i {
    font-size: 200px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .h6-cta-shape i {
    font-size: 160px;
  }
}
.h6-cta-shape::after {
  content: "";
  position: absolute;
  bottom: -90px;
  inset-inline-end: 0;
  width: 100%;
  height: 124px;
  background-color: var(--tj-color-theme-primary);
  -webkit-filter: blur(16px);
          filter: blur(16px);
  border-radius: 50%;
}
.h6-cta-image {
  height: 553px;
}
@media (min-width: 2350px) {
  .h6-cta-image {
    height: 750px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .h6-cta-image {
    height: 570px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .h6-cta-image {
    height: 502px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .h6-cta-image {
    height: 380px;
  }
}
@media (max-width: 575px) {
  .h6-cta-image {
    height: 320px;
  }
}
.h6-cta-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.h6-cta-content {
  padding: 120px 15px 120px 60px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .h6-cta-content {
    padding: 100px 15px 100px 35px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .h6-cta-content {
    padding: 80px 15px 80px 30px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .h6-cta-content {
    padding: 80px 15px;
    padding-top: 65px;
  }
}
.h6-cta-content .sec-heading {
  max-width: 615px;
  margin-bottom: 0;
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .h6-cta-content .sec-heading {
    max-width: 520px;
    margin: 0 auto;
  }
}
.h6-cta-content .sec-title {
  color: var(--tj-color-common-white);
}
.h6-cta-content .desc {
  max-width: 405px;
  color: var(--tj-color-text-body-2);
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .h6-cta-content .desc {
    max-width: 320px;
  }
}
.h6-cta-content .contact-button {
  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;
  gap: 15px;
}
.h6-cta-content .call-btn-style-2 {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  gap: 8px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.h6-cta-content .call-btn-style-2 .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: 54px;
  height: 54px;
  border-radius: 50%;
  background-color: rgba(247, 247, 247, 0.1);
  -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;
}
.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;
}
.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-white);
  -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;
}

/* END: Home 6 CTA CSS */
/* START: Home 6 Testimonial CSS */
.h6-testimonial-section {
  background-color: var(--tj-color-theme-bg);
  overflow: hidden;
  position: relative;
  z-index: 2;
}
.h6-testimonial-section .sec-heading .desc {
  margin-bottom: 0;
  max-width: 400px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px) {
  .h6-testimonial-section .sec-text {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: end;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    gap: 30px;
  }
  .h6-testimonial-section .sec-text .swiper_navigations {
    width: 180px;
  }
}
.h6-testimonial-quote {
  display: inline-block;
  line-height: 1;
  font-size: 70px;
  color: var(--tj-color-theme-primary);
}
.h6-testimonial-slider {
  -webkit-margin-end: -460px;
          margin-inline-end: -460px;
  -webkit-margin-start: 30px;
          margin-inline-start: 30px;
}
@media only screen and (min-width: 1600px) and (max-width: 1799px) {
  .h6-testimonial-slider {
    -webkit-margin-end: -380px;
            margin-inline-end: -380px;
  }
}
@media only screen and (min-width: 1400px) and (max-width: 1599px) {
  .h6-testimonial-slider {
    -webkit-margin-end: -300px;
            margin-inline-end: -300px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .h6-testimonial-slider {
    -webkit-margin-end: -110px;
            margin-inline-end: -110px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .h6-testimonial-slider {
    -webkit-margin-end: -150px;
            margin-inline-end: -150px;
    -webkit-margin-start: 0;
            margin-inline-start: 0;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .h6-testimonial-slider {
    -webkit-margin-end: -160px;
            margin-inline-end: -160px;
    -webkit-margin-start: 0;
            margin-inline-start: 0;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .h6-testimonial-slider {
    -webkit-margin-end: -110px;
            margin-inline-end: -110px;
    -webkit-margin-start: 0;
            margin-inline-start: 0;
  }
}
@media (max-width: 575px) {
  .h6-testimonial-slider {
    -webkit-margin-end: -20px;
            margin-inline-end: -20px;
    -webkit-margin-start: 0;
            margin-inline-start: 0;
  }
}
@media (max-width: 449px) {
  .h6-testimonial-slider {
    -webkit-margin-end: 0;
            margin-inline-end: 0;
  }
}

.testimonial-item.style-6 {
  padding: 35px 30px 35px 30px;
  background-color: var(--tj-color-common-white);
}
@media (max-width: 575px) {
  .testimonial-item.style-6 {
    padding: 30px 20px;
  }
}
.testimonial-item.style-6 .tj-testimonial-author {
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}
.testimonial-item.style-6 .author-images {
  -webkit-mask-image: url(../images/h6-test-shape.svg);
          mask-image: url(../images/h6-test-shape.svg);
  background: var(--tj-color-theme-bg);
  width: 90px;
  height: 110px;
  margin-bottom: -40px;
}
.testimonial-item.style-6 .author-images img {
  top: 12px;
  inset-inline-end: 8px;
  -webkit-transform: unset;
      -ms-transform: unset;
          transform: unset;
  width: 75px;
  height: 75px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .testimonial-item.style-6 .author-text .author-name {
    font-size: 20px;
  }
}
.testimonial-item.style-6 .author-rating {
  background: var(--tj-color-theme-bg);
  display: inline-block;
  padding: 2px 10px 4px;
  border-radius: 32px;
}
.testimonial-item.style-6 .author-rating .star-ratings {
  color: var(--tj-color-theme-primary);
  -webkit-text-stroke: 1px var(--tj-color-theme-primary);
}
.testimonial-item.style-6 .author-rating .star-ratings .fill-ratings {
  color: var(--tj-color-theme-primary);
}
.testimonial-item.style-6 .author-rating .star-ratings .empty-ratings {
  color: transparent;
}
.testimonial-item.style-6 .testimonial-content {
  -webkit-padding-start: 0;
          padding-inline-start: 0;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.testimonial-item.style-6 .testimonial-content .desc {
  max-width: 100%;
  font-size: 18px;
  border-bottom-style: dashed;
  padding-bottom: 25px;
}
@media (max-width: 575px) {
  .testimonial-item.style-6 .testimonial-content .desc {
    font-size: 16px;
  }
}

.swiper_navigations.style-6 .navigation {
  color: var(--tj-color-heading-primary);
  border: 1px solid var(--tj-color-border-2);
  background: var(--tj-color-common-white);
}
.swiper_navigations.style-6 .navigation:hover {
  border-color: var(--tj-color-theme-primary);
  background: var(--tj-color-theme-primary);
}

/* START: Home 6 Testimonial CSS */
/* START: Home 6 Team CSS */
.h6-team-section {
  overflow: hidden;
}
.h6-team-section .sec-heading {
  max-width: 585px;
  width: 100%;
  -webkit-margin-start: auto;
          margin-inline-start: auto;
  -webkit-margin-end: auto;
          margin-inline-end: auto;
  margin-bottom: 50px;
}

.h6-tabs {
  padding-bottom: 30px;
  display: block;
}
.h6-tabs .h6-tab {
  height: 200px;
  position: relative;
  cursor: pointer;
  z-index: 2;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .h6-tabs .h6-tab {
    height: 180px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .h6-tabs .h6-tab {
    height: 160px;
  }
}
.h6-tabs .h6-tab-image {
  height: 100%;
  position: relative;
  overflow: hidden;
}
.h6-tabs .h6-tab-image::before {
  position: absolute;
  content: "";
  top: 0;
  inset-inline-start: 0;
  width: 100%;
  height: 100%;
  background-color: var(--tj-color-theme-dark);
  opacity: 0.6;
}
.h6-tabs .h6-tab::after {
  position: absolute;
  content: "";
  inset-inline-start: 50%;
  bottom: -50px;
  -webkit-transform: translateX(-50%) rotate(45deg);
      -ms-transform: translateX(-50%) rotate(45deg);
          transform: translateX(-50%) rotate(45deg);
  width: 30px;
  height: 30px;
  background-color: var(--tj-color-theme-bg);
  z-index: -1;
  display: none;
}
.h6-tabs .h6-tab.active::after {
  display: block;
}
.h6-tabs .h6-tab.active .h6-tab-image::before {
  opacity: 0;
}
.h6-tabs .h6-tab img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top center;
     object-position: top center;
}

.h6-tab-content {
  display: none;
}
.h6-tab-content.active {
  display: block;
}
.h6-tab-info {
  background-color: var(--tj-color-theme-bg);
  padding: 60px 30px 60px 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px) {
  .h6-tab-info {
    padding: 35px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .h6-tab-info {
    padding: 30px 22px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.h6-tab-info .tj-socials {
  margin-top: 30px;
}
.h6-tab-info .qr-image {
  margin-top: 60px;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .h6-tab-info .qr-image {
    margin-top: 10px;
    max-width: 90px;
  }
}
.h6-tab-left {
  width: 30%;
  -webkit-border-end: 1px solid var(--tj-color-border-2);
          border-inline-end: 1px solid var(--tj-color-border-2);
  -webkit-padding-end: 20px;
          padding-inline-end: 20px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .h6-tab-left {
    width: 33%;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .h6-tab-left {
    width: 100%;
    -webkit-padding-end: 0;
            padding-inline-end: 0;
    padding-bottom: 30px;
    -webkit-border-end: 0;
            border-inline-end: 0;
    border-bottom: 1px solid var(--tj-color-border-2);
    margin-bottom: 30px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    gap: 10px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .h6-tab-left-content {
    max-width: 175px;
    width: 100%;
  }
}
.h6-tab-left .title {
  margin-bottom: 0;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .h6-tab-left .title {
    font-size: 24px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .h6-tab-left .title {
    font-size: 20px;
  }
}
.h6-tab-right {
  width: 70%;
  -webkit-padding-start: 80px;
          padding-inline-start: 80px;
  position: relative;
  overflow: hidden;
  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-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .h6-tab-right {
    -webkit-padding-start: 50px;
            padding-inline-start: 50px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .h6-tab-right {
    width: 67%;
    -webkit-padding-start: 30px;
            padding-inline-start: 30px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .h6-tab-right {
    width: 100%;
    -webkit-padding-start: 0;
            padding-inline-start: 0;
  }
}
.h6-tab-right .shape {
  position: absolute;
  inset-inline-end: 0;
  bottom: 0;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .h6-tab-right .shape {
    max-width: 130px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .h6-tab-right .shape {
    display: none;
  }
}

.progress-style-2.style-6 {
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px) {
  .progress-style-2.style-6 {
    margin-top: 20px;
  }
}
@media (max-width: 575px) {
  .progress-style-2.style-6 .proggess-item .proggess-circle canvas {
    width: 130px !important;
    height: 130px !important;
  }
}
@media (max-width: 575px) {
  .progress-style-2.style-6 .proggess-item .proggess-circle input {
    -webkit-margin-start: -100px !important;
            margin-inline-start: -100px !important;
  }
}

/* END: Home 6 Team CSS */
/* START: H6 Services CSS */
.h6-services-section {
  background-color: var(--tj-color-theme-bg);
  overflow: hidden;
}
.h6-services-section .sec-heading {
  max-width: 555px;
  width: 100%;
  -webkit-margin-start: auto;
          margin-inline-start: auto;
  -webkit-margin-end: auto;
          margin-inline-end: auto;
  margin-bottom: 60px;
}
.h6-services-section .sec-heading .sec-title {
  letter-spacing: -0.025em;
}
.h6-services-slider .swiper_pagination {
  margin-top: 60px;
}
.h6-services-item-inner {
  position: relative;
  z-index: 1;
  background-color: var(--tj-color-theme-bg);
  min-height: 460px;
  width: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  background-blend-mode: luminosity;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
}
.h6-services-item-inner::before {
  content: "";
  position: absolute;
  inset-inline-start: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(5, 18, 41, 0.6);
  z-index: -1;
  opacity: 1;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.h6-services-item-inner .service_shape {
  position: absolute;
  inset-inline-start: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: var(--tj-color-theme-primary);
  z-index: 1;
  -webkit-mask-image: url(../images/h6-service.svg);
          mask-image: url(../images/h6-service.svg);
  -webkit-mask-size: cover;
          mask-size: cover;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  -webkit-transform: scale(1.12);
      -ms-transform: scale(1.12);
          transform: scale(1.12);
  visibility: hidden;
  opacity: 0;
}
.h6-services-item-inner .service_icon {
  position: absolute;
  inset-inline-end: 15px;
  top: 35px;
  z-index: 2;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  font-size: 80px;
  line-height: 1;
  color: rgba(247, 247, 247, 0.3);
  opacity: 0;
  -webkit-transform: scale(0.8);
      -ms-transform: scale(0.8);
          transform: scale(0.8);
  visibility: hidden;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.h6-services-item-inner .service_icon i,
.h6-services-item-inner .service_icon svg {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  line-height: 1;
}
.h6-services-item-inner .service_content {
  max-width: 280px;
  width: 100%;
  position: relative;
  z-index: 1;
  padding: 35px 0 35px 30px;
  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;
  width: 100%;
  height: auto;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 30px;
}
.h6-services-item-inner .service_content .title {
  color: var(--tj-color-common-white);
  margin: 0;
  line-height: 1.3;
  letter-spacing: -0.025em;
}
.h6-services-item-inner .service_content .title a:hover {
  letter-spacing: 0;
}
.h6-services-item-inner .service_content .service_btn {
  margin-top: 0;
  color: var(--tj-color-common-white);
}
.h6-services-item-inner .service_content .service_btn .btn-icon {
  background-color: var(--tj-color-common-white);
  color: var(--tj-color-heading-primary);
  -webkit-transform: rotate(-45deg);
      -ms-transform: rotate(-45deg);
          transform: rotate(-45deg);
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.h6-services-item-inner .service_content .service_btn .btn-icon i {
  color: var(--tj-color-heading-primary);
}
.h6-services-item:hover .h6-services-item-inner {
  background-blend-mode: normal;
}
.h6-services-item:hover .h6-services-item-inner::before {
  opacity: 0;
}
.h6-services-item:hover .h6-services-item-inner .service_shape {
  -webkit-transform: scale(1);
      -ms-transform: scale(1);
          transform: scale(1);
  visibility: visible;
  opacity: 1;
}
.h6-services-item:hover .h6-services-item-inner .service_icon {
  -webkit-transform: scale(1);
      -ms-transform: scale(1);
          transform: scale(1);
  opacity: 1;
  visibility: visible;
}
.h6-services-item:hover .h6-services-item-inner .service_content .service_btn .btn-icon {
  -webkit-transform: rotate(0);
      -ms-transform: rotate(0);
          transform: rotate(0);
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .h6-services-item-inner .service_icon {
    font-size: 70px;
  }
  .h6-services-item-inner .service_content {
    max-width: 265px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .h6-services-item-inner {
    min-height: 420px;
  }
  .h6-services-item-inner .service_icon {
    font-size: 60px;
    inset-inline-end: 10px;
  }
  .h6-services-item-inner .service_content {
    max-width: 225px;
  }
  .h6-services-item-inner .service_content .title {
    font-size: 20px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .h6-services-section .sec-heading {
    margin-bottom: 40px;
  }
  .h6-services-slider .swiper_pagination {
    margin-top: 40px;
  }
}

/* END: H6 Services CSS */
/* START: H6 Insight CSS */
.h6-insight-section {
  overflow: hidden;
}
.h6-insight-section .sec-heading {
  margin-bottom: 18px;
  max-width: 553px;
  width: 100%;
}
.h6-insight_accordion {
  max-width: 553px;
  width: 100%;
  border: 1px solid var(--tj-color-border-2);
}
.h6-insight_accordion .accordion_item {
  text-align: start;
}
.h6-insight_accordion .accordion_item:not(:last-child) {
  border-bottom: 1px solid var(--tj-color-border-2);
}
.h6-insight_accordion .accordion_item .accordion_title {
  width: 100%;
  border: none;
  background-color: transparent;
  outline: none;
  -webkit-box-shadow: 0 0 0;
          box-shadow: 0 0 0;
  padding: 28px 65px 20px 30px;
  text-align: start;
  position: relative;
  z-index: 1;
}
.h6-insight_accordion .accordion_item .accordion_title::before {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  inset-inline-end: 30px;
  content: "+";
  font-family: "Font Awesome 6 Pro";
  font-weight: 500;
  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: 34px;
  height: 34px;
  border: 1px solid var(--tj-color-border-2);
  font-size: 16px;
  line-height: 1;
  text-align: center;
  border-radius: 50%;
  color: var(--tj-color-heading-primary);
  background-color: transparent;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.h6-insight_accordion .accordion_item .accordion_title:not(.collapsed)::before {
  content: "-";
}
.h6-insight_accordion .accordion_item .accordion_title:not(.collapsed) .subtitle {
  color: var(--tj-color-theme-primary);
}
.h6-insight_accordion .accordion_item .accordion_title .subtitle {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-family: var(--tj-ff-heading);
  font-weight: var(--tj-fw-sbold);
  font-size: 16px;
  line-height: 1;
  letter-spacing: -0.025em;
  color: #c0c6d1;
  margin-bottom: 10px;
}
.h6-insight_accordion .accordion_item .accordion_title .title {
  color: var(--tj-color-heading-primary);
  font-size: 20px;
  font-weight: var(--tj-fw-sbold);
  font-family: var(--tj-ff-heading);
  margin: 0;
  letter-spacing: -0.025em;
  line-height: 28px;
}
@media (max-width: 575px) {
  .h6-insight_accordion .accordion_item .accordion_title .title {
    font-size: 17px;
  }
}
.h6-insight_accordion .accordion_item .accordion_desc .accordion-body {
  padding: 0 30px 25px 30px;
}
.h6-insight-chart {
  position: relative;
  z-index: 1;
  border: 1px solid var(--tj-color-border-2);
  padding: 40px 30px;
  margin-top: 8px;
  text-align: center;
}
.h6-insight-chart .chart_content {
  text-align: start;
  max-width: 240px;
  width: 100%;
  position: absolute;
  inset-inline-start: 30px;
  top: 30px;
}
.h6-insight-chart .chart_content .title {
  font-family: var(--tj-ff-heading);
  font-weight: var(--tj-fw-sbold);
  font-size: 20px;
  line-height: 1.3;
  letter-spacing: -0.025em;
  color: var(--tj-color-heading-primary);
  margin-bottom: 20px;
}
.h6-insight-chart .chart_content .counter {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-family: var(--tj-ff-heading);
  font-weight: var(--tj-fw-sbold);
  font-size: 45px;
  line-height: 1;
  letter-spacing: -0.025em;
  color: var(--tj-color-heading-primary);
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.h6-insight-chart .chart_content .counter span {
  font-family: inherit;
}
.h6-insight-chart .chart_content .counter .up {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: end;
  width: 34px;
  height: 34px;
  font-size: 19px;
  color: var(--tj-color-theme-primary);
}
.h6-insight-chart .chart_content .subtitle {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  color: var(--tj-color-common-black-2);
  line-height: 1;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .h6-insight-chart {
    padding: 62px 30px 40px 30px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .h6-insight-section .sec-heading {
    margin-bottom: 40px;
  }
  .h6-insight_accordion {
    margin-bottom: 40px;
    max-width: 100%;
  }
}
@media (max-width: 575px) {
  .h6-insight-chart {
    padding: 80px 30px 30px 30px;
  }
  .h6-insight-chart .chart_content {
    max-width: 195px;
  }
  .h6-insight-chart .chart_content .title {
    font-size: 16px;
    margin-bottom: 10px;
  }
  .h6-insight-chart .chart_content .counter {
    font-size: 30px;
  }
  .h6-insight-chart .chart_content .counter .up {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .h6-insight-chart .chart_content .subtitle {
    margin-top: 5px;
  }
}

/* END: H6 Insight CSS */
/* START: Home 6 Footer CSS */
.h6-footer {
  border-top: 0;
}
.h6-footer-middle {
  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) {
  .h6-footer-logo {
    text-align: center;
  }
}
.h6-footer-logo a img {
  max-width: 150px;
}
.h6-footer-menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  row-gap: 15px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .h6-footer-menu ul {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.h6-footer-menu ul li {
  display: inline-block;
  padding: 0 30px;
  position: relative;
  line-height: 1;
}
.h6-footer-menu ul li:first-child {
  -webkit-padding-start: 0;
          padding-inline-start: 0;
}
.h6-footer-menu ul li:last-child {
  -webkit-padding-end: 0;
          padding-inline-end: 0;
}
.h6-footer-menu ul li:not(:first-child)::before {
  position: absolute;
  content: "";
  top: 50%;
  inset-inline-start: 0;
  width: 1px;
  height: 12px;
  background-color: var(--tj-color-border-1);
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
}
.h6-footer-menu ul li a {
  color: var(--tj-color-common-white);
  font-weight: var(--tj-fw-bold);
}
.h6-footer-menu ul li a:hover {
  color: var(--tj-color-theme-primary);
}
.h6-footer-widget-top {
  padding-top: 70px;
  padding-bottom: 80px;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .h6-footer-widget-top {
    padding-bottom: 60px;
    text-align: center;
  }
}
.h6-footer-widget-title {
  font-size: 68px;
  color: var(--tj-color-common-white);
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .h6-footer-widget-title {
    font-size: 58px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .h6-footer-widget-title {
    font-size: 48px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .h6-footer-widget-title {
    font-size: 42px;
  }
}
.h6-footer-widget-title span {
  color: var(--tj-color-theme-primary);
}
.h6-footer-widget-btn {
  margin-top: 30px;
}
.h6-footer-widget .footer-contact-infos {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  position: relative;
}
.h6-footer-widget .footer-contact-infos::before, .h6-footer-widget .footer-contact-infos::after {
  position: absolute;
  content: "";
  inset-inline-end: 0;
  top: 0;
  width: calc(100% + 4000px);
  height: 1px;
  background-color: var(--tj-color-border-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) {
  .h6-footer-widget .footer-contact-infos::before, .h6-footer-widget .footer-contact-infos::after {
    inset-inline-end: -100%;
  }
}
.h6-footer-widget .footer-contact-infos::after {
  top: auto;
  bottom: 0;
}
.h6-footer-widget .footer-contact-infos .infos-right,
.h6-footer-widget .footer-contact-infos .infos-left {
  padding-top: 76px;
  padding-bottom: 80px;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .h6-footer-widget .footer-contact-infos .infos-right,
  .h6-footer-widget .footer-contact-infos .infos-left {
    padding-top: 50px;
    padding-bottom: 50px;
  }
}
.h6-footer-widget .footer-contact-infos .infos-right {
  -webkit-padding-start: 70px;
          padding-inline-start: 70px;
  -webkit-border-start: 1px solid var(--tj-color-border-1);
          border-inline-start: 1px solid var(--tj-color-border-1);
  -webkit-margin-start: -25px;
          margin-inline-start: -25px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .h6-footer-widget .footer-contact-infos .infos-right {
    -webkit-margin-start: 0;
            margin-inline-start: 0;
    -webkit-padding-start: 20px;
            padding-inline-start: 20px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .h6-footer-widget .footer-contact-infos .infos-right {
    -webkit-margin-start: 0;
            margin-inline-start: 0;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .h6-footer-widget .footer-contact-infos .infos-right {
    -webkit-padding-start: 50px;
            padding-inline-start: 50px;
  }
}
@media (max-width: 575px) {
  .h6-footer-widget .footer-contact-infos .infos-right {
    -webkit-padding-start: 20px;
            padding-inline-start: 20px;
  }
}
.h6-footer-widget .footer-contact-infos .infos-item {
  max-width: 230px;
}
.h6-footer-widget .footer-contact-infos .infos-item span {
  display: inline-block;
  font-size: 14px;
  color: var(--tj-color-common-black-2);
  font-weight: var(--tj-fw-regular);
  margin-bottom: 6px;
}
.h6-footer-widget .footer-contact-infos .infos-item p {
  font-size: 16px;
  font-weight: var(--tj-fw-regular);
  color: var(--tj-color-common-white-2);
  margin-bottom: 6px;
}
.h6-footer-widget .footer-contact-infos .infos-item a {
  font-size: 16px;
  font-weight: var(--tj-fw-regular);
  color: var(--tj-color-common-white);
  position: relative;
  z-index: 1;
}
.h6-footer-widget .footer-contact-infos .infos-item a::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 1px;
  bottom: -2px;
  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: var(--tj-color-common-white);
  -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;
}
.h6-footer-widget .footer-contact-infos .infos-item a:hover::before {
  -webkit-transform-origin: left;
      -ms-transform-origin: left;
          transform-origin: left;
  -webkit-transform: scaleX(1);
      -ms-transform: scaleX(1);
          transform: scaleX(1);
}
.h6-footer-widget .contact-form-one {
  padding: 80px 50px;
  max-width: 100%;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .h6-footer-widget .contact-form-one {
    padding: 80px 35px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .h6-footer-widget .contact-form-one {
    padding: 50px 35px;
  }
}
.h6-footer-widget .contact-form-one .title {
  max-width: 300px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .h6-footer-widget .contact-form-one .form-input {
    margin-bottom: 42px;
  }
}
.h6-footer-widget .contact-form-one textarea {
  height: 140px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .h6-footer-widget .contact-form-one textarea {
    height: 130px;
  }
}
.h6-footer .backtop {
  inset-inline-end: 40px;
  bottom: 130px;
}
@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: 992px) and (max-width: 1199px) {
  .h6-footer .backtop {
    inset-inline-end: 20px;
    bottom: 90px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .h6-footer .backtop {
    inset-inline-end: 20px;
    bottom: 50px;
  }
}

.tj-submit-btn {
  width: 100%;
  height: 56px;
  border-radius: 30px;
  padding: 0 30px;
  color: var(--tj-color-common-white);
  background: var(--tj-color-theme-primary);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.tj-submit-btn span.btn-icon {
  overflow: hidden;
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  color: var(--tj-color-common-white);
}
.tj-submit-btn span.btn-icon i {
  color: var(--tj-color-common-white);
}
.tj-submit-btn span.btn-icon i:first-child, .tj-submit-btn span.btn-icon 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-submit-btn span.btn-icon i:last-child {
  position: absolute;
  -webkit-transform: translateX(-150%);
      -ms-transform: translateX(-150%);
          transform: translateX(-150%);
}
.tj-submit-btn .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;
  font-weight: var(--tj-fw-bold);
}
.tj-submit-btn .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-submit-btn:hover {
  background: var(--tj-color-common-white);
}
.tj-submit-btn:hover span.btn-icon {
  color: var(--tj-color-theme-dark);
}
.tj-submit-btn:hover span.btn-icon i {
  color: var(--tj-color-theme-dark);
}
.tj-submit-btn:hover span.btn-icon i:first-child {
  -webkit-transform: translateX(150%);
      -ms-transform: translateX(150%);
          transform: translateX(150%);
}
.tj-submit-btn:hover span.btn-icon i:last-child {
  -webkit-transform: translateX(0);
      -ms-transform: translateX(0);
          transform: translateX(0);
}
.tj-submit-btn:hover .btn-text {
  color: var(--tj-color-theme-dark);
}
.tj-submit-btn:hover .btn-text > span {
  -webkit-transform: translateY(-24px);
      -ms-transform: translateY(-24px);
          transform: translateY(-24px);
}

/* START: H6 Marquee CSS */
.h6-marquee-slider {
  background-color: var(--tj-color-theme-primary);
  padding: 30px 0 22px 0;
}
.h6-marquee-slider .marquee-wrapper {
  -webkit-transition-timing-function: linear;
  transition-timing-function: linear;
}
.h6-marquee-slider .marquee_item {
  width: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: var(--tj-color-common-white);
  font-family: var(--tj-ff-heading);
  font-weight: var(--tj-fw-sbold);
  font-size: 55px;
  line-height: 1;
  letter-spacing: -0.03em;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .h6-marquee-slider .marquee_item {
    font-size: 50px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .h6-marquee-slider .marquee_item {
    font-size: 45px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .h6-marquee-slider {
    padding: 30px 0 25px 0;
  }
  .h6-marquee-slider .marquee_item {
    font-size: 40px;
  }
}
@media (max-width: 575px) {
  .h6-marquee-slider {
    padding: 30px 0 25px 0;
  }
  .h6-marquee-slider .marquee_item {
    font-size: 35px;
  }
}

/* !END: H6 Marquee CSS */
/* START: H6 Projects CSS */
.h6-project-section {
  overflow: hidden;
}
.h6-project-wrap .pin-spacer:nth-child(even) .h6-project-item {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .h6-project-wrap .pin-spacer:nth-child(even) .h6-project-item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}
.h6-project-item {
  background-color: var(--tj-color-theme-dark);
  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;
  position: relative;
  z-index: 2;
}
.h6-project-item:not(:last-child) {
  margin-bottom: 30px;
}
.h6-project-item:nth-child(even) {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
.h6-project-item .project_image {
  max-width: calc(50% - 0px);
  max-height: 550px;
  width: 100%;
  overflow: hidden;
}
.h6-project-item .project_image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.h6-project-item .project_content {
  max-width: calc(50% - 0px);
  width: 100%;
  padding: 30px;
  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;
}
.h6-project-item .project_content_inner {
  max-width: 440px;
  width: 100%;
}
.h6-project-item .project_content_inner .no {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  font-family: var(--tj-ff-heading);
  font-weight: var(--tj-fw-sbold);
  font-size: 88px;
  line-height: 1;
  letter-spacing: -0.025em;
  color: rgba(247, 247, 247, 0.1);
  margin-bottom: 10px;
}
.h6-project-item .project_content_inner .title {
  margin: 0;
  color: var(--tj-color-common-white);
}
.h6-project-item .project_content_inner .title a:hover {
  color: var(--tj-color-theme-primary);
}
.h6-project-item .project_content_inner .desc {
  color: var(--tj-color-common-white-2);
  margin-top: 15px;
}
.h6-project-item .project_content_inner .project_btn {
  background-color: var(--tj-color-theme-primary);
  margin-top: 25px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .h6-project-item .project_content_inner {
    max-width: 395px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .h6-project-item .project_content_inner {
    max-width: 395px;
  }
  .h6-project-item .project_content_inner .no {
    font-size: 75px;
    margin-bottom: 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) {
  .h6-project-item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
  .h6-project-item:nth-child(even) {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
  .h6-project-item .project_image {
    max-width: 100%;
    max-height: 420px;
  }
  .h6-project-item .project_content {
    max-width: 100%;
    min-height: 420px;
    padding: 35px 30px 40px;
  }
  .h6-project-item .project_content_inner {
    max-width: 100%;
  }
  .h6-project-item .project_content_inner .no {
    font-size: 75px;
    margin-bottom: 15px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .h6-project-item .project_image {
    max-height: 420px;
  }
  .h6-project-item .project_content_inner .no {
    font-size: 60px;
    margin-bottom: 20px;
  }
}
@media (max-width: 575px) {
  .h6-project-item .project_image {
    max-height: 420px;
  }
  .h6-project-item .project_content {
    padding: 30px 20px 40px;
  }
  .h6-project-item .project_content_inner .no {
    font-size: 50px;
    margin-bottom: 15px;
  }
}

/* !END: H6 Projects CSS */
/* START: Home 6 Header CSS */
.tj-header-area.header-6 {
  border-color: var(--tj-color-border-2);
}
.tj-header-area.header-6 .header-bottom {
  -webkit-padding-start: 18px;
          padding-inline-start: 18px;
  -webkit-padding-end: 18px;
          padding-inline-end: 18px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .tj-header-area.header-6 .header-bottom {
    -webkit-padding-start: 0;
            padding-inline-start: 0;
    -webkit-padding-end: 0;
            padding-inline-end: 0;
  }
}
.tj-header-area.header-6 .mainmenu ul > li > a {
  color: var(--tj-color-heading-primary);
}
.tj-header-area.header-6 .mainmenu ul > li > a:hover {
  color: var(--tj-color-theme-primary);
}
.tj-header-area.header-6 .mainmenu ul > li.current-menu-ancestor > a, .tj-header-area.header-6 .mainmenu ul > li.current-menu-item > a, .tj-header-area.header-6 .mainmenu ul > li:hover > a {
  color: var(--tj-color-theme-primary);
}
.tj-header-area.header-6 .tj-primary-btn {
  padding: 5px;
}
.tj-header-area.header-6 .tj-primary-btn .btn_inner {
  padding: 12px 18px 12px 50px;
}
.tj-header-area.header-6 .tj-primary-btn .btn_inner::before {
  width: 40px;
}
.tj-header-area.header-6 .tj-primary-btn .btn_inner .btn_icon {
  min-width: 40px;
  font-size: 1.4em;
}
.tj-header-area.header-6 .tj-primary-btn:hover .btn_inner::before {
  width: 100%;
}
.tj-header-area.style-6 .header_search {
  color: var(--tj-color-heading-primary);
}
.tj-header-area.style-6 .header_search i {
  color: var(--tj-color-heading-primary);
}
.tj-header-area.style-6 .header_right_info {
  -webkit-column-gap: 0;
     -moz-column-gap: 0;
          column-gap: 0;
}
.tj-header-area.style-6 .header_right_info > *:not(:last-child) {
  -webkit-padding-end: 13px;
          padding-inline-end: 13px;
  -webkit-margin-end: 12px;
          margin-inline-end: 12px;
  position: relative;
}
.tj-header-area.style-6 .header_right_info > *:first-child::after {
  content: "";
  position: absolute;
  inset-inline-end: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  height: 16px;
  width: 1px;
  background-color: var(--tj-color-border-2);
}
.tj-header-area.style-6.header-duplicate .header_search {
  color: var(--tj-color-common-white);
}
.tj-header-area.style-6.header-duplicate .header_search i {
  color: var(--tj-color-common-white);
}
.tj-header-area.style-6.header-duplicate .header_right_info > *:first-child::after {
  background-color: var(--tj-color-border-1);
}

/* END: Home 6 Header CSS */
/* START: Hero CSS */
.h6-hero-section {
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding-top: 188px;
}
.h6-hero-section .hero-shapes-2,
.h6-hero-section .hero-shapes-1 {
  position: absolute;
  top: 220px;
  inset-inline-start: -90px;
  z-index: -1;
  max-width: 220px;
  width: 100%;
}
.h6-hero-section .hero-shapes-2 img,
.h6-hero-section .hero-shapes-1 img {
  width: 100%;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px) {
  .h6-hero-section .hero-shapes-2,
  .h6-hero-section .hero-shapes-1 {
    max-width: 180px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .h6-hero-section .hero-shapes-2,
  .h6-hero-section .hero-shapes-1 {
    max-width: 140px;
  }
}
.h6-hero-section .hero-shapes-2 {
  inset-inline-start: inherit;
  inset-inline-end: -100px;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .h6-hero-section .hero-shapes-2 {
    inset-inline-end: -80px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .h6-hero-section {
    padding-top: 140px;
  }
}
.h6-hero-content {
  max-width: 880px;
  margin: 0 auto;
  text-align: center;
}
.h6-hero-content .sub-title {
  background-color: var(--tj-color-theme-bg);
  color: var(--tj-color-text-body);
  font-size: 14px;
  line-height: 1;
  padding: 3px 8px;
  border-radius: 30px;
  margin-bottom: 18px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 4px;
  vertical-align: sub;
}
.h6-hero-content .sub-title i {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  color: var(--tj-color-theme-primary);
  font-size: 20px;
  line-height: 1;
}
.h6-hero-content .hero-title {
  line-height: 1.083;
  margin-bottom: 10px;
  letter-spacing: -0.025em;
}
.h6-hero-content .hero-title span {
  color: var(--tj-color-theme-primary);
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .h6-hero-content .hero-title {
    font-size: 40px;
  }
}
.h6-hero-content .desc {
  max-width: 530px;
  font-size: 18px;
  line-height: 1.444;
  margin: 0 auto;
}
.h6-hero-content .desc p:last-child {
  margin: 0;
}
.h6-hero-content .hero-btn-area {
  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: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 20px;
  margin-top: 24px;
}
@media (max-width: 390px) {
  .h6-hero-content .hero-btn-area {
    gap: 10px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .h6-hero-content {
    max-width: 700px;
  }
}
.h6-hero-slider {
  margin: 0 30px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .h6-hero-slider {
    margin: 0 20px;
  }
}

.h6-slider-area {
  position: relative;
  overflow: hidden;
  margin: 20px 0 0;
}
.h6-slider-area::before {
  content: "";
  position: absolute;
  top: -2px;
  inset-inline-start: 0;
  width: 100%;
  height: 48px;
  background-color: var(--tj-color-common-white);
  -webkit-mask-image: url(../images/h6-slider-curve-1.svg);
          mask-image: url(../images/h6-slider-curve-1.svg);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center top;
          mask-position: center top;
  -webkit-mask-size: cover;
          mask-size: cover;
  z-index: 2;
}
@media (min-width: 1921px) and (max-width: 2500px) {
  .h6-slider-area::before {
    height: 60px;
  }
}
@media (min-width: 2501px) and (max-width: 3200px) {
  .h6-slider-area::before {
    height: 70px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .h6-slider-area::before {
    height: 38px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .h6-slider-area::before {
    height: 30px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .h6-slider-area::before {
    height: 24px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .h6-slider-area::before {
    height: 20px;
  }
}
.h6-slider-area::after {
  content: "";
  position: absolute;
  bottom: -1px;
  inset-inline-start: 0;
  width: 100%;
  height: 48px;
  background-color: var(--tj-color-common-white);
  -webkit-mask-image: url(../images/h6-slider-curve-2.svg);
          mask-image: url(../images/h6-slider-curve-2.svg);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center bottom;
          mask-position: center bottom;
  -webkit-mask-size: cover;
          mask-size: cover;
  z-index: 2;
}
@media (min-width: 1921px) and (max-width: 2500px) {
  .h6-slider-area::after {
    height: 60px;
  }
}
@media (min-width: 2501px) and (max-width: 3200px) {
  .h6-slider-area::after {
    height: 70px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .h6-slider-area::after {
    height: 38px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .h6-slider-area::after {
    height: 30px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .h6-slider-area::after {
    height: 24px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .h6-slider-area::after {
    height: 20px;
  }
}
.h6-slider-wrapper {
  -webkit-transition-timing-function: linear;
  transition-timing-function: linear;
}
.h6-slider-item {
  width: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.h6-slider-item .slider-img {
  max-width: 442px;
  width: 100%;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .h6-slider-item .slider-img {
    max-width: 360px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .h6-slider-item .slider-img {
    max-width: 320px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .h6-slider-item .slider-img {
    max-width: 280px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .h6-slider-item .slider-img {
    max-width: 200px;
  }
}

/* !END: Hero CSS */
/* START: About CSS */
.h6-about-section {
  overflow: hidden;
}
.h6-about-video {
  position: relative;
  height: 100%;
}
.h6-about-video .about-shape-1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  max-width: 305px;
  width: 100%;
  height: 348px;
  position: absolute;
  bottom: -121px;
  inset-inline-start: 0;
  -webkit-mask-image: url(../images/h6-about-video-shape.svg);
          mask-image: url(../images/h6-about-video-shape.svg);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: contain;
          mask-size: contain;
  background: var(--tj-color-theme-bg);
  -webkit-mask-position: center;
          mask-position: center;
}
.h6-about-video .about-shape-1 .video-inner {
  position: relative;
  overflow: hidden;
  max-width: 244px;
  width: 100%;
  border-radius: 50%;
  margin-bottom: 45px;
}
.h6-about-video .about-shape-1 .video-inner::before {
  content: "";
  background-color: var(--tj-color-theme-dark);
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  inset-inline-start: 0;
  opacity: 0.3;
}
.h6-about-video .about-shape-1 .video-inner img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.h6-about-video .about-shape-1 .video-inner .video-btn {
  background-color: var(--tj-color-common-white);
  color: var(--tj-color-theme-dark);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: 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: 14px;
  -webkit-animation: pulse 2s infinite;
          animation: pulse 2s infinite;
  position: absolute;
  top: 50%;
  inset-inline-start: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 2;
}
.h6-about-video .about-shape-1 .video-inner .video-btn i {
  line-height: 1;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-margin-start: 2px;
          margin-inline-start: 2px;
}
.h6-about-video .about-shape-1 .video-inner .video-btn:hover {
  -webkit-transform: translate(-50%, -50%) scale(1.1);
      -ms-transform: translate(-50%, -50%) scale(1.1);
          transform: translate(-50%, -50%) scale(1.1);
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .h6-about-video .about-shape-1 .video-inner {
    max-width: 200px;
    margin-bottom: 35px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .h6-about-video .about-shape-1 {
    max-width: 250px;
    height: 288px;
    bottom: -102px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .h6-about-video .about-shape-1 {
    position: relative;
    max-width: 250px;
    height: 288px;
    bottom: -82px;
    margin: 0 auto;
  }
}
.h6-about-content {
  position: relative;
}
.h6-about-content .shape {
  position: absolute;
  max-width: 220px;
  width: 100%;
  top: 80px;
  inset-inline-end: 0;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .h6-about-content .shape {
    max-width: 160px;
    top: inherit;
    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) {
  .h6-about-content .shape {
    max-width: 130px;
    top: inherit;
    bottom: 10px;
  }
}
.h6-about-content .sec-heading {
  max-width: 870px;
  width: 100%;
}
.h6-about-content .sec-title {
  letter-spacing: -0.025em;
}
.h6-about-content .about-btn-area {
  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;
  gap: 20px;
}
.h6-about-content .images-thumb {
  margin-bottom: 0;
}
.h6-about-content .images-thumb li.plus i {
  background-color: var(--tj-color-theme-primary);
}
.h6-about-funfact {
  max-width: 645px;
  width: 100%;
  -webkit-margin-start: auto;
          margin-inline-start: auto;
  margin-top: -35px;
}
.h6-about-funfact-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border: 1px solid var(--tj-color-border-2);
  overflow: hidden;
}
.h6-about-funfact-item:not(:first-child) {
  border-top: 0;
}
.h6-about-funfact-item .counter-item {
  max-width: 257px;
  padding: 28px 30px 40px 30px;
  -webkit-border-end: 0;
          border-inline-end: 0;
}
@media (max-width: 575px) {
  .h6-about-funfact-item .counter-item {
    max-width: 160px;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    padding: 20px 15px 30px 15px;
  }
}
.h6-about-funfact-item .desc {
  position: relative;
  padding: 30px;
}
.h6-about-funfact-item .desc::before {
  content: "";
  background-color: var(--tj-color-border-2);
  position: absolute;
  width: 1px;
  height: calc(100% + 100px);
  top: -50px;
  inset-inline-start: 0;
  z-index: -1;
}
.h6-about-funfact-item .desc p:last-child {
  margin-bottom: 0;
}
@media (max-width: 575px) {
  .h6-about-funfact-item .desc {
    padding: 20px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .h6-about-funfact {
    max-width: 100%;
    margin-top: 50px;
  }
}
